@charset "UTF-8";

/*-----------------
    # Typography
-----------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&amp;family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&amp;display=swap");

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #f8711d;
  --main-color-two: #1a191f;
  --secondary-color: #0983b3;
  --heading-color: #2b2a35;
  --paragraph-color: #616161;
  --heading-font: "Open Sans Condensed", sans-serif;
  --body-font: "Roboto", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
}

h1 {
  font-size: 48px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 24px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
}

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;
  box-shadow: none;
  border: 1px solid #ddd;
}

code {
  color: #faa603;
}

.dark-bg {
  background-color: #111d5c;
}

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

.check-list-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list-02 li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}

.check-list-02 li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "";
  color: var(--main-color-one);
}

.error {
  color: #dc3545;
}

.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: "";
  color: var(--main-color-one);
}

.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 {
  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-one);
}

/*--------------------------------------------------------------
# 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;
  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: 14px;
  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: #f5f5f5;
}

.secondary-bg {
  background-color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-140 {
  padding-top: 140px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 70px;
}

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

.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-125 {
  padding-bottom: 125px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin-top-minus-90 {
  margin-top: -90px;
}

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

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

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

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

.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-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

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

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

.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-bottom-190 {
  padding-bottom: 70px;
}

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

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

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

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

.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-50 {
  margin-top: 50px;
}

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

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

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

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

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

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

.margin-bottom-0 {
  margin-bottom: 0px !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-50 {
  margin-bottom: 50px;
}

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

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

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

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

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

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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;
}

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

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

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

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

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

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

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  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;
  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-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.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-one);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  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;
}

/*---------------------
    ## Breadcumb 
----------------------*/
.breadcrumb-area {

  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.breadcrumb-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgb(248 113 29 / 75%) 0%, rgb(34 143 187 / 84%) 100%);
  z-index: -1;
}

.breadcrumb-area.extra {
  padding-bottom: 138px;
}

.breadcrumb-area .breadcrumb-inner {
  padding: 180px 0 155px 0;
  text-align: center;
}

.breadcrumb-area .page-title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.breadcrumb-area p {
  font-size: 14px;
  line-height: 26px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.breadcrumb-area .page-list {
  margin: 0;
  padding: 0;
}

.breadcrumb-area .page-list li {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-area .page-list li:first-child {
  padding-left: 0;
}

.breadcrumb-area .page-list li:first-child a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-area .page-list li:first-child:after {
  display: none;
}

.breadcrumb-area .page-list li:after {
  position: absolute;
  left: 7px;
  top: 0;
  font-weight: 700;
  content: "/";
  font-family: "fontawesome";
}

.breadcrumb-area .page-list li a {
  color: #fff;
  transition: all 0.3s ease-in;
  font-size: 18px;
}

.breadcrumb-area .page-list li a:hover {
  color: var(--main-color-one);
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

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

.comments-area .comment-form-wrap {
  background-color: #f3f0ea;
  padding: 50px 95px 55px;
}

.comments-area .comments-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 38px;
}

.comments-area .comment-list .comment-respond {
  margin-bottom: 30px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  margin-bottom: 20px;
}

.comment-form .btn-wrapper .boxed-btn {
  text-transform: capitalize;
}

.comments-area .comment-list li {
  margin-bottom: 30px;
}

.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.comments-area .comment-list li ul {
  list-style: none;
}

.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style-type: none;
  list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
  display: flex;
  align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 20px;
  min-width: 80px;
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
  margin-bottom: 10px;
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-list li .single-comment-wrap .content {
  flex: 1;
  position: relative;
}

.comments-area .comment-list .has-children {
  padding-left: 80px;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
  font-size: 14px;
  line-height: 24px;
  word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
  color: var(--main-color-one);
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
  color: var(--secondary-color);
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
}

.comments-area .form-submit {
  margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
  min-height: 90px;
  resize: none;
  line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  box-shadow: none;
}

.comment-form .form-group .form-control {
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  border: 1px solid #f2f2f3;
  background-color: #fff;
}

.comment-form .submit-btn {
  height: 50px;
  width: auto;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--main-color-one);
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: #fff;
}

.comment-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.comment-respond {
  /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
  margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
  margin-right: 5px;
}

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

.widget.style-01 {
  border: 1px solid #ebebeb;
}

.widget select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
}

.widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 25px;
  text-transform: capitalize;
  position: relative;
  font-family: var(--heading-font);
}

.widget .widget-title.style-01 {
  font-size: 24px;
  background-color: #f3f0ea;
  padding: 20px 45px;
}

.widget .widget-title.style-02 {
  font-size: 24px;
  background-color: transparent;
  padding: 20px 45px;
}

.widget .widget-para {
  padding-left: 45px;
  padding-right: 45px;
}

.widget.widget_calendar {
  padding-right: 24px;
  padding-left: 24px;
}

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

.widget.widget_nav_menu ul li.menu-item-has-children:after {
  display: none;
}

.widget.footer-widget .subscribe-form {
  position: relative;
  z-index: 0;
}

.widget.footer-widget .subscribe-form .form-group .form-control {
  background-color: #fff;
  color: var(--paragraph-color);
  padding: 10px 60px 10px 20px;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #616161;
}

.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #616161;
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #616161;
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #616161;
}

.widget.footer-widget .subscribe-form .submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  color: #fff;
  border: none;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  background-color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .submit-btn:hover {
  background-color: #fff;
  color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .submit-btn:focus {
  border: none;
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 30px;
}

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

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

.widget ul li {
  display: block;
  margin: 10px 0;
  -ms-word-wrap: break-word;
  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;
  transition: all 0.3s ease-in;
}

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

.widget_subscribe {
  display: flex;
  align-items: center;
}

.widget_subscribe .widget-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  margin-right: 15px;
}

.widget_subscribe .subscribe-form .form-group {
  margin-bottom: 0;
}

.widget_subscribe .subscribe-form .form-group .form-control {
  min-width: 320px;
}

.widget_search .search-form {
  position: relative;
}

.widget_search .search-form .form-group {
  margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
  height: 50px;
  border: none;
  border-radius: 0;
  border-left: 2px solid var(--main-color-one);
  padding: 0 70px 0 15px;
}

.widget_search .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  font-size: 18px;
  background-color: transparent;
  color: #333;
  transition: 0.3s ease-in;
  border: none;
  cursor: pointer;
}

.widget_search .search-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.widget_author_meta {
  text-align: center;
}

.widget_author_meta .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.widget_author_meta .thumb img {
  border-radius: 50%;
}

.widget_author_meta .content .name {
  font-size: 21px;
  font-weight: 700;
}

.widget_author_meta .content p {
  font-size: 16px;
  line-height: 26px;
}

.widget_author_meta .content ul {
  margin-top: 25px;
}

.widget_author_meta .content ul li {
  display: inline-block;
  margin: 0 5px;
}

.widget_author_meta .content ul li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease-in;
}

.widget_author_meta .content ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.widget_tag_cloud .tagcloud {
  padding: 0 45px 20px;
}

.widget_tag_cloud .tagcloud a {
  display: inline-block;
  color: inherit;
  transition: all 0.3s ease-in;
  text-decoration: underline;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px !important;
}

.widget_tag_cloud .tagcloud a:hover {
  color: #333;
}

.widget.widget_author_meta {
  padding: 30px 50px;
}

.widget.widget_author_meta.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.widget.widget_author_meta.bg-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(146, 56, 164, 0.6);
  z-index: -1;
}

.widget.widget_author_meta .content .icon {
  font-size: 60px;
  line-height: 70px;
  color: var(--main-color-one);
  margin-bottom: 15px;
}

.widget.widget_author_meta .content .name {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
}

.widget.widget_author_meta .content p {
  color: #fff;
}

.widget ul li ul.sub-menu {
  position: initial;
}

.widget ul li ul.sub-menu {
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  border-top: none;
  box-shadow: none;
  margin-top: 10px;
}

.widget ul li ul.sub-menu li a {
  padding: 0 0 0px 10px;
}

.widget ul li ul.sub-menu li a:hover {
  background-color: transparent;
}

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

.widget.widget_nav_menu ul li {
  margin: 10px 0;
}

.widget.widget_event ul {
  padding-left: 45px;
  padding-right: 45px;
  padding-bottom: 30px;
}

.widget.widget_event ul li:first-child {
  padding-top: 0;
}

.widget.widget_event ul li {
  padding: 10px 0;
  font-weight: 700;
}

.widget.widget_event ul li+li {
  border-top: 1px solid #ebebeb;
}

.widget.widget_event ul li:last-child {
  border-bottom: none;
}

.widget.widget_event ul li a span {
  float: right;
  font-weight: 500;
}

.widget.widget_archive ul {
  padding-left: 45px;
  padding-bottom: 25px;
}

.widget.widget_archive ul li:first-child {
  padding-top: 0;
}

.widget.widget_archive ul li:last-child {
  border-bottom: none;
}

.widget.widget_archive ul li a span {
  margin-left: 10px;
}

.widget.widget_archive ul li a i {
  color: var(--secondary-color);
}

.widget.widget_map .contact_map-02 {
  padding: 15px 45px 45px 45px;
}

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

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

.widget.widget_nav_menu ul li a {
  border: none;
}

.widget.widget_nav_menu ul li>ul {
  margin-left: 15px;
}

.widget.footer-widget.widget_calendar table {
  margin-bottom: 0;
}

.widget.footer-widget.widget_calendar caption {
  padding-bottom: 0;
}

.widget.footer-widget .widget-title {
  color: #0983b3;
  text-transform: uppercase !important;
}

.widget.footer-widget p,
.footer-widget.widget_tag_cloud .tagcloud a,
.widget.footer-widget.widget_calendar caption,
.widget.footer-widget.widget_calendar th,
.widget.footer-widget.widget_calendar td {
  color: #000;
  font-size: 16px;
}

.widget.footer-widget.style-01 p,
.widget.footer-widget.style-01 ul li,
.widget.footer-widget.style-01 ul li a {
  color: #54606c;
}

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

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
  color: #000;
  font-size: 16px;
}

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

.widget .social_share {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}

.widget .social_share li {
  width: calc(100% / 3);
  margin: 0;
  display: block;
  padding: 20px 0 12px 0;
  text-align: center;
  border-radius: 5px;
  color: #fff;
}

.widget .social_share li i {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.widget .social_share li.facebook {
  background-color: #3b5999;
}

.widget .social_share li.twitter {
  background-color: #55acee;
}

.widget .social_share li.instagram {
  background-color: #e4405f;
}

.widget .social_share li a:hover {
  color: #fff;
}

.widget .social_share li+li {
  margin-left: 10px;
}

.widget .recent_post_item {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 45px;
  padding-bottom: 30px;
  padding-right: 10px;
}

.widget .recent_post_item li {
  display: block;
}

.widget .recent_post_item li+li {
  margin-top: 20px;
}

.widget .recent_post_item li.single-recent-post-item {
  display: flex;
  align-self: flex-start;
}

.widget .recent_post_item li.single-recent-post-item .thumb {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.widget .recent_post_item li.single-recent-post-item .content {
  flex: 1;
}

.widget .recent_post_item li.single-recent-post-item .content .title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #2b2a35;
}

.widget .recent_post_item li.single-recent-post-item .content .time {
  font-size: 12px;
  font-weight: 500;
  color: #959ba0;
}

.widget .recent_post_item li.single-recent-post-item .content .time i {
  color: var(--secondary-color);
  padding-right: 5px;
}

.widget .recent_post_item li.single-recent-post-item .content .time span {
  color: var(--secondary-color);
  padding-right: 5px;
}

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

.contact_info_list li {
  display: block;
}

.contact_info_list li.single-info-item {
  margin-bottom: 15px;
}

.contact_info_list li.single-info-item.style-01 .title {
  color: #2b2a35;
}

.contact_info_list li.single-info-item.style-01 .details {
  color: #54606c;
}

.contact_info_list li.single-info-item .title {
  font-size: 18px;
  font-weight: 700;
  color: #0983b3;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.contact_info_list li.single-info-item .details {
  color: #000000;
  line-height: 25px;
}

.contact_info_list li.single-info-item-02 {
  margin-left: 40px;
  position: relative;
  display: flex;
}

.contact_info_list li.single-info-item-02.style-01 .details {
  color: #2b2a35;
}

.contact_info_list li.single-info-item-02 .icon {
  margin-right: 15px;
  font-size: 25px;
  color: var(--main-color-one);
}

.contact_info_list li.single-info-item-02 .details {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.about_us_widget .footer-logo {
  margin-bottom: 20px;
  display: block;
}

.copyright-area {
  padding: 20px 0;
  text-align: center;
  color: #898ba7;
  font-size: 14px;
}

.widget-testimonial .icon {
  font-size: 70px;
  line-height: 60px;
  color: var(--main-color-one);
  margin-bottom: 16px;
}

.widget-testimonial p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.widget-testimonial .author-meta {
  display: flex;
  align-self: flex-start;
  margin-top: 24px;
}

.widget-testimonial .author-meta .thumb {
  margin-right: 20px;
}

.widget-testimonial .author-meta .thumb img {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}

.widget-testimonial .author-meta .content {
  flex: 1;
  margin-top: 15px;
}

.widget-testimonial .author-meta .content .name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.widget-testimonial .author-meta .content .designation {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.practice-sidebar .widget.widget_categories,
.case-sidebar .widget.widget_categories {
  padding: 0px;
  background-color: transparent;
}

.practice-sidebar .widget.widget_categories .widget-title,
.case-sidebar .widget.widget_categories .widget-title {
  background-color: #e1e1e1;
  padding: 15px 30px;
  margin-bottom: 0px;
}

.practice-sidebar .widget.widget_categories ul li,
.case-sidebar .widget.widget_categories ul li {
  position: relative;
  z-index: 0;
  background-color: #f5f5f5;
  padding: 13px 30px;
  margin-bottom: 0;
}

.practice-sidebar .widget.widget_categories ul li+li,
.case-sidebar .widget.widget_categories ul li+li {
  margin-top: 2px;
}

.practice-sidebar .widget.widget_categories ul li:after,
.case-sidebar .widget.widget_categories ul li:after {
  position: absolute;
  left: 15px;
  top: 12px;
  content: "";
  font-family: "fontawesome";
  font-weight: 900;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar.navbar-area.white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area.nav-style-01 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  filter: brightness(10);
}

.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }

  .desktop-logo {
    display: none !important;
  }
}

.navbar-area {
  padding: 0;
}

.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 1;
}

.navbar-area.nav-style-02 {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 70px;
  z-index: 2;
}

