@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* Reset */

/* Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain) */

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%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}


#white {
  background: #ffffff;
}

/* Basic */

@-ms-viewport {
  width: device-width;
}

body {
  -ms-overflow-style: scrollbar;
}

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

  html,
  body {
    min-width: 320px;
  }

}

html {
  box-sizing: border-box;
}

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

body {
  background: rgb(248, 248, 248);
}

body,
input,
select,
textarea {
  color: #242736;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65em;
  letter-spacing: -0.015em;
}

a {
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  border-bottom: dotted 1px;
  color: #359aee;
  text-decoration: none;
}

a:hover {
  border-bottom-color: transparent;
}

strong,
b {
  color: #359aee;
  font-weight: 400;
}

em,
i {
  font-style: italic;
}

p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #646464;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 0.5em 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-weight: 500;
  color: #000000;
  font-size: 1.8em;
  line-height: 1.5em;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.75em;
  line-height: 1.5em;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 1.1em;
  line-height: 1.5em;
  letter-spacing: 0;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5em;
  letter-spacing: 0;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
  letter-spacing: 0;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 2px #e5e5e5;
  margin: 2em 0;
}

hr.major {
  margin: 3em 0;
}

blockquote {
  border-left: solid 4px #e5e5e5;
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

pre {
  -webkit-overflow-scrolling: touch;
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.75em;
  margin: 0 0 2em 0;
  overflow-x: auto;
  padding: 1em 1.5em;
}

code {
  font-family: monospace;
  font-size: 0.9em;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Row */

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.row>* {
  box-sizing: border-box;
}

.row.gtr-uniform>*> :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  justify-content: flex-start;
}

.row.aln-center {
  justify-content: center;
}

.row.aln-right {
  justify-content: flex-end;
}

.row.aln-top {
  align-items: flex-start;
}

.row.aln-middle {
  align-items: center;
}

.row.aln-bottom {
  align-items: flex-end;
}

.row>.imp {
  order: -1;
}

.row>.col-1 {
  width: 8.3333333333%;
}

.row>.off-1 {
  margin-left: 8.3333333333%;
}

.row>.col-2 {
  width: 16.6666666667%;
}

.row>.off-2 {
  margin-left: 16.6666666667%;
}

.row>.col-3 {
  width: 25%;
}

.row>.off-3 {
  margin-left: 25%;
}

.row>.col-4 {
  width: 33.3333333333%;
}

.row>.off-4 {
  margin-left: 33.3333333333%;
}

.row>.col-5 {
  width: 41.6666666667%;
}

.row>.off-5 {
  margin-left: 41.6666666667%;
}

.row>.col-6 {
  width: 50%;
}

.row>.off-6 {
  margin-left: 50%;
}

.row>.col-7 {
  width: 58.3333333333%;
}

.row>.off-7 {
  margin-left: 58.3333333333%;
}

.row>.col-8 {
  width: 66.6666666667%;
}

.row>.off-8 {
  margin-left: 66.6666666667%;
}

.row>.col-9 {
  width: 75%;
}

.row>.off-9 {
  margin-left: 75%;
}

.row>.col-10 {
  width: 83.3333333333%;
}

.row>.off-10 {
  margin-left: 83.3333333333%;
}

.row>.col-11 {
  width: 91.6666666667%;
}

.row>.off-11 {
  margin-left: 91.6666666667%;
}

.row>.col-12 {
  width: 100%;
}

.row>.off-12 {
  margin-left: 100%;
}

.row.gtr-0 {
  margin-top: 0;
  margin-left: 0em;
}

.row.gtr-0>* {
  padding: 0 0 0 0em;
}

.row.gtr-0.gtr-uniform {
  margin-top: 0em;
}

.row.gtr-0.gtr-uniform>* {
  padding-top: 0em;
}

.row.gtr-25 {
  margin-top: 0;
  margin-left: -0.5em;
}

.row.gtr-25>* {
  padding: 0 0 0 0.5em;
}

.row.gtr-25.gtr-uniform {
  margin-top: -0.5em;
}

.row.gtr-25.gtr-uniform>* {
  padding-top: 0.5em;
}

.row.gtr-50 {
  margin-top: 0;
  margin-left: -1em;
}

.row.gtr-50>* {
  padding: 0 0 0 1em;
}

.row.gtr-50.gtr-uniform {
  margin-top: -1em;
}

.row.gtr-50.gtr-uniform>* {
  padding-top: 1em;
}

.row {
  margin-top: 0;
  margin-left: -2em;
}

.row>* {
  padding: 0 0 0 2em;
}

.row.gtr-uniform {
  margin-top: -2em;
}

.row.gtr-uniform>* {
  padding-top: 2em;
}

.row.gtr-150 {
  margin-top: 0;
  margin-left: -3em;
}

.row.gtr-150>* {
  padding: 0 0 0 3em;
}

.row.gtr-150.gtr-uniform {
  margin-top: -3em;
}

.row.gtr-150.gtr-uniform>* {
  padding-top: 3em;
}

.row.gtr-200 {
  margin-top: 0;
  margin-left: -4em;
}

.row.gtr-200>* {
  padding: 0 0 0 4em;
}

.row.gtr-200.gtr-uniform {
  margin-top: -4em;
}

.row.gtr-200.gtr-uniform>* {
  padding-top: 4em;
}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-wide {
    order: -1;
  }

  .row>.col-1-wide {
    width: 8.3333333333%;
  }

  .row>.off-1-wide {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-wide {
    width: 16.6666666667%;
  }

  .row>.off-2-wide {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-wide {
    width: 25%;
  }

  .row>.off-3-wide {
    margin-left: 25%;
  }

  .row>.col-4-wide {
    width: 33.3333333333%;
  }

  .row>.off-4-wide {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-wide {
    width: 41.6666666667%;
  }

  .row>.off-5-wide {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-wide {
    width: 50%;
  }

  .row>.off-6-wide {
    margin-left: 50%;
  }

  .row>.col-7-wide {
    width: 58.3333333333%;
  }

  .row>.off-7-wide {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-wide {
    width: 66.6666666667%;
  }

  .row>.off-8-wide {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-wide {
    width: 75%;
  }

  .row>.off-9-wide {
    margin-left: 75%;
  }

  .row>.col-10-wide {
    width: 83.3333333333%;
  }

  .row>.off-10-wide {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-wide {
    width: 91.6666666667%;
  }

  .row>.off-11-wide {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-wide {
    width: 100%;
  }

  .row>.off-12-wide {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-normal {
    order: -1;
  }

  .row>.col-1-normal {
    width: 8.3333333333%;
  }

  .row>.off-1-normal {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-normal {
    width: 16.6666666667%;
  }

  .row>.off-2-normal {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-normal {
    width: 25%;
  }

  .row>.off-3-normal {
    margin-left: 25%;
  }

  .row>.col-4-normal {
    width: 33.3333333333%;
  }

  .row>.off-4-normal {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-normal {
    width: 41.6666666667%;
  }

  .row>.off-5-normal {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-normal {
    width: 50%;
  }

  .row>.off-6-normal {
    margin-left: 50%;
  }

  .row>.col-7-normal {
    width: 58.3333333333%;
  }

  .row>.off-7-normal {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-normal {
    width: 66.6666666667%;
  }

  .row>.off-8-normal {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-normal {
    width: 75%;
  }

  .row>.off-9-normal {
    margin-left: 75%;
  }

  .row>.col-10-normal {
    width: 83.3333333333%;
  }

  .row>.off-10-normal {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-normal {
    width: 91.6666666667%;
  }

  .row>.off-11-normal {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-normal {
    width: 100%;
  }

  .row>.off-12-normal {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-narrow {
    order: -1;
  }

  .row>.col-1-narrow {
    width: 8.3333333333%;
  }

  .row>.off-1-narrow {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-narrow {
    width: 16.6666666667%;
  }

  .row>.off-2-narrow {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-narrow {
    width: 25%;
  }

  .row>.off-3-narrow {
    margin-left: 25%;
  }

  .row>.col-4-narrow {
    width: 33.3333333333%;
  }

  .row>.off-4-narrow {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-narrow {
    width: 41.6666666667%;
  }

  .row>.off-5-narrow {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-narrow {
    width: 50%;
  }

  .row>.off-6-narrow {
    margin-left: 50%;
  }

  .row>.col-7-narrow {
    width: 58.3333333333%;
  }

  .row>.off-7-narrow {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-narrow {
    width: 66.6666666667%;
  }

  .row>.off-8-narrow {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-narrow {
    width: 75%;
  }

  .row>.off-9-narrow {
    margin-left: 75%;
  }

  .row>.col-10-narrow {
    width: 83.3333333333%;
  }

  .row>.off-10-narrow {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-narrow {
    width: 91.6666666667%;
  }

  .row>.off-11-narrow {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-narrow {
    width: 100%;
  }

  .row>.off-12-narrow {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-narrower {
    order: -1;
  }

  .row>.col-1-narrower {
    width: 8.3333333333%;
  }

  .row>.off-1-narrower {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-narrower {
    width: 16.6666666667%;
  }

  .row>.off-2-narrower {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-narrower {
    width: 25%;
  }

  .row>.off-3-narrower {
    margin-left: 25%;
  }

  .row>.col-4-narrower {
    width: 33.3333333333%;
  }

  .row>.off-4-narrower {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-narrower {
    width: 41.6666666667%;
  }

  .row>.off-5-narrower {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-narrower {
    width: 50%;
  }

  .row>.off-6-narrower {
    margin-left: 50%;
  }

  .row>.col-7-narrower {
    width: 58.3333333333%;
  }

  .row>.off-7-narrower {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-narrower {
    width: 66.6666666667%;
  }

  .row>.off-8-narrower {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-narrower {
    width: 75%;
  }

  .row>.off-9-narrower {
    margin-left: 75%;
  }

  .row>.col-10-narrower {
    width: 83.3333333333%;
  }

  .row>.off-10-narrower {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-narrower {
    width: 91.6666666667%;
  }

  .row>.off-11-narrower {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-narrower {
    width: 100%;
  }

  .row>.off-12-narrower {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-mobile {
    order: -1;
  }

  .row>.col-1-mobile {
    width: 8.3333333333%;
  }

  .row>.off-1-mobile {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-mobile {
    width: 16.6666666667%;
  }

  .row>.off-2-mobile {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-mobile {
    width: 25%;
  }

  .row>.off-3-mobile {
    margin-left: 25%;
  }

  .row>.col-4-mobile {
    width: 33.3333333333%;
  }

  .row>.off-4-mobile {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-mobile {
    width: 41.6666666667%;
  }

  .row>.off-5-mobile {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-mobile {
    width: 50%;
  }

  .row>.off-6-mobile {
    margin-left: 50%;
  }

  .row>.col-7-mobile {
    width: 58.3333333333%;
  }

  .row>.off-7-mobile {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-mobile {
    width: 66.6666666667%;
  }

  .row>.off-8-mobile {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-mobile {
    width: 75%;
  }

  .row>.off-9-mobile {
    margin-left: 75%;
  }

  .row>.col-10-mobile {
    width: 83.3333333333%;
  }

  .row>.off-10-mobile {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-mobile {
    width: 91.6666666667%;
  }

  .row>.off-11-mobile {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-mobile {
    width: 100%;
  }

  .row>.off-12-mobile {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

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

  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row>* {
    box-sizing: border-box;
  }

  .row.gtr-uniform>*> :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row>.imp-mobilep {
    order: -1;
  }

  .row>.col-1-mobilep {
    width: 8.3333333333%;
  }

  .row>.off-1-mobilep {
    margin-left: 8.3333333333%;
  }

  .row>.col-2-mobilep {
    width: 16.6666666667%;
  }

  .row>.off-2-mobilep {
    margin-left: 16.6666666667%;
  }

  .row>.col-3-mobilep {
    width: 25%;
  }

  .row>.off-3-mobilep {
    margin-left: 25%;
  }

  .row>.col-4-mobilep {
    width: 33.3333333333%;
  }

  .row>.off-4-mobilep {
    margin-left: 33.3333333333%;
  }

  .row>.col-5-mobilep {
    width: 41.6666666667%;
  }

  .row>.off-5-mobilep {
    margin-left: 41.6666666667%;
  }

  .row>.col-6-mobilep {
    width: 50%;
  }

  .row>.off-6-mobilep {
    margin-left: 50%;
  }

  .row>.col-7-mobilep {
    width: 58.3333333333%;
  }

  .row>.off-7-mobilep {
    margin-left: 58.3333333333%;
  }

  .row>.col-8-mobilep {
    width: 66.6666666667%;
  }

  .row>.off-8-mobilep {
    margin-left: 66.6666666667%;
  }

  .row>.col-9-mobilep {
    width: 75%;
  }

  .row>.off-9-mobilep {
    margin-left: 75%;
  }

  .row>.col-10-mobilep {
    width: 83.3333333333%;
  }

  .row>.off-10-mobilep {
    margin-left: 83.3333333333%;
  }

  .row>.col-11-mobilep {
    width: 91.6666666667%;
  }

  .row>.off-11-mobilep {
    margin-left: 91.6666666667%;
  }

  .row>.col-12-mobilep {
    width: 100%;
  }

  .row>.off-12-mobilep {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0>* {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform>* {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }

  .row.gtr-25>* {
    padding: 0 0 0 0.5em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }

  .row.gtr-25.gtr-uniform>* {
    padding-top: 0.5em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }

  .row.gtr-50>* {
    padding: 0 0 0 1em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }

  .row.gtr-50.gtr-uniform>* {
    padding-top: 1em;
  }

  .row {
    margin-top: 0;
    margin-left: -2em;
  }

  .row>* {
    padding: 0 0 0 2em;
  }

  .row.gtr-uniform {
    margin-top: -2em;
  }

  .row.gtr-uniform>* {
    padding-top: 2em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }

  .row.gtr-150>* {
    padding: 0 0 0 3em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }

  .row.gtr-150.gtr-uniform>* {
    padding-top: 3em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }

  .row.gtr-200>* {
    padding: 0 0 0 4em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }

  .row.gtr-200.gtr-uniform>* {
    padding-top: 4em;
  }

}

/* Container */

.container {
  margin: 0 auto;
  max-width: calc(100% - 5em);
  width: 65em;
}

.container#main {
  min-height: 12em;
}

.container.xsmall {
  width: 15em;
}

.container.small {
  width: 30em;
}

.container.medium {
  width: 45em;
}

.container.large {
  width: 75em;
}

.container.xlarge {
  width: 90em;
}

.container.max {
  width: 100%;
}

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

  .container {
    width: 100% !important;
  }

}

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

  .container {
    max-width: 100%;
  }

}

/* Section/Article */

section.special,
article.special {
  text-align: center;
}


header {
  display: block;
}


header h2 {
  display: block;
  font-size: 1.8em !important;
  color: #252b33;
  font-weight: 500;
}

header p {
  display: inline-block;
  width: 70%;
  font-size: 1em;
  color: #cdd3d9;
  border: 0 !important;
}

/* Form */

form {
  margin: 0 0 2em 0;
}

label {
  color: #646464;
  display: block;
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border-radius: 6px;
  border: solid 2px #dee2e6;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  font-weight: 300;
  text-decoration: none;
  width: 100%;
  box-shadow: inset 0 0.25rem 0.125rem 0 rgb(0 0 0 / 5%);
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {

  border-color: #359aee;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23e5e5e5' /%3E%3C/svg%3E");
  background-size: 1.25em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  height: 3em;
  padding-right: 3em;
  text-overflow: ellipsis;
}

select option {
  color: #242736;
  background-color: #f5f5f5;
}

select:focus::-ms-value {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
  height: 4em;
}

textarea {
  padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2em;
  line-height: 35px;
  font-weight: 300;
  padding-left: 2.55em;
  padding-right: 0.75em;
  position: relative;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
  background: #ffffff;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  content: '';
  display: inline-block;
  height: 1.8em;
  left: 0;
  line-height: 1.725em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 1.8em;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
  background: #359aee;
  border-color: #359aee;
  color: #ffffff;
  content: '\f00c';
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
  border-color: #359aee;
  box-shadow: 0 0 0 1px #359aee;
}

input[type="checkbox"]+label:before {
  border-radius: 6px;
}

input[type="radio"]+label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  color: #c9cbcd !important;
  opacity: 1.0;
}

:-moz-placeholder {
  color: #c9cbcd !important;
  opacity: 1.0;
}

::-moz-placeholder {
  color: #c9cbcd !important;
  opacity: 1.0;
}

:-ms-input-placeholder {
  color: #c9cbcd !important;
  opacity: 1.0;
}

/* Box */

.box {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eaecee;
  box-shadow: 0 2px 0 0 #e5e5e5;
  margin: 0 0 2em 0;
  padding: 2em;
  position: relative;
}

.box.nopadding {
  padding: 0 !important;
}

/* Image */

.image {
  border-radius: 6px;
  border: 0;
  display: inline-block;
  position: relative;
}

.image img {
  border-radius: 6px;
  display: block;
}

.image.left {
  float: left;
  padding: 0 1.5em 1em 0;
  top: 0.25em;
}

.image.right {
  float: right;
  padding: 0 0 1em 1.5em;
  top: 0.25em;
}

.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}

.image.fit img {
  display: block;
  width: 100%;
}

/* List */

ul.list {
  width: 100%;
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

ul.list li {
  float: left;
  width: 25%;
}

ul.list li a {
  float: left;
  color: #2988f6;
  border-bottom: none;
}

ul.list li a i {
  display: inline-block;
  margin-right: 5px;
  color: #e4e4e4;
}

ul.list li a:hover {
  border: none;
}

ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px #e5e5e5;
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1.25em 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

ul.icons li .icon {
  color: inherit;
}

ul.icons li .icon:before {
  font-size: 1.75em;
}

dl {
  margin: 0 0 2em 0;
}

/* Actions */

ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}

ul.actions.special li:first-child {
  padding-left: 0;
}

ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1em);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li>* {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

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

  ul.actions:not(.fixed) {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }

  ul.actions:not(.fixed) li {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }

  ul.actions:not(.fixed) li>* {
    width: 100%;
  }

  ul.actions:not(.fixed) li:first-child {
    padding-top: 0;
  }

  ul.actions:not(.fixed) li input[type="submit"],
  ul.actions:not(.fixed) li input[type="reset"],
  ul.actions:not(.fixed) li input[type="button"],
  ul.actions:not(.fixed) li button,
  ul.actions:not(.fixed) li .button {
    width: 100%;
    font-size: 1em;
  }

  ul.actions:not(.fixed) li input[type="submit"].icon:before,
  ul.actions:not(.fixed) li input[type="reset"].icon:before,
  ul.actions:not(.fixed) li input[type="button"].icon:before,
  ul.actions:not(.fixed) li button.icon:before,
  ul.actions:not(.fixed) li .button.icon:before {
    margin-left: -0.5em;
  }

}

/* Table */

.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  margin: 0 0 2em 0;
  width: 100%;
}

table tbody tr {
  border: solid 1px #e5e5e5;
  border-left: 0;
  border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
  background-color: #f8f8f8;
}

table td {
  padding: 0.75em 0.75em;
}

table th {
  color: #646464;
  font-size: 0.9em;
  font-weight: 300;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}

table thead {
  border-bottom: solid 2px #e5e5e5;
}

table tfoot {
  border-top: solid 2px #e5e5e5;
}

table.alt {
  border-collapse: separate;
}

table.alt tbody tr td {
  border: solid 1px #e5e5e5;
  border-left-width: 0;
  border-top-width: 0;
}

table.alt tbody tr td:first-child {
  border-left-width: 1px;
}

table.alt tbody tr:first-child td {
  border-top-width: 1px;
}

table.alt thead {
  border-bottom: 0;
}

table.alt tfoot {
  border-top: 0;
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: #4eabf5;
  border-radius: 6px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 3.5em;
  line-height: 3.5em;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
  background-color: #737373;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
  background-color: #595959;
}

input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
  padding-left: 1.35em;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
  margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
  width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
  font-size: 0.8em;
  height: 2.7em;
  line-height: 2.7em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
.button.large {
  font-size: 1.25em;
  height: 2.7em;
  line-height: 2.7em;
}

input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
.button.alt {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #e5e5e5;
  color: #242736;
}

input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
.button.alt:hover {
  background-color: #f8f8f8;
}

input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
.button.alt:active {
  background-color: #f0f0f0;
}

input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
.button.alt.icon:before {
  color: #999;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
.button.primary {
  background-color: #e89980;
  color: #ffffff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
.button.primary:hover {
  background-color: #ecaa96;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
.button.primary:active {
  background-color: #e4886a;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
  background-color: #777 !important;
  box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
  color: #f5f5f5 !important;
  cursor: default;
  opacity: 0.25;
}

/* Header */

#page-wrapper {
  padding-top: 3em;
}

body.landing #page-wrapper {
  padding-top: 0;
}

@-moz-keyframes reveal-header {
  0% {
    top: -5em;
  }

  100% {
    top: 0;
  }
}

@-webkit-keyframes reveal-header {
  0% {
    top: -5em;
  }

  100% {
    top: 0;
  }
}

@-ms-keyframes reveal-header {
  0% {
    top: -5em;
  }

  100% {
    top: 0;
  }
}

@keyframes reveal-header {
  0% {
    top: -5em;
  }

  100% {
    top: 0;
  }
}

#header {
  background: #ffffff;
  color: #bbb;
  cursor: default;
  height: 4em;
  left: 0;
  line-height: 3.25em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  padding: 0 1em;
  box-shadow: 0 0.15rem 0.45rem 0 rgba(0, 0, 0, 0.05);
}

#header h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 80px;
  display: inline-block;
  line-height: inherit;
  margin: 1em;
  padding: 0;
}

#header h1 a {
  width: 120px;
  height: 80px;
  background: url("../images/logo.png") no-repeat;
  color: #fff;
  display: block;
  font-weight: 400;
  text-indent: -9999px;
  border: 0;
}

#header nav {
  width: 100%;
  height: inherit;
  line-height: inherit;
  vertical-align: middle;
  text-align: center;
}

#header nav>ul {
  list-style: none;
  margin: 5px 0 0 0;
  padding-left: 0;
}

#header nav>ul>li {
  display: inline-block;
  padding-left: 0;
  position: relative;
}

#header nav>ul>li a {
  display: inline-block;
  height: 2.4em;
  color: #020202;
  font-weight: 400;
  line-height: 2.5em;
  padding: 0 1em;
  border-bottom: 0;
}

#header nav>ul>li a.contact {
  color: #ffffff;
  background-color: #4eabf5;
  border-radius: 6px;
}

#header nav>ul>li .subMenu {
  position: absolute;
  top: 3.5em;
  left: -12em;
  width: 800px;
  background: #ffffff;
  text-align: left;
  line-height: 30px;
  border-radius: 12px;
  border: 1px solid #ebe9e9;
  box-shadow: 0 0.15rem 0.45rem 0 rgba(0, 0, 0, 0.05);
  display: none;
}

#header nav>ul>li.sub:hover .subMenu {
  display: block;
}

#header nav>ul>li .arrow-up {
  position: absolute;
  top: -0.75em;
  left: 30%;
  width: 0;
  height: 0;
  padding: 0 2em;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
}

#header nav>ul>li .subMenu .links {
  display: block;
  padding: 1em 1.5em 0.5em 1.5em;
  overflow: hidden;
}

#header nav>ul>li .subMenu .links .item {
  display: block;
  float: left;
  width: 33%;
}

#header nav>ul>li .subMenu .links .item strong {
  display: block;
  font-weight: 400;
  font-size: 0.9em;
  margin-bottom: 0.5em;
  color: #359aee;
  position: relative;
}

#header nav>ul>li .subMenu .links .item a {
  display: block;
  padding: 0;
  font-weight: 300;
  font-size: 0.9em;
}

#header nav>ul>li .subMenu .links .item a i {
  display: inline-block;
  padding: 0 7.5px 0 0;
  font-size: 0.6em;
  color: #cdd3d9;
}

#header nav>ul>li .subMenu .links .item a:hover {
  color: #359aee;
}

#header nav>ul>li .subMenu .contact {
  width: 100%;
  background: #f7fcff;
  padding: 0.5em 1.5em 0.75em 1.5em;
  border-top: 2px solid #f1f3f5;
  position: relative;
  margin: 1em 0 0 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

#header nav>ul>li .subMenu .contact h3 {
  display: block;
  font-size: 1em;
  margin: 0;
  color: #000000;
  font-weight: 500;
}

#header nav>ul>li .subMenu .contact p {
  display: block;
  margin: 0 0 0.5em 0;
  font-size: 0.9em;
  color: #000000;
}

#header nav>ul>li .subMenu .contact a {
  position: absolute;
  top: 2em;
  right: 2.5em;
  font-size: 0.85em;
  background: #228be6;
  height: 3em;
  line-height: 3em;
  color: #ffffff;
  border-radius: 6px;
}

/* sideMenu */

#sideMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
}

#sideMenu .contact {
  display: inline-block;
  line-height: 2.5em;
  margin: 15px 0;
  padding: 0 1em;
  background: #359aee;
  color: #ffffff;
  border-radius: 6px;
}

#sideMenu .contact i {
  display: none;
}

#sideMenu .language {
  float: right;
  margin-left: 10px;
}

#sideMenu .language .current {
  border-left: #e8ebee 1px solid;
  padding: 1.2em 1em;
  margin-left: 10px;
}

#sideMenu .language .current i {
  font-size: 1.8em;
  color: #cdd3d9;
}

#sideMenu .language .select {
  position: absolute;
  top: 4em;
  right: 0.2em;
  display: none;
  background: #fefefe;
  border: #e8ebee 1px solid;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

#sideMenu .language .select a {
  padding: 0.8em 1.5em;
  font-size: 0.9em;
  color: #020202;
  display: block;
  border: none;
  cursor: pointer;
}

#sideMenu .language .select a i {
  margin-right: 5px;
}

#sideMenu .language .select a:first-child {
  border-bottom: #e8ebee 1px solid;
}

#sideMenu .language .current:hover+.select {
  display: block !important;
}

#sideMenu .language .select:hover {
  display: block !important;
}

#sideMenu .language form {
  margin: 0;
}

/* Banner */

#banner {
  position: relative;
  padding: 4em 0;
  margin: 0 0 4em 0;
}

#banner h2 {
  display: block;
  padding: 1em 0 0 0;
  font-size: 2.6em;
  font-weight: 600;
  color: #000000;
}

#banner p {
  display: block;
  padding: 0.5em 0 1.5em 0;
  font-size: 0.9em;
  line-height: 40px;
  font-weight: 300;
  color: #000000;
}

#banner img {
  display: block;
  width: 90%;
  margin: 3em auto 0 auto;
}


/* Main */

#main {
  padding: 1em 0 2em 0;
}

#main>header {
  text-align: center;
  margin: 2em 0;
}

#main>header h2 {
  font-size: 2.75em;
  margin: 0;
}

#main>header p {
  border-top: solid 2px #e5e5e5;
  color: #495057;
  font-weight: 300;
  display: inline-block;
  font-style: normal;
  margin: 0 0 0 0;
  padding: 0.5em 0 1.25em 0;
}

/* Messages */

.validation-alert {
  display: block;
  margin: 0.5em 0 1em 0;
}

.validation-alert strong {
  display: block;
  font-size: 1em;
  color: #ff0033;
}

.error-alert {
  border: 1px solid #f4c5ca;
  padding: 1em;
  overflow: hidden;
  margin: 0 0 1em 0;
  background: #f7d6d9;
  border-radius: 6px;
}

.error-alert strong {
  font-weight: 500;
  font-size: 1.1em;
  color: #711b23;
}

.error-alert strong i {
  margin-right: 10px;
}

.message-succes {
  border: 1px solid #c2e5ca;
  padding: 1em;
  overflow: hidden;
  margin: 0 0 1em 0;
  background: #d3ecd9;
  border-radius: 6px;
}

.message-succes strong {
  font-weight: 400;
  font-size: 1em;
  color: #135624;
}

.message-succes strong i {
  margin-right: 10px;
}

/* Article Class */

.article h2 {
  font-size: 2em;
  display: block;
  padding: 1rem;
  line-height: 1.4;
  color: #333;
}

.article h3 {
  font-size: 1.6em;
  font-weight: bold;
  display: block;
  padding: 2rem 0 1rem;
  line-height: 1.4;
  color: #242736;
}

/* Body */


.listButtons {
  display: block;
  width: 100%;
}

.listButtons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.listButtons li {
  float: left;
  width: 25%;
  margin: 0 0 2% 0;
}

.listButtons li a {
  display: block;
  text-align: center;
  padding: 7px;
  color: #ffffff;
  background: #2988f6;
  border-radius: 6px;
  border: none;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.listButtons li a i {
  margin-right: 5px;
}

.category {
  display: block;
  margin: 0 0 1.5em 0;
  overflow: hidden;
}

.category strong {
  display: block;
  margin: 0 0 1em 0;
  font-size: 1.5em;
  font-weight: 500;
  color: #020202;
}

.category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category li {
  float: left;
  width: 100%;
  display: block;
  padding: 0;
}

.category li a {
  display: block;
  font-size: 0.9em;
  border: 0;
}

.category li i {
  color: #cdd3d9;
  margin-right: 5px;
}

.posts {
  display: block;
  margin: 0 0 1em 0;
  overflow: hidden;
}

.posts strong {
  display: block;
  margin: 0 0 1em 0;
  font-size: 1.5em;
  font-weight: 500;
  color: #020202;
}

.posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.posts li {
  display: block;
  margin: 0 0 0.5em 0;
  padding: 0;
}

.posts li a {
  display: block;
  font-weight: 400;
  color: #242736;
  border: none;
}

.posts li span {
  color: #cdd3d9;
}

.team {
  display: block;
  text-align: center;
}

.team h2 {
  display: block;
  font-weight: 600;
  color: #020202;
  margin: 0 0 10px 0;
}

.team p {
  display: block;
  font-size: 1.4em;
  font-weight: 400;
  color: #cdd3d9;
}

.team img {
  width: 65%;
  display: block;
  margin: 0 auto 1em auto;
  border-radius: 100%;
}

.team strong {
  display: block;
  color: #020202;
  font-weight: 500;
}

.team span {
  display: block;
  font-size: 1em;
  color: #cdd3d9;
}

.testimonials {
  display: block;
}

.testimonials h2 {
  display: block;
  text-align: center;
  display: block;
  font-weight: 600;
  color: #020202;
  margin: 0 0 10px 0;
}

.testimonials .dots {
  display: block;
  margin: 0 0 1em 0;
  text-align: center;
}

.testimonials .dots i {
  margin-right: 10px;
}

.testimonials .review {
  display: block;
}

.testimonials .review strong {
  font-weight: 600;
  font-size: 1.3em;
  color: #020202;
}

.testimonials .review p {
  margin: 15px 0 0 0;
}

.testimonials .user {
  display: block;
}

.testimonials .user img {
  float: left;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 10px;
}

.testimonials .user strong {
  float: left;
  width: 70%;
}

.testimonials .user p {
  float: left;
  width: 70%;
}

.aboutus {
  display: block;
  margin: 0 0 2.5em 0;
  text-align: center;
  overflow: hidden;
}

.aboutus h2 {
  font-size: 2.6em;
  color: #020202;
  margin: 0 0 0.5em 0;
  font-weight: 800;
}

.aboutus p {
  margin: 0;
  font-size: 1.6em;
  line-height: 40px;
  color: #020202;
}

.aboutus p.main {
  display: block;
  text-align: left;
  margin: 1em;
  font-size: 1.1em;
  line-height: 40px;
  color: #020202;
}

.aboutus img {
  width: 100%;
  border-radius: 6px;
}

.aboutus strong {
  display: block;
  margin: 1em 0 0 0;
  font-size: 1.6em;
  line-height: 40px;
  color: #020202;
  overflow: hidden;
}

.aboutus ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aboutus li {
  float: left;
  text-align: left;
  width: 100%;
  font-size: 1.2em;
  padding-bottom: 8px;
  line-height: 40px;
  color: #020202;
}

.letstalkbusiness {
  display: block;
  text-align: center;
  margin: 1em 0 2em 0;
}

.letstalkbusiness h2 {
  display: block;
  font-weight: 600;
  color: #020202;
  margin: 0 0 0.5em 0;
}

.letstalkbusiness p {
  display: block;
  font-size: 1.4em;
  line-height: 40px;
  font-weight: 400;
  color: #cdd3d9;
  margin: 0 0 1em 0;
}

.letstalkbusiness p.large {
  padding: 0 6em;
}

.letstalkbusiness strong {
  display: block;
  font-size: 1.3em;
  line-height: 1.6;
  font-weight: 500;
  color: #020202;
  margin: 0 0 0.5em 0;
}

.info {
  display: block;
  margin: 3em 0;
  text-align: center;
}

.info span {
  display: block;
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 400;
  color: #cdd3d9;
}

.info strong {
  display: block;
  color: #020202;
  font-weight: 500;
}

.socialbuttons {
    display: block;
    margin: 0 0 1.5em 0;
    overflow: hidden;
}

.socialbuttons ul {
    list-style: none;
    margin: 0!important;
    padding: 0!important;
}

.socialbuttons li {
    display: inline-block;
    width: auto!important;
    height: auto!important;
    margin: 0 1em 0 0!important;
    padding: 0!important;
    border: 0!important;
    box-shadow: none!important;
}

.socialbuttons li a {
    font-size: 1.4em;
    color: #cdd3d9;
    border: 0;
}

.socialbuttons li a:hover {
    color: #242736;
}

.options {
  display: block;
  text-align: center;
}

.options .box {
  display: block;
  overflow: hidden;
}

.options .box img {
  width: 100%;
}

.options .box strong {
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  color: #323232;
  margin: 0.5em 1em 0.5em 1em;
}

.options .box p {
  display: block;
  margin: 0 1em 1em 1em;
  font-size: 1em;
}

.options .box a {
  border: none;
  color: #242736;
}

.writtenBy {
  display: none;
}

.writtenBy span {
  display: none;
}

.form {
  display: block;
  margin: 0;
  padding: 2em 2em 0.1em 2em;
}

.form form {
  margin: 0;
}

.form textarea {
  min-height: 120px;
  resize: none;
  margin-bottom: 1em;
}

.form input {
  margin-bottom: 1em;
}

.captcha {
    display: block;
    background: #f7f7f7;
    padding: 1em 0;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 6px;
}

.comments {
  display: block;
  text-align: left;
  margin: 0 0 1em 0;
}

.comments p {
  display: block;
  font-size: 0.9em;
  line-height: 30px;
  margin: 0;
  padding: 1.5em;
}

.comments .user {
  display: block;
  background: #f9fafa;
  margin: 0;
  padding: 1em 1.5em;
  box-shadow: inset 0 0.25rem 0.125rem 0 rgba(0, 0, 0, 0.05);
}

.comments .user label {
  display: inline-block;
  margin: 0;
  font-size: 0.9em;
}

.comments .user ul {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments .user li {
  display: inline-block;
  padding: 5px;
  color: #cdd3d9;
  font-size: 0.9em;
}

.servicePost {
  display: block;
}

.servicePost h2 {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #020202;
  margin: 0 0 10px 0;
}

.servicePost img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-bottom: 1em;
}

.servicePost h2 {
  display: block;
  margin: 1em 0;
}

.servicePost h3 {
  color: #359aee;
  font-weight: 600;
}

.servicePost p {
  font-size: 1.1em;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  color: #032043;
}

.servicePost dt {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1.6;
  margin: 10px 0 12px 0;
  font-weight: 600;
  color: #020202;
}

.servicePost dd {
  color: #032043;
  line-height: 1.6;
  font-size: 1.2em;
  padding-left: 10px;
}

.servicePost .text {
  display: block;
  padding: 1em 2em;
}

.servicePost .text ul {
  display: block;
  padding: 0;
  margin: 0 0 1em 0;
  list-style: none;
  overflow: hidden;
}

.servicePost .text li {
  float: left;
  width: 100%;
  color: #032043;
  font-size: 1.1em;
  padding-bottom: 5px;
}

.servicePost .hire {
  display: block;
  background: repeating-linear-gradient(135deg, #f7f8f9, #f7f8f9 5px, #f5f6f7 5px, #f5f6f7 10px);
  border: 1px solid #e4e6e8;
  text-align: center;
  padding: 2em 1em 1.5em 1em;
  box-shadow: inset 0 0.25rem 0.125rem 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.servicePost .hire label {
  color: #359aee;
  font-weight: 600;
  font-size: 1.6em;
  margin-bottom: 1em;
  line-height: 40px;
}

.servicePost .hire ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.servicePost .hire li {
  float: left;
  width: 25%;
  display: block;
}

.servicePost .hire li i {
  font-size: 2.5em;
  color: #cdd3d9;
  margin-bottom: 15px;
}

.servicePost .hire li strong {
  display: block;
}

.servicePost .hire li .button {
  margin-top: 1em;
  background: #20c997;
  color: #ffffff;
}

.servicePost strong.padding {
  display: block;
  color: #359aee;
  font-weight: 600;
  font-size: 1.6em;
  text-align: center;
  padding: 0 4em;
  line-height: 40px;
}

.servicePost p {
  margin-top: 1em;
  text-align: center;
  display: block;
}

.points {
  display: block;
}

.points ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.points li {
  display: inline-block;
  width: 32%;
  padding: 1em;
  margin: 0;
  text-align: center;
}

.points li p {
  line-height: 25px;
  font-size: 1.1em;
  color: #242736;
}

.points li i {
  font-size: 4em;
  display: block;
  color: #359aee;
  margin-bottom: 0.2em;
}

.points li strong {
  font-size: 1.3em;
  color: #020202;
  margin: 10px 0 0.6em 0;
  display: block;
}

.points li:nth-child(1) {
  border-bottom: 1px solid #cdd3d9;
  border-right: 1px solid #cdd3d9;
}

.points li:nth-child(2) {
  border-bottom: 1px solid #cdd3d9;
  border-right: 1px solid #cdd3d9;
}

.points li:nth-child(3) {
  border-bottom: 1px solid #cdd3d9;
}

.points li:nth-child(4) {
  border-right: 1px solid #cdd3d9;
}

.points li:nth-child(5) {
  border-right: 1px solid #cdd3d9;
}

.notice {
  margin-top: 2em;
}

.notice p {
  margin: 0;
}

.search {
  display: block;
  border-bottom: 1px solid rgb(0 0 0 / 5%);
  position: relative;
}

.search h2 {
  display: block;
  padding: 1.5em 1.5em 1em 1.5em;
  font-size: 1em;
}

.search .list {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
}

.search .list a {
  display: inline-block;
  color: #cdd3d9;
  font-size: 0.9em;
  border: 0;
  margin-left: 1em;
}

.search .list a:hover {
  color: #000000;
}

.search .form {
  padding: 0 1.5em 0.5em 1.5em;
}

.search form {
  position: relative;
}

.search input {
  width: 100%;
  height: 3.5em;
}

.search button {
  position: absolute;
  top: 1.75em;
  right: 1.75em;
  background: none;
  border: 0;
}

.search button i {
  font-size: 1.4em;
}

.blog {
  display: block;
}

.blog .no-posts {
  display: block;
  margin: 1.25em 1.5em;
}

.blog ul {
  display: block;
  margin: 0;
  padding: 0;
}

.blog li {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
  border-top: 1px solid rgb(0 0 0 / 5%);
  position: relative;
}

.blog li:first-child {
  border-top: 0;
}

.blog li:hover {
  background: #fafafa;
}

.blog li a {
  display: block;
  color: #000000;
  border: 0;
}

.blog li a.title {
  font-size: 1.2em;
}

.blog li img {
  width: 100%;
  margin: 1em 0 0 0;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 6px;
}

.blog li strong {
  display: block;
  color: #000000;
  margin: 0.35em 0;
  font-weight: 400;
}

.blog li .tag {
  display: block;
}

.blog li .tag a {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.9em;
}

.blog li .tag a i {
  color: #cdd3d9;
  margin-right: 5px;
}

.blog li .tag a:hover {
  text-decoration: underline;
}

.blog li .user {
  display: block;
}

.blog li .user a {
  display: inline-block;
}

.blog li .user img {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 5px 0 0 !important;
  border-radius: 100%;
  vertical-align: middle;
}

.blog li .user span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.8em;
  color: #cdd3d9;
}

.blog li .comments {
  position: absolute;
  bottom: 0.5em;
  right: 2em;
  color: #cdd3d9;
}

.blog li .comments i {
  margin-left: 5px;
}

.blog-tags {
  display: block;
}

.blog-tags h2 {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
}

.blog-tags p {
  display: block;
  font-size: 0.9em;
  margin-right: 1.5em;
}

.blog-tags img {
  display: inline-block;
  float: right;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}

.blog-user {
  display: block;
}

.blog-user h2 {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
}

.blog-user span {
  display: block;
  margin: 0 0 0.5em 0;
  color: #cdd3d9;
}

.blog-user p {
  display: block;
  font-size: 0.9em;
}

.blog-user img {
  display: inline-block;
  float: right;
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

.blog-profile {
  display: block;
}

.blog-profile h1 {
  display: block;
  font-weight: 600;
  color: #000000;
  padding: 1em 0;
  margin: 0;
}

.blog-profile h2 {
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
  padding: 1em 0 1.5em 0;
  margin: 0;
}

.blog-profile h3 {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  color: #000000;
  padding: 1em 0;
  margin: 0;
}

.blog-profile h4 {
  display: block;
  font-size: 1em;
  font-weight: 500;
  color: #000000;
  padding: 1em 0;
  margin: 0;
}

.blog-profile h5 {
  display: block;
  font-size: 1em;
  font-weight: 500;
  color: #000000;
  padding: 1em 0;
  margin: 0;
}

.blog-profile p {
  display: block;
  font-size: 0.9em;
  padding: 1em 0;
  margin: 0;
}

.blog-profile p strong {
  display: block;
  color: #000000;
}

.blog-profile code {
  display: block;
  margin: 0.5em 0;
  color: #ffffff;
  padding: 1em 1.5em;
  background: #364549;
  border-radius: 3px;
  position: relative;
}

.blog-profile pre {
  display: block;
  margin: 0 0 0.5em 0;
  color: #ffffff;
  background: #364549;
  border-radius: 3px;
  border: 0;
  position: relative;
}

.blog-profile pre code {
  font-size: 1em;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 280px;
  overflow-x: hidden;
}

.blog-profile code::-webkit-scrollbar {
    display: none;
}

.blog-profile .copy-code-button { position: absolute; top: 1.2em; right: 1.2em; padding: 6px 10px; background: #ffffff; border: 0; border-radius: 3px; }

.blog-profile ul {
  display: block;
  padding: 0.5em 1.5em;
  margin: 0;
}

.blog-profile li {
  list-style: circle outside none;
  padding: 0;
  margin: 0 0 0 1em;
  font-size: 0.9em;
}

.blog-profile .img {
  display: block;
  padding: 0.5em 0;
  overflow: hidden;
}

.blog-profile .img img {
  width: 100%;
  margin: 0;
  border: 1px solid rgb(0 0 0 / 5%);
  border-radius: 6px;
}

.blog-profile .user {
  display: block;
  margin: 0 0 1em 0;
}

.blog-profile .user a {
  display: inline-block;
  font-size: 0.8em;
  border: 0;
  color: #000000;
}

.blog-profile .user img {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 5px 0 0 !important;
  border-radius: 100%;
  vertical-align: middle;
}

.blog-profile .user span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  color: #cdd3d9;
}

.blog-profile .tag {
  display: block;
  margin: 0;
}

.blog-profile .tag a {
  display: inline-block;
  margin-right: 1em;
  font-size: 0.8em;
  color: #000000;
  border: 0;
}

.blog-profile .tag a i {
  color: #cdd3d9;
  margin-right: 5px;
}

.blog-profile .tag a:hover {
  text-decoration: underline;
}

.blog-profile h1 {
  font-size: 1.1em;
  line-height: 30px;
}

.blog-profile h2,
h3,
h4,
h5,
h6 {
  padding: 0.5em 0;
  line-height: 30px;
}

.blog-profile strong {
  font-size: 1.1em;
  line-height: 30px;
}

.blog-profile p {
  font-size: 1em;
  line-height: 30px;
}

.blog-profile img {
  max-width: 100%;
}

.blog-profile .socialbuttons { margin: 1.5em 0 0 0!important; }

.careers {
  display: block;
  margin: 0 10px;
}

.careers ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.careers ul.last {
  margin-bottom: 2em;
}

.careers li {
  float: left;
  display: block;
  color: #a4a9ae;
  overflow: hidden;
}

.careers li:nth-child(1) {
  width: 30%;
  display: block;
}

.careers li:nth-child(2) {
  width: 70%;
  display: block;
}

.careers li strong {
  color: #020202;
  font-weight: 600;
}

.careers p {
  display: block;
  color: #a4a9ae;
}

.careers a {
  border: 0;
}

.careers a i {
  font-size: 6em;
}

.why {
  display: block;
  text-align: center;
}

.why p {
  line-height: 25px;
  font-size: 1.1em;
  color: #242736;
}

.why i {
  font-size: 4em;
  display: block;
  color: #359aee;
  margin-bottom: 0.2em;
}

.why strong {
  font-size: 1.3em;
  color: #020202;
  margin: 10px 0 0.6em 0;
  display: block;
}

.contact {
  display: block;
}

.contact p {
  display: block;
  margin: 1em 0;
}

.contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact li {
  display: block;
  font-weight: 300;
  color: #000000;
  padding: 5px 0;
}

.contact li i {
  width: 20px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.contact img {
  width: 100%;
  height: 300px;
  border-radius: 6px;
}

.contact strong {
  font-size: 1.2em;
  color: #000000;
}

.contact form {
  margin: 0;
}

.contact .footer {
  font-size: 0.9em;
}

.latest {
  display: block;
  margin: 2em 0 0 0;
  text-align: center;
}

.latest ul {
  display: block;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.latest li {
  display: inline-block;
  width: 31%;
  margin: 0 2% 2% 0;
  padding: 0;
}

.latest li .img {
  display: block;
  position: relative;
}

.latest li .img img {
  width: 100%;
  height: 250px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.latest li .img .category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #359aee;
  font-size: 0.8em;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 6px;
}

.latest li a {
  border: 0;
}

.latest li .inner {
  display: block;
  padding: 1em;
}

.latest li .inner strong {
  display: block;
  height: 80px;
  margin: 0 0 1em 0;
  color: #020202;
  font-weight: 500;
  text-align: left;
}

.latest li .inner a {
  display: block;
  border: 0;
}

.recommended {
  display: block;
  margin: 2em 0 0 0;
  text-align: center;
}

.recommended ul {
  display: block;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.recommended li {
  display: inline-block;
  width: 31%;
  margin: 0 2% 2% 0;
  padding: 0;
}

.recommended li .img {
  display: block;
  position: relative;
}

.recommended li .img img {
  width: 100%;
  height: 250px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.recommended li .img .category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #359aee;
  font-size: 0.8em;
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 6px;
}

.recommended li a {
  border: 0;
}

.recommended li .inner {
  display: block;
  padding: 1em;
}

.recommended li .inner strong {
  display: block;
  height: 80px;
  margin: 0 0 1em 0;
  color: #020202;
  font-weight: 500;
  text-align: left;
}

.recommended li .inner a {
  display: block;
  border: 0;
}

.readmore {
  display: block;
}

.readmore ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.readmore li {
  display: inline-block;
  width: 48%;
}

.readmore li:nth-child(2) {
  text-align: right;
}

.readmore li a {
  font-size: 1.2em;
  color: #020202;
  border: none;
}

.topics {
    display: block;
    margin: 2em 0 1em 0;
}

.topics ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topics li {
    display: block;
    padding: 1em 1.5em;
    background-color: #fff4ce;
}

.topics li:not(:last-child) {
    border-bottom: solid 1px #d8d0b1;
}

.topics li a {
    display: block;
    color: inherit;
    border: 0;
}

.topics li strong {
    font-weight: 500;
    color: #000000;
    border-bottom: 0;
}

.topics li strong i {
    float: right;
    color: #ccaa2f;
}

.topics li p {
    font-size: 0.8em;
    margin: 0.5em 0 0 0;
}

.notices {
    display: block;
    margin: 2em 0 1em 0;
}

.notices ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notices li {
    display: block;
    padding: 1em 1.5em;
    border-bottom: solid 1px #f0f2f4;
}

.notices li:last-child {
    border-bottom: 0;
}

.notices li.topic {
    background-color: #fff4ce;
}

.notices li a {
    display: inline-block;
    color: inherit;
    border: 0;
}

.notices li strong {
    font-weight: 500;
    color: #000000;
    border-bottom: 0;
}

.notices li p {
    font-size: 0.8em;
    margin: 0.5em 0 0 0;
}

.notice-box__title {
  color: orangered;
}

.notice-box__icon {
  font-size: 2.5em;
  color: #359aee;
}

.ourCoreServices {
  display: block;
}

.ourCoreServices ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ourCoreServices li {
  width: 48%;
  display: inline-block;
  list-style: none;
  margin: 0 2% 1% 0;
  padding: 0;
}

.ourCoreServices li:nth-child(2n) {
  width: 49%;
  margin: 0 0 1% 0;
}

.ourCoreServices li strong {
  display: block;
  font-size: 1.2em;
}

.ourCoreServices li p {
  display: block;
  height: 90px;
  margin: 1.5em 0;
  font-size: 0.8em;
}

.readmore {
  display: block;
}

.readmore ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.readmore li {
  display: inline-block;
  width: 48%;
}

.readmore li:nth-child(2) {
  text-align: right;
}

.readmore li a {
  font-size: 1.2em;
  color: #020202;
  border: none;
}

.ourfunctions {
  display: block;
  margin: 1em 0;
}

.ourfunctions ul {
  margin: 0 0 1em 0;
  display: block;
  overflow: hidden;
  list-style: none;
}

.ourfunctions li {
  float: left;
  position: relative;
  width: 48%;
  height: 280px;
  margin: 0 1% 1% 0;
  background: #05c6ea;
  padding: 1em;
  border-radius: 6px;
  display: block;
  overflow: hidden;
}

.ourfunctions li.small {
  height: 100px;
}

.ourfunctions li.small:last-child {
  width: 97.4%;
  height: 60px;
}

.ourfunctions li i {
  position: absolute;
  top: 21px;
  left: 14px;
  font-size: 1.2em;
  color: #026988;
}

.ourfunctions li strong {
  position: absolute;
  top: 15px;
  left: 55px;
  padding: 0 2em 0 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2em;
  z-index: 999;
}

.ourfunctions li p {
  position: absolute;
  top: 25px;
  left: 55px;
  font-size: 1em !important;
  padding: 0 2em 0 0;
  color: #ffffff;
  z-index: 999;
}

.ourfunctions li span {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 3em;
  color: #06b0e2;
}

.pagination {
  display: block;
  margin: 1em 0;
  text-align: center;
}

.pagination ul {
  list-style: none;
}

.pagination li {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1.3em;
  font-weight: 500;
  color: #339af0;
}

.pagination li a {
  border: 0;
  color: #cdd3d9 !important;
}

.services {
  display: block;
  margin: 0 0 2em 0;
}

.services hr {
  margin: 4em 0;
  border-bottom: 1px solid #e8ebee;
}

.services h2 {
  display: block;
  font-size: 1.8em;
  color: #252b33;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.services p {
  display: block;
  margin: 0 0 1.5em 0;
  font-size: 0.9em;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.services img {
  width: 100%;
  border-radius: 12px;
}

.services ul {
  display: block;
  margin: 1em 0 0 0;
  padding: 0;
}

.services li {
  width: 49%;
  display: inline-block;
  margin: 0;
  padding: 0 0.5em 0.5em 0;
}

.services li a {
  display: block;
  padding: 8px 15px;
  font-size: 0.8em;
  color: #000000;
  border: 1px solid #eaecee;
  border-radius: 6px;
}

.services li a i {
  margin-right: 8px;
  color: #e8ebee;
}


.service-profile {
  display: block;
}

.service-profile .top {
  display: block;
  background: #ffffff;
  margin: 0 0 1em 0;
}

.service-profile .top .text {
  display: block;
  padding: 4em 3em;
}

.service-profile .top .text h2 {
  font-size: 2.5em;
}

.service-profile .top .text p {
  display: block;
  margin: 2em 0 1em 0;
  line-height: 40px;
}

.service-profile .top img {
  width: 100%;
}

.service-profile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-profile li {
  display: inline-block;
  width: 31%;
  height: 240px;
  margin: 0 2% 2% 0;
  padding: 1.5em;
  background: #ffffff;
  box-shadow: 0 2px 0 0 #e5e5e5;
  border: 1px solid #d9dee2;
  border-radius: 6px;
  overflow: hidden;
}

.service-profile li:nth-child(3n) {
  width: 33%;
  margin: 0 0 2% 0;
}

.service-profile li strong {
  display: block;
  font-size: 1em;
  font-weight: 600;
  color: #000000;
}

.service-profile li p {
  display: block;
  font-size: 0.9em;
  margin-top: 1em;
}

.shareBusinessIdea {
  display: block;
}

.shareBusinessIdea .box {
  border: 1px solid #d9dee2;
}

.shareBusinessIdea form {
  margin: 0;
}

.shareBusinessIdea .item {
  display: block;
  margin: 0 0 1em 0;
}

.shareBusinessIdea .item label {
  display: block;
  margin: 0 0 1em 0;
  color: #000000;
}

/* Footer */

#footer {
  background: #33393f;
  padding: 2em 0 0 0;
  text-align: center;
}

#footer .about {
  display: block;
  text-align: left;
}

#footer .about strong {
  display: block;
  font-size: 1.6em;
  margin: 0 0 0.5em 0;
  font-weight: 600;
  color: #ffffff;
}

#footer .about p {
  margin: 0 0 1em 0;
  color: #ffffff;
  font-size: 0.9em;
}

#footer .about .contact {
  color: #ffffff;
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

#footer ul.link {
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer ul.link li.half {
  float: left;
  width: 48%;
}

#footer ul.link li strong {
  font-weight: 600;
  color: #858d95;
}

#footer ul.link li a {
  color: #dde1e5;
  border: none;
  font-size: 0.9em;
  font-weight: 400;
}

#footer .privacy {
  width: 75px;
  margin: 1em 0;
}

#footer .icons {
  background: #202428;
  padding: 2em 0;
  margin-top: 2em;
}

#footer ul.icons {
  margin-bottom: 0;
}

