@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Circular Std';
  src: url('../fonts/CircularStd-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

:root {
  --main-color: #6c6a6a;
  --heading-color: #bbbbbb;
  --paragraph-color: #666;
  --body-font: 'Circular Std';
  --secondary-font: 'Open Sans', sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: #bbbbbb;
  overflow-x: hidden;
  background: #000000;
  font-family: var(--body-font);
}

.grey-bg {
  background: #f9f9fa !important;
}

.white-bg {
  background: #fff !important;
}

.black-bg {
  background: #bbbbbb !important;
}

.main-bg {
  background: #6c6a6a !important;
}

.color-black {
  color: var(--heading-color) !important;
}

.color-main {
  color: var(--main-color) !important;
}

.color-white {
  color: #fff !important;
}

.color-red {
  color: #fa2727 !important;
}

.color-lgray {
  color: #d1d1d1 !important;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-regular {
  font-weight: 400;
}

.font-24 {
  font-size: 24px !important;
}

.section-padding {
  padding-top: 140px;
  padding-bottom: 140px;
}

[class^='flaticon-']:before,
[class*=' flaticon-']:before,
[class^='flaticon-']:after,
[class*=' flaticon-']:after {
  margin-left: 0px;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--body-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: #bbbbbb;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

/*input and button type focus outline disable*/
input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='number']:focus,
textarea:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.no-gutter > [class^='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter[class^='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.h-100vh {
  height: 100vh;
}

code {
  color: #faa603;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'fontawesome';
  content: '\f105';
  color: var(--main-color);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--main-color);
}

.comment-list li {
  list-style: none;
}

.h-100vh {
  height: 100vh;
}

.position-relative {
  position: relative;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex='-1']:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.padding-left-0 {
  padding-left: 0;
}

.padding-right-0 {
  padding-left: 0;
}

.gray-bg {
  background-color: #f8f8f8;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-33 {
  padding-top: 33px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-130 {
  padding-top: 130px;
}

.padding-top-135 {
  padding-top: 135px;
}

.padding-top-140 {
  padding-top: 140px;
}

.padding-top-145 {
  padding-top: 145px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-165 {
  padding-top: 165px;
}

.padding-top-162 {
  padding-top: 162px;
}

.padding-top-170 {
  padding-top: 170px;
}

.padding-top-175 {
  padding-top: 175px;
}

.padding-top-180 {
  padding-top: 180px;
}

.padding-top-185 {
  padding-top: 185px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-195 {
  padding-top: 195px;
}

.padding-top-200 {
  padding-top: 200px;
}

.padding-top-225 {
  padding-top: 225px;
}

.padding-top-230 {
  padding-top: 230px;
}

.padding-top-238 {
  padding-top: 238px;
}

.padding-top-240 {
  padding-top: 240px;
}

.padding-top-255 {
  padding-top: 255px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-58 {
  padding-bottom: 58px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-63 {
  padding-bottom: 63px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-140 {
  padding-bottom: 140px;
}

.padding-bottom-145 {
  padding-bottom: 145px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-175 {
  padding-bottom: 175px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-185 {
  padding-bottom: 185px;
}

.padding-bottom-190 {
  padding-bottom: 190px;
}

.padding-bottom-195 {
  padding-bottom: 195px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-lr-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px !important;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px !important;
}

.margin-top-55 {
  margin-top: 55px !important;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-75 {
  margin-top: 75px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-85 {
  margin-top: 85px !important;
}

.margin-top-90 {
  margin-top: 90px !important;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-top-105 {
  margin-top: 105px !important;
}

.margin-top-110 {
  margin-top: 110px !important;
}

.margin-top-115 {
  margin-top: 115px !important;
}

.margin-top-125 {
  margin-top: 125px !important;
}

.margin-top-120 {
  margin-top: 120px !important;
}

.margin-top-130 {
  margin-top: 130px !important;
}

.margin-top-135 {
  margin-top: 135px !important;
}

.margin-top-140 {
  margin-top: 140px !important;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-165 {
  margin-top: 165px !important;
}

.margin-top-170 {
  margin-top: 170px !important;
}

.margin-top-205 {
  margin-top: 205px !important;
}

.margin-top-200 {
  margin-top: 200px !important;
}

.margin-top-210 {
  margin-top: 210px !important;
}

.margin-top-215 {
  margin-top: 215px !important;
}

.margin-top-220 {
  margin-top: 220px !important;
}

.margin-top-225 {
  margin-top: 225px !important;
}

.margin-top-230 {
  margin-top: 230px !important;
}

.margin-top-270 {
  margin-top: 270px !important;
}

.margin-top-300 {
  margin-top: 300px !important;
}

.margin-xlt-80 {
  margin-top: 80px;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-bottom-6 {
  margin-bottom: 6px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-45 {
  margin-bottom: 45px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-65 {
  margin-bottom: 65px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-110 {
  margin-bottom: 110px;
}

.margin-bottom-115 {
  margin-bottom: 115px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-bottom-125 {
  margin-bottom: 125px !important;
}

.margin-bottom-140 {
  margin-bottom: 140px !important;
}

.margin-bottom-130 {
  margin-bottom: 130px !important;
}

.margin-bottom-135 {
  margin-bottom: 135px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-bottom-165 {
  margin-bottom: 165px;
}

.margin-bottom-180 {
  margin-bottom: 180px;
}

.margin-bottom-175 {
  margin-bottom: 175px;
}

.margin-bottom-200 {
  margin-bottom: 200px !important;
}

.margin-bottom-225 {
  margin-bottom: 225px !important;
}

.margin-bottom-230 {
  margin-bottom: 230px !important;
}

.min-height-600 {
  min-height: 600px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.pagination-area ul li {
  display: inline-block;
}

.pagination-area ul li + li {
  margin: 0 5px;
}

.pagination-area {
  display: block;
  width: 100%;
}

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

.pagination-area ul li a,
.pagination-area ul li span {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #bcbcbc;
  cursor: pointer;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #bcbcbc;
}

.pagination-area ul li span.current,
.pagination-area ul li span:hover {
  background-color: #6c6a6a;
  color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*='wp-image-'] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type='submit'] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.post-password-form input[type='submit']:hover {
  background-color: #121a2f;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

/*--------------------------------------------------------------
# Gutenberg Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content > .alignwide {
  max-width: 1100px;
}

.single-post-details-item .entry-content > .alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video > .wp-block-embed__wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote > p:first-child {
  margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
  border-left: 4px solid #000;
  padding-left: 1em;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}

.item-bounce {
  -webkit-animation: bounce 3s infinite ease-in-out;
  -o-animation: bounce 3s infinite ease-in-out;
  -ms-animation: bounce 3s infinite ease-in-out;
  -moz-animation: bounce 3s infinite ease-in-out;
  animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

.breadcrumb-area .breadcrumb-inner .page-title {
  color: #fff;
  font-family: var(--body-font);
  font-size: 55px;
  letter-spacing: 0;
  font-weight: 700;
}

.breadcrumb-area .breadcrumb-inner .page-list {
  margin: 0;
  padding: 0;
}
.breadcrumb-area .breadcrumb-inner .page-list li {
  list-style: none;
  float: left;
  margin-right: 10px;
}
.breadcrumb-area .breadcrumb-inner .page-list li a {
  color: #fff;
  font-size: 16px;
  font-family: var(--secondary-font);
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumb-area .breadcrumb-inner .page-list li a:hover {
  opacity: 1;
}

.breadcrumb-style-01 {
  padding: 150px 0px;
  background-position: center;
  background-size: cover;
}

.breadcrumb-style-02 {
  min-height: 500px;
  position: relative;
}
.breadcrumb-style-02::before {
  position: absolute;
  top: -6%;
  content: '';
  width: 300px;
  height: 300px;
  background: transparent;
  border-radius: 50%;
  border: 50px solid #ffc10757;
  left: 40%;
}
.breadcrumb-style-02::after {
  position: absolute;
  top: -16%;
  content: '';
  width: 400px;
  height: 400px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid rgba(62, 150, 101, 0.71);
  left: 37.3%;
  opacity: 0.5;
}
.breadcrumb-style-02 .breadcrumb-inner {
  min-height: 502px;
}
.breadcrumb-style-02 .next-event {
  position: absolute;
  bottom: 30px;
}
.breadcrumb-style-02 .next-event a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
  opacity: 0.5;
  font-weight: 400;
}
.breadcrumb-style-02 .breadcrumb-img {
  position: absolute;
  left: 44%;
  top: 20%;
}
.breadcrumb-style-02 .breadcrumb-img ul li {
  list-style: none;
}
.breadcrumb-style-02 .breadcrumb-img ul li:nth-child(1) img {
  top: 85px;
  position: absolute;
  left: 150%;
}
.breadcrumb-style-02 .breadcrumb-img ul li:nth-child(2) img {
  top: 57px;
  position: absolute;
  left: 240px;
}
.breadcrumb-style-02 .breadcrumb-img ul li:nth-child(3) img {
  top: 65px;
  position: absolute;
  left: 503px;
}
.breadcrumb-style-02 .breadcrumb-img ul li:nth-child(4) img {
  top: 260px;
  position: absolute;
  left: 240px;
}
.breadcrumb-style-02 .breadcrumb-img ul li:nth-child(5) img {
  top: 286px;
  position: absolute;
  left: 525px;
}
.breadcrumb-style-02 .breadcrumb-img ul li img {
  max-width: 500px;
  border-radius: 10px;
  z-index: 2;
}
.breadcrumb-style-02 .breadcrumb-icon {
  position: absolute;
  right: 500px;
  top: 246px;
}
.breadcrumb-style-02 .breadcrumb-icon i:before {
  color: #fff;
  font-size: 122px;
  opacity: 0.1;
}

.breadcrumb-style-03 {
  min-height: 500px;
  position: relative;
}
.breadcrumb-style-03 .breadcrumb-inner {
  padding-top: 205px;
  min-height: 500px;
}
.breadcrumb-style-03 .page-title {
  color: #bbbbbb !important;
}
.breadcrumb-style-03 .page-title span {
  color: #6c6a6a !important;
}
.breadcrumb-style-03 .page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.breadcrumb-style-03 .page-list li a {
  color: #bbbbbb !important;
}
.breadcrumb-style-03 .breadcrumb-icon {
  position: absolute;
  right: 42%;
  top: 28%;
  z-index: -1;
}
.breadcrumb-style-03 .breadcrumb-icon i:before {
  color: #fff;
  font-size: 122px;
  opacity: 0.1;
}

/*--------------------------------------------------------------
  ## WIdgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 50px;
}

.widget .widget-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: 0px;
  font-family: var(--body-font);
}

.widget:last-child {
  margin-bottom: 0px;
}

.widget.footer-widget {
  padding: 0;
  margin-bottom: 45px;
}

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

.widget ul li ul {
  margin-left: 20px;
}

.widget ul li {
  display: block;
  margin: 8px 0;
  word-break: break-word;
}

.widget ul li:first-child {
  margin-top: 0px;
}

.widget ul li:last-child {
  margin-bottom: 0px;
}

.widget ul li a {
  color: inherit;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.widget ul li a:hover {
  color: var(--main-color);
}

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
  color: rgba(255, 255, 255, 0.6);
}

.widget.footer-widget ul li a:hover {
  color: var(--main-color);
}
.widget.footer-widget .widget-title {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.footer-logo {
  margin-top: -15px;
  display: block;
}
.footer-logo img {
  margin-bottom: 40px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-area {
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 1;
}
.navbar-area .nav-container {
  background-color: transparent;
  max-width: 82%;
  padding: 22px 0px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.navbar-area .nav-container .logo a {
  font-family: var(--body-font);
  font-size: 33px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: #666;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #bbbbbb;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 20px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  font-size: 10px;
  font-weight: 100;
  right: 0;
  top: 50%;
  content: '\f067';
  font-family: 'fontawesome';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
  color: var(--main-color);
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children:hover
  > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 260px;
  margin: 0;
  padding: 0 15px;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 10px;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  + li {
  border-top: 1px solid #e2e2e2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 12px 0px;
  background-color: #fff;
  white-space: nowrap;
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a
  i {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: -18px;
  position: relative;
  color: #f12552;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a:hover {
  color: var(--main-color);
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  li
  a:hover
  i {
  opacity: 1;
  margin-right: 5px;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: '\f105';
  font-family: 'fontawesome';
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu {
  left: 100%;
  top: 20px;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children
  > .sub-menu
  .sub-menu
  .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children:hover
  > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area
  .nav-container
  .navbar-collapse
  .navbar-nav
  li.menu-item-has-children
  .sub-menu
  .menu-item-has-children:hover
  > .sub-menu
  li:hover:before {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav > li {
  padding-right: 10px;
  margin-right: 10px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav > li:hover {
  color: var(--main-color) !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav > li:hover > a {
  color: var(--main-color) !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav > li:hover:before {
  color: var(--main-color) !important;
}
.navbar-area.black-bg {
  background: var(--heading-color);
  position: relative;
}

.navbar-nav {
  opacity: 0;
  margin-right: -30px;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu-open {
  opacity: 1;
  margin-right: 0;
  visibility: visible;
}

.bar1 {
  width: 32px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 10px;
  right: -5px;
}

.bar2 {
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 17px;
  right: -5px;
}

.bar3 {
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 24px;
  right: -5px;
}

.responsive-mobile-menu button:focus {
  outline: none;
  border: none;
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
  }
  .navbar-area .nav-container .navbar-toggler {
    padding: 0px;
  }
  .navbar-area .nav-container .navbar-collapse {
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    margin-top: 15px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 100%;
    height: auto;
    position: absolute;
    top: 70px;
  }
  .navbar-area .nav-container .navbar-collapse.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid var(--heading-color);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area
    .nav-container
    .navbar-collapse
    .navbar-nav
    li.menu-item-has-children:hover
    > .sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: height 500ms;
    -moz-transition: height 500ms;
    -o-transition: height 500ms;
    transition: height 500ms;
    border-radius: 10px;
  }
  .navbar-area
    .nav-container
    .navbar-collapse
    .navbar-nav
    li.menu-item-has-children
    .sub-menu
    .sub-menu
    .menu-item-has-children:before {
    content: '\f107';
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area
    .nav-container
    .navbar-collapse
    .navbar-nav
    li.menu-item-has-children
    .sub-menu
    li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }
  .navbar-area
    .nav-container
    .navbar-collapse
    .navbar-nav
    li.menu-item-has-children
    .sub-menu
    li
    + li {
    border-top: none;
  }
}

@media only screen and (max-width: 1500px) {
  .navbar-nav {
    text-align: center !important;
  }
}

.nav-right-part ul {
  padding: 0;
  margin: 0;
}
.nav-right-part ul li {
  list-style: none;
  float: left;
  line-height: 1.1;
  margin-right: 25px;
}
.nav-right-part ul li:last-child {
  margin-right: 0px;
}
.nav-right-part ul li.search {
  position: relative;
  padding: 10px 0px 10px 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.nav-right-part ul li.search a {
  font-size: 20px;
  color: #6c6a6a;
}
.nav-right-part ul li.heart {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-right-part ul li.heart:hover {
  background: #f12552;
}
.nav-right-part ul li.heart:hover i {
  color: #fff;
}
.nav-right-part ul li.heart i {
  color: #f12552;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-right-part ul li.menubar a i:before {
  font-size: 40px;
}
.nav-right-part ul li.menubar:hover a i {
  color: #fff;
  cursor: pointer;
}

.nav-style-02 .nav-container .navbar-collapse .navbar-nav li a {
  color: #fff;
}

.nav-style-02 .nav-container .navbar-collapse .navbar-nav > li:hover > a,
.nav-style-02 .nav-container .navbar-collapse .navbar-nav > li:hover:before {
  color: #fff !important;
  opacity: 0.8;
}

.nav-style-02 .nav-right-part ul li.search a {
  color: #fff;
}

.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: #fff !important;
}

.nav-style-02 .nav-right-part li {
  position: relative;
  top: 3px;
}
.nav-style-02 .nav-right-part li a {
  color: #fff;
}

.nav-style-01 .nav-right-part ul li.search {
  padding: 18px 0px 18px 20px;
}

.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: #707077;
}

.nav-style-01 {
  background: #fff;
}

.black-nav .nav-right-part ul li.search a,
.black-nav .nav-right-part li a {
  color: #bbbbbb !important;
}

.black-nav .bar1,
.black-nav .bar2,
.black-nav .bar3 {
  background: #bbbbbb;
}

@media only screen and (min-width: 992px) {
  .black-nav .navbar-collapse .navbar-nav li a {
    color: #bbbbbb !important;
  }
  .black-nav .nav-container .navbar-collapse .navbar-nav > li:hover > a,
  .black-nav .nav-container .navbar-collapse .navbar-nav > li:hover:before {
    color: #bbbbbb !important;
  }
  .black-nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: #bbbbbb !important;
  }
  .black-nav .nav-right-part ul li.menubar:hover a i {
    color: #bbbbbb;
  }
  .navbar-area-fixed .nav-container {
    padding: 10px 0px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
}

.nav-style-01.navbar-area-fixed {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

.nav-style-01 .menubar {
  margin-top: 7px;
}

.nav-style-02 .menubar {
  top: 0px !important;
}

.nav-style-02.navbar-area-fixed {
  background: #6c6a6a;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(228, 226, 234, 0.06);
  box-shadow: 0px 4px 6px 0px rgba(228, 226, 234, 0.06);
}

.banner-bg-1 {
  background: url(../img/bg_blocks.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: background 0.4s ease-in;
  transition: background 0.4s ease-in;
}

.banner-style-3 {
  position: relative;
  height: 100vh;
  min-height: 700px;
}
.banner-style-3::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 25, 25, 0.5);
}
.banner-style-3 .title {
  font-size: 80px;
  color: #fff;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 20px;
}
.banner-style-3 .description {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
  font-family: var(--secondary-font);
}

.swiper-slider .news-item-style-03 {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.hover-style-01 {
  position: relative;
}
.hover-style-01:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 3px;
  background: #6c6a6a;
  top: 0px;
  left: 0;
  width: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}
.hover-style-01:hover:before {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.brand-area {
  background: #fff;
  z-index: 999;
}

.brant-item {
  width: 20%;
  float: left;
  margin: 50px 0px;
  text-align: center;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.brant-item img {
  max-width: 116px;
  max-height: 92px;
}

.grey-bg .brant-item {
  margin: 70px 0px !important;
}

.politx-content-area {
  position: relative;
}
.politx-content-area .org-img {
  position: absolute;
  top: -100px;
  right: -20%;
}

.organization-content {
  background: rgba(38, 85, 59, 0.05);
  padding: 100px 38% 100px 80px;
}

.vote-area2 {
  background: #6c6a6a;
  position: relative;
}

.footer-area {
  background: #bbbbbb;
}
.footer-area .footer-top .widget.widget_nav_menu ul li a {
  color: #fff !important;
  font-size: 16px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  -webkit-transition: padding 0.5s;
  -o-transition: padding 0.5s;
  transition: padding 0.5s;
  font-family: var(--secondary-font);
}
@media only screen and (max-width: 1400px) {
  .footer-area .footer-top .widget.widget_nav_menu ul li a {
    padding: 0px 10px;
  }
}
.footer-area .footer-top .widget.widget_nav_menu ul li a:after {
  display: none;
}
.footer-area .footer-top .widget.widget_nav_menu ul li a:hover {
  font-weight: 600;
}
.footer-area .footer-top .widget.widget_nav_menu ul li a:hover i {
  opacity: 1;
  margin-right: 5px;
}
.footer-area .footer-top .widget.widget_nav_menu ul li a i {
  font-size: 12px;
  position: relative;
  top: -2px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: -15px;
}
.footer-area .copyright-area-inner {
  font-size: 15px;
  padding: 20px 0px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: #fff;
  background: #113d87;
  text-align: center;
}
.footer-area .copyright-area-inner a {
  font-weight: 600;
}
.footer-area .copyright-area-inner i {
  color: #f12552;
}

.footer-style-2 .footer-logo img {
  margin-top: 0px;
}

.footer-bg {
  background: url(../img/bg/footer.png);
  background-position: 50% 15%;
}

.contact-widget {
  background-color: white;
  padding: 80px 30px 65px 30px !important;
  -webkit-box-shadow: 0px 25px 80px #0000001f;
  box-shadow: 0px 25px 80px #0000001f;
  margin-top: -45px;
  margin-bottom: 45px;
}
.contact-widget p {
  color: #fff !important;
  font-size: 16px;
  letter-spacing: 0px;
  font-family: var(--secondary-font);
}
.contact-widget .contact_info_list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 45px;
}
.contact-widget .contact_info_list li {
  display: block;
}
.contact-widget .contact_info_list li.single-info-item {
  position: relative;
  margin-bottom: 15px;
}
.contact-widget .contact_info_list li.single-info-item .icon {
  position: absolute;
  left: 0;
  top: 0px;
  color: #fff;
}
.contact-widget .contact_info_list li.single-info-item .details {
  padding-left: 30px;
  color: #fff;
  font-size: 16px;
  font-family: var(--secondary-font);
}

.margin-lg-top-80 {
  margin-top: 80px;
}

.party-box-wrapper {
  border: 2px solid #6c6a6a;
  box-shadow: 3px 0px 10px 10px #6c6a6a;
  padding: 75px 100px 65px 100px;
  background: #6c6a6a;
}

.party-box-content h4 {
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
}

.party-box-content p {
  font-size: 16px;
  font-family: var(--secondary-font);
  color: #666;
  line-height: 30px;
  margin-top: 15px;
}

.journey-box-area {
  background: url(../img/about-shape.png);
  background-repeat: no-repeat;
}

.journey-box-wrapper {
  position: relative;
  min-height: 700px;
}

.journey-box-item {
  max-width: 300px;
  max-height: 300px;
  position: absolute;
}
.journey-box-item:nth-child(1) {
  top: 290px;
}
.journey-box-item:nth-child(2) {
  top: 270px;
  left: 40%;
}
.journey-box-item:nth-child(3) {
  top: -65px;
  right: 0;
}
.journey-box-item:nth-child(4) {
  top: 475px;
  right: 0;
  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-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.journey-box-item h4 {
  font-size: 30px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.journey-box-item p {
  font-size: 16px;
  letter-spacing: 0;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
}
.journey-box-item:hover .jb-icon {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(187, 187, 187, 0.1);
  border-radius: 5px;
}
.journey-box-item .jb-icon {
  width: 80px;
  height: 80px;
  margin: 30px 0px;
  -webkit-box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid transparent;
  text-align: center;
  background: #fff;
  z-index: 4;
}
.journey-box-item .jb-icon i:before {
  font-size: 40px;
  margin-left: 5px;
  line-height: 80px;
  color: #6c6a6a;
}

.about-banner {
  position: relative;
  margin-bottom: 50px;
}
.about-banner .img-wrapper {
  position: absolute;
  top: -260px;
  left: 33%;
}
.about-banner .img-wrapper img {
  max-width: 60%;
}

.event-box-area {
  position: relative;
}
.event-box-area .img-wrapper {
  position: absolute;
}
.event-box-area .img-wrapper img {
  border-radius: 10px;
}

.event-box-content {
  background: rgba(38, 85, 59, 0.04);
  border-radius: 10px;
  width: 80%;
  margin-left: 20%;
  margin-top: 180px;
  padding-left: 28%;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-right: 20px;
  position: relative;
}
.event-box-content .btn-wrapper {
  margin-top: 35px;
}
.event-box-content .date-box {
  width: 120px !important;
  height: 100px;
  background: #fff;
  position: absolute;
  -webkit-box-shadow: 0px 15px 20px rgba(187, 187, 187, 0.2);
  box-shadow: 0px 15px 20px rgba(187, 187, 187, 0.2);
  top: -60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
}
.event-box-content .date-box:before {
  position: absolute;
  content: '';
  width: 78px;
  height: 20px;
  background: rgba(187, 187, 187, 0.149);
  bottom: -8px;
  border-radius: 5px;
  left: 7px;
  z-index: -1;
}
.event-box-content h4 {
  font-size: 30px;
  margin-bottom: 25px;
}
.event-box-content ul {
  margin: 0;
  padding: 0;
}
.event-box-content ul li {
  list-style: none;
  margin: 20px 0px;
}
.event-box-content ul li a {
  font-family: var(--secondary-font);
}
.event-box-content ul li a i {
  color: #6c6a6a;
  width: 20px;
}

.upcoming-box {
  border: 2px solid #f5f5f5;
  position: relative;
  min-height: 300px;
  margin-bottom: 120px;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  background: #f6f6f6;
}
.upcoming-box:hover {
  -webkit-box-shadow: 0px 10px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 10px 50px rgba(187, 187, 187, 0.149);
  border-color: transparent;
  background: #fff;
}
.upcoming-box:hover .ub-content h4 {
  color: #179b5b;
}
.upcoming-box .ub-image {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 90%;
  right: 5%;
}
.upcoming-box .ub-image img {
  width: 100%;
  height: 252px;
  border-radius: 10px;
}
.upcoming-box .ub-content {
  padding-top: 200px;
  padding-left: 25px;
  padding-bottom: 20px;
}
.upcoming-box .ub-content h4 {
  font-size: 30px;
  color: #04572f;
  padding-right: 20px;
  margin-bottom: 15px;
}
.upcoming-box .ub-content p {
  font-size: 16px;
  color: #000000;
}
.upcoming-box .ub-content .btn-wrapper {
  color: #179b5b;
}
.upcoming-box .date-box {
  width: 110px !important;
  height: 100px;
  background: #fff;
  position: absolute;
  -webkit-box-shadow: 0px 15px 13px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 15px 13px rgba(187, 187, 187, 0.1);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  right: 10px;
  top: 68px;
  border-radius: 10px;
}
.upcoming-box .date-box:before {
  position: absolute;
  content: '';
  width: 78px;
  height: 20px;
  background: rgba(187, 187, 187, 0.149);
  bottom: -8px;
  border-radius: 5px;
  left: 7px;
  z-index: -1;
}
.upcoming-box .date-box .month {
  font-size: 20px;
  font-weight: lighter;
  color: #6c6a6a;
  padding-top: 5px;
}
.upcoming-box .date-box .year {
  font-size: 25px;
  font-weight: 500;
  color: #6c6a6a;
}

.ub-content .btn-wrapper {
  padding: 15px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .upcoming-box .ub-image {
    position: absolute;
    top: -100px;
    left: 2%;
    width: 96%;
    right: 2%;
  }
  .upcoming-box .ub-content h4 {
    font-size: 25px;
    color: #bbbbbb;
    margin: 15px 0px;
  }
  .upcoming-box .date-box {
    right: 6px;
    top: 130px !important;
    border-radius: 10px;
  }
}

.up-content-style-01 {
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  padding: 30px 20px;
  border-bottom: 5px solid #f12552;
  margin-top: 50px;
  margin-left: -85px;
  background: #fff;
}
.up-content-style-01 .date-month {
  position: relative;
}
.up-content-style-01 .date-month:before {
  position: absolute;
  width: 120px;
  height: 1px;
  background: #6c6a6a;
  content: '';
  top: 38px;
  left: 85px;
}
.up-content-style-01 .date-month .date {
  font-size: 55px;
  color: #6c6a6a;
  font-weight: 500;
}
.up-content-style-01 .date-month .month {
  font-size: 18px;
  text-transform: uppercase;
  color: #6c6a6a;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.up-content-style-01 h6 {
  font-size: 24px;
  color: #bbbbbb;
  font-weight: 500;
}
.up-content-style-01 ul {
  margin: 0;
  padding: 0;
}
.up-content-style-01 ul li {
  list-style: none;
  margin: 20px 0px;
}
.up-content-style-01 ul li a {
  font-family: var(--secondary-font);
  color: #666;
}
.up-content-style-01 ul li a i {
  color: #6c6a6a;
}
.up-content-style-01 .btn-wrapper {
  margin-top: 50px;
}
.up-content-style-01 .btn-wrapper:hover a {
  color: #6c6a6a;
}

.leadership-content h2 {
  font-size: 55px;
  color: #ffffff;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 30px;
}

.leadership-content p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 30px;
  font-family: var(--secondary-font);
}
.ls-date-box {
  -webkit-box-shadow: 0px 20px 50px #2e319211;
  box-shadow: 0px 20px 50px #2e319211;
  background: #fff;
  padding: 60px 0px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 50px;
}
.ls-date-box:before {
  position: absolute;
  bottom: -30px;
  content: '';
  width: 80%;
  left: 10%;
  background: #fff;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
  -webkit-box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
  box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
}
.ls-date-box p {
  margin-bottom: 30px;
  font-family: var(--secondary-font);
}
.ls-date-box hr {
  margin: 40px 20px;
}
.ls-date-box a {
  text-decoration: underline;
}

.ls-social-share {
  padding: 30px;
}
.ls-social-share ul {
  margin: 0;
  padding: 0;
}
.ls-social-share ul li {
  list-style: none;
  float: left;
}
.ls-social-share ul li span {
  font-weight: 700;
  padding-right: 10px;
  font-size: 18px;
}
.ls-social-share ul li i {
  width: 30px;
  height: 30px;
  background: rgba(4, 51, 129, 0.1);
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0px 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.ls-social-share ul li i:hover {
  background: #043381;
  color: #fff;
}

.up-event-area {
  position: relative;
}
.up-event-area .up-img {
  position: absolute;
  top: -100px;
  right: -20%;
}
.up-event-area .up-img img {
  max-width: 90%;
}

.up-thumb,
.ab-thumb {
  text-align: right;
}

.error-content-area {
  position: relative;
  min-height: 700px;
}
.error-content-area:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(187, 187, 187, 0.7);
  content: '';
}

.error-content {
  z-index: 9;
}
.error-content h2 {
  color: #fff;
  font-size: 329px;
  font-weight: 900;
  line-height: 300px;
}
.error-content h6 {
  font-size: 30px;
  color: #fff;
  line-height: 55px;
}
.error-content a {
  text-decoration: underline;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.error-content a:hover {
  opacity: 0.5;
}

.support-area {
  padding-top: 115px;
  padding-bottom: 105px;
}

.donate-area .btn {
  margin-top: 15px;
}

.donate-ul {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.donate-ul li {
  float: left;
  list-style: none;
  border: 2px solid #f5f5f5;
  padding: 10px 36px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 24px;
  color: #919191;
  cursor: pointer;
}
.donate-ul li:hover,
.donate-ul li.active {
  background: #6c6a6a;
  color: #fff;
}
.donate-ul li:last-child {
  padding: 0px;
  background: transparent;
}
.donate-ul li:last-child input {
  padding: 9px 0px;
  width: 190px;
  padding-left: 36px;
  font-size: 24px;
  border: 0;
  color: #6c6a6a;
  border-color: #f5f5f5;
}
.donate-ul li:last-child input:focus,
.donate-ul li:last-child input:hover {
  border: 0;
}
.donate-ul li:last-child ::-webkit-input-placeholder {
  color: #6c6a6a;
}
.donate-ul li:last-child :-ms-input-placeholder {
  color: #6c6a6a;
}
.donate-ul li:last-child ::-ms-input-placeholder {
  color: #6c6a6a;
}
.donate-ul li:last-child ::placeholder {
  color: #6c6a6a;
}
.donate-ul li:last-child:hover {
  background: transparent;
}

.donate-wrapper {
  position: absolute;
  right: -70px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background: #fff;
  -webkit-box-shadow: 0px 0px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 0px 50px rgba(187, 187, 187, 0.149);
  padding: 15px 30px;
  border-right: 2px solid #f12552;
  margin-top: 75px;
}
.donate-wrapper a {
  font-size: 20px;
  color: #6c6a6a;
  margin-bottom: 0px;
}
.donate-wrapper a i {
  color: #f12552;
  font-size: 16px;
}

.location-area {
  padding-top: 115px;
  padding-bottom: 20px;
}

.location-content p {
  font-family: var(--secondary-font);
  color: #666;
  line-height: 35px;
  margin-bottom: 50px;
}

.wealfer-area {
  background: url(../img/wealfer.png);
  background-position: top right;
  background-repeat: no-repeat;
  min-height: 700px;
  position: relative;
  background-color: #f6f6f6;
}

.wealfare-box {
  -webkit-box-shadow: 0px 20px 80px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 80px rgba(187, 187, 187, 0.149);
  background: #fff;
  left: -100px;
  text-align: center;
  padding: 40px 50px 60px 50px;
  border-radius: 26px;
  z-index: 4;
  position: relative;
}
.wealfare-box:before {
  position: absolute;
  height: calc(100% - 30px);
  width: 100%;
  content: '';
  background: rgba(255, 255, 255, 0.2);
  left: 30px;
  z-index: -1;
  border-radius: 26px;
  top: 0px;
}
.wealfare-box .wf-text1 {
  font-size: 24px;
  color: #6c6a6a;
}
.wealfare-box .wf-text2 {
  font-size: 24px;
  color: #727781;
}

.candidate-area {
  padding-top: 120px;
  padding-bottom: 120px;
}
.candidate-area .slick-prev,
.candidate-area .slick-next {
  background: rgba(187, 187, 187, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.candidate-area .slick-prev:hover,
.candidate-area .slick-next:hover {
  background: #6c6a6a;
}
.candidate-area .slick-prev {
  right: 70px;
  left: auto;
  bottom: -80px;
  top: auto;
  z-index: 9;
}
.candidate-area .slick-prev:before {
  content: '\f104';
  font-family: 'fontawesome';
}
.candidate-area .slick-prev:after {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: #6c6a6a;
  -webkit-transform: rotate(-65deg);
  -ms-transform: rotate(-65deg);
  transform: rotate(-65deg);
  top: 60px;
  left: 5px;
}
.candidate-area .slick-next {
  right: 0px;
  left: auto;
  bottom: -145px;
  top: auto;
}
.candidate-area .slick-next:before {
  content: '\f105';
  font-family: 'fontawesome';
}

/*##################################*/
.countdown {
  height: 100%;
  /* Reset */
  /* Skeleton */
  /* Colon Seperator - IE */
  /* Colon Seperator */
}
.countdown * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.countdown .countdownFix {
  z-index: 3 !important;
}
.countdown .clockFix {
  z-index: 1 !important;
}
.countdown li span .inn {
  /*backface-visibility*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.countdown ul {
  list-style: none;
}
.countdown li {
  line-height: 87px;
}
.countdown ul.flip {
  position: relative;
  float: left;
  height: 100%;
  width: 50px !important;
  font-size: 50px;
  font-weight: bold;
}
@media only screen and (max-width: 540px) {
  .countdown ul.flip {
    width: 25px !important;
    font-size: 29px !important;
    height: 83% !important;
  }
  .countdown ul.flip li {
    line-height: 37px !important;
  }
  .countdown ul.flip:nth-child(2n + 2):not(:last-child):after {
    top: -24% !important;
  }
}
@media only screen and (max-width: 440px) {
  .countdown ul.flip {
    width: 22px !important;
    font-size: 23px !important;
    height: 66% !important;
  }
  .countdown ul.flip li {
    line-height: 30px !important;
  }
  .countdown ul.flip:nth-child(2n + 2):not(:last-child):after {
    font-size: 28px !important;
  }
}
.countdown ul.nth-child-2np2-notlast:after,
.countdown ul.flip:nth-child(2n + 2):not(:last-child):after {
  position: absolute;
  top: 20%;
  right: -13px;
  display: block;
  color: #fff;
  font-size: 46px;
}
.countdown ul.nth-child-2np2-notlast {
  margin-right: 14px;
}
.countdown ul.flip:nth-child(2n + 2) {
  margin-right: 12px;
}
.countdown ul.flip li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 60px;
}
.countdown ul.flip li span {
  display: block;
  height: 100%;
  /*perspective*/
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  -ms-perspective: 200px;
  -o-perspective: 200px;
  perspective: 200px;
}
.countdown ul.flip li span div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.countdown ul.flip li span div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.countdown ul.flip li span div.up {
  /*transform-origin*/
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}
.countdown ul.flip li span div.up:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #9aa3b1;
}
.countdown ul.flip li span div.down {
  /*transform-origin*/
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  bottom: 0;
}
.countdown ul.flip li span div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #fff;
  text-align: center;
  background-color: #ccc;
}
.countdown ul.flip li span div.up div.inn {
  top: 0;
}
.countdown ul.flip li span div.down div.inn {
  bottom: 0;
}

.countdown ul.flip li span div.up:after {
  display: none;
}

.countdown ul.flip.seconds li span div.up:after {
  display: block;
}

/* PLAY */
.play ul li.previous {
  z-index: 2;
}

.play ul li.current {
  /*animation*/
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  -ms-animation: asd 0.5s 0.5s linear both;
  -o-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 3;
}

@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  5% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}

@-moz-keyframes asd {
  0% {
    z-index: 2;
  }
  5% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}

@-ms-keyframes asd {
  0% {
    z-index: 2;
  }
  5% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}

@-o-keyframes asd {
  0% {
    z-index: 2;
  }
  5% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}

@keyframes asd {
  0% {
    z-index: 2;
  }
  5% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}

.play ul li.current .down {
  z-index: 2;
  /*animation*/
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  -ms-animation: turn 0.5s 0.5s linear both;
  -o-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }
  100% {
    -moz-transform: rotateX(0deg);
  }
}

@-ms-keyframes turn {
  0% {
    -ms-transform: rotateX(90deg);
  }
  100% {
    -ms-transform: rotateX(0deg);
  }
}

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }
  100% {
    -o-transform: rotateX(0deg);
  }
}

@keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
}

.play ul li.previous .up {
  z-index: 2;
  /*animation*/
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  -ms-animation: turn2 0.5s linear both;
  -o-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }
  100% {
    -moz-transform: rotateX(-90deg);
  }
}

@-ms-keyframes turn2 {
  0% {
    -ms-transform: rotateX(0deg);
  }
  100% {
    -ms-transform: rotateX(-90deg);
  }
}

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }
  100% {
    -o-transform: rotateX(-90deg);
  }
}

@keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }
}

/* SHADOW */
.play ul li.previous .up .shadow {
  /*linear-gradient*/
  /*animation*/
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  -ms-animation: show 0.5s linear both;
  -o-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.play ul li.current .up .shadow {
  /*linear-gradient*/
  /*animation*/
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  -ms-animation: hide 0.5s 0.3s linear both;
  -o-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

/*DOWN*/
.play ul li.previous .down .shadow {
  /*linear-gradient*/
  /*animation*/
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  -ms-animation: show 0.5s linear both;
  -o-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.play ul li.current .down .shadow {
  /*linear-gradient*/
  /*animation*/
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  -ms-animation: hide 0.5s 0.3s linear both;
  -o-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.action-soon-content {
  position: relative;
  padding-left: 50px;
}
.action-soon-content:before {
  position: absolute;
  content: '';
  width: calc(100% - 35px);
  height: calc(100% - 20px);
  border: 2px solid #f5f5f5;
  top: 40px;
  left: 12px;
  z-index: -1;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.action-soon-content .act-img img {
  border-radius: 10px;
}
.action-soon-content .subtitle {
  font-size: 16px;
  color: #6c6a6a;
  letter-spacing: 0;
  margin-bottom: 0px;
  margin-top: 24px;
}
.action-soon-content .title {
  font-size: 24px;
  color: #bbbbbb;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.action-soon-content .readMore {
  font-size: 18px;
  color: #666;
}
.action-soon-content:hover .title,
.action-soon-content:hover .subtitle {
  color: #fff;
}
.action-soon-content:hover:before {
  background: #6c6a6a;
}
.action-soon-content:hover .btn-wrapper,
.action-soon-content:hover .readMore {
  color: #fff;
}

.choose-box {
  margin-top: 30px;
}
.choose-box .ch-icon i:before {
  font-size: 40px;
  color: #6c6a6a;
}
.choose-box h4 {
  margin-top: 15px;
}
.choose-box p {
  font-family: var(--secondary-font);
}

.choose-content .btn-wrapper {
  margin-top: 30px;
}
.choose-content .btn-wrapper:hover {
  color: #6c6a6a;
}
.choose-content .btn-wrapper a {
  text-decoration: underline;
  font-size: 18px;
}
.choose-content .btn-wrapper:hover a {
  color: #6c6a6a;
}

.movement-area {
  background: #6c6a6a;
  padding: 130px 0px;
  position: relative;
}
.movement-area:before {
  position: absolute;
  content: '';
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.1);
  right: -6%;
  top: 25%;
  border-radius: 50%;
}
.movement-area:after {
  position: absolute;
  content: '';
  width: 57px;
  height: 57px;
  background: rgba(255, 255, 255, 0.1);
  right: 14%;
  top: 71%;
  border-radius: 50%;
}

.movement-box ul {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.movement-box ul li {
  list-style: none;
  margin: 15px 0px;
}
.movement-box ul li a {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #fff;
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
}
.movement-box ul li a i {
  width: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.movement-left-box {
  text-align: right;
}
.movement-left-box img {
  border-radius: 15px;
  margin: 10px 0px;
}

.movement-right-box img {
  border-radius: 15px;
  margin: 10px 0px;
}

.log-content {
  margin-top: 50px;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  background: #fff;
  padding: 70px 60px;
  position: relative;
  border-radius: 10px;
}
.log-content h4 {
  font-size: 40.78px;
  letter-spacing: 0;
  color: #6c6a6a;
}
.log-content p {
  font-family: var(--secondary-font);
  font-size: 16px;
  color: #666;
  letter-spacing: 0;
}
.log-content ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.log-content ul li {
  width: 50px;
  height: 50px;
  letter-spacing: 0;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
  line-height: 50px;
  float: left;
  list-style: none;
  background: #6c6a6a;
  color: #fff;
  margin-right: 15px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 0px 5px 10px #0f3e6f1a;
  box-shadow: 0px 5px 10px #0f3e6f1a;
  cursor: pointer;
}
.log-content ul li:nth-child(1) {
  background: #fff;
  color: #6c6a6a;
}
.log-content ul li:nth-child(2) {
  background: #6c6a6a;
}
.log-content ul li:last-child {
  margin-right: 0px;
  background: #52abf1;
}
.log-content ul li:hover {
  background: #fff;
  color: #6c6a6a;
}

.goal-area {
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  padding: 50px;
  border-bottom-left-radius: 100px;
  background: #6c6a6a;
  position: relative;
  color: #fff;
}
.goal-area .goal-list {
  margin: 0;
  padding: 0;
}
.goal-area .goal-list li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.goal-area .goal-list li .icon {
  margin-right: 20px;
}
.goal-area .goal-list li .icon i:before {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
}
.goal-area .goal-list li .content .title {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
}
.goal-area .goal-list li .content p {
  font-family: var(--secondary-font);
  font-size: 16px;
  color: #fff;
}
.goal-area a {
  text-decoration: underline;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.mission-area {
  color: rgba(187, 187, 187, 0.05);
  font-size: 123px;
  font-weight: 700;
  top: 10%;
  position: absolute;
  right: -110px;
  z-index: -1;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.modal .modal-content {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal .modal-header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 0px;
  padding-top: 40px;
}

.modal .modal-body {
  padding: 10px 40px 45px 40px;
}

.modal .close {
  position: absolute;
  right: 0px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  opacity: 1;
  line-height: 15px;
  text-align: center;
  top: -3px;
  color: #6c6a6a;
}

.modal .modal-dialog {
  margin: 0 !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal .form-control {
  padding: 15px;
}

.modal button {
  background: #6c6a6a;
}

.testimonial-area {
  background: #6c6a6a;
}

.testimonial-slider {
  background: #fff;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  top: 45px;
}
.testimonial-slider:before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 35px;
  right: 35px;
  height: 200px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
  box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
  z-index: -1;
}
.testimonial-slider .thumb {
  min-width: 85px;
  min-height: 85px;
  position: absolute;
  margin-top: 50px;
}
.testimonial-slider .thumb img {
  border-radius: 50%;
}
.testimonial-slider .thumb:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.1);
  width: 130px;
  height: 130px;
  left: -23px;
  top: -23px;
  border-radius: 50%;
}
.testimonial-slider .content {
  padding-left: 100px;
  background: #fff;
}
.testimonial-slider .content h4 {
  font-family: var(--secondary-font);
  letter-spacing: 0px;
  font-size: 24px;
  color: #666;
  line-height: 35px;
}
.testimonial-slider .content .title {
  font-size: 24px;
  color: #bbbbbb;
  font-weight: 400;
  display: block;
  margin-top: 20px;
}
.testimonial-slider .content .address {
  font-family: var(--secondary-font);
}
.testimonial-slider .quote {
  position: absolute;
  left: 70%;
  bottom: 15px;
}

.stories-area {
  position: relative;
  background: #f6f6f6;
  padding-top: 120px;
  padding-bottom: 120px;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  color: var(--main-color);
  background-color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  z-index: 99;
  font-size: 30px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: none;
}
.back-to-top i {
  -webkit-animation: scrolltop 2s infinite;
  animation: scrolltop 2s infinite;
}

@-webkit-keyframes scrolltop {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  10% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  }
  to {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

@keyframes scrolltop {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
  10% {
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  }
  to {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  }
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.pre-wrap {
  position: fixed;
  content: '';
  -webkit-transform: translate(-100%, -240%);
  -ms-transform: translate(-100%, -240%);
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color);
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.54);
  z-index: 99999;
  content: '';
  left: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.8;
  left: 0;
}

.sidebar-menu {
  width: 0;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  z-index: 99999;
  padding: 100px 30px 30px 30px;
  overflow-y: auto;
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  opacity: 0;
  visibility: hidden;
}
.sidebar-menu .sidebar-inner {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-menu .sidebar-inner .sidemenu-text p {
  font-family: var(--secondary-font);
}
.sidebar-menu .sidebar-menu-close {
  background-color: #6c6a6a;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
}
.sidebar-menu .sidebar-menu-close i {
  font-size: 18px;
  color: #fff;
}
.sidebar-menu .sidebar-logo {
  margin-bottom: 23px;
}
.sidebar-menu .sidebar-contact {
  margin-top: 33px;
}
.sidebar-menu .sidebar-contact h4 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
}
.sidebar-menu .sidebar-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-menu .sidebar-contact ul li {
  font-size: 16px;
  line-height: 35px;
  color: #bbbbbb;
  font-family: var(--secondary-font);
}
.sidebar-menu .sidebar-contact ul li i {
  font-size: 16px;
  margin-right: 5px;
  width: 25px;
}

.sidebar-menu.active {
  width: 365px;
  opacity: 1;
  visibility: visible;
}

.sidebar-menu.active .sidebar-inner {
  top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-custom-default {
  border-radius: 5px;
  border: 1px solid #fff;
  font-family: var(--body-font);
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 33px;
  color: #fff;
  padding: 13px 35px;
}
.btn-custom-default:hover {
  border: 1px solid #fff;
  background: #fff;
}
.btn-custom-white {
  border-radius: 5px;
  border: 1px solid #fff;
  font-family: var(--body-font);
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 33px;
  color: #bbbbbb;
  padding: 13px 35px;
  background: #fff;
}
.btn-custom-white:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-custom-primary {
  color: rgba(187, 187, 187, 0.8);
  background: rgba(187, 187, 187, 0.2);
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 26px;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: 500;
}
.btn-custom-primary:hover {
  border: 1px solid #fff;
  color: #fff !important;
  background: #6c6a6a;
}
.btn-red {
  color: #fff;
  background: #b22234;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 26px;
  border-radius: 5px;
  padding: 15px 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-red:hover,
.btn-red:focus {
  background: #6c6a6a;
  color: #fff;
}
.btn-element {
  letter-spacing: 0;
  font-family: var(--body-font);
  font-weight: 400;
  border-radius: 4px;
}
.btn-rounded {
  border-radius: 30px;
}
.btn-main-color {
  background: var(--main-color);
  color: #fff;
}
.btn-main-color:hover {
  -webkit-box-shadow: 0px 7px 10px rgba(136, 193, 62, 0.5);
  box-shadow: 0px 7px 10px rgba(136, 193, 62, 0.5);
}
.btn-black-color {
  background: #bbbbbb;
  color: #fff;
}
.btn-black-color:hover {
  -webkit-box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  color: #fff;
}
.btn-transparent-color {
  background: transparent;
  border: 1px solid #bbbbbb;
  color: #bbbbbb;
}
.btn-transparent-color:hover {
  -webkit-box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  color: #bbbbbb;
}
.btn-transparent-color:active {
  color: #bbbbbb;
}
.btn-active {
  background: transparent;
  border: 1px solid #6c6a6a;
  color: #bbbbbb;
}
.btn-active:hover {
  -webkit-box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  box-shadow: 0px 7px 20px rgba(22, 22, 22, 0.5);
  color: #bbbbbb;
}
.btn-normal-size {
  font-size: 15px;
  padding: 14px 21px;
}
.btn-medium-size {
  font-size: 18px;
  padding: 14px 22px;
}
.btn-lg-size {
  font-size: 19px;
  padding: 14px 21px;
}
.btn-second {
  color: #bbbbbb;
  border: 1px solid #bbbbbb;
}
.btn-second:hover {
  opacity: 0.5;
  color: #bbbbbb;
}
.btn-active {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.btn-active:hover {
  opacity: 0.5;
  color: var(--main-color);
}
.btn-disabled {
  color: #d5d5d5;
  border: 1px solid #d5d5d5;
}
.btn-disabled:hover {
  opacity: 0.5;
  color: #d5d5d5;
}
.btn-slider {
  background: #6c6a6a;
  font-size: 26px;
  padding: 8px 55px;
  color: #bbbbbb;
  letter-spacing: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
}

.btn.focus,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-wrapper {
  display: block;
}
.btn-wrapper .boxed-btn {
  background-color: var(--main-color);
  color: #fff;
  display: inline-block;
  padding: 13px 40px;
  min-width: 160px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-weight: 600;
}
.btn-wrapper .boxed-btn.white:hover {
  background-color: #fff;
  color: var(--main-color);
}
.btn-wrapper .boxed-btn:hover {
  background-color: var(--heading-color);
}
.btn-wrapper .boxed-btn.btn-rounded {
  border-radius: 30px;
}
.btn-wrapper .boxed-btn.reverse-color {
  background-color: var(--heading-color);
}
.btn-wrapper .boxed-btn.reverse-color:hover {
  background-color: var(--main-color);
}

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

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

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

@media only screen and (max-width: 768px) {
  .tablet-center {
    text-align: center;
  }
  .tablet-left {
    text-align: left;
  }
  .tablet-right {
    text-align: right;
  }
}

@media only screen and (max-width: 414px) {
  .mobile-center {
    text-align: center;
  }
  .mobile-left {
    text-align: left;
  }
  .mobile-right {
    text-align: right;
  }
}
.section-title .title {
  font-size: 55px;
  letter-spacing: 0px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 0px;
  color: #d2dcf3;
}

.section-title p {
  color: #6c6a6a;
  font-size: 16px;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: var(--body-font);
}

.section-subtitle {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #f2f8f5;
  font-family: var(--body-font);
  padding-left: 53px;
}
.section-subtitle:before {
  position: absolute;
  content: '';
  width: 38px;
  height: 2px;
  background: #6c6a6a;
  left: 0px;
  top: 10px;
}

.subtitle-style2 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #9aa898;
  font-family: var(--body-font);
}

.section-title {
  font-size: 55px;
  letter-spacing: 0px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 10px;
  color: #89a586;
  line-height: 60px;
}

.section-subtitle-wh {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #fff;
  font-family: var(--body-font);
  padding-left: 53px;
}
.section-subtitle-wh:before {
  position: absolute;
  content: '';
  width: 38px;
  height: 2px;
  background: #fff;
  left: 0px;
  top: 10px;
}

.section-title-wh {
  font-size: 55px;
  letter-spacing: 0px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle-sm {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #6c6a6a;
  font-family: var(--body-font);
  padding-left: 53px;
}
.section-subtitle-sm:before {
  position: absolute;
  content: '';
  width: 38px;
  height: 2px;
  background: #6c6a6a;
  left: 0px;
  top: 10px;
}

.section-title-sm {
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 10px;
  color: #383d49;
}

.slideRotateFromLeft {
  -webkit-animation-name: slideRotateFromLeft;
  animation-name: slideRotateFromLeft;
}

@-webkit-keyframes slideRotateFromLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(90deg);
    transform: translate3d(-100%, 0, 0) rotate(90deg);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
    transform: translate3d(0, 0, 0) rotate(90deg);
    visibility: visible;
  }
}

@keyframes slideRotateFromLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(90deg);
    transform: translate3d(-100%, 0, 0) rotate(90deg);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
    transform: translate3d(0, 0, 0) rotate(90deg);
    visibility: visible;
  }
}

.slideRotateFromRight {
  -webkit-animation-name: slideRotateFromRight;
  animation-name: slideRotateFromRight;
}

@-webkit-keyframes slideRotateFromRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(90deg);
    transform: translate3d(100%, 0, 0) rotate(90deg);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
    transform: translate3d(0, 0, 0) rotate(90deg);
    visibility: visible;
  }
}

@keyframes slideRotateFromRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(90deg);
    transform: translate3d(100%, 0, 0) rotate(90deg);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(90deg);
    transform: translate3d(0, 0, 0) rotate(90deg);
    visibility: visible;
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.volunteer-form {
  margin-top: 45px;
}
.volunteer-form .form-control {
  padding: 17px 20px;
}
.volunteer-form .form-control::-webkit-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.volunteer-form .form-control:-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.volunteer-form .form-control::-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.volunteer-form .form-control::placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.volunteer-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}

.contact-form {
  margin-top: 50px;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  background: #fff;
  padding: 70px 60px;
  position: relative;
  border-radius: 10px;
}
.contact-form .form-control {
  padding: 17px 20px;
}
.contact-form .form-control::-webkit-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.contact-form .form-control:-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.contact-form .form-control::-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.contact-form .form-control::placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.contact-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 500px;
  width: 100%;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 500px;
  width: 100%;
}

.log-form {
  margin-top: 30px;
}
.log-form::before {
  position: absolute;
  content: '';
  width: 80%;
  left: 10%;
  bottom: -30px;
  height: 100%;
  z-index: -1;
  background: #f6f6fa;
  opacity: 0.5;
  border-radius: 20px;
}
.log-form .form-control {
  padding: 17px 20px;
}
.log-form .form-control::-webkit-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.log-form .form-control:-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.log-form .form-control::-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.log-form .form-control::placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.log-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}
.log-form p {
  font-family: var(--body-font);
  font-size: 18px;
  color: #bbbbbb;
  margin-top: 20px;
}
.log-form p a {
  color: #6c6a6a;
  text-decoration: underline;
}

.donate-form {
  margin-top: 55px;
  background: #fff;
  position: relative;
}
.donate-form .form-control {
  padding: 17px 20px;
  margin-bottom: 25px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: #bbbbbb;
  letter-spacing: 0px;
}
.donate-form .form-control::-webkit-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.donate-form .form-control:-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.donate-form .form-control::-ms-input-placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.donate-form .form-control::placeholder {
  color: #d1d1d1;
  font-weight: 400;
}
.donate-form .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ced4da;
}
.donate-form .select-form {
  width: 100%;
  height: 60px;
  line-height: 60px;
  margin-bottom: 25px;
}
.donate-form .nice-select .list {
  width: 100%;
}
.donate-form span.current {
  font-size: 16px;
}

.nice-select {
  padding-right: 35px;
}

.nice-select:after {
  right: 20px;
}

.floating-icon {
  display: none;
  right: 45px;
  margin-top: 45px;
  border-radius: 5px;
  background: #fff;
  z-index: 999;
  text-align: center;
  color: #000;
  padding: 12px 0px;
  float: right;
  position: -webkit-sticky;
  position: sticky;
  top: 6vh;
  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-shadow: -2px 0px 8px 0px rgba(0, 0, 0, 0.16);
  box-shadow: -2px 0px 8px 0px rgba(0, 0, 0, 0.16);
}
.floating-icon__is {
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.floating-icon__is i:before {
  font-size: 24px;
  margin-left: 0px;
}
.floating-icon__is:hover {
  color: var(--main-color);
  cursor: pointer;
}

.about-style-2 .floating-icon {
  float: left;
  left: 10%;
  margin-top: 50vh;
}

/*
    Flaticon icon font: Flaticon
    Creation date: 06/10/2019 05:27
    */
@font-face {
  font-family: 'Flaticon';
  src: url('../fonts/Flaticon.eot');
  src: url('../fonts/Flaticon.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Flaticon.woff2') format('woff2'), url('../fonts/Flaticon.woff') format('woff'),
    url('../fonts/Flaticon.ttf') format('truetype'),
    url('../fonts/Flaticon.svg#Flaticon') format('svg');
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'Flaticon';
    src: url('../fonts/Flaticon.svg#Flaticon') format('svg');
  }
}

.fi:before {
  display: inline-block;
  font-family: 'Flaticon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-left-arrow-chevron:before {
  content: '\f100';
}

.flaticon-angle-arrow-pointing-to-right:before {
  content: '\f101';
}

.flaticon-map:before {
  content: '\f102';
}

.flaticon-sent-mail:before {
  content: '\f103';
}

.flaticon-menu-button:before {
  content: '\f104';
}

.flaticon-earth-globe:before {
  content: '\f105';
}

.flaticon-money:before {
  content: '\f106';
}

.flaticon-phone:before {
  content: '\f107';
}

.flaticon-info:before {
  content: '\f108';
}

.flaticon-network:before {
  content: '\f109';
}

.flaticon-close:before {
  content: '\f10a';
}

.flaticon-open-book:before {
  content: '\f10b';
}

.flaticon-elections:before {
  content: '\f10c';
}

.flaticon-plant:before {
  content: '\f10d';
}

.flaticon-hospital:before {
  content: '\f10e';
}

.flaticon-money-1:before {
  content: '\f10f';
}

.flaticon-financial:before {
  content: '\f110';
}

.flaticon-location:before {
  content: '\f111';
}

.flaticon-fingerprint:before {
  content: '\f112';
}

.flaticon-seo:before {
  content: '\f113';
}

.flaticon-calendar:before {
  content: '\f114';
}

.flaticon-notes:before {
  content: '\f115';
}

.flaticon-calendar-1:before {
  content: '\f116';
}

.flaticon-achievement:before {
  content: '\f117';
}

.flaticon-fireworks:before {
  content: '\f118';
}

.flaticon-growth:before {
  content: '\f119';
}

.flaticon-volunteer:before {
  content: '\f11a';
}

.flaticon-calendar-2:before {
  content: '\f11b';
}

.flaticon-growth-1:before {
  content: '\f11c';
}

.flaticon-euro:before {
  content: '\f11d';
}

.flaticon-left:before {
  content: '\f11e';
}

.flaticon-place:before {
  content: '\f11f';
}

.flaticon-tax:before {
  content: '\f120';
}

.flaticon-business-and-finance:before {
  content: '\f121';
}

.icon-box-style-01 {
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  padding: 43px 28px 28px 28px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #f6f6f6;
}
.icon-box-style-01 .sb-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.icon-box-style-01 a i {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-box-style-01 a i:hover {
  color: #bbbbbb;
}
.icon-box-style-01 a i:before {
  font-size: 40px;
  margin-left: 5px;
  line-height: 80px;
  color: #6c6a6a;
}
.icon-box-style-01 .sb-content h4 {
  color: #bbbbbb;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 35px;
}
.icon-box-style-01 .sb-content p {
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 30px;
}
.icon-box-style-01:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  background: #fff;
}
.icon-box-style-01:hover .sb-icon {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(187, 187, 187, 0.1);
  border-radius: 5px;
}

.icon-box-style-02 {
  border: 2px solid #f5f5f5;
  padding: 43px 50px 28px 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #f5f5f5;
}
.icon-box-style-02 .sb-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.icon-box-style-02 a i {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-box-style-02 a i:hover {
  color: #bbbbbb;
}
.icon-box-style-02 a i:before {
  font-size: 55px;
  margin-left: 5px;
  line-height: 80px;
  color: #6c6a6a;
}
.icon-box-style-02 .sb-content h4 {
  color: #bbbbbb;
  font-size: 55px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 30px;
}
.icon-box-style-02 .sb-content p {
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 25px;
}
.icon-box-style-02:hover {
  border-color: transparent;
  background: #fff;
  -webkit-box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
}
.icon-box-style-02:hover .sb-icon {
  color: #bbbbbb;
}

.icon-box-style-03 {
  border-color: transparent;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  padding: 30px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: #fff;
}

.icon-box-style-03 .sb-content h4 {
  color: #bbbbbb;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 30px;
}
.icon-box-style-03 .sb-content p {
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-bottom: 0px;
}
.icon-box-style-03 .memeber-img {
  position: relative;
}
.icon-box-style-03 .memeber-img img {
  border-radius: 50%;
  border: 10px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-box-style-03:hover {
  background: #6c6a6a;
}
.icon-box-style-03:hover .memeber-img img {
  border: 10px solid #f5f5f5;
}
.icon-box-style-03:hover .title,
.icon-box-style-03:hover p,
.icon-box-style-03:hover span {
  color: #fff !important;
}

.icon-box-style-04 {
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  padding: 60px 10px 52px 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-box-style-04 .sb-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 13px rgba(187, 187, 187, 0.1);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid transparent;
}
.icon-box-style-04 a i {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-box-style-04 a i:hover {
  color: #bbbbbb;
}
.icon-box-style-04 a i:before {
  font-size: 40px;
  margin-left: 5px;
  line-height: 80px;
  color: #6c6a6a;
}
.icon-box-style-04 .sb-content h4 {
  color: #bbbbbb;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 17px;
  margin-top: 42px;
}
.icon-box-style-04 .sb-content span {
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 30px;
}
.icon-box-style-04:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
}
.icon-box-style-04:hover .sb-icon {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(187, 187, 187, 0.1);
  border-radius: 5px;
}

.icon-box-style-05 {
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-box-style-05 .causes-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.icon-box-style-05 .causes-img img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.icon-box-style-05 .c-tag {
  color: #6c6a6a;
  font-size: 16px;
  padding: 0px 10px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.icon-box-style-05 .sb-content {
  padding: 30px;
}
.icon-box-style-05 .sb-content h4 {
  color: #bbbbbb;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 40px;
}
.icon-box-style-05 .sb-content h4:hover {
  color: #6c6a6a;
}
.icon-box-style-05 .sb-content p {
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 30px;
}
.icon-box-style-05:hover {
  -webkit-box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
}
.icon-box-style-05:hover img {
  -webkit-transform: scale(1.1) rotate(2deg);
  -ms-transform: scale(1.1) rotate(2deg);
  transform: scale(1.1) rotate(2deg);
}
.icon-box-style-05 .collected {
  position: relative;
  margin-right: 20px;
}
.icon-box-style-05 .collected:before {
  position: absolute;
  content: '';
  width: 22px;
  height: 22px;
  background: #6c6a6a;
  border-radius: 5px;
  top: 3px;
}
.icon-box-style-05 .collected p {
  font-weight: 400;
  color: #6c6a6a;
  font-family: var(--body-font);
  padding-left: 25px;
}
.icon-box-style-05 .needMore {
  position: relative;
}
.icon-box-style-05 .needMore:before {
  position: absolute;
  content: '';
  width: 22px;
  height: 22px;
  background: #f5f5f5;
  border-radius: 5px;
  top: 3px;
}
.icon-box-style-05 .needMore p {
  font-weight: 400;
  color: #666;
  font-family: var(--body-font);
  padding-left: 25px;
}

.icon-box-style-06 {
  border: 2px solid #f5f5f5;
  padding: 5px 5px 50px 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #f5f5f5;
  border-radius: 5px;
}
.icon-box-style-06 .sb-content {
  padding: 0px 15px;
}
.icon-box-style-06 .sb-content h4 {
  color: #bbbbbb;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 35px;
}
.icon-box-style-06:hover {
  background: #fff;
  border-color: transparent;
  -webkit-box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
  box-shadow: 0px 5px 30px rgba(187, 187, 187, 0.1);
}
.icon-box-style-06:hover a i:before {
  color: #6c6a6a;
}
.icon-box-style-06:hover .sb-icon {
  background: #fff;
}

.slider.slider-horizontal {
  width: 100%;
}

.slider.slider-horizontal .tooltip.tooltip-main,
.slider.slider-vertical .tooltip.tooltip-main {
  opacity: 0.7 !important;
  min-width: 30px;
}

.slider.slider-horizontal .tooltip-inner,
.slider.slider-vertical .tooltip-inner {
  font-size: 90%;
  width: auto;
}

.slider-selection {
  background: #6c6a6a;
}

.slider.slider-horizontal .slider-track {
  height: 5px;
}

.slider-handle {
  border: 3px solid #fff !important;
  width: 14px;
  height: 14px;
  background-color: #6c6a6a;
}

.tooltip-inner {
  color: #6c6a6a;
  background-color: #f5f5f5;
}

.tooltip-inner:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #f5f5f5;
  top: 24px;
}

.icon-box-style-07 {
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding: 100px 50px 80px 50px;
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  position: relative;
  background: #fff;
}
.icon-box-style-07::before {
  position: absolute;
  bottom: -30px;
  background: #fff;
  content: '';
  width: calc(100% - 50px);
  left: 25px;
  height: 100%;
  border-radius: 10px;
  z-index: -1;
  -webkit-box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
  box-shadow: 0 15px 23px 0 rgba(35, 49, 64, 0.09);
}
.icon-box-style-07 .slider.slider-horizontal .slider-track {
  height: 10px;
}
.icon-box-style-07 .slider-handle {
  border: 10px solid #fff !important;
  width: 50px;
  height: 50px;
  background-color: #6c6a6a;
  -webkit-box-shadow: 0px 10px 20px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 10px 20px rgba(187, 187, 187, 0.149);
  display: none;
}
.icon-box-style-07 .slider.slider-horizontal {
  margin-bottom: 40px;
}
.icon-box-style-07 .slider.slider-horizontal .slider-track {
  margin-top: 10px;
}
.icon-box-style-07 .collected {
  position: relative;
  margin-right: 20px;
}
.icon-box-style-07 .collected:before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: #6c6a6a;
  border-radius: 5px;
  top: 3px;
}
.icon-box-style-07 .collected p {
  font-weight: 400;
  color: #6c6a6a;
  font-family: var(--body-font);
  padding-left: 20px;
}
.icon-box-style-07 .needMore {
  position: relative;
}
.icon-box-style-07 .needMore:before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: #f5f5f5;
  border-radius: 5px;
  top: 3px;
}
.icon-box-style-07 .needMore p {
  font-weight: 400;
  color: #f5f5f5;
  font-family: var(--body-font);
  padding-left: 20px;
}
.icon-box-style-07 .label {
  font-size: 55px;
}

.image-box-style-01 {
  position: relative;
}
.image-box-style-01 img {
  border-radius: 10px;
  margin-left: 82px;
  margin-top: 82px;
}
.image-box-style-01:before {
  position: absolute;
  width: calc(100% - 82px);
  height: calc(100% - 82px);
  content: '';
  background: #6c6a6a;
  border-radius: 10px;
  z-index: -1;
}
.image-box-style-01.volunteer-box:before {
  width: 100%;
}
.image-box-style-01.volunteer-box img {
  margin-left: 45px;
  margin-top: 45px;
}

.image-box-style-02 {
  position: relative;
  top: -90px;
}
.image-box-style-02 img {
  padding-left: 50px;
}
.image-box-style-02:before {
  position: absolute;
  width: 400px;
  height: 400px;
  content: '';
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
  left: 100px;
  top: 100px;
}
.image-box-style-02:after {
  position: absolute;
  width: 100%;
  height: 70%;
  content: '';
  background: #6c6a6a;
  z-index: -2;
  left: 0;
  bottom: 0px;
}

.image-box-style-03 {
  position: absolute;
  bottom: 0;
  right: 6%;
  z-index: 9;
}
.image-box-style-03:before {
  position: absolute;
  width: 400px;
  height: 400px;
  content: '';
  background: #113d87;
  border-radius: 50%;
  z-index: -1;
  left: 0px;
  top: 100px;
}

.image-box-style-04 {
  position: relative;
}
.image-box-style-04 .box-date {
  position: absolute;
  top: -50px;
  left: 25%;
  -webkit-box-shadow: 5px 10px 20px #ccc;
  box-shadow: 5px 10px 20px #ccc;
  z-index: 999;
  background: #fff;
  padding: 18px 30px 20px 30px;
  border-radius: 5px;
}
.image-box-style-04 .box-date .box-icon i:before {
  font-size: 40px;
  color: #6c6a6a;
  margin-right: 20px;
}
.image-box-style-04 .box-date .box-content h4 {
  font-size: 24px;
  letter-spacing: 0;
  color: #bbbbbb;
  line-height: 40px;
  font-weight: 400;
  font-family: var(--body-font);
  margin-bottom: 0px;
}
.image-box-style-04 .box-date .box-content h6 {
  font-size: 16px;
  letter-spacing: 0;
  color: #bbbbbb;
  font-weight: 400;
  font-family: var(--secondary-font);
  margin-bottom: 5px;
}

.image-box-style-05 {
  position: relative;
}
.image-box-style-05 img {
  border-radius: 10px;
}

.image-box-style-06 {
  position: relative;
}
.image-box-style-06 img {
  border-radius: 10px;
  margin-right: 82px;
  margin-top: 95px;
  width: 90%;
}
.image-box-style-06:before {
  position: absolute;
  width: 85%;
  height: calc(100% - 82px);
  content: '';
  background: url(../../bg2.jpg);
  border-radius: 10px;
  z-index: -1;
  right: 0px;
  top: -90px;
}

.image-box-style-07 {
  position: absolute;
  bottom: 0;
  right: 6%;
  z-index: 9;
}
.image-box-style-07:before {
  position: absolute;
  width: 400px;
  height: 400px;
  content: '';
  background: #113d87;
  border-radius: 50%;
  z-index: -1;
  left: 0px;
  top: 100px;
}

.content-box-style-01 .description {
  font-family: var(--secondary-font);
  font-size: 16px;
  letter-spacing: 0px;
  color: #848484;
  font-weight: 400;
  line-height: 30px;
  padding-top: 5px;
}

.content-box-style-01 .title {
  line-height: 60px;
  margin-bottom: 30px;
  font-weight: 700;
}

.content-box-style-01 .para {
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-top: 28px;
}

.content-box-style-01 ul {
  padding: 0;
  margin: 0;
}
.content-box-style-01 ul li {
  list-style: none;
  margin: 15px 0px;
}
.content-box-style-01 ul li a {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #666;
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
}
.content-box-style-01 ul li a i {
  width: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.content-box-style-01 ul li a i:hover {
  color: #6c6a6a;
}

.content-box-style-01 .name {
  font-size: 24px;
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: 0;
  color: #bbbbbb;
  line-height: 30px;
  display: block;
}

.content-box-style-01 .address {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #bbbbbb;
  font-weight: 400;
  line-height: 30px;
  font-size: 16px;
}

.content-box-style-01 .video-btn-style-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}
.content-box-style-01 .video-btn-style-02 a {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
  color: #6c6a6a;
  font-family: var(--body-font);
}
.content-box-style-01 .video-btn-style-02 a i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #6c6a6a;
  line-height: 50px;
  color: #6c6a6a;
  text-align: center;
  font-size: 12px;
  margin-right: 20px;
}

.content-box-style-01 .box-date {
  padding: 15px 40px 15px 0px;
}
.content-box-style-01 .box-date .box-icon i:before {
  font-size: 40px;
  color: #6c6a6a;
  margin-right: 20px;
}
.content-box-style-01 .box-date .box-content h4 {
  font-size: 24px;
  letter-spacing: 0;
  color: #bbbbbb;
  line-height: 40px;
  font-weight: 400;
  font-family: var(--body-font);
  margin-bottom: 0px;
}
.content-box-style-01 .box-date .box-content h6 {
  font-size: 16px;
  letter-spacing: 0;
  color: #bbbbbb;
  font-weight: 400;
  font-family: var(--secondary-font);
  margin-bottom: 5px;
}

.content-box-style-02 .loader-area h4 {
  font-size: 24px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 400;
  font-family: var(--body-font);
}

.content-box-style-03 .para {
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-top: 38px;
  margin-bottom: 50px;
}

.content-box-style-03 .btn-wrapper:hover {
  color: #6c6a6a;
}

.content-box-style-03 .btn-wrapper a {
  text-decoration: underline;
  color: #bbbbbb;
  font-size: 18px;
}
.content-box-style-03 .btn-wrapper a:hover {
  color: #6c6a6a;
}

.content-box-style-04 .description {
  font-family: var(--secondary-font);
  font-size: 16px;
  letter-spacing: 0px;
  color: #666;
  font-weight: 400;
  line-height: 30px;
  padding-top: 15px;
  margin-bottom: 25px;
}

.content-box-style-04 .para {
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-top: 15px;
}

.content-box-style-04 .name {
  font-size: 30px;
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: 0;
  color: #6c6a6a;
  line-height: 30px;
  display: block;
}

.content-box-style-04 .post {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #666;
  font-weight: 400;
  line-height: 30px;

  font-size: 16px;
}

.content-box-style-05 {
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  border-top-right-radius: 85px;
  padding: 150px 28%;
  margin-top: 50px;
  margin-bottom: 90px;
  display: block;
}
.content-box-style-05 .description {
  font-family: var(--secondary-font);
  font-size: 16px;
  letter-spacing: 0px;
  color: #848484;
  font-weight: 400;
  line-height: 30px;
  padding-top: 5px;
}
.content-box-style-05 .title {
  line-height: 60px;
  margin-bottom: 30px;
  font-weight: 700;
}
.content-box-style-05 .para {
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 30px;
  margin-top: 28px;
}
.content-box-style-05 ul {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.content-box-style-05 ul li {
  list-style: none;
  margin: 15px 0px;
}
.content-box-style-05 ul li a {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #666;
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
}
.content-box-style-05 ul li a i {
  width: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.content-box-style-05 ul li a i:hover {
  color: #6c6a6a;
}
.content-box-style-05 .name {
  font-size: 24px;
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: 0;
  color: #bbbbbb;
  line-height: 30px;
  display: block;
}
.content-box-style-05 .address {
  font-family: var(--secondary-font);
  letter-spacing: 0;
  color: #bbbbbb;
  font-weight: 400;
  line-height: 30px;
  font-size: 16px;
}
.content-box-style-05 .video-btn-style-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}
.content-box-style-05 .video-btn-style-02 a {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
  color: #6c6a6a;
  font-family: var(--body-font);
}
.content-box-style-05 .video-btn-style-02 a i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #6c6a6a;
  line-height: 50px;
  color: #6c6a6a;
  text-align: center;
  font-size: 12px;
  margin-right: 20px;
}

.content-box-style-06 .para {
  font-family: var(--secondary-font);
  color: #666;
}

.content-box-style-06 .nav-tabs {
  display: block;
  border-bottom: 0px;
  position: relative;
}
.content-box-style-06 .nav-tabs::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 115%;
  top: -7%;
  background: #fff;
  left: -8px;
  border-radius: 10px;
}
.content-box-style-06 .nav-tabs li {
  margin-bottom: 30px;
}
.content-box-style-06 .nav-tabs li .active {
  -webkit-box-shadow: 0px 5px 15px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 5px 15px rgba(187, 187, 187, 0.149);
  background: #fff;
}
.content-box-style-06 .nav-tabs li .active::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 100%;
  background: #6c6a6a;
  left: -8px;
  border-radius: 10px;
  top: 0px;
}
.content-box-style-06 .nav-tabs li a {
  font-size: 24px;
  color: #bbbbbb;
  font-weight: 400;
  padding: 10px;
  position: relative;
}

.content-box-style-06 .tab-content p {
  font-family: var(--secondary-font);
  font-size: 16px;
  color: #666;
}

.content-box-style-07 {
  -webkit-box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  box-shadow: 0px 20px 50px rgba(187, 187, 187, 0.149);
  padding: 50px;
  margin-top: 50px;
  border-top: 3px solid #6c6a6a;
}
.content-box-style-07 .content ul {
  margin: 0;
  padding: 0;
  margin-left: 20px;
}
.content-box-style-07 .content ul li {
  list-style: none;
  border-bottom: 1px solid rgba(38, 85, 59, 0.05);
  padding-bottom: 10px;
  padding-top: 10px;
}
.content-box-style-07 .content ul li:last-child {
  border-bottom: 0px;
}
.content-box-style-07 .content ul li a {
  font-family: var(--secondary-font);
  font-size: 16px;
  color: #666;
}
.content-box-style-07 .content ul li a i {
  color: #6c6a6a;
  width: 20px;
}
.content-box-style-07 h4 {
  font-size: 30px;
  font-weight: 500;
}
.content-box-style-07 p {
  font-family: var(--secondary-font);
  font-size: 16px;
  color: #666;
}
.content-box-style-07 .thumb {
  width: 150px;
  height: 150px;
  margin-left: 50px;
}
.content-box-style-07 .thumb .time {
  background: #6c6a6a;
  position: absolute;
  z-index: -1;
  left: 57px;
  padding: 23px 40px 23px 15px;
  top: 130px;
  border-radius: 10px;
}
.content-box-style-07 .thumb .time span {
  display: block;
  color: #fff;
}
.content-box-style-07 .thumb .time .date {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}
.content-box-style-07 .thumb .time .month {
  font-size: 16px;
}
.content-box-style-07 .thumb img {
  border-radius: 50%;
  border: 5px solid #f12552;
}

.content-box-style-08 {
  position: relative;
  z-index: 99;
}
.content-box-style-08 .subtitle {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  color: #fff;
  font-family: var(--body-font);
  padding-left: 53px;
}
.content-box-style-08 .subtitle:before {
  position: absolute;
  content: '';
  width: 38px;
  height: 2px;
  background: #fff;
  left: 0px;
  top: 10px;
}
.content-box-style-08 .title {
  font-size: 55px;
  letter-spacing: 0px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 3px;
  color: #fff;
}
.content-box-style-08 .loader-area h4 {
  font-size: 24px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 400;
  font-family: var(--body-font);
}

.val-card-img {
  border-radius: 5px;
  width: 100%;
  height: 260px;
}

.bold {
  font-weight: bold !important;
  color: #e5eaf2 !important;
}

.blog-no-sidebar {
  -webkit-box-shadow: 0px 10px 20px rgba(38, 85, 59, 0.149);
  box-shadow: 0px 10px 20px rgba(38, 85, 59, 0.149);
}

.blog-item-style-02 {
  border: 1px solid #ddd;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
}
.blog-item-style-02 .b-img {
  position: absolute;
  left: -50%;
  top: -20%;
}

.blog-item-style-02 .b-img img {
  max-width: 520px !important;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}

.blog-item-style-02 .b-tag {
  background: #e5eaf2;
  color: #04572f;
  font-size: 16px;
  padding: 2px 5px;
  border-radius: 4px;
}

.blog-item-style-02 .blog-meta {
  padding: 30px;
}
.blog-item-style-02 .blog-meta ul {
  margin: 0;
  padding: 0;
  margin-left: 10px;
}
.blog-item-style-02 .blog-meta ul li {
  float: left;
  list-style: none;
}
.blog-item-style-02 .blog-meta ul li a {
  color: #d1d1d1;
  font-size: 16px;
  margin: 0px 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-item-style-02 .blog-meta ul li a:hover {
  color: #04572f;
}
.blog-item-style-02 .blog-meta .btn-wrapper a {
  text-decoration: underline;
}
.blog-item-style-02 .blog-meta .btn-wrapper a:hover {
  color: #04572f;
}
.blog-item-style-02 .b-content {
  position: relative;
  padding-top: 80px;
  padding-left: 27%;
  padding-right: 15px;
  padding-bottom: 0px;
}
.blog-item-style-02 .b-content .blog-date-box {
  width: 80px;
  height: 90px;
  background: #04572f;
  position: absolute;
  -webkit-box-shadow: 0px 5px 13px rgba(38, 85, 59, 0.1);
  box-shadow: 0px 5px 13px rgba(38, 85, 59, 0.1);
  top: -60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 5px;
}
.blog-item-style-02 .b-content .blog-date-box:before {
  position: absolute;
  content: '';
  width: 65px;
  height: 20px;
  background: rgba(38, 85, 59, 0.2);
  bottom: -6px;
  border-radius: 5px;
  left: 7px;
}
.blog-item-style-02 .b-content .blog-date-box h4 {
  color: #fff;
  padding-top: 10px;
  line-height: 20px;
  border-radius: 5px;
}
.blog-item-style-02 .b-content .blog-date-box h4 span {
  font-size: 16px;
}
.blog-item-style-02 .b-content .btn-wrapper a {
  color: #404040;
  text-decoration: underline;
}
.blog-item-style-02 .b-content .small-thumb {
  position: absolute;
  top: -25px;
  right: 30px;
  border-radius: 50%;
  background: #fff;
}
.blog-item-style-02 .b-content .small-thumb img {
  padding: 5px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.blog-item-style-02 .b-content h4 {
  color: #89a586;
  font-size: 30px;
  letter-spacing: 0;
  margin-top: 20px;
  margin-bottom: 15px;
  line-height: 35px;
  font-weight: 500;
}
.blog-item-style-02 .b-content h4 a:hover {
  color: #04572f;
}
.blog-item-style-02 .b-content p {
  font-size: 16px;
  letter-spacing: 0px;
  color: #ddd;
  font-weight: 400;
  font-family: var(--secondary-font);
  line-height: 30px;
}