.navbar-area.nav-style-02.has-topbar {
  top: 42px;
}

.navbar-area.nav-style-02.has-topbar-02 {
  top: 122px;
}

.navbar-area.nav-style-02.has-topbar-03 {
  top: 70px;
}

.navbar-area.nav-style-02.charity-nav-02 {
  background-color: transparent;
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container {
  padding: 0 0 0 20px;
  background-color: var(--main-color-one);
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .logo-wrapper {
  -webkit-clip-path: initial;
  clip-path: initial;
  border-left: none;
  padding: 30px 70px;
  top: -45px;
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .logo-wrapper .mobile-logo {
  display: none;
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .nav-right-content {
  margin-left: 0;
  -webkit-clip-path: initial;
  clip-path: initial;
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .nav-right-content::after {
  display: none;
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--heading-color);
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item::before {
  color: var(--heading-color);
}

.navbar-area.nav-style-02.charity-nav-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--heading-color);
}

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

.navbar-area.nav-style-02.charity-nav-03 {
  background-color: transparent;
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container {
  padding: 0 0 0 20px;
  background-color: transparent;
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container .logo-wrapper {
  position: initial;
  -webkit-clip-path: initial;
  clip-path: initial;
  border: none;
  padding: 0;
  background-color: transparent;
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container .nav-right-content {
  margin-left: 0;
  -webkit-clip-path: initial;
  clip-path: initial;
  background-color: transparent;
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container .nav-right-content::after {
  display: none;
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container .navbar-collapse .navbar-nav li.current-menu-item::before {
  color: var(--main-color-one);
}

.navbar-area.nav-style-02.charity-nav-03 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

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

.navbar-area.nav-style-02 .nav-container {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 30px;
}

.navbar-area.nav-style-02 .nav-container .logo-wrapper {
  background-color: #fff;
  /* position: absolute; */
  /* top: -42px; */
  /* box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.2); */
  /* padding: 33px 30px 33px 30px; */
  /* border-left: 5px solid var(--main-color-one); */
  /* -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%); */
  /* clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%); */
}

.navbar-area.nav-style-02 .nav-container .nav-right-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-left: 30px;
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 20% 0, 63% 0);
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 20% 0, 63% 0);
  /* background-color: var(--main-color-one); */
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li+li {
  margin-left: 5px;
}

.navbar-area.nav-style-02 .nav-container .nav-right-content ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
  text-align: center;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--secondary-color);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
  color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  z-index: initial;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  background-color: #fff;
  color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.navbar-area.nav-style-02 .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-style-02 .nav-container .navbar-collapse .navbar-nav li a {
  transition: all 0.3s ease-in;
  color: var(--main-color-two);
  text-transform: uppercase;
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
  color: var(--main-color-one);
}

.navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: var(--main-color-one);
}

.navbar-area.nav-style-01 {
  background-color: var(--main-color-two);
}

.navbar-area.nav-style-01 .nav-container {
  background-color: var(--main-color-two);
  box-shadow: none;
  border-radius: 0;
  padding: 0 15px;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
  text-align: right;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
  line-height: 110px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
  color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  z-index: initial;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
  border-top: 1px solid #e2e2e2;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  background-color: #fff;
  color: var(--paragraph-color);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.navbar-area.nav-style-01 .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-style-01 .nav-container .navbar-collapse .navbar-nav li a {
  transition: all 0.3s ease-in;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
  color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: var(--main-color-one);
}

.navbar-area .nav-container {
  background-color: #fff;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 0 30px;
}

.navbar-area .nav-container .nav-right-content .btn-wrapper {
  margin-left: 40px;
}

.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
  margin: 0 15px;
  color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
  margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
  color: #6a7795;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
  color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul li.search {
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
  color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
  background-color: var(--secondary-color);
}

.navbar-area .nav-container .navbar-brand .site-title {
  font-weight: 700;
  font-size: 30px;
  font-family: var(--heading-font);
  line-height: 90px;
  color: var(--heading-color);
}

.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: 14px;
  font-family: var(--body-font);
  text-transform: capitalize;
  font-weight: 600;
  line-height: 70px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
  margin-left: 30px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 15px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  font-weight: 700;
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}

.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: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  border-bottom: 4px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 14px;
}

.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: 10px 20px;
  background-color: #fff;
  /* white-space: nowrap; */
  color: var(--paragraph-color);
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.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>.sub-menu {
  left: 100%;
  top: 0px;
}

.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 a {
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
  .navbar-area.nav-style-02 .nav-container {
    padding: 12px 0px;
  }

  .navbar-area.nav-style-02 .nav-container .navbar-toggler {
    background-color: #fff;
    outline: none;
  }

  .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav {
    background-color: #fff;
    /* padding: 0 20px; */
  }

  .navbar-area.nav-style-02 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: transparent;
    color: #000;
  }

  .navbar-area.nav-style-01 .nav-container {
    padding: 20px 0px;
  }

  .navbar-area.nav-style-01 .nav-container .responsive-mobile-menu .navbar-toggler {
    background-image: none;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: left;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li {
    line-height: 30px;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
    color: var(--main-color-one);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: 1px solid #e2e2e2;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: transparent;
    color: var(--paragraph-color);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background-color: var(--main-color-one);
    color: #fff;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: #656565;
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    transition: all 0.3s ease-in;
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
  }

  .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
  }

  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
  }

  .navbar-area .nav-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }

  .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 50%;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .navbar-area .nav-container .navbar-brand {
    display: block;
  }

  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    margin-left: 13px;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
  }

  .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: 60px;
  }

  .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;
    padding-top: 10px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    transition: height 500ms;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }

  .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 {
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    /* margin: 0 15px; */
  }
}

/*----------------------------
    Info Bar
----------------------------*/
.info-bar-bottom {
  background-color: transparent;
}

.info-bar-bottom.style-01 {
  position: absolute;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
}

.info-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items li {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  transition: all 0.3s ease-in;
}

.info-items li+li {
  margin-left: 20px;
}

.info-items li:hover {
  color: #fff;
}

.info-items li i {
  margin-right: 3px;
  color: #fff;
}

.info-bar-item {
  display: flex;
  padding: 2px 0px 3px 0px;
}

.info-bar-item.style-01 {
  background-color: #1a191f;
}

.info-bar-item.style-01 .icon {
  color: var(--main-color-one);
}

.info-bar-item.style-02 {
  padding: 0 30px;
  background-color: var(--main-color-one);
}

.info-bar-item.style-02 .icon {
  color: #fff;
}

.info-bar-item .icon {
  font-size: 35px;
  color: #fff;
  margin-right: 10px;
}

.info-bar-item .content .title {
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  color: #fff;
}

.info-bar-item .content .details {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
  color: #fff;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 700;
}

.info-items-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items-02 li {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.info-items-02 li.volunteer {
  font-weight: 700;
  font-size: 14px;
  margin-left: 10px;
}

.info-items-02 li i {
  margin-right: 10px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 15px;
  display: inline-block;
  color: #fff;
  background-color: var(--main-color-one);
}

.info-items-03 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items-03 li {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #616161;
  transition: all 0.3s ease-in;
}

.info-items-03 li+li {
  margin-top: 10px;
}

.info-items-03 li:hover {
  color: var(--main-color-one);
}

.info-items-03 li i {
  margin-right: 3px;
  color: #00bdc0;
}

.info-items-icon {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items-icon li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  transition: all 0.3s ease-in;
}

.info-items-icon li+li {
  margin-left: 20px;
}

.info-items-icon li:hover {
  color: var(--secondary-color);
}

/*----------------------------
    Top Bar
----------------------------*/
.topbar-area {
  background-color: #f8711d;
}

.topbar-area.style-01 {
  background-color: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 5;
}

.topbar-area.style-02 {
  background-color: rgba(255, 255, 255, 0.05);
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 5;
}

.topbar-area.style-02 .topbar-inner {
  margin-left: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  /* margin-left: 330px; */
}

.topbar-inner.style-01 {
  padding: 0;
}

.topbar-inner.style-01 .right-contnet .social-link {
  padding-left: 40px;
}

.topbar-inner.style-01 .right-contnet .social-link ul li .info-bar-item {
  margin-left: 30px;
}

.topbar-inner .right-contnet {
  display: flex;
  align-items: center;
}

.topbar-inner .right-contnet .volunteer-right {
  margin-left: 50px;
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-style-04.has-top-bar .navbar-area {
  top: 75px;
}

.header-style-04.has-top-bar .header-area {
  padding-top: 352px;
  padding-bottom: 300px;
}

.header-style-03 .header-area {
  padding-top: 295px;
}

.header-area-wrapper,
.header-style-02,
.header-style-03 {
  position: relative;
  z-index: 0;
}

.header-style-02 .header-area {
  padding-top: 295px;
  padding-bottom: 290px;
}

.header-slider-one .owl-item.active .title {
  /* animation: slideInLeft 2s 0s both; */
}

.header-slider-one .owl-item.active p {
  /* animation: slideInLeft 2s 1s both; */
}

.header-slider-one .owl-item.active span {
  /* animation: slideInRight 2s 1s both; */
}

.header-slider-one .owl-item.active .author-sign {
  animation: flipInX 2s 1s both;
}

.header-slider-one .owl-item.active .icon {
  /* animation: flipInY 2s 2s both; */
}

.header-slider-one .owl-item.active .btn-wrapper {
  /* animation: flipInX 2s 1s both; */
}

.header-slider-one .owl-item.active .animate-style {
  animation: flipInX 2s 1s both;
}

.header-slider-one .owl-item.active .animate-style-02 {
  animation: flipInX 2s 1s both;
}

.header-slider-one:hover .owl-nav div {
  visibility: visible;
  opacity: 1;
}

.header-slider-one .owl-nav div {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in;
  visibility: hidden;
  opacity: 0;
}

.header-slider-one .owl-nav div:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}

.header-slider-one .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}

.header-area {
  /* padding: 200px 0 200px; */
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.header-area.style-01 {
  /* padding: 255px 0 295px; */
}

.header-area.style-02 {
  /* padding: 235px 0 295px; */
}

.header-area.header-bg {
  background-color: #000;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.header-area.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(360deg, rgba(117, 0, 98, 0.8) 0%, rgba(238, 11, 82, 0.8) 100%); */
  /* background: linear-gradient(360deg, rgb(248 113 29 / 92%) 0%, rgb(34 143 187 / 92%) 100%); */

  /* background: linear-gradient(360deg,  rgb(34 143 187 / 84%) 0%,rgb(248 113 29 / 75%) 100%); */

  background: #00000061;
  z-index: -1;
}

.header-area.header-bg-02 {
  background-color: #000;
  background-position: center;
  background-size: cover;
  position: relative;
}

.header-area.header-bg-02::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(104, 198, 178, 0.6);
  z-index: -1;
}

.header-area.header-bg-03 {
  background-color: #000;
  background-position: center;
  background-size: cover;
  position: relative;
}

.header-area.header-bg-03::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 42, 53, 0.5);
  z-index: -1;
}

.header-area .header-inner {
  overflow: hidden;
}

.header-area .header-inner-02 {
  overflow: hidden;
}

.header-area .header-inner-02 .paragraph-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 40px;
  display: inline-block;
}

.header-area .header-inner-02 .title {
  text-transform: initial;
}

.header-area .icon {
  width: 80px;
  height: 80px;
}

.header-area .title {
  font-size: 40px;
  line-height: 55px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
}

.header-area p {
  font-size: 28px;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.8);
}

.header-area span {
  color: #fff;
  /* font-size: 20px; */
  font-weight: 500;
  display: block;
}

/*----------------------------
    Header Bottom Area
-----------------------------*/
.header-bottom-wrapper .right-content {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-bottom-area {
  position: relative;
  z-index: 0;
}

.header-bottom-area.bg-image {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.header-bottom-area.m-bottom {
  margin-bottom: -90px;
  position: relative;
  z-index: 1;
}

.header-bottom-area.m-top {
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.header-bottom-area .bg-img {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

/*-------------------------
    Footer Area
-------------------------*/
.footer-top {
  border-bottom: 1px solid rgba(114, 108, 148, 0.2);
}

.footer-top .footer-top-border {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(114, 108, 148, 0.2);
}

.footer-top.style-01 {
  border-bottom: 1px solid #f3f0ea;
  background-color: #f3f0ea;
}

.footer-top.style-01 .widget .widget-title {
  color: #2b2a35;
}

.footer-top.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.copyright-area {
  background-color: var(--main-color-one)
}

.copyright-area .copyright-area-inner {
  color: #fff;
}

.copyright-area.style-01 {
  background-color: #f0ece3;
}

.copyright-area.style-01 .copyright-area-inner {
  color: #54606c;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
  text-align: center;
}

.error-404 .title {
  font-size: 200px;
  line-height: 160px;
  font-weight: 700;
  margin-bottom: 45px;
  color: var(--main-color-one);
}

.error-404 .subtitle {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.error-404 .search-form {
  position: relative;
  z-index: 0;
  margin-top: 36px;
}

.error-404 .search-form .form-control {
  height: 54px;
  padding: 0 20px;
}

.error-404 .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  text-align: center;
  padding: 0;
  height: 55px;
}

/*-----------------------------
    Call To Action Area
-----------------------------*/
.call-to-action-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 310px;
}

.call-to-action-inner.bg-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.call-to-action-inner.bg-image::after {
  content: "";
  position: absolute;
  background-image: url(../img/call-to-action/01.html);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  padding: 140px 0;
  position: absolute;
  left: 0;
}

.call-to-action-inner.style-02 .title {
  font-size: 60px;
  line-height: 70px;
}

.call-to-action-inner .icon {
  font-size: 120px;
  color: var(--secondary-color);
}

.call-to-action-inner .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
}

.call-to-action-inner .subtitle {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: #fff;
}

/*-------------------------
    Testimonial Area
--------------------------*/
.testimonial-area {
  position: relative;
  z-index: 0;
}

.testimonial-area.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-area.bg-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgb(197 197 197 / 71%); */
  z-index: -1;
}

.testimonial-area-02 {
  position: relative;
  z-index: 0;
}

.testimonial-area-02.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work-towards-area.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.work-towards-area.bg-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.work-towards-area .left-content .inner-section-title.bg-image {
  background-size: contain;
  background-repeat: no-repeat;
}

.work-towards-area .left-content .inner-section-title .title {
  font-size: 72px;
  line-height: 82px;
  font-weight: 700;
  color: #fff;
}

.work-towards-area .right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.work-towards-area .right-content.style-01 {
  height: inherit;
  margin-top: 60px;
}

.work-towards-area .right-content.style-02 {
  height: inherit;
  margin-top: 60px;
  justify-content: left;
}

.work-towards-area .right-content .vdo-btn:hover a i::after {
  left: 0;
  top: 0;
}

.work-towards-area .right-content .vdo-btn a {
  color: #fff;
}

.work-towards-area .right-content .vdo-btn a i {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  font-size: 16px;
  background-color: var(--main-color-one);
  border-radius: 50%;
}

.work-towards-area .right-content .vdo-btn a i::after {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 2px solid #000;
}

.help-and-support-left .content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.help-and-support-left .content ul li i {
  margin-right: 10px;
  color: var(--main-color-one);
}

.help-and-support-right {
  position: relative;
  z-index: 0;
}

.help-and-support-right.style-01 {
  display: flex;
  align-items: center;
  height: 100%;
}

.help-and-support-right .support-img {
  position: relative;
  z-index: 0;
}

.help-and-support-right .support-img.bg-image {
  min-height: 400px;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.help-and-support-right .support-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60px;
  height: 590px;
  top: -20%;
  right: 12%;
  border-radius: 30px;
  transform: rotate(35deg);
  background-color: var(--main-color-one);
}

.help-and-support-right .support-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  top: 66%;
  left: -20%;
  transform: translateY(-50%);
  background-image: url(../img/support/bg.png);
}