#footer .icons a {
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0.35;
}

#footer .icons a:hover {
  opacity: 0.75;
}

#footer .icons a.fab {
  font-size: 2em;
  color: #858a8e;
  border: none;
}

#footer .icons a span {
  display: none;
}

#footer .copyright {
  background: #ffffff;
  color: #000000;
  font-size: 0.9em;
  line-height: 1em;
  margin: 0;
  padding: 1em 0;
}

#footer ul {
    margin: 0;
}

#footer .copyright a {
  color: inherit;
  border: 0;
}

#footer .copyright li {
  display: inline-block;
  font-size: 0.9em;
  margin: 0.5em 0;
  color: #000000;
  display: inline-block;
  list-style: none;
}

#footer .copyright li .privacy {
    width: 55px;
    vertical-align: middle;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

/* CTA */

#cta {
  background: #359aee;
  border-top: 4px solid #f0f2f4;
  color: #323232;
  padding: 2.5em 0 3em 0;
  text-align: center;
}

#cta h2 {
  font-weight: 500;
  color: #f7f8f9;
}

#cta p {
  font-size: 1.7em;
  font-weight: 500;
  color: #a5d7fe;
  margin-bottom: 1.5em;
}

#cta a {
  color: #f7f8f9;
}

/* Large screen */

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

    #header nav>ul>li .arrow-up {
        left: 32%;
    }

    #header nav>ul>li .subMenu .links .item strong {
        font-size: 0.8em;
    }

    #header nav>ul>li .subMenu .links .item a {
        font-size: 0.8em;
    }

    #header nav>ul>li .subMenu .contact h3 {
        font-size: 0.9em;
    }

    #header nav>ul>li .subMenu .contact p {
        font-size: 0.8em;
    }

    #header nav>ul>li .subMenu .contact a {
        font-size: 0.75em;
    }

}

