/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0; }

.alignright {
  float: right;
  margin: 0 0 1em 1em; }

.alignleft {
  float: left;
  margin: 0 1em 1em 0; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  /* Image does not overflow the content area */
  padding: 5px 5px 10px;
  text-align: center; }
  .wp-caption img {
    width: auto;
    margin-bottom: 10px; }
  .wp-caption p {
    margin-bottom: 0;
    font-size: 14px; }

.gallery-caption {
  font-size: 12px; }

/* -----------------------------------------
   General fixes
----------------------------------------- */
html,
body {
  height: auto; }

html {
  min-height: 100%;
  position: relative; }

body {
  position: static; }

/* Inputs styling */
label {
  display: block;
  font-size: inherit; }

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0; }

textarea[rows] {
  /*Styles for TextArea*/
  height: 150px;
  max-width: 100%; }

[type=number] {
  -moz-appearance: textfield; }

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

[type=checkbox],
[type=file],
[type=radio] {
  margin-bottom: 0; }

button, .button, input[type='submit'], input[type='reset'] {
  border: none;
  padding: 10px 20px;
  margin-bottom: 0;
  background-color: #081f40;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }
  button:hover, button:focus, .button:hover, .button:focus, input[type='submit']:hover, input[type='submit']:focus, input[type='reset']:hover, input[type='reset']:focus {
    background-color: #f2c317; }

/* Button additional styles */
.button:hover, .button:focus {
  /*basic hover and focus effects*/ }

/* -----------------------------------------
   Typography
----------------------------------------- */
html body {
  color: #091f40;
  font-family: "Roboto", sans-serif; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: inherit; }
  h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
  .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
    margin-bottom: 0; }

body h1, body .h1 {
  /*basic heading styles*/
  font-size: 36px; }

body h2, body .h2 {
  /*basic heading styles*/
  font-size: 24px; }

body h3, body .h3 {
  /*basic heading styles*/
  font-size: 21px; }

body h4, body .h4 {
  /*basic heading styles*/ }

body h5, body .h5 {
  /*basic heading styles*/ }

body h6, body .h6 {
  /*basic heading styles*/ }

p {
  /*basic paragraph styles*/
  font-family: inherit; }
  p:last-child {
    margin-bottom: 0; }
  p:empty {
    display: none; }
  p a {
    text-decoration: underline; }

ul {
  /*basic list styles*/
  font-size: inherit;
  margin: 0; }
  ul li {
    /*basic list-item styles*/ }

a {
  color: #081f40;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out; }
  a:hover, a:focus {
    /*basic hover and focus effects*/
    color: black; }

/* ------------------------------------
    Basic Styles
------------------------------------- */
/* Preloader */
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  color: #f2c317;
  z-index: 100000000;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  -o-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease; }
  .preloader__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .preloader__icon:before {
      display: block;
      content: '\f1ce';
      font-size: 40px;
      font-weight: 900;
      font-family: "Font Awesome 5 Free";
      -webkit-animation: spin 1s ease-in-out infinite;
      -moz-animation: spin 1s ease-in-out infinite;
      animation: spin 1s ease-in-out infinite; }
  .preloader--hidden {
    opacity: 0;
    visibility: hidden; }

/* Clearfix */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "";
    display: table;
    height: 0;
    overflow: hidden; }
  .clearfix:after {
    clear: both; }

.bg-cover, .hero, .blog-slider .blog-slide, .callout-image, .post_image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