.help-and-support-right .donation-content {
  height: 120px;
  width: 120px;
  position: absolute;
  top: 50%;
  left: -60px;
  padding-top: 35px;
  transform: translateY(-50%);
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 109px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.help-and-support-right .donation-content .price {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color-one);
}

.help-and-support-right .support-img-02 {
  position: relative;
  z-index: 0;
}

.help-and-support-right .support-img-02.bg-image {
  min-height: 450px;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.volunteer-area.m-top {
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

.volunteer-area.m-top-02 {
  position: relative;
  z-index: 1;
  margin-top: -25px;
}

.volunteer-area.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

/* .volunteer-area .volunteer-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
} */

/* .volunteer-area .volunteer-title-content .section-title {
  width: calc(100% / 2);
} */

.volunteer-area .volunteer-title-content .section-paragraph {
  width: 50%;
  padding-right: 80px;
}

.volunteer-single-item-lists {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.volunteer-single-item-lists li {
  width: calc(100% / 3);
}

.problem-area {
  position: relative;
  z-index: 0;
}

.problem-area .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  width: 55%;
  z-index: -2;
  height: 100%;
  background-repeat: no-repeat;
}

.problem-area .problem-area-wrapper {
  padding: 75px 100px 45px;
  background-color: #f3f0ea;
}

.about-area .about-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-area .about-title-content .section-title {
  width: calc(100% / 2);
}

.about-area .about-title-content .section-paragraph {
  width: 50%;
}

.about-area .about-title-content .section-paragraph span {
  font-size: 60px;
  line-height: 60px;
}

.about-content-area {
  position: relative;
  z-index: 0;
}

.about-content-area .bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
}

.about-content {
  background-color: var(--secondary-color);
  padding: 50px 50px 50px 50px;
}

.about-content .section-title .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
}

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

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

.about-content .content ul li {
  color: #333;
  margin-bottom: 10px;
}

.about-content .content ul li i {
  margin-right: 10px;
  color: var(--main-color-one);
}

.contact-inner-area .content-area-wrapper {
  position: relative;
  z-index: 0;
}

.contact-inner-area .content-area-wrapper.bg-image {
  min-height: 400px;
  height: 100%;
  width: 100%;
  /* background-size: cover; */
  background-position: 80% 80%;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.contact-inner-area .content-area-wrapper .content-area {
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 20px 40px;
  background-color: rgb(9 131 179 / 93%);
  border-radius: 20px;
}

.blog-area.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.attend-events-area.m-top {
  position: relative;
  margin-top: -25px;
  z-index: 0;
}

.attend-events-area.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.attend-events-area .attend-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.attend-events-area .attend-title-content .section-title {
  width: calc(100% / 2);
}

.attend-events-area .attend-title-content .section-paragraph {
  width: 50%;
  padding-right: 80px;
}

/*---------------------------
    Request Form Quote
---------------------------*/
.request-page-form .form-group textarea {
  max-height: 90px;
  width: 100%;
  resize: none;
  padding: 15px 30px 15px 30px;
  border: 1px solid #ebebeb;
}

.request-page-form .form-group textarea::placeholder {
  color: rgba(43, 42, 53, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.request-page-form .form-group .form-control {
  border: 1px solid #ebebeb;
  padding: 15px 30px 15px 30px;
  color: var(--heading-color);
  background-color: transparent;
}

.request-page-form .form-group .form-control::placeholder {
  color: rgba(43, 42, 53, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.request-page-form .submit-btn {
  background-color: var(--main-color-one);
  width: 100%;
  padding: 19px 40px;
  font-weight: 700;
  border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--main-color-one);
}

.request-page-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: 1px solid var(--secondary-color);
}

/*--------------------------
    Counterup Area
--------------------------*/
.counterup-area {
  position: relative;
  z-index: 0;
}

.counterup-area.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counterup-area.bg-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: ghostwhite;
  z-index: -1;
}

.counterup-area-wrapper {
  background-color: ghostwhite;
  padding: 50px 0 30px;
}

/*-----------------------------
    Case Category
-----------------------------*/
.case-categories-area {
  position: relative;
}

.case-categories-area.bg-image {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.case-categories-area.bg-image:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  opacity: 0.8;
  z-index: -1;
  content: "";
}

.our-latest-area.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 50px;
  bottom: 85px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner .loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  animation: rotateAnim 2s infinite ease;
  -webkit-animation: rotateAnim 2s infinite ease;
}

.preloader-inner .loader div {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #019e43;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: translateAnim 2s infinite ease;
  -webkit-animation: translateAnim 2s infinite ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.preloader-inner .loader div:nth-child(1) {
  top: -25px;
  animation-name: translateAnimTop;
  -webkit-animation-name: translateAnimTop;
}

.preloader-inner .loader div:nth-child(2) {
  left: 25px;
  animation-name: translateAnimRight;
  -webkit-animation-name: translateAnimRight;
}

.preloader-inner .loader div:nth-child(3) {
  top: 25px;
  animation-name: translateAnimBottom;
  -webkit-animation-name: translateAnimBottom;
}

.preloader-inner .loader div:nth-child(4) {
  left: -25px;
  animation-name: translateAnimLeft;
  -webkit-animation-name: translateAnimLeft;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(90deg);
  }

  75% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes translateAnimTop {
  0% {
    transform: translateY(0px);
    background: #019e43;
  }

  25% {
    transform: translateY(0px);
    background: #019e43;
  }

  50% {
    transform: translateY(-20px);
    background: none;
  }

  75% {
    transform: translateY(-20px);
    background: none;
  }

  100% {
    transform: translateY(0px);
    background: #019e43;
  }
}

@keyframes translateAnimBottom {
  0% {
    transform: translateY(0px);
    background: #019e43;
  }

  25% {
    transform: translateY(0px);
    background: #019e43;
  }

  50% {
    transform: translateY(20px);
    background: none;
  }

  75% {
    transform: translateY(20px);
    background: none;
  }

  100% {
    transform: translateY(0px);
    background: #019e43;
  }
}

@keyframes translateAnimLeft {
  0% {
    transform: translateX(0px);
    background: #019e43;
  }

  25% {
    transform: translateX(0px);
    background: #019e43;
  }

  50% {
    transform: translateX(-20px);
    background: none;
  }

  75% {
    transform: translateX(-20px);
    background: none;
  }

  100% {
    transform: translateX(0px);
    background: #019e43;
  }
}

@keyframes translateAnimRight {
  0% {
    transform: translateX(0px);
    background: #019e43;
  }

  25% {
    transform: translateX(0px);
    background: #019e43;
  }

  50% {
    transform: translateX(20px);
    background: none;
  }

  75% {
    transform: translateX(20px);
    background: none;
  }

  100% {
    transform: translateX(0px);
    background: #019e43;
  }
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrapper {
  display: block;
}

.btn-wrapper .boxed-btn {
  background-color: #fff;
  color: var(--secondary-color);
  display: inline-block;
  padding: 13px 13px;
  border-radius: none;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.btn-wrapper .boxed-btn.white:hover {
  background-color: #fff;
  color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.outer-btn {
  border: 1px solid transparent;
}

.btn-wrapper .boxed-btn.outer-btn:hover {
  background-color: transparent;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank {
  background-color: transparent;
  border: 1px solid #fff;
}

.btn-wrapper .boxed-btn.blank.reverse-color {
  background-color: transparent;
  border: 2px solid var(--main-color-one);
  color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank.reverse-color:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.blank:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn:hover {
  color: #fff;
  background-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.btn-rounded {
  border-radius: 30px;
}

.btn-wrapper .boxed-btn.reverse-color {
  color: #fff;
  background-color: var(--main-color-one);
}

.btn-wrapper .boxed-btn.reverse-color:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.btn-wrapper .read-btn {
  color: var(--main-color-one);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: -15px;
  top: -20px;
  width: 30px;
  height: 30px;
  color: #fff;
  border-color: var(--main-color-one);
  background-color: var(--main-color-one);
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
}

.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;
  }
}

/*-----------------------
    Blog Grid Item
-----------------------*/
.blog-classic-item-01 {
  position: relative;
}

.blog-classic-item-01 .content-wrapper {
  display: flex;
  padding: 40px 0;
}

.blog-classic-item-01 .content-wrapper .news-date {
  text-align: center;
  font-weight: 600;
  margin-right: 30px;
}

.blog-classic-item-01 .content-wrapper .news-date .title {
  background-color: var(--secondary-color);
  margin-bottom: 0;
  color: #fff;
  padding: 6px 20px;
  display: inline-block;
  font-weight: 600;
}

.blog-classic-item-01 .content-wrapper .news-date span {
  background-color: var(--main-color-one);
  display: block;
  color: #fff;
  padding: 6px 0;
}

.blog-classic-item-01 .content-wrapper .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-classic-item-01 .content-wrapper .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}

.blog-classic-item-01 .content-wrapper .post-meta li:hover a {
  color: var(--main-color-one);
}

.blog-classic-item-01 .content-wrapper .post-meta li+li {
  margin-left: 20px;
}

.blog-classic-item-01 .content-wrapper .post-meta li a {
  transition: all 500ms;
}

.blog-classic-item-01 .content-wrapper .post-meta li a span {
  color: var(--main-color-one);
}

.blog-classic-item-01 .content-wrapper .title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  transition: all 500ms;
}

.blog-classic-item-01 .content-wrapper .title:hover {
  color: var(--main-color-two);
}

.blog-classic-item-01 .blog-bottom .btn-wrapper .boxed-btn {
  padding: 8px 15px;
  margin-top: 20px;
  text-transform: capitalize;
}

.blog-classic-item-01 .thumbnail {
  margin-bottom: 25px;
  display: block;
}

.blog-classic-item-01.is-sticky {
  position: relative;
  z-index: 0;
}

.blog-classic-item-01.is-sticky:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  font-family: "fontawesome";
  font-size: 30px;
  line-height: 30px;
  color: var(--main-color-one);
}

.blog-classic-item-01.format-video .thumbnail {
  position: relative;
  z-index: 0;
}

.blog-classic-item-01.format-video .thumbnail .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-classic-item-01.format-quote .quote-post-type {
  background-color: #f5f5f5;
  padding: 25px 30px 25px 80px;
  border-radius: 2px;
  position: relative;
  z-index: 0;
}

.blog-classic-item-01.format-quote .quote-post-type:after {
  position: absolute;
  left: 30px;
  top: 20px;
  content: "";
  font-family: "fontawesome";
  font-size: 30px;
  color: var(--main-color-one);
}

.blog-classic-item-01.format-quote .quote-post-type p {
  line-height: 26px;
}

.blog-classic-item-01.format-quote .quote-post-type .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0px;
}

.blog-details-item {
  position: relative;
  z-index: 0;
}

.blog-details-item .content-wrapper {
  display: flex;
  padding: 40px 0;
}

.blog-details-item .content-wrapper .news-date {
  text-align: center;
  font-weight: 600;
  margin-right: 30px;
}

.blog-details-item .content-wrapper .news-date .title {
  background-color: var(--secondary-color);
  margin-bottom: 0;
  color: #fff;
  padding: 6px 20px;
  display: inline-block;
  font-weight: 600;
}

.blog-details-item .content-wrapper .news-date span {
  background-color: var(--main-color-one);
  display: block;
  color: #fff;
  padding: 6px 0;
}

.blog-details-item .content-wrapper .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-item .content-wrapper .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}

.blog-details-item .content-wrapper .post-meta li:hover a {
  color: var(--main-color-one);
}

.blog-details-item .content-wrapper .post-meta li+li {
  margin-left: 20px;
}

.blog-details-item .content-wrapper .post-meta li a {
  transition: all 500ms;
}

.blog-details-item .content-wrapper .post-meta li a span {
  color: var(--main-color-one);
}

.blog-details-item .blog-details-item-header {
  display: flex;
}

.blog-details-item .blog-details-item-header .social-link {
  margin-left: 50px;
}

.blog-details-item .title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-details-item .sub-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 40px;
}

.blog-details-item p {
  line-height: 24px;
}

.blog-details-item blockquote:not([class]) {
  margin-top: 40px;
  padding-left: 25px;
  border-left: 2px solid var(--main-color-one);
}

.blog-details-item blockquote:not([class]) p {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #2b2a35;
}

.blog-details-item .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.blog-details-item .post-meta li {
  display: inline-block;
  font-size: 14px;
}

.blog-details-item .post-meta li i {
  color: var(--secondary-color);
}

.blog-details-item .post-meta li+li {
  margin-left: 10px;
}

.blog-details-item .post-meta li a {
  transition: all 0.3s ease-in;
}

.blog-details-item .post-meta li a:hover {
  color: var(--main-color-one);
}

.blog-details-item .post-meta .date a {
  color: var(--secondary-color);
}

.blog-details-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  border-top: 1px solid #f5f5f5;
  padding-top: 25px;
}

.blog-details-footer .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.blog-details-footer .left .tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-footer .left .tags li {
  display: inline-block;
}

.blog-details-footer .left .tags li i {
  padding-right: 5px;
  color: var(--secondary-color);
}