/* Wide */

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

    #header nav>ul>li .arrow-up {
        top: -1em;
        left: 25%;
    }

    #header nav>ul>li .subMenu .links .item strong {
        font-size: 0.9em;
    }

    #header nav>ul>li .subMenu .links .item a {
        font-size: 0.9em;
    }

    #header nav>ul>li .subMenu .contact h3 {
        font-size: 1em;
    }

    #header nav>ul>li .subMenu .contact p {
        font-size: 0.9em;
    }

    #header nav>ul>li .subMenu .contact a {
        font-size: 0.8em;
    }

  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 13pt;
  }

  /* Banner */

  #banner {
    padding: 3em 0 0 0;
  }

}

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

  /* Basic */

  /* header */

  #header {
    height: 65px;
    padding: 0 1em;
  }

  #header nav>ul>li .subMenu {
    width: 750px;
  }

  #header nav>ul>li .arrow-up {
    left: 31%;
  }

  #header .language .select {
    right: 10px;
  }

}

/* Normal */

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

  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }

  /* Header */

  #header nav>ul>li .arrow-up {
    left: 23%;
    top: -1.1em;
  }

  /* Banner */

  #banner {
    background-attachment: scroll;
  }

  #banner h2 {
    font-size: 3.5em;
  }

}

/* Narrow */

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

  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }

  /* Header */

  #header nav>ul>li .arrow-up {
    left: 27%;
  }

}

