* {
  font-family: 'Roboto', sans-serif;
}
.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
}
.fx-col-03 {
  width: 25%;
}
.fx-col-04 {
  width: 32%;
}
.fx-col-06 {
  width: 49%;
}
.fx-col-08 {
  width: 67%;
}
.fx-col-09 {
  width: 73%;
}
.fx-col-12 {
  width: 100%;
}
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;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  padding: 10px 20px;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}
strong {
  font-weight: 700;
}
q:before,
q:after {
  content: '';
  content: none;
}
input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
}
button,
textarea {
  border: 1px solid #ededed;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow-x: hidden;
}
h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
h2 {
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
}
h3 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
}
h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
em {
  font-style: italic;
}
a {
  text-decoration: none;
  color: #222;
}
* {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 10px;
  margin: 0px auto;
  color: #231f20;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.left {
  float: left;
}
.right {
  float: right;
}
.btn {
  display: inline-block;
  padding: 10px 30px;
  background: none;
  color: #231f20;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn:hover {
  opacity: 0.75;
}
.rwd-toggle {
  width: 32px;
  height: 27px;
  display: inline-block;
  position: relative;
  background: none;
  top: 0px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.rwd-toggle span {
  width: 100%;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  height: 2px;
  background: #222;
  top: -4px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.rwd-toggle span:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  top: -12px;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.rwd-toggle span:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.rwd-toggle.active span {
  background: none;
}
.rwd-toggle.active span:before {
  transform: rotate(45deg);
  top: 0;
}
.rwd-toggle.active span:after {
  transform: rotate(-45deg);
  top: 0;
}
/* HEADER */
header {
  position: relative;
  z-index: 10000;
  background: #fff;
}
header .container {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
header .logo {
  margin: 0;
}
header .logo img {
  max-width: 256px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
header .container .main-menu {
  display: block;
  width: 100%;
  max-width: 320px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 66px;
  padding: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
header .container .main-menu:before {
  display: none;
}
header .container .main-menu ul.menu {
  margin: 10px 0;
  display: none;
  padding: 0;
}
header .container .main-menu ul.menu li {
  display: block;
  text-align: center;
  padding: 0;
}
header .container .main-menu ul.menu li a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: #231f20;
}
header .container .main-menu ul.menu li a:after {
  display: none;
}
header .container .main-menu ul.menu li > ul {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  padding: 4px 0 10px 0;
  background: none;
}
header .container .main-menu ul.menu li > ul li {
  padding: 0;
}
header .container .main-menu ul.menu li > ul li a {
  font-size: 14px;
}
.scrolled.home,
.scrolled {
  padding-top: 80px;
}
.scrolled.home header,
.scrolled header {
  position: fixed;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0;
  z-index: 100;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.home header {
  position: absolute;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}
.home .content {
  margin: 0 auto;
}
/* CONTENT */
.page-boxhead {
  width: 100%;
  padding: 50px 0 10px;
  position: relative;
  z-index: 1;
  background-size: cover !important;
  background-repeat: no-repeat;
}
.page-boxhead h1 {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
}
.page-boxhead .metainfo {
  position: relative;
  z-index: 3;
}
.page-boxhead .metainfo p {
  color: #333;
}
.content {
  margin: 20px auto 50px auto;
}
.boxhead {
  padding: 32px 0;
}
.boxhead h1 {
  font-size: 30px;
  line-height: 32px;
}
.innerbox {
  padding: 20px 0;
  margin-bottom: 40px;
}
/* FOOTER */
footer {
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 10;
}
footer .footer-top {
  overflow: hidden;
  clear: both;
  padding: 30px 0 10px;
  margin-top: 40px;
  background: #ededed;
}
footer .footer-top .container {
  color: #231f20;
}
footer .footer-bottom {
  clear: both;
  padding: 10px 0 40px;
  background: #ededed;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
}
footer .footer-bottom .container {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  color: #231f20;
}
footer .footer-bottom .container .col {
  margin-bottom: 15px;
  padding: 10px 0px;
  font-size: 16px;
  line-height: px;
  font-weight: 400;
  color: #231f20;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
footer .footer-bottom .container .col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer .footer-bottom p,
footer .footer-bottom a {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #231f20;
  text-decoration: none;
  margin-bottom: 0px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.blog .item {
  margin-bottom: 40px;
}
.blog .item .img-wrap img {
  max-width: 280px;
  max-height: 200px;
  width: auto;
  height: auto;
}
.container.flex {
  justify-content: space-between;
}
.container .leftcol {
  width: 74%;
}
.container .rightcol {
  width: 24%;
}
.container img {
  max-width: 100%;
  height: auto;
}
.page-boxhead .metainfo {
  display: none;
}
.boxpost {
  margin: 50px auto;
}
.rightcol .box {
  margin-bottom: 40px;
}
.rightcol .box .title,
.rightcol .box h2 {
  margin-bottom: 20px;
  display: block;
  font-size: 22px;
  line-height: 25px;
}
.rightcol .box ul,
.rightcol .box ol {
  list-style: circle;
  padding: 0;
}
.rightcol .box ul li,
.rightcol .box ol li {
  display: block;
  margin-bottom: 10px;
  padding: 0;
}
.rightcol .box ul a,
.rightcol .box ol a {
  color: #231f20;
  font-size: 15px;
  line-height: 17px;
  font-weight: 700;
}
.rightcol .box ul a:hover,
.rightcol .box ol a:hover {
  color: #222;
}
.rightcol .box ul span,
.rightcol .box ol span {
  font-size: 12px;
  display: block;
}
.page-404 {
  max-width: 100%;
  padding: 50px 0;
}
.page-404 .box.boxpage .boxhead {
  text-align: center;
  margin-bottom: 40px;
}
.page-404 .box.boxpage .innerbox {
  text-align: center;
  padding-top: 0;
  margin: 0;
}
.page-404 .box.boxpage h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.page-404 .box.boxpage h1:after {
  content: "";
  font-size: 30px;
  display: block;
  margin: 30px auto;
  background: url(../img/link.svg) no-repeat;
  width: 100px;
  height: 100px;
}
.page-404 .box.boxpage .fa {
  font-size: 64px;
  margin: 48px;
}
#filter-btn {
  display: none;
}
/* MOBILE VIEW */
@media screen and (max-width: 980px) {
  .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 {
    font-size: 30px;
    line-height: 34px;
  }
  h2 {
    font-size: 26px;
    line-height: 26px;
  }
  h3 {
    font-size: 22px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .fx-col-03,
  .fx-col-04,
  .fx-col-06,
  .fx-col-08,
  .fx-col-09 {
    width: 100%;
  }
  header .container .main-menu {
    width: 100%;
    max-width: 100%;
    left: 0;
    top: 62px;
    padding: 0;
    z-index: -1;
  }
  header .container .main-menu ul li {
    margin: 0;
  }
  .container.flex {
    flex-wrap: wrap;
  }
  .container.flex .leftcol,
  .container.flex .rightcol {
    width: 100%;
  }
  .title-small h2 {
    font-size: 16px !important;
  }
  .title-big h2 {
    font-size: 32px !important;
  }
}
.elementor-widget-premium-addon-blog .premium-blog-wrap .slick-arrow {
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid #ededed;
}
.premium-banner-ib img {
  transform: scale(0.5) !important;
}
.premium-banner-ib:hover img {
  -webkit-filter: blur(32px) !important;
  filter: blur(32px) !important;
}
.elementor-element .premium-banner-ib-title {
  text-align: center !important;
  font-size: 18px;
  text-transform: uppercase;
}
.elementor-element .premium-banner-ib-content p {
  color: #231f20 !important;
}
.elementor-element .blue .premium-banner-ib-title {
  color: #0000be !important;
}
.elementor-element .pink .premium-banner-ib-title {
  color: #c3005a !important;
}
.elementor-element .orange .premium-banner-ib-title {
  color: #ff5000 !important;
}