.blog-details-footer .left .tags li a {
  display: inline-block;
  margin: 5px;
  color: inherit;
  transition: all 0.3s ease-in;
  border-radius: 5px;
  font-size: 14px !important;
  transition: all 0.3s ease-in;
}

.blog-details-footer .left .tags li a:hover {
  color: var(--secondary-color);
}

.blog-details-footer .right .social-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-footer .right .social-share li {
  font-weight: 700;
  font-family: var(--heading-font);
  display: inline-block;
  transition: all 0.3s ease-in;
}

.blog-details-footer .right .social-share li+li {
  margin-left: 10px;
}

.blog-details-footer .right .social-share li i {
  margin-right: 5px;
  color: var(--main-color-one);
}

.blog-details-footer .right .social-share li:hover {
  color: var(--heading-color);
}

.donation-details-item .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.donation-details-item .content-wrapper .progress-content {
  width: 60%;
  margin-right: 30px;
}

.donation-details-item .title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.donation-details-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.donation-details-item ul li+li {
  margin-top: 10px;
}

.donation-details-item ul li a i {
  margin-right: 15px;
  color: var(--main-color-one);
}

.events-details-item .thumb {
  position: relative;
  z-index: 0;
}

.events-details-item .thumb .post-time {
  position: absolute;
  left: 50px;
  bottom: 50px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding-top: 18px;
  text-align: center;
  background-color: var(--main-color-one);
}

.events-details-item .thumb .post-time .title {
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.events-details-item .thumb .post-time span {
  color: #fff;
}

.events-details-item .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.events-details-item .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

.events-details-item .post-meta li {
  display: inline-block;
  font-size: 14px;
}

.events-details-item .post-meta li i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.events-details-item .post-meta li+li {
  margin-left: 20px;
}

.events-details-item .post-meta li a {
  transition: all 0.3s ease-in;
}

.events-details-item .post-meta li a:hover {
  color: var(--main-color-one);
}

.events-details-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.events-details-item ul li+li {
  margin-top: 10px;
}

.events-details-item ul li a i {
  margin-right: 15px;
  color: var(--main-color-one);
}

/*-----------------------------
    Accordion Item
-----------------------------*/
.accordion-wrapper .card {
  border: none;
  background-color: transparent;
}

.accordion-wrapper .card+.card {
  margin-top: 20px;
}

.accordion-wrapper .card .card-header {
  background-color: transparent;
  padding: 0;
  border: none;
}

.accordion-wrapper .card .card-header a {
  display: block;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  background-color: #f5f5f5;
  padding: 14px 30px;
  cursor: pointer;
  position: relative;
}

.accordion-wrapper .card .card-header a:after {
  position: absolute;
  right: 30px;
  top: 15px;
  content: "";
  font-family: "fontawesome";
}

.accordion-wrapper .card .card-header a[aria-expanded=false]:after {
  content: "";
}

.accordion-wrapper .card .card-body {
  background-color: #fff;
  padding: 20px 30px 0;
}

/*-------------------------
    Contact Info Item
-------------------------*/
.single-contact-item {
  display: flex;
  align-self: flex-start;
  background-color: var(--bg-color-two);
  padding: 15px 0px;
}

.single-contact-item .icon {
  line-height: 60px;
  text-align: center;
  margin-right: 20px;
  font-size: 45px;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.single-contact-item .content {
  flex: 1;
  display: flex;
  align-items: center;
}

.single-contact-item .content .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
  display: block;
  color: #fff;
}

.single-contact-item .content .details {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

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

.contact_info_list .single-info-item-03 {
  display: flex;
  align-self: flex-start;
}

.contact_info_list .single-info-item-03+.single-info-item-03 {
  margin-top: 10px;
}

.contact_info_list .single-info-item-03 .icon {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
  color: var(--main-color-one);
  transition: all 0.3s ease-in;
}

.contact_info_list .single-info-item-03 .content {
  flex: 1;
}

.contact_info_list .single-info-item-03 .content .details {
  display: block;
}

.contact_map {
  height: 100%;
  /* min-height: 500px; */
}

.contact_map-02 {
  height: 100%;
  min-height: 140px;
}

.map {
  min-height: 500px;
  height: 100%;
  background-color: #ddd;
}

.contact-page-form .form-group textarea {
  max-height: 160px;
  resize: none;
  width: 100%;
  border: none;
  background-color: #f1f1f1;
  padding: 22px 30px 22px 20px;
  border-radius: 5px;
}

.contact-page-form .form-group textarea::placeholder {
  color: #b4b4b4;
}

.contact-page-form .form-group .form-control {
  border-radius: 0;
  border-right: 1px solid #e1e1e1;
  color: var(--heading-color);
  background-clip: border-box;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 22px 30px 22px 20px;
  margin-bottom: 25px;
}

.contact-page-form .form-group .form-control::placeholder {
  color: #b4b4b4;
}

.contact-page-form .form-group .form-control.brrtb {
  border-radius: 5px 0px 0px 5px;
}

.contact-page-form .form-group .form-control.brnone {
  border-radius: 0px;
}

.contact-page-form .form-group .form-control.brltb {
  border-radius: 0px 5px 5px 0px;
}

.contact-page-form.style-01 .form-group .form-control {
  padding: 15px;
  border: none;
}

/*----------------------------
    Quote Block With Sign
----------------------------*/
.quote-block-with-sign {
  position: relative;
  z-index: 0;
  background-color: var(--secondary-color);
  padding: 50px 40px 60px 40px;
}

.quote-block-with-sign.radius-right {
  border-bottom-right-radius: 60px;
}

.quote-block-with-sign:after {
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 100px;
  line-height: 100px;
  color: #706d5f;
  font-weight: 900;
  font-family: "fontawesome";
  content: "";
  z-index: -1;
}

.quote-block-with-sign p {
  font-size: 28px;
  line-height: 43px;
  font-style: italic;
  font-family: var(--heading-font);
  color: #fff;
}

.quote-block-with-sign .sign {
  margin-top: 26px;
}

/*----------------------------
    Counterup Item
----------------------------*/
.single-counterup-01 {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.single-counterup-01 .icon {
  margin-right: 15px;
  font-size: 70px;
  line-height: 80px;
  color: var(--main-color-one);
}

.single-counterup-01 .content .title {
  font-size: 14px;
  line-height: 28px;
  color: var(--secondary-color);
  font-family: var(--body-font);
}

.single-counterup-01 .content .count-wrap {
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--heading-font);
}

/*-------------------------
    Video With Image
-------------------------*/
.video-with-image .img-wrapper {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.video-with-image .img-wrapper img {
  width: 100%;
}

.video-with-image .img-wrapper .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*--------------------------
    Video Play Button
--------------------------*/
.video-play-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 16px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--main-color-one);
}

.video-play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.video-play-btn:hover,
.video-play-btn:focus {
  color: var(--main-color-one);
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}

/*-------------------------
    Section Title
-------------------------*/
.section-title-inner.white .subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-title-inner.white .title {
  color: #fff;
}

.section-title-inner.white p {
  color: rgba(255, 255, 255, 0.7);
}

.section-title-inner .title {
  font-size: 40px;
  line-height: 42px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--heading-font);
  margin-bottom: 18px;
}

.section-title-inner .title span {
  color: var(--main-color-one);
}

.section-title-inner .subtitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-left: 80px;
  margin-bottom: 8px;
}

.section-title-inner .subtitle:after {
  position: absolute;
  left: 0;
  top: 10px;
  height: 2px;
  width: 60px;
  background-color: var(--main-color-one);
  content: "";
}

.section-title.white .title {
  color: #fff;
}

.section-title.white p {
  color: rgba(255, 255, 255, 0.7);
}

.section-title.white .section-para {
  color: rgba(255, 255, 255, 0.7);
}

.section-title .title {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 14px;
  /* margin-top: 15px; */
  color: var(--secondary-color);
  /* ;letter-spacing: -1px; */
  text-transform: uppercase;
}

.section-title .title span {
  background-color: var(--main-color-one);
}

.section-title .subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 0;
  margin-bottom: 8px;
  color: var(--main-color-one);
}

.section-title span {
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--main-color-one);
  font-size: 20px;
}

.section-title p {
  font-weight: 500;
  text-align: justify;
}

.section-title .section-para {
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
}

.bg-litered {
  background-color: var(--main-color-one);
}

.bg-white {
  background-color: #fff;
}

/* 
.bg-black {
  background-color: var(--main-color-two);
} */

/*-------------------------
    Icon Box Item
-------------------------*/
.single-icon-box-01 {
  background-color: #fff;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.single-icon-box-01:after,
.single-icon-box-01:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  content: "";
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.single-icon-box-01:after {
  transform: translate(-100%, -100%);
  transition: all 1s;
}

.single-icon-box-01:before {
  transform: translate(100%, 100%);
}

.single-icon-box-01:hover .content .title {
  color: var(--main-color-one);
}

.single-icon-box-01:hover .content p {
  color: rgba(255, 255, 255, 0.8);
}

.single-icon-box-01:hover:after {
  transform: translate(100%, 100%);
  visibility: visible;
  opacity: 1;
}

.single-icon-box-01:hover:before {
  transform: translate(0%, 0%);
  visibility: visible;
  opacity: 1;
}

.single-icon-box-01 .icon {
  font-size: 60px;
  line-height: 70px;
  color: var(--main-color-one);
  margin-bottom: 18px;
}

.single-icon-box-01 .content .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
}

.single-icon-box-01 .content p {
  transition: all 0.5s;
}

.single-icon-box-02 {
  display: flex;
  align-self: flex-start;
  background-color: #fff;
  padding: 20px 20px 20px 20px;
}

.single-icon-box-02:hover .icon i {
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: rotateY(360deg);
}

.single-icon-box-02:hover .content .title {
  color: var(--main-color-one);
}

.single-icon-box-02 .icon {
  margin-right: 20px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 40px;
  transition: all 500ms;
}

.single-icon-box-02 .icon i {
  transition: all 500ms;
  display: inline-block;
}

.single-icon-box-02 .content {
  flex: 1;
  padding-top: 5px;
}

.single-icon-box-02 .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  transition: all 500ms;
}

.social-link ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.social-link ul li {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  transition: all 0.3s ease-in;
  padding-left: 10px;
}

.social-link ul li+li {
  margin-left: 5px;
}

.social-link ul li:hover {
  color: var(--secondary-color);
}

.social-link.style-01 ul li {
  display: block;
}

.social-link.style-01 ul li+li {
  margin-left: 0;
}

.social-link.style-01 ul li:hover {
  color: var(--main-color-one);
}

.social-link.style-02 ul li {
  font-size: 20px;
  display: inline-block;
}

.social-link.style-02 ul li+li {
  margin-left: 5px;
}

.social-link.style-02 ul li i.facebook {
  color: #3b5999;
}

.social-link.style-02 ul li i.twitter {
  color: #55acee;
}

.social-link.style-02 ul li i.g-plus {
  color: #dd4b39;
}

.social-link.style-02 ul li i.instagram {
  color: #e4405f;
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.search-popup .search-form {
  min-width: 415px;
  /* position: absolute; */
  position: fixed;
  top: 40px;
  right: calc(8% + -6px);
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-radius: 0px;
  height: 45px;
  padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: -15px;
  top: -20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-color: var(--hover-color);
  background-color: var(--hover-color);
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
}

.search-popup .search-form .submit-btn span {
  color: #fff;
  font-size: 20px;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(42, 40, 29, 0.54);
  z-index: 9;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s 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;
}

.click-mobile-search {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 20px;
  background: #fff;
}

/*--------------------------------
    Case Study 
--------------------------------*/
.recent-case-study-filter-nav {
  text-align: center;
}

.recent-case-study-filter-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 28px;
}

.recent-case-study-filter-nav ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.recent-case-study-filter-nav ul li.active {
  color: var(--main-color-one);
}

.recent-case-study-filter-nav ul li+li {
  margin-left: 20px;
}

.single-recent-case-study-01:hover .img-wrapper .hover .title {
  color: var(--main-color-one);
}

.single-recent-case-study-01 .img-wrapper {
  position: relative;
  z-index: 0;
  margin-bottom: 60px;
}

.single-recent-case-study-01 .img-wrapper img {
  width: 100%;
}

.single-recent-case-study-01 .img-wrapper .hover {
  background-color: #fff;
  text-align: center;
  position: absolute;
  left: 5%;
  bottom: -30px;
  width: 90%;
  padding: 25px 30px 28px 30px;
  box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.single-recent-case-study-01 .img-wrapper .hover .title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  transition: all 500ms;
}

.single-recent-case-study-01 .img-wrapper .hover .read-more {
  font-size: 14px;
  font-weight: 600;
  transition: all 500ms;
}

.single-recent-case-study-01 .img-wrapper .hover .read-more:hover {
  color: var(--main-color-one);
}

.single-recent-case-study-01 .img-wrapper .hover .read-more:hover i {
  visibility: visible;
  opacity: 1;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateX(0px);
}

.single-recent-case-study-01 .img-wrapper .hover .read-more i {
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateX(-50px);
  transition: all 500ms;
}

.recent-case-filter-03 {
  margin-bottom: 25px;
}

.recent-case-filter-02 .recent-case-filter-menu,
.recent-case-filter-03 .recent-case-filter-menu {
  text-align: center;
}

.recent-case-filter-02 .recent-case-filter-menu ul,
.recent-case-filter-03 .recent-case-filter-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 28px;
}

.recent-case-filter-02 .recent-case-filter-menu ul li,
.recent-case-filter-03 .recent-case-filter-menu ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.recent-case-filter-02 .recent-case-filter-menu ul li.active,
.recent-case-filter-03 .recent-case-filter-menu ul li.active {
  color: var(--main-color-one);
}

.recent-case-filter-02 .recent-case-filter-menu ul li+li,
.recent-case-filter-03 .recent-case-filter-menu ul li+li {
  margin-left: 20px;
}

.single-case-item-02 {
  display: block;
}

.single-case-item-02:hover .thumb .hover {
  visibility: visible;
  opacity: 1;
}

.single-case-item-02 .thumb {
  position: relative;
  z-index: 0;
}

.single-case-item-02 .thumb img {
  width: 100%;
}

.single-case-item-02 .thumb .hover {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  background-color: #fff;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 500ms;
}

.single-case-item-02 .thumb .hover .title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  transition: all 500ms;
}

.single-case-item-02 .thumb .hover .title:hover {
  color: var(--main-color-one);
}

.single-case-item-02 .thumb .hover .cats a {
  transition: all 500ms;
}

.single-case-item-02 .thumb .hover .cats a:hover {
  color: var(--main-color-one);
}