/* Narrower */

#navPanel,
#navButton {
  display: none;
}

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

  /* Mobile Settings */
  #mobile {
    display: none;
  }

  p {
    font-size: 1.4em;
    line-height: 1.6;
  }

  /* Basic */

  html,
  body {
    overflow-x: hidden;
  }

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }

  /* Section/Article */

  header br {
    display: none;
  }

  header.major {
    padding: 0 4em;
  }

  /* Box */

  .box {
    padding: 3em 2em;
  }

  .box.features>section {
    padding: 3em 2em;
  }

  .box .image.featured {
    margin-left: -2em;
    width: calc(100% + 4em);
  }

  .box .image.featured:first-child {
    margin-bottom: 3em;
    margin-top: -3em;
  }

  .box .image.featured:last-child {
    margin-bottom: -3em;
    margin-top: 3em;
  }

  /* Header */

  #page-wrapper {
    padding-top: 1em;
  }

  #header {
    display: none;
  }

  /* Banner */

  /* Nav */

  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
  }

  #navButton {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 60px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
  }

  .navTitle {
    width: 100%;
    height: 65px;
    text-align: center;
    background: #ffffff;
    font-size: 1.6em;
    font-weight: 600;
    padding: 0.9em 0;
    color: #020202;
    border-bottom: solid 1px #f0f2f4;
    box-shadow: 0 0.15rem 0.45rem 0 rgba(0, 0, 0, 0.05);
  }

  .navTitle a {
    border: 0;
  }

  .navTitle img {
    width: 80px;
  }

  #navButton .toggle {
    text-decoration: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 15%;
    border: 0;
    outline: 0;
  }

  #navButton .toggle i {
    font-size: 2em;
    color: #020202;
    padding: 20px 22px;
    opacity: 0.8;
  }

  #navButton .toggle:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
  }

  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #ffffff;
    color: #bbb;
  }

  #navPanel .link {
    border-bottom: 0;
    color: #000000;
    display: block;
    height: 52px;
    font-size: 1.6em;
    font-weight: 600;
    line-height: 44px;
    padding: 1em;
    text-decoration: none;
  }

  #navPanel .link:first-child {
    border-top: 0;
  }

  #navPanel .link.depth-0 {
    color: #242736;
  }

  #navPanel .link .indent-1 {
    display: inline-block;
    width: 1em;
  }

  #navPanel .link .indent-2 {
    display: inline-block;
    width: 2em;
  }

  #navPanel .link .indent-3 {
    display: inline-block;
    width: 3em;
  }

  #navPanel .link .indent-4 {
    display: inline-block;
    width: 4em;
  }

  #navPanel .link .indent-5 {
    display: inline-block;
    width: 5em;
  }

  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #navButton {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  /* sideMenu */

  #sideMenu .contact {
    background: none;
    padding: 0 1.25em;
  }

  #sideMenu .contact span {
    display: none;
  }

  #sideMenu .contact i {
    display: block;
    color: #000000;
    font-size: 1.8em;
  }

  #sideMenu .language {
    display: none;
  }

  /* header */
  header {
    margin: 0.5em 1em;
  }

  /* Body */

  .breadcrumbs {
    padding: 5em 1em 0 1em;
  }

  .breadcrumbs h2 {
    width: 100%;
    text-align: center;
  }

  .breadcrumbs ol {
    display: none;
  }

  .container {
    padding: 2em 1em;
  }

  .options strong {
    font-weight: 600;
    font-size: 1.4em;
  }

  .options p {
    margin: 1em 0 0 0;
    font-size: 1.1em;
  }

  .team {
    margin-top: 2em;
  }

  .team p {
    margin: 0 2em 1em 2em;
    line-height: 1.6;
  }

  .team strong {
    font-size: 1.3em;
  }

  .team span {
    margin: 0.5em 0 0 0;
    font-size: 1em;
  }

  .team img {
    width: 100px;
    height: 100px;
  }

  .team a {
    margin-top: 2em;
  }

  .testimonials {
    margin-top: 2em
  }

  .testimonials .review p {
    font-size: 1.4em;
    line-height: 1.6;
  }

  .testimonials .user {
    margin-top: 2em;
  }

  .testimonials .user strong {
    font-size: 1.3em;
    margin-bottom: 6px;
  }

  .testimonials .user p {
    font-size: 1.4em;
  }

  .aboutus {
    margin-bottom: 0;
  }

  .aboutus h2 {
    display: none;
  }

  .aboutus p {
    font-size: 1.4em;
  }

  .letstalkbusiness {
    margin: 3em 0 2em 0 !important;
  }

  .letstalkbusiness p.large {
    padding: 0;
  }

  .letstalkbusiness strong {
    font-size: 1.4em !important;
    margin-top: 0.5em !important;
  }

  .info {
    margin: 3em 0 0 0;
  }

  .info span {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .info strong {
    font-size: 1.4em;
    margin-bottom: 1.5em;
  }

  .careers {
    margin-top: 2em;
  }

  .careers p {
    font-size: 1.4em;
    line-height: 30px;
  }

  .careers li {
    font-size: 1.4em;
    padding: 0;
    margin: 0 0 15px 0;
    line-height: 30px;
  }

  .careers li:nth-child(1) {
    width: 100%;
  }

  .careers li:nth-child(2) {
    width: 100%;
  }

  .search h2 {
    font-size: 1.2em;
    margin: 0;
  }

  .search .list a {
    font-size: 1.1em
  }

  .search input {
    height: 4em;
  }

  .search button {
    top: 1.25em;
    right: 1.25em;
    font-size: 1em;
  }

  .blog .no-posts {
    margin: 1.5em;
    font-size: 1em;
  }

  .blog li strong {
    font-size: 1.2em;
    line-height: 30px;
  }

  .comments p {
    font-size: 1em;
  }

  .blog-user .img {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .blog-user .img img {
    width: 60px;
    height: 60px;
  }

  .category {
    margin-top: 2em;
  }

  .category li {
    width: 50%;
    margin-bottom: 15px;
  }

  .category li a {
    color: #000000;
    font-size: 1em;
  }

  .posts strong {
    font-size: 1.8em;
  }

  .posts li a {
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .posts li span {
    font-size: 1.3em;
  }

  .blog-profile .copy-code-button {
    top: 0.8em;
    right: 0.8em;
  }

  .contact p {
    font-size: 1.4em;
    line-height: 1.6;
    margin: 0 0 1em 0 !important;
  }

  .contact ul {
    margin: 0 !important;
  }

  .contact li {
    font-size: 1.2em;
    line-height: 1.6;
  }

  .contact form {
    margin-bottom: 0;
  }

  .servicePost h2 {
    display: none;
  }

  .servicePost .box {
    margin-top: 0;
  }

  .servicePost p {
    font-size: 1.4em;
    line-height: 1.6;
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  .servicePost img {
    height: 100px;
    margin: 0;
  }

  .servicePost strong.padding {
    padding: 0 !important;
  }

  .servicePost .text {
    padding: 1em;
  }

  .servicePost .hire {
    border-top: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .servicePost .hire label {
    padding: 0 0.5em;
  }

  .servicePost .hire li {
    width: 50%;
  }

  .servicePost .hire li:nth-child(1) {
    margin-bottom: 1.2em;
  }

  .servicePost .hire li:nth-child(2) {
    margin-bottom: 1.2em;
  }

  .servicePost .hire li:nth-child(3) {
    display: none;
  }

  .servicePost .hire li:nth-child(4) {
    width: 100%;
  }

  .servicePost .hire li strong {
    font-size: 1.4em;
  }

  .servicePost .hire li .button {
    font-size: 1.4em;
  }

  .servicePost strong.padding {
    display: block;
    color: #020202;
    font-weight: 600;
    font-size: 1.6em;
    text-align: center;
    padding: 0 4em;
    line-height: 40px;
  }

  .servicePost p {
    margin-top: 1em;
    text-align: center;
    display: block;
  }

  .services p {
    font-size: 1em;
  }

  .services img.main {
    margin: 0 0 1.5em 0;
  }

  .services li.small {
    width: 100%;
    padding: 1em 0;
    font-size: 1em;
  }

  .services li .icon {
    padding: 1em;
    border-radius: 6px;
  }

  .services li .icon i {
    font-size: 1.8em;
  }

  .services li .icon img {
    height: 18px;
  }

  .services .button {
    width: 100%;
  }

  .notice-box {
    margin: 0 0 1em 1em;
  }

  .notice-box__icon {
    display: none;
  }

  .ourCoreServices {
    width: 100%;
    margin: 0 0 0 1em;
  }

  .ourCoreServices ul {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .ourCoreServices li {
    width: 325px;
    height: 320px;
    display: inline-block;
  }

  .ourCoreServices li:nth-child(2n) {
    width: 300px;
    margin-right: 2%;
  }

  .ourCoreServices li p {
    height: 120px;
    white-space: normal;
    font-size: 1em;
    overflow: hidden;
  }

  .service-profile .top .text {
    padding: 6em 2em 2em 2em;
  }

  .service-profile .top .text h2 {
    font-size: 1.8em;
  }

  .service-profile .top .text p {
    font-size: 1em;
    line-height: 30px;
  }

  .service-profile .top .text a {
    width: 100%;
  }

  .service-profile .top img {
    display: none;
  }

  .service-profile ul {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .service-profile li {
    width: 300px;
    height: 225px;
    display: inline-block;
  }

  .service-profile li:nth-child(3n) {
    width: 300px;
    margin-right: 2%;
  }

  .service-profile li strong {
    font-size: 1.2em;
    white-space: normal;
  }

  .service-profile li p {
    font-size: 1em;
    white-space: normal;
  }

    .topics {
        margin: 0 1em 2em 1em;
    }

    .notices {
        margin: 1em 1em 2em 1em;
    }

  .latest {
    width: 100%;
    margin: 0 0 0 1em;
  }

  .latest ul {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .latest li {
    width: 300px;
    padding-left: 0;
    display: inline-block;
  }

  .latest li:nth-child(3n) {
    width: 300px;
  }

  .latest li .img img {
    height: 200px;
  }

  .latest li .img .category {
    top: 0;
    right: 10px;
  }

  .latest li .inner strong {
    white-space: normal;
    height: 60px;
  }

  .recommended {
    width: 100%;
    margin: 0 0 2em 1em;
  }

  .recommended ul {
    white-space: nowrap;
    padding: 0;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .recommended li {
    width: 300px;
    padding-left: 0;
    display: inline-block;
  }

  .recommended li:nth-child(3n) {
    width: 300px;
  }

  .recommended li .img img {
    height: 200px;
  }

  .recommended li .img .category {
    top: 0;
    right: 10px;
  }

  .recommended li .inner strong {
    white-space: normal;
    height: 60px;
  }

  #cta {
    margin-top: 1.5em;
  }

  #banner {
    padding: 2em 0;
    margin: 0 1em 1em 1em;
  }

  #banner h2 {
    font-size: 2.2em;
  }

  #banner p {
    font-size: 1em;
    line-height: 35px;
    padding: 0;
  }

  #banner .button {
    margin-top: 1em;
  }

}

/* Mobile */

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

  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }

  h2 {
    font-size: 1.75em;
    line-height: 1.35em;
    letter-spacing: -0.025em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1em;
  }

  /* ul list */

  ul.list li {
    width: 50%;
  }

  /* Section/Article */

  header.major {
    padding: 1em;
  }

  header.major h2,
  header.major p {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  /* Box */

  .box {
    margin: 1em;
    overflow-x: hidden;
    padding: 1.75em 2em !important;
  }

  .box.features .features-row {
    border-top: 0;
    padding: 0;
  }

  .box.features .features-row section {
    border: 0;
    border-top: solid 1px #e5e5e5 !important;
    float: none;
    margin: 2em 0 0 0 !important;
    padding: 2em 0 0 0 !important;
    width: 100%;
  }

  .box.features .features-row:first-child section:first-child {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .box .image.featured {
    margin-left: -2em;
    width: calc(100% + 4em);
  }

  .box .image.featured:first-child {
    margin-bottom: 2em;
    margin-top: -2em;
  }

  .box .image.featured:last-child {
    margin-bottom: -2em;
    margin-top: 2em;
  }

  /* Main */

  #main {
    padding: 6em 1em 2em 1em;
  }

  .container.nopadding {
    padding: 2em 1em 2em 1em !important;
  }

  #main>header {
    margin: 0 2em 1.5em 2em;
  }

  #main>header h2 {
    font-size: 2em;
  }

  #main>header p {
    width: auto;
    font-size: 1.1em;
    line-height: 30px;
    padding-bottom: 0;
  }

  /* Footer */

  #footer {
    padding: 0;
  }

  #footer .copyright li {
    border-left: 0;
    display: block;
    line-height: 2em;
    margin-left: 0;
    padding-left: 0;
  }

}

