/* Basic */

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

html {
  box-sizing: border-box;
}

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

body {
  background-color: #fff;
  font-size: 13pt;
  color: #878585;
  line-height: 2.25em;
}

input,
select,
textarea {
  font-size: 13pt;
  color: #696969;
  line-height: 2.25em;
}

a {
  color: #468966;
  text-decoration: none;
  font-family: "Fira Sans", sans-serif;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

a:hover {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #468966;
  font-family: "Fira Sans", sans-serif;
  letter-spacing: 0;
}

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

p {
  line-height: 1.5;
  color: #262626;
}

h1 {
  font-size: 1.65em;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 0.8em 0;
}

h2 {
  font-size: 1.3em;
  margin: 0 0 0.4em 0;
  line-height: 1.2;
  font-weight: 500;
}

h3 {
  font-size: 1.25em;
  margin: 0;
  color: #f79300;
  margin: 0 0 0.1em 0;
  font-weight: 500;
}

h4 {
  font-size: 1.1em;
  margin: 0;
  color: #f79300;
  font-weight: 500;
  margin: 0 0 0.1em 0;
}

h5 {
  font-size: 1.2em;
  margin: 0;
  color: #515151;
  font-weight: bold;
  margin: 0 0 0.1em 0;
}

h6 {
  font-size: 1.1em;
  margin: 0;
  color: #515151;
  font-weight: bold;
  margin: 0 0 0.1em 0;
}

b,
strong {
  font-weight: 500;
  color: #468966;
}

i,
em {
  font-style: italic;
}

br.clear {
  clear: both;
}

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

ul {
  list-style: none;
  color: #262626;
}

ol {
  list-style-type: decimal;
  color: #262626;
  margin: 0 1em;
}

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

hr {
  border: 0;
  border-top: solid 1px #efefef;
}

blockquote {
  border-left: solid 0.5em #eee;
  padding: 1em 0 1em 2em;
  font-style: italic;
}

/* Scrollbar */
.scrollable-element {
  scrollbar-color: black;
}

/* Preloader */

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #efefef;
  z-index: 9999;
}

/* Circle loader */

.logo-loading {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 380px;
  height: 88px;
  transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
}

.logo-loading img {
  width: 100%;
  display: block;
}

#circle {
  display: block;
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 50px;
  width: 50px;
  border: 4px rgba(0, 0, 0, 0.25) solid;
  border-top: 3px solid #ffab40;
  border-bottom: 3px solid #438e6a;
  border-radius: 50%;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0) scale(0.6);
  }

  100% {
    -webkit-transform: rotate(360deg) scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0) scale(0.6);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes spin1 {
  0% {
    -moz-transform: rotate(0deg) scale(0.6);
    -o-transform: rotate(0deg) scale(0.6);
    -ms-transform: rotate(0deg) scale(0.6);
    transform: rotate(0deg) scale(0.6);
  }

  50% {
    -moz-transform: rotate(359deg) scale(1);
    -o-transform: rotate(359deg) scale(1);
    -ms-transform: rotate(359deg) scale(1);
    transform: rotate(359deg) scale(1);
  }

  100% {
    -moz-transform: rotate(0) scale(0.6);
    -o-transform: rotate(0) scale(0.6);
    -ms-transform: rotate(0) scale(0.6);
    transform: rotate(0) scale(0.6);
  }
}

@media screen and (max-width: 980px) {
  .logo-loading {
    width: 300px;
    height: 69px;
  }

  #circle {
    top: 50px;
    height: 45px;
    width: 45px;
  }
}

@media screen and (max-width: 736px) {
  .logo-loading {
    width: 250px;
    height: 59px;
  }

  #circle {
    top: 40px;
    height: 40px;
    width: 40px;
  }
}