.case-masonry {
  width: 20%;
}

.case-masonry-03 {
  margin-bottom: 30px;
}

/*------------------------------
    Testimonial Item
-----------------------------*/
.testimonial-carousel .slick-slide.slick-center .icon {
  opacity: 1;
}

.content-carousel .slick-slide.slick-center .content {
  opacity: 1;
}

.single-testimonial-item .thumb {
  position: relative;
  z-index: 0;
}

.single-testimonial-item .thumb.bg-image {
  width: 80px;
  height: 80px;
  text-align: center;
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-testimonial-item .thumb .icon {
  position: absolute;
  top: -20px;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 0;
  text-align: center;
  margin-top: 20px;
  background-color: var(--main-color-one);
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}

.single-testimonial-item .content {
  text-align: center;
  opacity: 0;
}

.single-testimonial-item .content.style-01 .author-details .author-meta .title {
  color: #616161;
}

.single-testimonial-item .content.style-01 .description {
  color: #616161;
}

.single-testimonial-item .content .description {
  font-size: 18px;
  line-height: 35px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 400;
}

.single-testimonial-item .content .author-details {
  display: flex;
  align-self: flex-start;
}

.single-testimonial-item .content .author-details .author-meta {
  flex: 1;
  margin-top: 15px;
}

.single-testimonial-item .content .author-details .author-meta .title {
  font-size: 18px;
  font-family: var(--body-font);
  color: #fff;
  font-weight: 600;
}

.single-testimonial-item .content .author-details .author-meta .designation {
  font-size: 14px;
  color: var(--secondary-color);
}

/*----------------------------
    Blog Grid Item
-----------------------------*/
.blog-grid-carousel .owl-nav div {
  position: absolute;
  left: -60px;
  top: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--secondary-color);
  color: #fff;
  transition: all 0.3s ease-in;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.blog-grid-carousel .owl-nav div:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.blog-grid-carousel .owl-nav div.owl-next {
  left: auto;
  right: -60px;
}

.single-blog-grid-01 {
  position: relative;
  z-index: 0;
}

.single-blog-grid-01 .thumb {
  position: relative;
}

.single-blog-grid-01 .thumb img {
  width: 100%;
}

.single-blog-grid-01 .content-wrapper {
  display: flex;
  padding: 20px 0;
}

.single-blog-grid-01 .content-wrapper .news-date {
  text-align: center;
  font-weight: 600;
  margin-right: 30px;
}

.single-blog-grid-01 .content-wrapper .news-date .title {
  background-color: var(--secondary-color);
  margin-bottom: 0;
  color: #fff;
  padding: 6px 20px;
  display: inline-block;
  font-weight: 600;
}

.single-blog-grid-01 .content-wrapper .news-date span {
  background-color: var(--main-color-one);
  display: block;
  color: #fff;
  padding: 6px 0;
}

.single-blog-grid-01 .content-wrapper .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-blog-grid-01 .content-wrapper .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
}

.single-blog-grid-01 .content-wrapper .post-meta li:hover a {
  color: var(--main-color-one);
}

.single-blog-grid-01 .content-wrapper .post-meta li+li {
  margin-left: 20px;
}

.single-blog-grid-01 .content-wrapper .post-meta li a {
  transition: all 500ms;
}

.single-blog-grid-01 .content-wrapper .post-meta li a span {
  color: var(--main-color-one);
}

.single-blog-grid-01 .content-wrapper .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  transition: all 500ms;
  color: var(--main-color-one);
  text-transform: uppercase;
}

.single-blog-grid-01 .content-wrapper .title:hover {
  color: var(--secondary-color);
}

/*------------------------------
    Case Category Item
------------------------------*/
.case-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.case-category-list.white .single-case-item+.single-case-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.case-category-list.white .single-case-item .content .title {
  color: #fff;
}

.case-category-list .single-case-item {
  width: calc(100% / 5);
  padding: 115px 0 115px 0;
  text-align: center;
}

.case-category-list .single-case-item+.single-case-item {
  border-left: 1px solid #e2e2e2;
}

.case-category-list .single-case-item .icon {
  font-size: 60px;
  line-height: 70px;
  color: var(--main-color-one);
  margin-bottom: 18px;
}

.case-category-list .single-case-item .content .title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 0px;
}

.single-catagory-item {
  padding: 72px 40px;
  background-color: var(--main-color-one);
  text-align: center;
}

.single-catagory-item.style-01 {
  background-color: #00c99f;
}

.single-catagory-item.style-02 {
  background-color: #16327a;
}

.single-catagory-item.style-03 {
  background-color: #14b3e4;
}

.single-catagory-item:hover {
  cursor: pointer;
}

.single-catagory-item:hover .icon {
  transform: rotateY(360deg);
}

.single-catagory-item .icon {
  color: #fff;
  font-size: 80px;
  line-height: 80px;
  transition: all 500ms;
  margin-bottom: 15px;
}

.single-catagory-item .title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

/*-------------------------------
    Quote With Image
-------------------------------*/
.quote-with-image-02 {
  margin-bottom: 40px;
}

.quote-with-image-02 .img-wrapper {
  position: relative;
  z-index: 0;
}

.quote-with-image-02 .img-wrapper .hover {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 80%;
}

.quote-with-image-02 .img-wrapper .hover .quote-block-with-sign {
  padding: 50px 60px 60px 60px;
}

.quote-with-image-02 .img-wrapper .hover .quote-block-with-sign:after {
  left: 40px;
  top: 30px;
}

.events-single-item {
  display: flex;
  flex-wrap: nowrap;
  border-radius: 10px;
  transition: all 0.3s ease-in;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.events-single-item.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.events-single-item .thumb {
  width: 100%;
  min-height: 280px;
  max-width: 255px;
  position: relative;
  z-index: 0;
}

.events-single-item .thumb .bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.events-single-item .thumb .bg-image .post-time {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding-top: 7px;
  text-align: center;
  background-color: #fff;
}

.events-single-item .thumb .bg-image .post-time .title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 0;
}

.events-single-item .content-wrapper {
  display: flex;
  align-items: center;
}

.events-single-item .content {
  padding: 20px;
}

.events-single-item .content .title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 24px;
  display: block;
  transition: all 0.5s;
}

.events-single-item .content .title:hover {
  color: var(--main-color-one);
}

.events-single-item .content .events-btn-wrapper {
  margin-top: 20px;
}

.events-single-item .content .events-btn-wrapper .book-btn {
  font-weight: 700;
  font-family: var(--heading-font);
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  transition: all 0.5s;
}

.events-single-item .content .events-btn-wrapper .book-btn:hover {
  background-color: var(--secondary-color);
}

.events-single-item .content .events-btn-wrapper .free-btn {
  font-weight: 700;
  font-family: var(--heading-font);
  margin-left: 10px;
  transition: all 0.5s;
}

.events-single-item .content .events-btn-wrapper .free-btn:hover {
  color: var(--main-color-one);
}

/*--------------------------
// Team Area
--------------------------*/
.team-single-item {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  border-radius: 50px;
}

.team-single-item .thumb img {
  border-radius: 50px;
  width: 100%;
}

.team-single-item .content {
  background-color: rgb(248 113 29);
  position: absolute;
  border-radius: 0 0 50px 50px;
  left: 0;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-single-item .content.style-01 {
  background-color: rgb(2 137 207);
}

.team-single-item .content.style-02 {
  background-color: rgb(68 147 16);
}

.team-single-item .content.style-03 {
  background-color: rgba(248, 96, 72, 0.9);
}

.team-single-item .content.style-04 {
  background-color: rgb(189, 141, 96);
}

.team-single-item .content .title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  max-width: 280px;
  text-transform: uppercase;
}

.team-single-item .social-link ul {
  margin: 0;
  padding: 0;
}

.team-single-item .social-link ul li {
  height: 35px;
  width: 55px;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 35px;
  list-style-type: none;
  background-color: transparent;
  color: #fff;
}

.team-single-item .social-link ul li:hover {
  color: #fff;
  border: 1px solid var(--main-color-one);
  transition: all 0.3s ease-in;
  background-color: var(--main-color-one);
}

.problem-single-item {
  text-align: center;
  transition: all 0.3s ease-out;
}

.problem-single-item.style-01 {
  text-align: left;
}

.problem-single-item.style-01 .icon::after {
  left: 0;
  transform: inherit;
}

.problem-single-item:hover .icon {
  transform: scale(1.2);
}

.problem-single-item:hover .icon::after {
  transform: rotate(180deg);
  left: 0;
}

.problem-single-item .icon {
  font-size: 55px;
  color: #9238a4;
  transition: all 500ms;
  position: relative;
  display: inline-block;
  z-index: 0;
}

.problem-single-item .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transition: all 500ms;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 51%, 8% 0, 0 100%);
  clip-path: polygon(100% 51%, 8% 0, 0 100%);
  width: 50px;
  height: 55px;
  background-color: rgba(146, 56, 164, 0.2);
  z-index: -1;
}

.problem-single-item .icon.style-01 {
  color: var(--main-color-one);
}

.problem-single-item .icon.style-01::after {
  background-color: rgba(252, 177, 26, 0.2);
}

.problem-single-item .icon.style-02 {
  color: #00bdc0;
}

.problem-single-item .icon.style-02::after {
  background-color: rgba(0, 189, 192, 0.2);
}

.problem-single-item .icon.style-03 {
  color: #f86048;
}

.problem-single-item .icon.style-03::after {
  background-color: rgba(248, 96, 72, 0.2);
}

.problem-single-item .content {
  flex: 1;
}

.problem-single-item .content .title {
  font-size: 18px;
  line-height: 34px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  transition: all 500ms;
}

.problem-single-item .content p {
  font-size: 14px;
  line-height: 24px;
  max-width: 265px;
  margin: auto;
}

.contribute-single-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 111px 0px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.contribute-single-item:hover::after {
  transform: scale(1.2);
}

.contribute-single-item:hover::before {
  transform: scale(1.2);
}

.contribute-single-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -88px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: rgba(252, 177, 26, 0.3);
  transition: all 0.3s ease-in-out;
}

.contribute-single-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 88px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(0, 188, 190, 0.3);
  transition: all 0.3s ease-in-out;
}

.contribute-single-item .thumb {
  padding: 25px 30px;
  position: relative;
  z-index: 0;
  width: 100%;
}

.contribute-single-item .thumb img {
  width: 100%;
}

.contribute-single-item .content {
  padding: 35px 15px 40px 30px;
}

.contribute-single-item .content .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 23px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.contribute-single-item .content p {
  margin-bottom: 23px;

}

.contribute-single-item .content .btn-wrapper .boxed-btn {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  background-color: #f8711d;
  padding: 6px 20px;
  text-transform: uppercase;
}

.contribute-single-item .content .btn-wrapper .boxed-btn:hover {
  background-color: var(--secondary-color);
}

.progress-content .goal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-top: 10px;
}

.progress-content .goal .raised {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--body-font);
}

.progress-item .single-progressbar.style-01 .progressbar {
  margin-bottom: 30px;
}

.progress-item .single-progressbar.style-01 .progressbar .percentCount {
  background-color: var(--main-color-one);
}

.progress-item .single-progressbar.style-01 .progressbar .percentCount::after {
  border-top: 10px solid var(--main-color-one);
}

.progress-item .single-progressbar .progressbar {
  width: 100%;
  position: relative;
  background-color: #f4f4f4;
}

.progress-item .single-progressbar .progressbar .proggress {
  height: 5px;
  width: 10px;
}

.progress-item .single-progressbar .progressbar .percentCount {
  position: absolute;
  color: white;
  left: 0%;
  top: -30px;
  background-color: #14b3e4;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: 500;
}

.progress-item .single-progressbar .progressbar .percentCount::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  border-top: 10px solid var(--secondary-color);
  border-right: 10px solid transparent;
}

.volunteer-single-item {
  text-align: center;
  transition: all 0.3s ease-out;
  background-color: #9238a4;
  border-radius: 50px;
  padding: 40px 60px 70px;
  position: relative;
  z-index: 0;
}

/* .volunteer-single-item::after {
  content: "";
  position: absolute;
  left: 4%;
  transform: skewY(4deg);
  top: -30px;
  background-color: transparent;
  width: 320px;
  height: 410px;
  border: 2px solid #000;
  border-radius: 50px;
} */

.volunteer-single-item.no-border::after {
  display: none;
}

.volunteer-single-item.no-border-radius {
  border-radius: 0;
}

.volunteer-single-item.no-border-radius::after {
  display: none;
}

.volunteer-single-item.style-01 {
  background-color: var(--main-color-one);
}

.volunteer-single-item.style-02 {
  background-color: #00bdc0;
}

.volunteer-single-item:hover .icon::after {
  transform: rotate(130deg);
}

.volunteer-single-item:hover .content .title {
  color: #fff;
}

.volunteer-single-item:hover .content p {
  color: #fff;
}

.volunteer-single-item .icon {
  font-size: 80px;
  color: #fff;
  transition: all 500ms;
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
}

.volunteer-single-item .icon::after {
  content: "";
  position: absolute;
  left: 40%;
  transform: rotate(40deg);
  width: 45px;
  height: 130px;
  border-radius: 50px;
  transition: all 500ms;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.volunteer-single-item .content {
  flex: 1;
}

.volunteer-single-item .content .title {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  transition: all 500ms;
}

.volunteer-single-item .content p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  margin: auto;
  font-size: 18px;
}

.volunteer-details-item .content .sub-title {
  font-size: 24px;
  font-weight: 700;
}

.volunteer-details-item .content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.volunteer-details-item .content ul li+li {
  margin-top: 10px;
}

.volunteer-details-item .content ul li a i {
  margin-right: 15px;
  color: var(--main-color-one);
}

.support-single-item {
  display: inline-flex;
  align-items: center;
  background-color: #f3f0ea;
  border-radius: 5px;
  padding: 20px 25px;
  margin-bottom: 30px;
}

.support-single-item .icon {
  font-size: 55px;
  color: var(--main-color-one);
  margin-right: 10px;
}

.support-single-item .content .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin: 0;
}

.support-single-item .content p {
  margin-bottom: 0;
}

.donation_wrapper {
  padding: 55px 45px 60px;
  background: var(--secondary-color);
}

.donation_wrapper .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.donation_wrapper .header-content .icon {
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  margin-right: 10px;
}

.donation_wrapper .title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  font-size: 25px;
  margin-bottom: 0;
  color: #fff;
}

.donation_wrapper .single_amount_wrapper {
  display: flex;
  align-items: center;
}