/* Mobile (Portrait) */

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

  /* Basic */

  html,
  body {
    min-width: 320px;
  }

  body,
  input,
  select,
  textarea {
    font-size: 11pt;
  }

  /* Section/Article */

  header.major {
    padding: 0;
  }

  /* List */

  ul.actions {
    margin: 0 0 2em 0;
  }

  ul.actions li {
    display: block;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }

  ul.actions li:first-child {
    padding-top: 0;
  }

  ul.actions li>* {
    width: 100%;
    margin: 0 !important;
  }

  ul.actions li>*.icon:before {
    margin-left: -2em;
  }

  ul.actions.small li {
    padding: 0.5em 0 0 0;
  }

  ul.actions.small li:first-child {
    padding-top: 0;
  }

  /* Box */

  .box {
    border-radius: 12px;
    margin: 1em 0 0 0;
    padding: 1.5em !important;
  }

  .box.features .features-row section {
    margin: 3em 0 0 0 !important;
    padding: 3em 0 0 0 !important;
  }

  .box .image.featured {
    border-radius: 0;
    margin-left: -1em;
    width: calc(100% + 2em);
  }

  .box .image.featured img {
    border-radius: 0 !important;
  }

  .box .image.featured:first-child {
    margin-bottom: 2em;
    margin-top: -2em;
  }

  .box .image.featured:last-child {
    margin-bottom: -2em;
    margin-top: 2em;
  }

  /* Main */

  #main>.box:first-child {
    margin-top: 0;
  }

  /* CTA */

  #cta {
    padding: 2.5em 4em 3em 4em;
    margin-bottom: -2em;
  }

  #cta h2 {
    font-size: 1.8em;
  }

  #cta p {
    display: none;
  }

  #cta a {
    font-size: 1.2em;
  }

}