.bg-contain {
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

/*********************************
    Hero Section
**********************************/
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 600px;
  padding: 50px 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  position: relative;
  margin-bottom: 50px; }
  @media only screen and (max-width: 768px) {
    .hero {
      min-height: 500px; } }
  .hero:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 31, 64, 0.4); }
  .hero .row {
    position: relative;
    z-index: 1; }
  .hero_pre-title {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
    color: inherit;
    font-size: 60px;
    margin-bottom: 0;
    border-bottom: 5px solid #f2c317; }
    @media only screen and (max-width: 1024px) {
      .hero_pre-title {
        font-size: 48px; } }
    @media only screen and (max-width: 640px) {
      .hero_pre-title {
        font-size: 40px; } }
  .hero_title {
    font-weight: 500;
    font-family: inherit;
    line-height: 1.2;
    color: inherit;
    font-size: 80px; }
    @media only screen and (max-width: 1024px) {
      .hero_title {
        font-size: 64px; } }
    @media only screen and (max-width: 640px) {
      .hero_title {
        font-size: 50px; } }

/*********************************
    Blog Slider Section
**********************************/
.blog-slider {
  margin: 0 0 50px 0; }
  .blog-slider .blog-slide {
    background-color: #d5d4db;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative; }
    .blog-slider .blog-slide_content {
      background-color: rgba(8, 31, 64, 0.5);
      min-height: 400px;
      width: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #fff;
      padding: 45px 55px; }
      @media only screen and (max-width: 767px) {
        .blog-slider .blog-slide_content {
          width: 100%; } }
      @media only screen and (max-width: 640px) {
        .blog-slider .blog-slide_content {
          min-height: 360px; } }
      .blog-slider .blog-slide_content h3 {
        color: #fff;
        margin-bottom: 5px; }
      .blog-slider .blog-slide_content p {
        line-height: 1.4;
        margin-bottom: 6px; }
      .blog-slider .blog-slide_content .read-more {
        color: #fff; }
        .blog-slider .blog-slide_content .read-more:hover {
          color: #f2c317; }
  .blog-slider .slick-next {
    right: 20px; }
    .blog-slider .slick-next:hover:before {
      color: #f2c317; }
    .blog-slider .slick-next:before {
      font-family: 'Font Awesome 5 Free', 'Font Awesome';
      content: "\f105";
      font-weight: 700;
      color: #fff;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease; }
  .blog-slider .slick-prev {
    left: 20px; }
    .blog-slider .slick-prev:hover:before {
      color: #f2c317; }
    .blog-slider .slick-prev:before {
      font-family: 'Font Awesome 5 Free', 'Font Awesome';
      content: "\f104";
      font-weight: 700;
      color: #fff;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease; }
  .blog-slider .slick-dots {
    bottom: 15px; }
    .blog-slider .slick-dots li {
      margin: 0 4px; }
      .blog-slider .slick-dots li.slick-active button:before {
        background-color: #fff; }
      .blog-slider .slick-dots li button {
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 18px;
        height: 18px; }
        .blog-slider .slick-dots li button:hover:before {
          background-color: #fff; }
        .blog-slider .slick-dots li button:before {
          content: "";
          background-color: transparent;
          border-radius: 50%;
          width: 5px;
          height: 5px;
          line-height: 1;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

#main-content .blog-slider .blog-slide_content .read-more {
  color: #fff; }
  #main-content .blog-slider .blog-slide_content .read-more:hover {
    color: #f2c317; }

.category-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  color: #fff;
  padding: 12px; }

#main-content .read-more {
  font-size: 18px;
  color: #00a1df;
  line-height: 1; }
  #main-content .read-more:hover {
    color: #f2c317; }
  #main-content .read-more .icon {
    margin-left: 5px;
    margin-bottom: -5px;
    max-width: 20px; }

/*********************************
    Callout Image Section
**********************************/
.callout-image {
  padding-bottom: 30%; }
  @media only screen and (max-width: 768px) {
    .callout-image {
      padding-bottom: 50%; } }

/*********************************
    Single Post
**********************************/
.main-content .page-content {
  padding: 40px;
  color: #081f40;
  font-weight: 400; }
  @media only screen and (max-width: 768px) {
    .main-content .page-content {
      padding: 30px 0; } }
  .main-content .page-content p {
    line-height: 1.4;
    margin-bottom: 30px; }
    .main-content .page-content p:last-child {
      margin-bottom: 0; }
  .main-content .page-content ul {
    line-height: 1.4;
    margin-left: 20px;
    margin-bottom: 15px; }
    .main-content .page-content ul li {
      margin-bottom: 5px; }
  .main-content .page-content .page-title {
    margin-bottom: 30px; }

.main-content .thumbnail {
  position: relative; }

/*********************************
    Single Post Sidebar
**********************************/
.widget {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f2c317; }
  .widget:last-child {
    border-bottom: 0; }
  .widget .entry-meta .title {
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #081f40;
    margin: 0;
    display: inline-block;
    width: 105px; }
    @media only screen and (min-width: 640px) and (max-width: 1024px) {
      .widget .entry-meta .title {
        width: 65px;
        font-size: 18px; } }
  .widget .entry-meta .info {
    display: inline-block;
    font-size: 24px;
    color: #081f40; }
    @media only screen and (min-width: 640px) and (max-width: 1024px) {
      .widget .entry-meta .info {
        font-size: 18px; } }
    .widget .entry-meta .info a {
      color: #081f40; }
      .widget .entry-meta .info a:hover {
        color: #f2c317; }
    .widget .entry-meta .info p {
      color: #081f40;
      margin: 0; }
  .widget .entry-meta .social-share {
    margin: 0;
    list-style: none;
    padding: 0; }
    .widget .entry-meta .social-share li {
      display: inline-block;
      line-height: 1;
      margin-right: 15px; }
      .widget .entry-meta .social-share li:last-child {
        margin-right: 0; }
  .widget .trending-posts_container,
  .widget .similar-posts_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px; }
    .widget .trending-posts_container .thumbnail,
    .widget .similar-posts_container .thumbnail {
      margin-right: 20px; }
      .widget .trending-posts_container .thumbnail img,
      .widget .similar-posts_container .thumbnail img {
        max-width: 60px; }
      .widget .trending-posts_container .thumbnail a:hover,
      .widget .similar-posts_container .thumbnail a:hover {
        opacity: 0.8; }
    .widget .trending-posts_container .title h4,
    .widget .similar-posts_container .title h4 {
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #081f40;
      margin-bottom: 5px; }
      @media only screen and (min-width: 640px) and (max-width: 1024px) {
        .widget .trending-posts_container .title h4,
        .widget .similar-posts_container .title h4 {
          font-size: 14px; } }
      .widget .trending-posts_container .title h4:last-child,
      .widget .similar-posts_container .title h4:last-child {
        margin-bottom: 0; }
    .widget .trending-posts_container .title a,
    .widget .similar-posts_container .title a {
      color: #081f40; }
      .widget .trending-posts_container .title a:hover,
      .widget .similar-posts_container .title a:hover {
        color: #f2c317; }
  .widget .trending-posts_title,
  .widget .similar-posts_title {
    margin-bottom: 15px; }

/*********************************
    Latest Posts Section
**********************************/
.latest-posts {
  padding: 15px 0 30px; }
  .latest-posts .row {
    padding: 0 7px; }
    .latest-posts .row .column, .latest-posts .row .columns {
      padding-right: 8px;
      padding-left: 8px; }

/*********************************
    Parts Loop Blog Post
**********************************/
.post {
  padding: 15px 0; }
  .post_container {
    max-width: 360px;
    margin: 0 auto; }
  .post_image {
    background-color: #d5d4db;
    height: 135px;
    border-bottom: 7px solid #f2c317;
    position: relative;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }
    @media only screen and (max-width: 640px) {
      .post_image {
        height: 150px; } }
    .post_image:hover {
      opacity: 0.9;
      border-bottom-color: #081f40; }
  .post_title {
    color: #081f40;
    margin-bottom: 7px;
    line-height: 1.2; }
    .post_title a {
      color: inherit; }
      .post_title a:hover {
        color: #f2c317; }
  .post_content {
    padding: 20px; }
    @media only screen and (max-width: 768px) {
      .post_content {
        padding: 20px 5px; } }
    .post_content p {
      line-height: 1.3;
      margin-bottom: 6px; }

.single .post {
  padding: 0; }

/*********************************
    Filter Category Posts
**********************************/
.category-posts {
  padding: 25px 0; }
  .category-posts .row .column, .category-posts .row .columns {
    padding-right: 8px;
    padding-left: 8px; }
  .category-posts .category-filter {
    padding: 10px 0; }
    .category-posts .category-filter #postcat-filter {
      height: 50px; }
    .category-posts .category-filter .btn-filter {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: 22px;
      text-transform: uppercase;
      padding: 7px 15px;
      margin: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: 100%;
      cursor: pointer;
      position: relative; }
      @media only screen and (max-width: 640px) {
        .category-posts .category-filter .btn-filter {
          margin-top: 0;
          margin-bottom: 10px; } }
      .category-posts .category-filter .btn-filter .icon {
        width: 100%;
        max-width: 23px;
        margin-right: 10px;
        margin-bottom: -2px; }
    .category-posts .category-filter .search-filter {
      height: 50px;
      font-family: "Font Awesome 5 Free", "Barlow Condensed", sans-serif;
      font-weight: 500;
      font-size: 24px;
      color: #d5d4db;
      background-image: url("../images/search-icon.svg");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: 3% 50%;
      border: 2px solid #d5d4db;
      text-transform: uppercase;
      padding: 10px 15px 10px 50px;
      margin: 8px 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
      @media only screen and (max-width: 640px) {
        .category-posts .category-filter .search-filter {
          margin: 0; } }
  .category-posts .filter-posts {
    margin-bottom: 20px; }
    .category-posts .filter-posts #insert-filter-posts {
      position: relative;
      padding-bottom: 45px; }
      .category-posts .filter-posts #insert-filter-posts.loading .preloader {
        display: block; }
      .category-posts .filter-posts #insert-filter-posts .preloader {
        position: absolute;
        z-index: 99; }
        .category-posts .filter-posts #insert-filter-posts .preloader h2 {
          -webkit-transform: translate(50%, -50%);
          -moz-transform: translate(50%, -50%);
          -ms-transform: translate(50%, -50%);
          -o-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
          position: absolute;
          top: 50%;
          right: 50%; }
      .category-posts .filter-posts #insert-filter-posts .slick-dots li {
        margin: 0 4px; }
        .category-posts .filter-posts #insert-filter-posts .slick-dots li.slick-active button:before {
          background-color: #f2c317; }
        .category-posts .filter-posts #insert-filter-posts .slick-dots li button:before {
          width: 6px;
          height: 6px;
          background-color: #081f40; }
        .category-posts .filter-posts #insert-filter-posts .slick-dots li button:hover:before {
          background-color: #f2c317; }
    .category-posts .filter-posts .post_image {
      height: 110px; }
      @media only screen and (max-width: 640px) {
        .category-posts .filter-posts .post_image {
          height: 150px; } }
    .category-posts .filter-posts .post_content {
      background-color: #f2f2f2;
      padding: 20px 17px; }

.btn-filter {
  background-color: transparent; }