.donation_wrapper .single_amount_wrapper .single_amount {
  padding: 5px 10px;
  margin: 0 5px;
  border-radius: 5px;
  color: #fff;
  background: var(--main-color-one);
  margin-bottom: 20px;
  cursor: pointer;
}

.donation_wrapper .single_amount_wrapper .single_amount:hover {
  background: var(--main-color-two);
}

.donation_wrapper .amount_wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.donation_wrapper .amount_wrapper input,
.donation_wrapper .amount_wrapper .suffix {
  padding: 8px;
  border: 0;
  background-color: #fff;
  width: 100%;
}

.donation_wrapper .amount_wrapper input {
  border-radius: 0 8px 8px 0;
  border-right: 0;
  outline: none;
}

.donation_wrapper .amount_wrapper .suffix {
  border-radius: 5px 0 0 5px;
  width: 10%;
}

.donation_wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  padding: 15px 25px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) inset, 0 0 0 0 rgba(0, 0, 0, 0) inset;
  background: var(--main-color-one);
  transition: all 0.3s;
}

.donation_wrapper a:hover {
  background: var(--main-color-two);
}

.donation_wrapper a:active {
  box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 2px 0 rgba(0, 0, 0, 0.5) inset;
}


.section-paragraph p {
  text-align: justify !important;
}

/* home page media queries */


@media only screen and (min-width:320px) and (max-width:991px) {
  .navbar-area.nav-style-02 .nav-container .logo-wrapper {
    /* padding: 30px 80px 30px 30px; */
  }

  .team-single-item .content {
    padding-bottom: 20px;
  }

  .info-items li+li {
    margin-left: 7px;
  }
}




@media only screen and (min-width:1024px) {
  .br-slider {
    display: none !important;
  }
}



@media only screen and (min-width:320px) and (max-width:767px) {
  .header-bottom-area.m-top {
    margin-top: 10px !important;
  }
}














@-webkit-keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes MoveUpDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

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

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



.board-members-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#E0F0FE), to(#F8FCFF));
  background: linear-gradient(180deg, #E0F0FE 0%, #F8FCFF 100%);
}

.te-about-image-card .te-main-img-wrapper .te-main-img-inner {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.te-about-image-card .te-main-img-wrapper .te-main-img-inner>img {
  border-radius: 200px 200px 0 0;
  /* margin-left: 7px; */
  margin-top: 4px;
}

.story-img .te-main-img-wrapper .te-main-img-inner>img {
  border-radius: 0;
  /* margin-left: 7px; */
  margin-top: 4px;
}

.te-about-info-card .te-about-info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}



.te-about-info-card .te-about-info-content {
  margin-bottom: 0;
}

.te-about-info-card .te-about-info-content .te-list-item-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.te-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
  position: relative;
  margin-bottom: -16px;
  margin-top: -18px;
}

.short-title.only-divider {
  gap: 10px;
}

.short-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2px;
  color: #0E2BC5;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
}

.te-section-content .section-title {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--heading-font);
  letter-spacing: -1px;
  color: #f8711d;
  margin-bottom: 0;
  text-transform: capitalize;
}

.section-span {
  font-size: 20px;
  color: var(--secondary-color);
}

.short-title::after {
  content: "";
  width: 40px;
  height: 2px;
  border-bottom: 2px solid #0E2BC5;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.te-section-desc p {
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  line-height: 32px;
  margin-top: 10px !important;
}

.te-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
  row-gap: 10px;
  column-gap: 10px;
}

.te-about-info-card .te-about-info-content .te-list-item-wrapper .te-list-item .icon {
  font-size: 24px;
  color: #0E2BC5;
  background-color: transparent;
  width: unset;
  height: unset;
}

.te-list-item .icon {
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background: #0E2BC5;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 10px;
}

.te-about-image-card .te-company-foundation {
  position: absolute;
  bottom: 22px;
  left: -52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background-color: #F9D414;
  padding: 36px 60px 40px 60px;
  -webkit-clip-path: polygon(9% 0, 96% 0, 100% 100%, 0 100%);
  clip-path: polygon(9% 0, 96% 0, 100% 100%, 0 100%);
  -webkit-animation: MoveUpDown 2s linear infinite alternate;
  animation: MoveUpDown 2s linear infinite alternate;
}

.te-about-image-card .te-main-img-wrapper .te-main-img-inner .te-img-card-shape {
  position: absolute;
  top: 35px;
  right: -35px;
  z-index: -1;
  -webkit-animation: spin 6s linear infinite;
  animation: spin 6s linear infinite;
}

