/**
Fonts
**/
.trans, .sider__link {
  transition: all 0.2s ease;
}

.bx1, .sider__link:hover {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.center-xy, .fc__item h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.animated-gradient-gray, .pl__img, .fc__item, .fm__img {
  background: linear-gradient(-45deg, #f0f0f0, #d8d8d8, #b4b4b4, #fff);
  background-size: 300% 300%;
  animation: gradient_gray 3s ease infinite;
}

@keyframes gradient_gray {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* HTML: <div class="loader"></div> */
.loader {
  height: 45px;
  aspect-ratio: 1.2;
  --c:no-repeat repeating-linear-gradient(90deg,#000 0 20%,#0000 0 40%);
  background: var(--c) 50% 0, var(--c) 50% 100%;
  background-size: 83.3333333333% 50%;
  animation: l10 1s infinite linear;
}

@keyframes l10 {
  33% {
    background-position: 0 0, 100% 100%;
  }
  66% {
    background-position: 0 100%, 100% 0;
  }
  100% {
    background-position: 50% 100%, 50% 0;
  }
}
/* HTML: <div class="loader"></div> */
.loader2 {
  width: 50px;
  aspect-ratio: 1;
  --_c:no-repeat radial-gradient(farthest-side,#fff 92%,#0000);
  background: var(--_c) top, var(--_c) left, var(--_c) right, var(--_c) bottom;
  background-size: 12px 12px;
  animation: l7 1s infinite;
}

@keyframes l7 {
  to {
    transform: rotate(0.5turn);
  }
}
html, body {
  overflow-x: hidden;
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-family: "Raleway", sans-serif !important;
}

img {
  max-width: 100%;
}

a {
  color: #009245;
}

a, input, button {
  transition: all 0.2s ease;
}

.mob {
  display: none;
}
@media only screen and (max-width: 991px) {
  .mob {
    display: block;
  }
  .mob--ib {
    display: inline-block !important;
  }
}

@media only screen and (max-width: 991px) {
  .desk {
    display: none !important;
  }
}

#main {
  padding-bottom: 50px;
}

.abs, .search__img img, .pl__img img, .fc__item img, .fc__item:after, .fm__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .menu {
    display: block;
  }
}
.menu li {
  display: inline-block;
}
.menu a {
  display: block;
  color: #000;
}

nav.nav {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 991px) {
  nav.nav {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    background-color: #000;
    display: none;
    z-index: 3;
    padding: 20px 0;
  }
}
nav.nav .menu {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  nav.nav .menu {
    text-align: left;
  }
}
nav.nav .menu li {
  margin-left: 40px;
  position: relative;
}
@media only screen and (max-width: 1400px) and (min-width: 992px) {
  nav.nav .menu li {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  nav.nav .menu li {
    display: block;
    margin-left: 0;
  }
}
nav.nav .menu li:hover .sub-menu {
  display: block;
}
nav.nav .menu a {
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: bold;
  font-size: 0.9rem;
}
@media only screen and (max-width: 1400px) and (min-width: 992px) {
  nav.nav .menu a {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 991px) {
  nav.nav .menu a {
    padding: 10px 15px;
    color: #fff;
    text-align: center;
  }
}
nav.nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding: 0;
  display: none;
  padding: 1px 0;
}
nav.nav .sub-menu li {
  margin-left: 0;
}
nav.nav .sub-menu a {
  padding: 12px 25px;
  font-weight: normal;
  font-size: 0.9rem;
}

.header {
  position: relative;
}
.header__inner {
  padding: 30px 0;
  border-bottom: 2px solid #000;
  margin: 0 0 15px;
}
@media only screen and (max-width: 991px) {
  .header__inner {
    padding: 25px 0;
  }
}
.header .socmed {
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .header .socmed {
    display: none;
  }
}
.header .socmed li {
  margin-left: 50px;
}
.header .socmed li a {
  font-size: 1.3rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif !important;
  font-weight: bold;
  margin: 0 0 10px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

p, ul, ol {
  margin: 0 0 25px;
}

figure.wp-caption {
  padding: 0;
  margin: 0;
  max-width: 100%;
  margin: 0 0 30px;
  font-style: italic;
}

blockquote {
  background-color: #009245;
  color: #fff;
  padding: 20px;
}
blockquote > *:last-child {
  margin: 0;
}

.sider {
  padding-left: 30px;
}
@media only screen and (max-width: 991px) {
  .sider {
    padding-left: 0;
    padding-top: 30px;
  }
}
.sider p {
  margin: 0 0 15px;
}
.sider > div {
  margin: 0 0 30px;
}
.sider__link {
  background-image: linear-gradient(#29A9E2, #0374DC);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 12px 20px;
  font-weight: bold;
  display: block;
  text-decoration: none !important;
  outline: none !important;
}
.sider__link:hover {
  background-image: linear-gradient(#29A9E2, #29ABE2);
}
.sider__link span {
  display: block;
  line-height: 1.2;
}
.sider ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sider ul li {
  border-bottom: 1px solid #000;
}
.sider ul li:first-child a {
  padding-top: 0;
}
.sider ul li:last-child {
  border-bottom: 0;
}
.sider ul li a {
  display: block;
  padding: 6px 0;
}
.sider ul li a:hover {
  background-color: #29ABE2;
  color: #fff;
}
.sider .widget-title {
  font-size: 1.2rem;
  color: #fff;
  background-color: #009245;
  padding: 10px 15px;
  text-transform: uppercase;
}

.entry-content {
  margin-top: 0 !important;
}
.entry-content > figure:first-child {
  display: none;
}

@media only screen and (max-width: 991px) {
  .logo {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .logo img {
    max-height: 35px;
    margin: 0 0 20px;
  }
}

.menu-toggle, .mobile-menu-search .header-search-toggle {
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 2px 8px;
}
.menu-toggle.active i:before, .mobile-menu-search .header-search-toggle.active i:before {
  content: "\f00d";
}

.footer {
  color: #fff;
  background-color: #191919;
  padding: 65px 0 30px;
}
.footer a {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .footer__col {
    margin: 0 0 30px;
  }
}
.footer__col .widget-title {
  font-size: 1.5rem;
  margin: 0 0 30px;
}
.footer__col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer__col ul li {
  margin: 0 0 10px;
}
.footer__col ul li a {
  font-weight: 500;
}
.footer__copy {
  padding-top: 40px;
}
.footer__copy img {
  max-height: 75px;
}
.footer .socmed {
  text-align: right;
  font-size: 1.8rem;
}
.footer .socmed li {
  margin-left: 30px;
}

.comments {
  padding-top: 30px;
}
.comments #comments-title {
  font-size: 1.4rem;
}
.comments .commentlist {
  width: auto;
  padding: 0;
}
.comments .commentlist .avatar {
  left: 0;
}
.comments .commentlist > li.comment {
  padding: 0 0 0 83px;
}
.comments .commentlist .comment-author {
  font-weight: bold;
}
.comments .commentlist .edit-link {
  display: none;
}
.comments form.comment-form textarea {
  border-radius: 0;
  padding: 10px;
  min-height: 120px;
  border: 1px solid #000;
}

.title-group {
  margin: 0 0 38px;
}
.title-group--center {
  text-align: center;
}
.title-group > *:last-child {
  margin: 0;
}
.title-group p {
  font-size: 1.6rem;
}
.title-group h2 {
  font-size: 2.5rem;
}
.title-group h1, .title-group h2, .title-group h3, .title-group h4 {
  margin: 0;
}
.title-group__pre {
  display: block;
  margin-bottom: -5px;
}

figure.wp-caption.aligncenter:not(:first-child) {
  display: block;
  margin: 0 auto !important;
}

.ads__pl {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  height: 95px;
  background-color: #29ABE2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ads-item__inner {
  display: flex;
  justify-content: center;
  color: #fff;
}
.ads-item--home-top .ads-item__inner {
  padding: 20px 0;
  border-bottom: 2px solid #000;
}

.button, .advertise-with-us a, div.wpforms-container form.wpforms-form .wpforms-submit-container .wpforms-submit, .btn {
  background-color: #29ABE2;
  color: #fff;
  display: inline-block;
  padding: 10px 25px;
  border: 0;
  border-radius: 0;
}
.button:hover, .advertise-with-us a:hover, div.wpforms-container form.wpforms-form .wpforms-submit-container .wpforms-submit:hover, .btn:hover {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
}
.button .loader2, .advertise-with-us a .loader2, div.wpforms-container form.wpforms-form .wpforms-submit-container .wpforms-submit .loader2, .btn .loader2 {
  background-size: 6px 6px;
  width: 25px;
  margin-right: 7px;
}
.button--flex, .btn--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp__top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.sp__top a {
  color: #009245;
}

.logo > a {
  display: block;
  position: relative;
  height: 51px;
  width: 100%;
}
.logo > a img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
@media only screen and (max-width: 991px) {
  .logo > a img {
    object-position: center center;
  }
}

.single-post .main-content {
  position: relative;
  padding-top: 40px;
}
@media only screen and (max-width: 991px) {
  .single-post .main-content {
    padding-top: 25px;
  }
}
.single-post .main-content .container {
  position: relative;
  z-index: 1;
}

.primary-bar {
  display: block;
  height: 240px;
  position: absolute;
  top: 0;
  background-image: linear-gradient(to right, #29ABE2, white, white);
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .primary-bar {
    height: 120px;
    background-image: none;
    background-color: #29ABE2;
  }
}

.fm {
  position: relative;
  padding-top: 40px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 991px) {
  .fm {
    padding-top: 0;
    margin: 0 0 30px;
  }
}
.fm:before {
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  top: 0;
  background-color: #29ABE2;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .fm:before {
    top: 50%;
    height: 70%;
    transform: translateY(-50%);
  }
}
.fm__img {
  position: relative;
  padding-top: 56.25%;
  z-index: 1;
}
.fm .wp-caption-text {
  text-align: center;
  font-style: italic;
  padding-top: 3px;
}

#author-bio-box {
  background-color: transparent !important;
  position: relative;
  padding: 10px 0 10px 110px !important;
  border-color: #000 !important;
  margin-bottom: 0 !important;
}
#author-bio-box .bio-gravatar {
  float: none !important;
  position: absolute;
  top: 15px;
  left: 0;
}
#author-bio-box .bio-gravatar img {
  width: 85px;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
#author-bio-box h3 {
  font-size: 1.4rem !important;
  margin: 0 0 5px !important;
  color: #000 !important;
}

.author-info {
  display: none !important;
}

article.post .edit-link {
  display: none;
}
article.post footer.entry-meta {
  border: 0 !important;
  margin: 0 !important;
  font-size: 1rem;
}
article.post hr {
  display: none;
}

.fc__inner {
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
}
.fc__item {
  display: block;
  position: relative;
  padding-top: 100%;
}
.fc__item:after {
  content: "";
  display: block;
  transition: all 0.2s ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border: 4px solid #009245;
}
.fc__item:hover {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  background-color: #000;
}
.fc__item:hover:after {
  opacity: 1;
}
.fc__item h5 {
  margin: 0;
  display: inline-block;
  background-color: #009245;
  color: #fff;
  padding: 3px 18px;
  text-transform: capitalize;
  z-index: 1;
  max-width: calc(100% - 12px);
  font-size: 1rem;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .fc .row {
    margin: 0;
  }
  .fc .row .col-6 {
    padding: 0;
  }
}

.pl__item {
  margin: 0 0 30px;
  position: relative;
}
.pl__item:hover .pl__img {
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.2);
}
.pl__item:hover h2, .pl__item:hover h5 {
  color: #29ABE2;
}
@media only screen and (max-width: 991px) {
  .pl__item {
    text-align: center;
  }
  .pl__item h2, .pl__item h5 {
    font-size: 1.2rem;
  }
}
.pl__img {
  position: relative;
  padding-top: 60%;
  margin-bottom: 20px;
}
.pl__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.pl__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding: 20px 0;
  display: none;
}
.pl__loader.active {
  display: flex;
}
.pl__loader .loader {
  margin-right: 12px;
}
.pl__loadmore {
  display: flex;
  justify-content: center;
}

.pad {
  padding: 50px 0;
}

.bp {
  color: #fff;
  background-color: #29ABE2;
  margin: 25px 0;
  font-size: 1.4rem;
}
.bp__content > p {
  margin: 0;
}

.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 3;
  display: none;
}
@media only screen and (max-width: 991px) {
  .search {
    padding: 0 15px;
  }
}
.search.active {
  display: flex;
}
.search__inner {
  background-color: white;
  padding: 30px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  position: relative;
}
.search__inner input {
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 0;
  display: block;
  width: 100%;
}
.search__inner input:focus {
  border-color: #29ABE2;
  outline: none;
}
.search__res {
  padding-top: 20px;
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.search__res__item {
  margin: 0 0 10px;
  display: block;
  color: #000;
}
.search__loader {
  padding-top: 20px;
}
.search__close {
  position: absolute;
  top: -13px;
  right: -13px;
  background-color: red;
  color: #fff;
  height: 36px;
  line-height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  padding: 0;
}
.search__close:hover {
  opacity: 0.6;
}
.search__img {
  position: relative;
  padding-top: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.search__content h5 {
  margin: 0;
}
.search__content p {
  margin: 0;
}

.cloader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cloader .loader {
  height: 25px;
  margin-right: 10px;
}

.mobile-menu-search {
  display: none;
  min-height: 31px;
}
@media only screen and (max-width: 991px) {
  .mobile-menu-search {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu-search .header-search-toggle {
  margin-left: 5px;
}

div.wpforms-container {
  margin-top: 0 !important;
}
div.wpforms-container form.wpforms-form .wpforms-field-medium {
  max-width: 100% !important;
}
.advertise-with-us a {
  position: fixed;
  bottom: 0;
  right: 0;
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.advertise-with-us a:hover {
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.25);
}

.adv-footer {
  background-color: #272727;
  color: #fff;
  margin-top: 60px;
  padding: 120px 0;
}
.adv-footer h2 {
  margin: 0 0 40px;
}

.footerv2 {
  background-color: #000;
  color: #fff;
}
.footerv2 a {
  color: #fff;
}
.footerv2__top {
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .footerv2__top {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .footerv2__top .col-md-9 {
    margin: 0 0 15px;
  }
}
.footerv2__top .col-md-9 ul li {
  margin-right: 15px;
}
.footerv2__top .col-md-9 ul li a {
  font-weight: 500;
  font-size: 1.1rem;
}
.footerv2__top .col-md-3 ul {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footerv2__top .col-md-3 ul {
    text-align: center;
  }
}
.footerv2__top .col-md-3 ul li {
  margin-left: 5px;
}
.footerv2__top .col-md-3 ul li a {
  height: 45px;
  width: 45px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #29ABE2;
}
.footerv2__top .col-md-3 ul li a i {
  color: #fff;
}
.footerv2 .sib-form {
  padding: 0;
  background-color: transparent !important;
  text-align: left !important;
}
.footerv2 .sib-form #sib-container {
  max-width: none !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.footerv2 .sib-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.footerv2 .sib-form form > div {
  padding: 0 !important;
}
.footerv2 .sib-form form > div:nth-child(1) {
  display: none !important;
}
.footerv2 .sib-form form > div:nth-child(2) {
  flex: 1;
}
.footerv2 .sib-form form > div:nth-child(2) input {
  border-radius: 0 !important;
  border-color: #000 !important;
  font-family: inherit !important;
}
.footerv2 .sib-form form > div:nth-child(3) {
  flex: 0 0 130px;
}
.footerv2 .sib-form form > div:nth-child(3) button {
  font-size: 1rem !important;
  font-family: inherit !important;
  border-radius: 0 !important;
  background-color: #29ABE2 !important;
}
.footerv2 .sib-form form .sib-form-block {
  padding: 0 !important;
}
.footerv2__bottom {
  padding: 0 0 80px;
}
.footerv2__right {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footerv2__right {
    padding-top: 25px;
    text-align: center;
  }
}
.footerv2__right p {
  margin: 0 0 5px;
}
.footerv2__right ul a {
  font-weight: bold;
  border-bottom: 1px solid #fff;
}/*# sourceMappingURL=custom.css.map */