.te-about-image-card .te-company-foundation .te-counter-wrapper {
  color: #14203A;
  font-size: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.te-about-image-card .te-company-foundation .counter {
  font-size: 45px;
  font-weight: 700;
  line-height: 54.9px;
  letter-spacing: -0.8px;
  color: #14203A;
  margin-bottom: 0;
}

.te-about-image-card .te-company-foundation .title {
  font-size: 14.35px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.359px;
  color: #14203A;
  margin-bottom: 0;
  text-align: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-us-area.style-2 .te-about-info-card {
    padding-left: 80px;
  }
}

@media (max-width: 1199px) {
  .about-us-area.style-2 .te-about-image-card .te-company-foundation {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .title {
    font-size: 47px;
    line-height: 17px;

  }

  .single-blog-grid-01 .content-wrapper .title {
    font-size: 20px;
  }

  .help-and-support-left {
    margin-top: 70px;
  }

  .team-single-item .content {
    padding-bottom: 20px;
  }

  .about-us-area.style-2 .te-about-info-card {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (max-width: 991px) {
  .about-us-area.style-2 .te-about-image-card {
    text-align: center;
    margin-bottom: 50px;
  }

  .about-us-area.style-2 .te-about-image-card .te-main-img-wrapper .te-main-img-inner {
    width: 100%;
  }

  .title {
    font-size: 38px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .title {
    font-size: 32px;
    line-height: 42px;
  }

  .about-us-area.style-2 {
    padding: 80px 0;
  }
}

@media (max-width: 650px) {
  .te-about-image-card .te-main-img-wrapper .te-main-img-inner>img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .te-about-image-card .te-main-img-wrapper .te-main-img-inner .te-img-card-shape {
    right: 0;
  }
}


.te-about-info-card {
  margin-top: 8rem;
}

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

.vertical-tab {
  font-family: "Roboto", sans-serif;
  display: table;
}

.vertical-tab .nav-tabs {
  display: table-cell;
  width: 28%;
  min-width: 28%;
  border: none;
  border-right: 3px solid #7f4d4d;
  position: relative;
}

.vertical-tab .nav-tabs li {
  float: none;
  vertical-align: top;
}

.vertical-tab .nav-tabs li a {
  color: #606060;
  background-color: #f1f2f6;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  padding: 15px 15px;
  margin: 0;
  border: none;
  border-radius: 0;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li.active a,
.vertical-tab .nav-tabs li.active a:hover {
  color: var(--main-color-one);
  background-color: #fff;
  font-weight: 700;
  border: none;
}

.vertical-tab .nav-tabs li a:before,
.vertical-tab .nav-tabs li a:after {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
  opacity: 0;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: -10px;
  top: 100%;
  z-index: -1;
  transition: all 0.3s ease 0s;
}

.vertical-tab .nav-tabs li a:after {
  background-color: #449310;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  right: 100%;
  top: 50%;
}

.vertical-tab .nav-tabs li.active a:before,
.vertical-tab .nav-tabs li a:hover:before {
  top: 50%;
  opacity: 1;
}

.vertical-tab .nav-tabs li.active a:after,
.vertical-tab .nav-tabs li a:hover:after {
  right: -6px;
  opacity: 1;
}

.vertical-tab .tab-content {
  color: #606060;
  font-size: 14px;
  text-align: justify;
  line-height: 23px;
  vertical-align: top;
  padding: 15px 15px 15px 30px;
  display: table-cell;
}

.vertical-tab .tab-content h3 {
  color: #079992;
  font-size: 24px;
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 479px) {
  .vertical-tab .nav-tabs {
    display: block;
    width: 100%;
    border-right: none;
  }

  .vertical-tab .nav-tabs li a {
    padding: 10px;
    margin: 0 0 10px;
  }

  .vertical-tab .tab-content {
    display: block;
    padding: 20px 15px 5px;
    border-radius: 0 0 10px 10px;
  }

  .vertical-tab .tab-content h3 {
    font-size: 18px;
  }
}


.awareness-ul li a {
  text-decoration: none;
  color: var(--main-color-one);
  font-size: 16px;
  font-weight: 700;
  text-align: left;

}

.awareness-ul li {
  list-style: none;
  line-height: 25px;
  display: flex;
}

.awareness-ul li i {
  color: var(--secondary-color);
  padding-right: 10px;
  position: relative;
  top: 3px;
}




.program-content h2 {
  color: var(--main-color-one);
  font-weight: 700;
  text-transform: uppercase;
}

.program-content p {
  text-align: justify;
  line-height: 32px;
}

.program-row {
  border-bottom: 1px dashed rgb(230, 230, 230);

}

.program-row:nth-child(3) {
  border: none;
}

.program-content {
  margin: 30px 0px;
}

.program-img {
  margin: 30px 0px;
}



.policy-content h3 {
  color: var(--secondary-color);
  font-weight: 600;
}

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

.policy-area h1 {
  color: var(--main-color-one);
  font-weight: 600;
  /* text-align: center; */
  padding-bottom: 20px;
}

.policy-content p {
  text-align: justify;
}

.policy-content .policy-ul li {
  line-height: 30px;
  list-style: none;
}


.policy-content .policy-ul li i {
  color: var(--main-color-one);
  padding-right: 10px;
}


.policy-area {
  /* background: -webkit-gradient(linear, left top, left bottom, from(#E0F0FE), to(#F8FCFF));
  background: linear-gradient(180deg, #E0F0FE 0%, #F8FCFF 100%); */
  background-color: ghostwhite;
}


.medical-content p {
  text-align: justify;
  line-height: 30px;
}


.event-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}



.baylore-container-heading {
  text-align: center;
  padding: 30px 0px;
}

.baylore-container-heading h1 {
  color: var(--secondary-color);
  font-weight: 700;
}

.baylore-container-heading h6 {
  font-size: 18px;
  padding-top: 10px;
  font-weight: 600;
}

.baylore-content h3 {
  color: var(--main-color-one);
  font-weight: 700;

}

.baylore-content p {
  line-height: 30px;
  text-align: justify;
}


.baylore-area {
  /* background: -webkit-gradient(linear, left top, left bottom, from(#E0F0FE), to(#F8FCFF)); */
  background: linear-gradient(180deg, #E0F0FE 0%, #F8FCFF 100%);
}


.bg-image {
  background-size: cover;
}

/* @media  start */


@media only screen and (min-width:320px) and (max-width:991px) {
  .breadcrumb-area {
    background-position: 80% 80%;
  }

  .bg-image {
    background-size: cover;
  }
}


@media only screen and (min-width:320px) and (max-width:767px) {
  .awareness-img {
    margin-top: 30px;
  }
}


@media only screen and (min-width:768px) and (max-width:990px) {
  .vertical-tab .nav-tabs li a {
    font-size: 15px;
  }

  .program-img img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

}


.media-box-height {
  height: 43.5rem;
}

@media only screen and (min-width:320px) and (max-width:345px) {
  .media-box-height {
    height: 54.5rem;
  }
}

@media only screen and (min-width:575px) and (max-width:767px) {
  .media-box-height {
    height: 45.5rem !important;
  }
}

@media only screen and (min-width:768px) and (max-width:990px) {
  .media-box-height {
    height: 56rem;
  }
}

@media only screen and (min-width:991px) and (max-width:1023px) {
  .media-box-height {
    height: 56rem;
  }
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
  .media-box-height {
    height: 50rem;
  }
}

@media only screen and (min-width:1400px) and (max-width:2500px) {
  .media-box-height {
    height: 43rem;
  }
}



.info-bar-item .content img {
  width: 170px;
}

.footer-area-bg {
  padding: 40px 0px 135px;
}

.volunteer-single-item .content .title {
  text-transform: uppercase;
  text-align: center;
}

.about-2-content h3 {
  color: var(--main-color-one);
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.about-2-content h6 {
  color: var(--secondary-color);
  padding-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-2-content p {
  line-height: 30px;
}

.about-page .section-title p {
  font-size: 16px;
  color: #fff;
}

.event-btn .btn-wrapper .boxed-btn {
  background-color: var(--main-color-one);
  color: #fff;
}

.event-btn .btn-wrapper .boxed-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.event-btn-speaker .btn-wrapper .boxed-btn {
  background-color: var(--secondary-color);
  color: #fff;
  margin-top: 40px;
}

.event-btn-speaker .btn-wrapper .boxed-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.breadcrumb-inner .icon {
  width: 50px;
  height: 50px;
  margin: 0px auto;
}

.about-icon a span {
  color: #0077B5;
  font-size: 30px;
}



/* Content-1:Start */
.box {
  width: 350px;
  height: fit-content;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  background: #edededab;
}

.box1 {
  margin-top: 10px;
}

/* .content {
  margin: 15px 2px;
} */

.image img {
  height: auto;
  width: 150px;
  border-radius: 50%;

  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

.level {
  font-size: 0.7em;
  background-color: rgb(164, 189, 183, 0.5);
  width: 50px;
  padding: 3px;
  border-radius: 5px;
  font-weight: bolder;
  letter-spacing: 1px;

  display: block;
  margin: 0px auto 10px;
}

.name {
  font-size: 18px;
  font-weight: 700;
  /* letter-spacing: 1px; */
  color: var(--secondary-color);
  padding-bottom: 5px;
  padding-top: 10px;
  text-transform: uppercase;
}

.job_title {
  font-size: 1em;
  font-weight: bolder;
  color: #000;
  margin-top: -2px;
  text-transform: uppercase;
}

.job_discription {
  font-size: 0.7em;
  color: gray;
  margin: 10px 30px 20px;
}

.icons {
  margin: 0px 30px;
  font-size: 1.5em;
  display: flex;
  justify-content: space-around;
}

.icons button {
  width: fit-content;
  height: fit-content;
  border: none;
  font-size: 1em;
}

ion-icon:hover {
  color: #58a497;
  transition: 0.5s;
}

button {
  width: 130px;
  height: 40px;
  border-radius: 10px;
  font-weight: bolder;
}

.button {
  /* display: flex; */
  justify-content: space-around;
  flex-direction: row;
  margin: 20px 30px 0px;
}

.button .message {
  background: #ededed;
  border: 2px solid #000;
}

.button .connect {
  background-color: var(--main-color-one);
  color: #ededed;
  border: none;
}

button.connect:hover {
  letter-spacing: 1px;
  transition: 0.5s;
  background-color: var(--secondary-color);
}

button.message:hover {
  letter-spacing: 1px;
  transition: 0.5s;
  background: rgba(88, 164, 151, 0.5);
}





.speakers-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#E0F0FE), to(#F8FCFF));
  background: linear-gradient(180deg, #E0F0FE 0%, #F8FCFF 100%);
}

.spearker-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spearker-content h2 {
  color: var(--main-color-one);
  font-weight: 700;
}

.spearkers-row {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px dashed rgb(192, 191, 191);
}

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

@media only screen and (min-width:320px) and (max-width:767px) {
  .navbar-toggler {
    width: 50px !important;
  }

  .box {
    width: 290px;
  }
}


.register-form h2 {
  color: var(--secondary-color);
  text-align: center;
  font-weight: 700;
  padding-bottom: 20px;
}

.connect a {
  text-transform: uppercase;
}

.contact_info_list li.single-info-item .details b {
  color: var(--main-color-one);
}


/* Mano */

/* @media query Padding Top And Bottom Section */
/* padding Top  */
@media only screen and (min-width:320px) and (max-width:768px) {
  .pt--media-30-15 {
    padding-top: 15px !important;
  }
}

.pt--media-30-15 {
  padding-top: 30px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pt--media-40-20 {
    padding-top: 20px !important;
  }
}

.pt--media-40-20 {
  padding-top: 40px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pt--media-60-30 {
    padding-top: 30px !important;
  }
}

.pt--media-60-30 {
  padding-top: 60px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pt--media-80-40 {
    padding-top: 40px !important;
  }
}

.pt--media-80-40 {
  padding-top: 80px;
}

/* Padding bottom */

@media only screen and (min-width:320px) and (max-width:768px) {
  .pb--media-30-15 {
    padding-bottom: 15px !important;
  }
}

.pb--media-30-15 {
  padding-bottom: 30px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pb--media-40-20 {
    padding-bottom: 20px !important;
  }
}

.pb--media-40-20 {
  padding-bottom: 40px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pb--media-60-30 {
    padding-bottom: 30px !important;
  }
}

.pb--media-60-30 {
  padding-bottom: 60px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .pb--media-80-40 {
    padding-bottom: 40px !important;
  }
}

.pb--media-80-40 {
  padding-bottom: 80px;
}

/* Margin Top  */

@media only screen and (min-width:320px) and (max-width:768px) {
  .mt--media-40-20 {
    margin-top: 20px !important;
  }
}

.mt--media-40-20 {
  margin-top: 40px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .mt--media-60-30 {
    margin-top: 30px !important;
  }
}

.mt--media-60-30 {
  margin-top: 60px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .mt--media-80-40 {
    margin-top: 40px !important;
  }
}

.mt--media-80-40 {
  margin-top: 80px;
}

/* Margin bottom */

@media only screen and (min-width:320px) and (max-width:768px) {
  .mb--media-40-20 {
    margin-bottom: 20px !important;
  }
}

.mb--media-40-20 {
  margin-bottom: 40px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .mb--media-60-30 {
    margin-bottom: 30px !important;
  }
}

.mb--media-60-30 {
  padding-bottom: 60px;
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .mb--media-80-40 {
    margin-bottom: 40px !important;
  }
}

.mb--media-80-40 {
  margin-bottom: 80px;
}

/* padding-section */

/* padding-section top */
.pt--10 {
  padding-top: 10px !important;
}

.pt--15 {
  padding-top: 15px !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.pt--30 {
  padding-top: 30px !important;
}

.pt--40 {
  padding-top: 40px !important;
}

.pt--60 {
  padding-top: 60px !important;
}

.pt--80 {
  padding-top: 80px !important;
}

.pt--100 {
  padding-top: 100px !important;
}

.pt--120 {
  padding-top: 120px !important;
}

/* padding-section bottom */

.pb--10 {
  padding-bottom: 10px !important;
}

.pb--15 {
  padding-bottom: 15px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}

.pb--30 {
  padding-bottom: 30px !important;
}

.pb--40 {
  padding-bottom: 40px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

.pb--80 {
  padding-bottom: 80px !important;
}

.pb--100 {
  padding-bottom: 100px !important;
}

.pb--120 {
  padding-bottom: 120px !important;
}

/* margin-section */

/* margin-section top */
.mt--10 {
  margin-top: 10px !important;
}

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

.mt--20 {
  margin-top: 20px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.mt--60 {
  margin-top: 60px !important;
}

.mt--80 {
  margin-top: 80px !important;
}

.mt--100 {
  margin-top: 100px !important;
}

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

/* padding-section bottom */

.mb--10 {
  margin-bottom: 10px !important;
}

.mb--15 {
  margin-bottom: 15px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.mb--30 {
  margin-bottom: 30px !important;
}

.mb--40 {
  margin-bottom: 40px !important;
}

.mb--60 {
  margin-bottom: 60px !important;
}

.mb--80 {
  margin-bottom: 80px !important;
}

.mb--100 {
  margin-bottom: 100px !important;
}

.mb--120 {
  margin-bottom: 120px !important;
}

/* Donate Section */

.donate-sec-bg {
  background: linear-gradient(45deg, #f8711dd9, #1183b3d9);
}

@media only screen and (max-width:768px) {
  .donate-sec-cnt {
    text-align: center;
  }

  .donate-sec-cnt p {
    text-align: center;
  }
}

.text-white {
  color: #ffffff !important;
}

@media only screen and (min-width:1000px) {
  .donate-img {
    justify-content: end !important;
  }
}

.donate-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donate-img a img {
  width: 400px;
  height: auto;
}

.contact-btn {
  width: fit-content;
  height: auto;
  border: none;
  border-radius: 0px;
  padding: 10px 30px;
}

@media only screen and (max-width:575px) {
  .about-content .section-title .title {
    color: #0983b3;
  }

  .about-page .section-title p {
    color: #2b2a35;
  }

  .about-2-content h3 {
    font-size: 23px;
    margin-top: 15px;
  }

  .team-single-item .content .title {
    font-size: 19px;
    line-height: 30px;
  }
}

@media only screen and (max-width:768px) {
  .footer-area-bg {
    padding: 40px 0px 10px;
  }
}

@media only screen and (min-width:575px) and (max-width:768px) {
  .header-bottom-area.m-top {
    margin-top: 20px;
  }
}

@media only screen and (min-width:1200px) {
  .header-bottom-area.m-top {
    margin-top: 55px;
  }
}

.elementor-widget-container .donate-ip-img {
  width: 250px;
  height: auto;
}

@media only screen and (min-width:1000px) and (max-width:1200px) {
  .elementor-widget-container .donate-ip-img {
    /* width: 152px; */
    height: auto;
  }
}

/* Donate footer Section */

.elementor-widget-container .donate-ft-img {
  width: 400px;
  height: auto;
}

@media only screen and (max-width:768px) {
  .elementor-widget-container .donate-ft-img {
    width: 320px;
    height: auto;
  }
}

.ft-donate-sec {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width:1000px) {
  .ft-donate-sec {
    justify-content: end !important;
  }
}

@media only screen and (max-width:1100px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 10px;
  }

  .info-bar-item {
    padding: 13px 0px 12px 0px;
  }
}

.story-content {
  margin-top: 2rem;
}

.program-area .col-lg-4 {
  display: flex;
  align-items: center;
}


/* Header Section */

.hdr-main-tl a {
  padding: 8px 20px 7px 20px;
  border-radius: 20px;
  font-size: 15px;
  font-family: var(--body-font);
  text-transform: uppercase !important;
  font-weight: 600;
}

.pulse2 {
  -webkit-animation: pulse 600ms infinite alternate;
  animation: pulse 600ms infinite alternate;
}

@-webkit-keyframes pulse {
  0% {
    background-color: #de5b26;
  }

  100% {
    background-color: #1183b3d9;
  }
}

@keyframes pulse {
  0% {
    background-color: #de5b26;
  }

  100% {
    background-color: #1183b3d9;
  }
}

@media only screen and (min-width:320px) and (max-width:1100px) {
  .hdr-main-tl-dp {
    display: none !important;
  }
}

@media only screen and (min-width:320px) and (max-width:425px) {
  .register-form iframe {
    height: 2120px !important;
  }

  .header-area .title {
    margin-bottom: 10px !important;
  }
}

@media only screen and (min-width:575px) and (max-width:768px) {
  .register-form iframe {
    height: 1660px;
  }
}

@media only screen and (min-width:991px) and (max-width:1200px) {
  .register-form iframe {
    height: 1590px;
  }
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .br-slider {
    display: none;
  }
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .slider-btn {
    padding: 10px 10px !important;
  }

  .header-area .icon {
    width: 55px;
    height: 60px;
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .header-area .header-inner {
    overflow: inherit;
    position: relative;
    top: 60px !important;
  }
}

@media only screen and (min-width:320px) and (max-width:767px) {
  .header-area .header-inner {
    overflow: inherit;
    position: relative;
    top: 75px;
  }
  


  .slider-btn {
    font-size: 12px;
    background-color: #ffffff !important;
    border-radius: 20px;
  }
}

.slider-btn:hover {
  color: var(--main-color-one) !important;
}

@media only screen and (max-width:575px) {
  .slider-1-bg {
    background-position: center right !important;
  }
}

/* Slider 1 Sec */

.slider-1-sec h5 {
  font-size: 30px !important;
}

.slider-1-sec span {
  font-size: 24px !important;
}

@media only screen and (max-width: 384px) {
  .slider-1-sec h5 {
    font-size: 18px !important;
    line-height: 25px !important;
  }

  .slider-1-sec span {
    font-size: 15px !important;
    line-height: 24px !important;
  }
}

.header-slider-one .header-area {
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* .header-inner {
  text-align: center;
} */

.header-inner .icon img {
  display: block;
  /* margin: 0 auto; */
}


@media only screen and (max-width: 767px) {
  .navbar-area.nav-style-02.has-topbar {
    top: 43px !important;
  }

  .navbar-area.nav-style-02 .nav-container {
    padding: 0px 0px !important;
  }

  .navbar-area.nav-style-02 .nav-container {
    padding: 0 0px !important;
  }

  .navbar-area .nav-container {
    padding: 0 0px !important;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area.nav-style-02 .nav-container .logo-wrapper {
    padding: 6px 0px 6px 0px;
  }
}

@media only screen and (min-width: 992px) {
  .navbar-area.nav-style-02 .nav-container .logo-wrapper {
    padding: 6px 0px 6px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .topbar-area {
    background-color: #f8711d;
  }
}

@media only screen and (max-width: 575px) {
  .header-slider-one .header-area {
    height: 340px;
  }
}

@media only screen and (min-width:575px) and (max-width:991px) {
  .header-slider-one .header-area {
    height: 520px;
  }
}

@media only screen and (max-width: 991px) {
  .new-slider-1-bg {
    background-position: 90% !important;
  }
  .new-slider-2-bg {
    background-position: 38% !important;
  }
}

@media only screen and (max-width: 575px) {
  .header-area .header-inner {
    /* top: 60px !important; */
  }
}



@media only screen and (max-width: 767px) {
  .hrd-wr-d {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .wr-menu-sec {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .wr-menu-sec a {
    -webkit-animation: wr-menu 600ms infinite alternate;
    animation: wr-menu 600ms infinite alternate;
  }

  @-webkit-keyframes wr-menu {
    100% {
      color: #de5b26;
    }

    0% {
      color: #1183b3d9;
    }
  }

  @keyframes wr-menu {
    100% {
      color: #de5b26;
    }

    0% {
      color: #1183b3d9;
    }
  }
}

@media only screen and (min-width:320px) and (max-width:575px) {
  .breadcrumb-area {
    height: 310px;
  }

  .breadcrumb-area .breadcrumb-inner {
    padding: 100px 0 70px 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .breadcrumb-area {
    height: 310px;
  }

  .breadcrumb-area .breadcrumb-inner {
    padding: 60px 0 150px 0 !important;
  }
}

@media only screen and (min-width: 1200px) {
  .dont-hrd-sec {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area.nav-style-02.has-topbar {
    top: 0px;
  }

  .navbar-area.nav-style-02 {
    position: static;
  }

  .hdr-main-tl a {
    font-size: 14px;
  }

  .topbar-inner {
    padding: 5px 0 0px;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .mob-d-n {
    display: none !important;
  }

  .topbar-inner {
    justify-content: center;
    padding: 5px 0 0px;
  }
}

.rrk-cnt {
  margin-top: 2.5rem !important;
}

@media only screen and (min-width: 1100px) {
  .logo img {
    width: 255px;
  }
}

@media only screen and (min-width:992px) and (max-width:1099px) {
  .logo img {
    width: 210px;
  }
}

.mob-dnt-sec {
  height: 85px;
}

@media only screen and (max-width: 768px) {
  .footer-area-bg {
    background-position: 0% 0% !important;
  }
}

.about-inner-sec {
  width: calc(100% / 1) !important;
}

.about-inner-sec p {
  font-size: 20px;
  line-height: 32px;
  margin-top: 5px;
}

.about-inner-sec span {
  font-size: 35px;
}

@media only screen and (max-width: 768px) {
  .about-inner-sec span {
    font-size: 24px;
  }

  .about-inner-sec p {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Conatct Section */

.contact-bg {
  background: #f0f8ff;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .mob-d-n-m {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .mob-dnt-sec {
    height: 72px;
  }

  .elementor-widget-container .donate-ip-img {
    width: 200px;
  }
}

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

@media only screen and (max-width: 991px) {
  .logo img {
    width: 233px;
  }
}

@media only screen and (max-width: 425px) {
  .logo img {
    width: 215px;
  }
}

.cnt-p-lh {
  line-height: 30px !important;
}

.webiner-bn-sub-hd h2 {
  margin-bottom: 0px !important;
}

.webiner-bn-sub-hd h4 {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .webiner-bn-sub-hd h4 {
    font-size: 18px;
    text-transform: uppercase;
  }

  .social-link ul li:nth-child(2) {
    padding-left: 0px !important;
  }

  .social-link ul li {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .topbar-inner .right-contnet {
    justify-content: left !important;
  }
}

@media only screen and (max-width: 400px) {
  .social-link ul li:nth-child(2) {
    padding-left: 3px !important;
  }
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.sub-menu-li:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "" !important;
  font-weight: 700;
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}

.resources-page .volunteer-single-item .content h4 {
  font-size: 22px;
}

.resources-content-section .resource-title h2 {
  color: var(--main-color-one);
  font-weight: 700;
}

.resources-content-section .resource-title p {
  /* max-width: 550px; */
}

.resources-content-section .resource-title .resources-ul {}

.sub-title-resources .title {
  color: #0983b3;
  font-weight: 600;
}

.title-last-main {
  background-color: var(--main-color-one);

  padding: 30px;
}

.title-last-main h2,
.title-last-main ul li p {
  color: #fff;
}

.title-last-main h2 {
  text-align: center;
  font-weight: 700;
}

.resources-content-section .container {
  border-bottom: 1px dashed rgb(230, 230, 230) !important;
  padding: 50px 0px;
}

.important-line {
  color: red;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 30px;
  /* font-style: italic; */
  text-align: center;
}

.resources-row {
  padding: 20px 0px;
}

.title-last-main-row {
  background-color: var(--main-color-one);
}

.sub-title-resources {
  text-align: center;
}

.resources-ul {
  padding-left: 25px;
}

.resource-section .section-title h5 {
  text-align: center;
  font-weight: 500;
}

.title-last-main ul li::marker {
  color: #fff;
}

@media only screen and (min-width:320px) and (max-width:767px) {
  .resources-content-section .resource-title h2 {
    font-size: 20px;
    padding-top: 10px;
  }

  .sub-title-resources .title {
    font-size: 30px;
  }

  .title-last-main {
    padding: 30px 10px;
  }

  .title-last-main-two h5 {
    font-size: 14px;
  }

  .title-last-main-two {
    display: block !important;
    text-align: center;


  }

  .title-last-main-two h5 {
    margin-bottom: 20px !important;
  }
}

.resource-section .volunteer-area .volunteer-single-item .icon img {
  width: 100px;
}

.resources-img {
  text-align: center;
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
  .resources-content-section .resource-title h2 {
    font-size: 25px;
  }

  .sub-title-resources .title {
    padding: 20px 0;
  }
}

.title-last-main-two h5 {
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* .title-last-main-two{
  padding: 20px 0px;
} */
.title-last-main-two a {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
}

.title-last-main-two a:hover {
  background-color: var(--main-color-one);

}

/* .title-last-main-two{
  padding-top: 30px;
} */


.health-sup-cnt h2 {
  text-align: center !important;
  color: #0983b3;
  font-weight: 600;
}

.health-sup-cnt ul {
  padding-left: 0px;
}

.health-sup-cnt ul li {
  display: flex;
}

.health-sup-cnt ul li i {
  color: #ffffff;
  position: relative;
  top: 3px;
  padding-right: 7px;
}

.miracle-of-mind-img img {
  border-radius: 10px;
}


@media only screen and (max-width:768px) {
  .title-last-main-two h5 {
    margin-bottom: 20px;
  }

  .title-last-main-two h5 {
    font-size: 18px;
  }

  .title-last-main-two {
    padding-top: 10px;
  }
}

.miracle-of-mind-cnt a {
  background-color: var(--main-color-one);
  color: #fff;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 5px;
}

.miracle-of-mind-cnt a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.title-last-main-two h5 {
  font-size: 20px;
}

.section-title h5 {
  font-weight: 500;
  font-size: 25px;
}

.contact_info_list .details i {
  color: var(--main-color-one);
}


.logo-img-resource {
  display: flex;
  align-items: center;
}

.resource-app-logo {
  /* display: flex;
  justify-content: space-evenly; 
  border-right: 1px dashed rgb(187, 187, 187);
  border-bottom: 1px dashed rgb(187, 187, 187);
  padding: 30px 0px 30px 10px; */
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .resource-app-logo {
    margin-bottom: 30px;
  }

  .resocurse-logo-img img {
    border-radius: 20px;
  }
}

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

.resocurse-logo-img img {
  border-radius: 10px;
  margin-bottom: 10px;
  width: 160px;
}

.title-last-main-two h5 span {
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 700;
}

/* Remove right border from the 3rd */
.resource-app-logo:nth-child(4) {
  border-right: none;
}

/* Remove bottom border from 4th and 5th */
.resource-app-logo:nth-child(5),
.resource-app-logo:nth-child(6) {
  border-bottom: none;
}



/* Header Logo Section */

@media only screen and (min-width: 1000px) {
  .navbar-area.nav-style-02.has-topbar .container {
    max-width: 1240px !important;
  }
}

/* Our Sponsor Section */

.our-sponsors-img img {
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 24px -5px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 4px 4px 24px -5px rgba(0, 0, 0, 0.77);
  box-shadow: 4px 4px 24px -5px rgba(0, 0, 0, 0.77);
}

.our-sponsors-img img:hover {
  transition: 0.1s ease-in-out;
  -webkit-box-shadow: 4px 4px 7px -5px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 4px 4px 7px -5px rgba(0, 0, 0, 0.77);
  box-shadow: 4px 4px 7px -5px rgba(0, 0, 0, 0.77);
}

@media only screen and (max-width: 991px) {
  .our-sponsors-img img {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .resocurse-logo-img img {
    padding: 0px;
  }
}

.sec-bg-1 {
  background: aliceblue;
}


/* Gallery Section */

/* Start Gallery CSS */
.thumb {
  margin-bottom: 15px;
}

.thumb:last-child {
  margin-bottom: 0;
}

/* CSS Image Hover Effects: https://www.nxworld.net/tips/css-image-hover-effects.html */
.thumb figure img {
  background: linear-gradient(180deg, #f8711d8c, #0983b3ba);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.thumb figure:hover img {
  background: linear-gradient(180deg, #0983b3ba, #f8711d8c) !important;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}

@media only screen and (max-width: 991px) {
  .res-app-mb {
    margin-bottom: 20px !important;
  }
}

@media only screen and (max-width: 575px) {
  .resources-row {
    padding: 20px 15px;
  }
}

.dis-cent {
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .title-last-main-two h5 {
    padding: 0px 20px;
  }
}


@media only screen and (min-width: 1000px) {
  .ft-donate-sec-1 {
    justify-content: left !important;
  }
}

.ft-donate-sec-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donate-sec-cnt-1 {
  text-align: center;
}

.donate-sec-cnt-1 p {
  text-align: center;
}

.donate-sec-cnt-1 h4 span {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.donate-sec-cnt-1 h4 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.donate-sec-cnt-1 h3 {
  font-size: 36px !important;
}

@media only screen and (max-width: 767px) {
  .donate-sec-cnt-1 h3 {
    font-size: 30px !important;
  }
  .donate-sec-cnt-1 h4 span {
    font-size: 24px;
  }
  
  .donate-sec-cnt-1 h4 {
    font-size: 24px;
  }
}


/* webinar-series-2025 section  */

.webinar-series-2025-cnt{
  padding-bottom: 0px;
}
.webinar-series-2025-cnt h2{
  font-size: 32px;
    text-align: left !important;
    padding-bottom: 10px;
    margin-bottom: 0px;
    color: var(--main-color-one);
    font-weight: 600;
    line-height: 40px;
}

.webinar-series-2025-cnt .web-ser-s-cnt{
  margin-bottom: 6px;
}

.webinar-series-2025-cnt .web-ser-s-cnt span{
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.webinar-series-2025-cnt h3{
  color: var(--main-color-one);
}
.webinar-series-2025-cnt p a{
  color: var(--secondary-color);
}
.webinar-series-2025-cnt p a:hover{
  color: var(--main-color-one);
}

.webinar-series-2025-img img{
  width: 100%;
}

@media only screen and (max-width: 768px) {
.webinar-series-2025-cnt h1 {
  margin-top: 20px;
}
}

@media only screen and (max-width: 575px) {
  .webinar-series-2025-cnt h1 {
    font-size: 28px;
  }
  .reg-cl{
    font-size: 30px !important;
  }
}

.reg-cl{
  color: var(--secondary-color) !important;
  font-size: 50px !important;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-transform: uppercase !important;
}

@media only screen and (min-width:320px) and (max-width:767px){
 
}

 .awareness-ul li a {
   font-size: 14px;
 }

 .awareness-ul {
   padding-left: 0px;
 }

.btn-wrapper .slider-btn:hover{
  color: #fff !important;
 }



 @media only screen and (min-width:320px) and (max-width:767px){

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before{
    right: 150px !important;
  }
 }


 .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li .sub-menu{
  min-width: 350px !important;
 }

 .topbar-inner {
  display: flex;
  justify-content: space-between; /* left, center, right */
  align-items: center;
}

.center-content {
  flex: 1;
  text-align: center;
}

.center-content  .webinar-link{

  text-transform: uppercase !important;
}
.center-content a {
  padding: 7px ;
  color: #fff ;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 700;
}
/* 


.header-slider-wrap {
  position: relative; 
  overflow: hidden; 
}
.header-slider-one {
  position: relative;
  z-index: 1;
}


.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3; 
  display: flex;
  align-items: center;    
  pointer-events: none;   
}

.header-area .header-inner {
  pointer-events: auto;
}

@media (max-width: 991px) {
  .header-area {
    align-items: flex-start;
    padding-top: 30px;
  }
}
.header-area .title{
      font-size: 50px;
    line-height: 55px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}


.header-area span {
       color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: block;

} */


@media only screen and (min-width:320px ) and (max-width:767px){
  .center-content{
    display: none;
  }
}


@media only screen and (min-width:992px ) and (max-width:1023px){

  .elementor-widget-container .donate-ip-img{
    width: 200px ;
  }
  .navbar-area.nav-style-02 .nav-container .nav-right-content{
    margin-left: 0px ;
  }
  .navbar-area .nav-container .nav-right-content ul{
    margin-left: 0px ;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav{
    display: contents;
  }
}


@media only screen and (min-width:1024px) and (max-width:1199px){
  .navbar-area.nav-style-02 .nav-container .nav-right-content{
    margin-left: 0px;
  }
}

.header-area span{
  text-transform: capitalize !important;
}

@media only screen and (max-width: 415px) {
    .slider-btn {
        font-size: 11px;
    }
  }

  @media only screen and (max-width: 475px) {
  .hm-slider-s-hd {
    font-size: 18px;
}
  }

  .hm-slider-s-hd{
    font-size: 26px;
  }

  .hm-slider-btn {
    margin-top: 12px;
    margin-bottom: 12px;
  }

.hm-slider-2-s {
  font-size: 26px;
}

.dt-ft-sz{
  font-size: 26px;
}

.dt-ft-sz-1{
  font-size: 23.5px;
}


@media only screen and (max-width: 575px) {
  .header-inner .icon img {
    display: block;
    
  }
}

@media only screen and (min-width:768px) and (max-width:991px){
  .header-bottom-area.m-top{
    margin-top: 30px;
  }
}


@media only screen and (min-width: 1024px) {
  .new-slider-1-bg {
    background-position: 90% !important;
  }
  .new-slider-2-bg {
    background-position: 38% !important;
  }
  .new-slider-3-bg {
    background-position: 5% !important;
  }

}

.sponsors-submain {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sponsors-submain .sponsors-content ul li  p{
  margin-bottom: 0px !important ;
}
.sponsors-submain .sponsors-content ul li {
 
  display: flex;
  gap: 20px;
  max-width: 300px;
  padding-bottom: 15px;
  /* margin: auto; */


  
}

.sponsors-content ul li i {
    padding-top: 5px;
    font-size: 15px;
    color: var(--main-color-one);
}

.sponsors-section{
  padding: 80px 0px;
}
.sponsors-img img{
  width: 100% ;
  padding-top: 10px;
  mix-blend-mode: multiply;
}

@Media only screen and (min-width:320px) and (max-width:767px){
  .sponsors-submain{
    display: block ;
  }
}


@media only screen and (min-width:991px) and (max-width:1199px){
  .navbar-area.nav-style-02 .nav-container .nav-right-content{
    display: none;
  }

  .navbar-area.nav-style-02{
    position: relative;

  }
  .navbar-area.nav-style-02.has-topbar{
    top: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li{
    margin-left: 20px;
  }
}



@media only screen and (min-width:1200px){
  .elementor-widget-container .donate-ip-img{
    width: 180px ;
  }
  .navbar-area.nav-style-02 .nav-container{
    padding: 0px 15px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li{
    margin-left: 10px;
  }
  .navbar-area .nav-container .nav-right-content ul{
    margin: 0;
  }
  .navbar-area.nav-style-02 .nav-container .nav-right-content{
    margin: 0;
  }
}


@media only screen and (min-width:1300px){
.navbar-area .nav-container .navbar-collapse .navbar-nav li+li{
    margin-left: 20px;
  }
    .navbar-area.nav-style-02 .nav-container{
    padding: 0px 20px;
  }
}

.sponsors-img{
  background: #fff;
  padding: 20px;
  height: 100%;
}

.sponsors-content{
  padding: 20px 0px 0px 0px ;
}

.sponsors-section .sponsors-title{
color: var(--secondary-color);
font-weight: 700;
text-transform: uppercase;
}

.sponsors-top-para{
  color: var(--main-color-one);
  font-weight: 700;

  padding-bottom: 30px;
}









.home-sponsors-submain {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.home-sponsors-submain .home-sponsors-content ul li  p{
  margin-bottom: 0px !important ;
}
.home-sponsors-submain .home-sponsors-content ul li {
 
  display: flex;
  gap: 20px;
  max-width: 300px;
  padding-bottom: 15px;
list-style: none;
  
}

.home-sponsors-content ul li i {
    padding-top: 5px;
    font-size: 15px;
    color: var(--main-color-one);
}

.home-sponsors-section{
  padding: 80px 0px;
}
.home-sponsors-img img{
  width: 100% ;
  padding-top: 10px;
  mix-blend-mode: multiply;
}

@Media only screen and (min-width:320px) and (max-width:767px){
  .home-sponsors-submain{
    display: block ;
  }
}


.home-sponsor-title h1{
  color: var(--main-color-one);
  font-weight: 700;
  text-transform: uppercase;
}
.home-sponsor-main{
  display: flex;
  align-items: center;
  justify-content: center;
  

}

.home-sponsor{
  background-color: #f5f5f5;
  padding: 40px 0px;
}
.home-sponsor-img img{
  mix-blend-mode: multiply;
}

@media only screen and (min-width:320px) and (max-width: 1023px){
  .home-sponsor-main{
    display: block;
    text-align: center;
  }
  .home-sponsor-img{
    padding-top: 15px;
  }
  .home-sponsors-content{
    max-width: 220px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px){
.home-sponsor-title h1{
  font-size: 40px;

}
}