/*---------------------------
 CSS Index  
****************************

01. Variables
02. Typography
03. Spacing
04. Reset
05. Forms
06. Shortcode
07. Common
08. Animations
09. Text Animation
10. Header
11. Nav
12. Mobilemenu
13. Button
14. Banner
----------------------------*/
/*=========================
    Variables 
==========================*/
@import url("https://fonts.googleapis.com/css2?family=Manropewght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");
:root {
  --primary-color: #D89A26;
  --secondary-color: #AFC91E;
  --heading-color: #131221;
  --paragraph-color: #5A5A5A;
  --border-color: #D7D7D7;
  --heading-font: "Manrope", sans-serif;
  --body-font: "Inter", sans-serif;
  --animate-delay: 0.3s;
  --white: #fff;
  --white-2: #D7D7D7;
  --gray-1: #999999;
  --gray-2: #666666;
  --green: #0C1A1A;
  --gradient-color: linear-gradient(104deg, #D89A26 25.15%, #FFCD70 88.08%);
}

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

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

body {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-weight: 400;
}

h1 {
  font-size: 80px;
  line-height: 1.083;
}

h2 {
  font-size: 60px;
  line-height: 1.344;
}

h3 {
  font-size: 40px;
  line-height: 1.383;
}

h4 {
  font-size: 24px;
  line-height: 1.338;
}

h5 {
  font-size: 20px;
  line-height: 1.338;
}

h6 {
  font-size: 16px;
  line-height: 1.238;
}

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

p {
  color: var(--paragraph-color);
  margin-bottom: 10px;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-110 {
  margin-top: 110px;
}

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

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

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

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

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

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

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

a {
  text-decoration: none;
  color: var(--paragraph-color);
  transition: 0.4s;
}

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

a:hover {
  color: var(--primary-color);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

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

code {
  color: #faa603;
}

.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(--primary-color);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  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;
  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;
}

/*--------------------------------------------------------------
# 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 20px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# 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(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

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

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

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

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

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--primary-color);
  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;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

/************ single-inpur-field ************/
.single-input-inner {
  margin-bottom: 20px;
}
.single-input-inner input {
  width: 100%;
  height: 55px;
  border: 0 !important;
  border-radius: 4px;
  padding: 0 22px;
}
.single-input-inner input::placeholder {
  color: #adadad;
}
.single-input-inner textarea {
  width: 100%;
  border: 0 !important;
  height: 140px;
  border-radius: 4px;
  padding: 14px 18px;
}
.single-input-inner textarea::placeholder {
  color: #adadad;
}
.single-input-inner .single-select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  border: 0 !important;
  border-radius: 4px;
  padding: 0 18px;
  margin-bottom: 20px;
}
.single-input-inner .single-select .list {
  width: 100%;
}
.single-input-inner.style-border input {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
}
.single-input-inner.style-border input::placeholder {
  color: #adadad;
}
.single-input-inner.style-border textarea {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
}
.single-input-inner.style-border textarea::placeholder {
  color: #adadad;
}
.single-input-inner.style-border .single-select {
  border: 1px solid rgba(234, 225, 214, 0.7) !important;
  color: #adadad;
}
.single-input-inner.style-bg input {
  background: #f1f1f1;
}
.single-input-inner.style-bg input::placeholder {
  color: #3F517E;
}
.single-input-inner.style-bg textarea {
  background: #f1f1f1;
}
.single-input-inner.style-bg textarea::placeholder {
  color: #3F517E;
}
.single-input-inner.style-bg .single-select {
  background: #f1f1f1;
  color: #3F517E;
}

/*--------------------------------------------
* Utilities
--------------------------------------------*/
.bg-primary {
  background-color: var(--primary-color);
}

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

.bg-black-2 {
  background-color: #000000;
}

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

.border-radius {
  border-radius: 60px !important;
}

/************ animate style ************/
.top-image-bounce {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.top-image-bounce-2 {
  animation: top-image-bounce-2 6s infinite ease-in-out;
}

.left-image-bounce {
  animation: left-image-bounce 3s infinite ease-in-out;
}

.right-image-bounce {
  animation: right-image-bounce 3s infinite ease-in-out;
}

.spin-image {
  animation: spin 3s infinite ease-in-out;
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(54x);
    transform: translateY(-4px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
  }
}
@keyframes ripple-white3 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
  }
}
.btn {
  height: 64px;
  padding: 0 30px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  font-size: 20px;
  font-family: var(--heading-font);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 500;
  z-index: 0;
}
@media only screen and (max-width: 1199px) {
  .btn {
    font-size: 16px;
    height: 56px;
  }
}

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

.btn-small {
  height: 50px;
  line-height: 49px;
  font-size: 16px;
  padding: 0 25px;
}

.btn-primary {
  color: #fff;
  background-image: var(--gradient-color);
}
.btn-primary .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -15px;
  margin-left: 15px;
}

.btn-white {
  color: var(--heading-color);
  background: #fff;
}

.btn-white:active,
.btn-white:focus,
.btn-white:hover {
  color: #fff;
  background: var(--primary-color);
}

.btn-black {
  color: #fff;
  background: var(--heading-color);
}

.btn-black:active,
.btn-black:focus,
.btn-black:hover {
  background: var(--primary-color);
}

.btn-border-white {
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.7);
  line-height: 57px;
}

.btn-border-white:hover,
.btn-border-white:focus {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-border-black {
  color: var(--heading-color);
  border: 1px solid rgba(0, 33, 71, 0.2);
  line-height: 57px;
}

.btn-border-black:hover,
.btn-border-black:focus {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-border-gray {
  color: var(--heading-color);
  border: 1.5px solid #515B5B;
  line-height: 57px;
  color: var(--white-2);
}

.btn-base {
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-base:after, .btn-base:before {
  width: 0%;
  height: 0%;
  content: "";
  position: absolute;
  border-radius: 100%;
}
.btn-base:after {
  transition: all 0.5s ease;
  background-image: var(--gradient-color);
}
.btn-base:before {
  transition: all 0.5s ease-out;
  background: #FFE9D2;
}
.btn-base span {
  z-index: 1;
  transition: all 0.3s ease-out;
}
.btn-base.cta-01 {
  background: linear-gradient(90deg, #FFCD70 0%, #ffae88 100%);
  color: #111;
}
.btn-base.cta-02 {
  background-color: transparent;
  color: #FFCD70;
}
.btn-base.cta-02:after {
  background: linear-gradient(90deg, #FFCD70 0%, #ffae88 100%);
}
.btn-base:hover span {
  color: var(--white);
}
.btn-base:hover.cta-01 {
  color: #FFCD70;
}
.btn-base:hover.cta-02 {
  color: #111;
}
.btn-base:hover:after, .btn-base:hover:before {
  width: 300px;
  height: 300px;
  border-radius: 4px;
}
.btn-base:hover:after {
  transition: all 0.7s ease-in;
}
.btn-base:hover:before {
  transition: all 0.5s ease-in;
}

/* Header  */
.navbar-area-1 {
  border-radius: 300px;
  border: 2px solid #1C2C2E;
  background: #192525;
  box-shadow: 8px 8px 26px 10px rgba(3, 11, 41, 0.04);
  padding: 0 25px;
  max-width: 1700px;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .navbar-area-1 {
    border-radius: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-area-1 {
    padding: 15px 10px;
  }
}
.navbar-area-1 .navbar-menu {
  width: 65%;
}
@media only screen and (max-width: 1199px) {
  .navbar-area-1 .navbar-menu {
    width: auto;
  }
}
.navbar-area-1 .navbar-menu .navbar-nav {
  text-align: right;
}
.navbar-area-1 .navbar-menu .navbar-nav > li > a {
  border-radius: 40px;
  color: var(--white-2);
  padding: 10px 20px;
}
@media only screen and (max-width: 1199px) {
  .navbar-area-1 .navbar-menu .navbar-nav > li > a {
    padding: 10px 10px;
  }
}
.navbar-area-1 .navbar-menu .navbar-nav > li + li {
  margin-left: -4px;
}

.navbar-menu .navbar-nav {
  display: block;
  width: 100%;
  text-align: left;
}
.navbar-menu .navbar-nav li {
  position: relative;
  display: inline-block;
  line-height: 90px;
  text-transform: capitalize;
}
.navbar-menu .navbar-nav li a {
  color: var(--paragraph-color);
  font-size: 16px;
  font-family: var(--body-font);
}
.navbar-menu .navbar-nav li:hover a {
  color: var(--primary-color);
}
.navbar-menu .navbar-nav li + li {
  margin-left: 30px;
}
.navbar-menu .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
}
.navbar-menu .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transform: scaleY(1);
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 230px;
  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: #ffffff;
  z-index: 99;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0;
  transform: scaleY(0);
  transform-origin: top center;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  transition: all 0.4s ease;
  border-bottom: 1px solid #f5f5f5;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 11px 20px;
  white-space: nowrap;
  transition: all 0.3s;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
  color: var(--primary-color);
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "\f105";
  font-family: "fontawesome";
  transition: all 0.4s ease;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 20px;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-menu .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #ffffff;
}
.navbar-menu .navbar-nav li.menu-item-has-children.mega-menu .sub-menu {
  transform: scaleY(0);
  transform-origin: top center;
}
.navbar-menu .navbar-nav li.menu-item-has-children.mega-menu:hover .sub-menu {
  transform: scaleY(1);
}

.nav-right-part .nav-search-btn {
  line-height: 59px;
}
.nav-right-part .nav-search-btn .search-icon {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.nav-right-part .nav-search-btn .search-close {
  height: 25px;
  width: 25px;
  display: none;
  cursor: pointer;
}

.search-form {
  position: fixed;
  width: 300px;
  top: 120px;
  right: 50px;
  padding: 12px;
  background-color: #f5f5f5;
  border-radius: 3px;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
.search-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--white-2);
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
}
.search-form.open-search {
  opacity: 1;
  visibility: visible;
  top: 101px;
}

.breadcrumb-wrap {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background: #f8f9fc;
}
.breadcrumb-wrap .breadcrumb-content {
  padding: 155px 0 155px 0;
}
.breadcrumb-wrap .page-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--heading-color);
  text-transform: capitalize;
  margin-bottom: 12px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  max-width: 600px;
  color: #585858;
  margin-bottom: 20px;
}
.breadcrumb-wrap .page-list {
  margin: 0;
  padding-left: 0;
}
.breadcrumb-wrap .page-list li {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  padding-right: 12px;
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 500;
}
.breadcrumb-wrap .page-list li a {
  color: #8b8b8b;
  transition: 0.4s;
}
.breadcrumb-wrap .page-list li a:hover {
  color: var(--primary-color);
}
.breadcrumb-wrap .page-list li:first-child {
  padding-left: 3px;
}
.breadcrumb-wrap .page-list li:first-child::after {
  display: none;
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  left: 2px;
  top: 13px;
  content: "";
  height: 2px;
  width: 10px;
  background-color: #b5b5b5;
  font-weight: 600;
}

.mobile_menu_nav ul.menu_list {
  padding: 0;
}
.mobile_menu_nav ul.menu_list li {
  list-style: none;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li {
    margin-bottom: 8px;
  }
}
.mobile_menu_nav ul.menu_list li a {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  display: block;
  transition: 0.4s;
  z-index: 2;
  font-style: italic;
  color: var(--gray);
}
@media only screen and (max-width: 1199px) {
  .mobile_menu_nav ul.menu_list li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li a {
    font-size: 18px;
  }
}
.mobile_menu_nav ul.menu_list li a span {
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 5px;
  left: -32px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav ul.menu_list li a span {
    top: 3px;
  }
}
.mobile_menu_nav ul.menu_list li:last-child {
  margin-bottom: 0;
}
.mobile_menu_nav ul.menu_list li.show > a {
  color: var(--black-7);
}
.mobile_menu_nav .menu-item-has-children {
  position: relative;
}
.mobile_menu_nav .menu-item-has-children:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 9px;
  font-weight: 700;
  font-size: 18px;
  height: 30px;
  width: 30px;
  background: url("../imgs/menu-icon/dropdown-right.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav .menu-item-has-children:after {
    top: 5px;
    font-size: 20px;
    height: 23px;
    width: 23px;
  }
}
.mobile_menu_nav .menu-item-has-children .sub-menu {
  text-align: left;
  display: none;
  padding-left: 15px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li {
  border-bottom: 0;
  margin-bottom: 0;
  margin-top: 10px;
}
.mobile_menu_nav .menu-item-has-children .sub-menu li a {
  display: block;
  color: var(--gray);
  font-size: 18px;
  position: relative;
  transition: 0.4s;
  padding-left: 0;
  padding-right: 18px;
}
@media only screen and (max-width: 767px) {
  .mobile_menu_nav .menu-item-has-children .sub-menu li a {
    font-size: 16px;
  }
}

.offcanvas .offcanvas-icon {
  position: absolute;
  left: -40px;
  color: var(--white);
  border: 0;
  font-size: 24px;
  top: 5px;
  background-color: transparent;
}

.offcanvas-inner {
  position: relative;
  height: 100vh;
}
.offcanvas-inner .offcanvas-body {
  padding: 40px;
}

.offcanvas-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.offcanvas-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 30px;
}
.offcanvas-social a img {
  height: 20px;
  width: 20px;
}

.offcanvas-copyright {
  padding: 15px 20px;
}

/* Elements  */
.banner-area {
  position: relative;
  background-color: var(--green);
  padding: 220px 0 0;
  margin-top: -115px;
  overflow: hidden;
}
.banner-area:before {
  content: "";
  border-radius: 1174.03px;
  opacity: 0.2;
  background: #A3BD13;
  filter: blur(250px);
  width: 1174.03px;
  height: 503.152px;
  transform: rotate(-34.932deg);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner-area:after {
  content: "";
  border-radius: 1174.03px;
  opacity: 0.2;
  border-radius: 1290.63px;
  background: #A3BD13;
  filter: blur(250px);
  width: 1174.03px;
  height: 503.152px;
  transform: rotate(-34.932deg);
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-30%);
  z-index: 2;
}
.banner-area .banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .banner-area .banner-inner {
    max-width: 800px;
  }
}
.banner-area .banner-inner .title {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 86px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1599px) {
  .banner-area .banner-inner .title {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-area .banner-inner .title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area .banner-inner .title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.banner-area .banner-inner .title .title-mark {
  position: relative;
}
.banner-area .banner-inner .title .title-mark img {
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: -1;
}
.banner-area .banner-inner .description {
  max-width: 750px;
  margin: 0 auto;
  color: #D7D7D7;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .banner-area .banner-inner .description {
    font-size: 16px;
    max-width: 550px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-area .banner-inner .btn {
    margin-bottom: 10px;
  }
}

.banner-main-image-area {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 50px;
  position: relative;
}
@media only screen and (min-width: 2000px) {
  .banner-main-image-area {
    max-width: 2100px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 991px) {
  .banner-main-image-area {
    gap: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-main-image-area {
    padding: 0 20px;
  }
}
.banner-main-image-area .demo-exp-img {
  border-radius: 16px;
  border: 4px solid #203233;
  box-shadow: 10px 10px 40px 10px rgba(3, 11, 41, 0.12);
  z-index: 2;
}
@media only screen and (max-width: 1599px) {
  .banner-main-image-area .demo-exp-img {
    max-width: 350px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-main-image-area .demo-exp-img {
    max-width: 260px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-main-image-area .demo-exp-img {
    max-width: 200px;
  }
}
.banner-main-image-area .image-1 {
  margin-top: -70px;
}
.banner-main-image-area .image-3 {
  margin-top: 150px;
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
}
.banner-main-image-area .image-4 {
  position: absolute;
  right: 50px;
  margin-top: -300px;
}
@media only screen and (max-width: 1599px) {
  .banner-main-image-area .image-4 {
    margin-top: -200px;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-main-image-area .image-4 {
    margin-top: -110px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-main-image-area .image-4 {
    margin-top: -41px;
    right: 31px;
  }
}

.blog-main-item-01 {
  position: relative;
}
.blog-main-item-01 + .blog-main-item-01 {
  padding-top: 33px;
  margin-top: 45px;
  border-top: 1px solid #ededed;
}
.blog-main-item-01 + .blog-main-item-01 .thumbnail {
  margin-top: 7px;
}
.blog-main-item-01 .thumbnail {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 25px;
}
.blog-main-item-01 .thumbnail img {
  transition: all 300ms ease-in-out;
  height: auto;
}
.blog-main-item-01 .content .post-meta-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-main-item-01 .content .post-meta-wrap .social-icon li {
  padding-left: 0;
  margin-top: 0;
}
.blog-main-item-01 .content .title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 0;
  transition: all 300ms;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-family: var(--heading-font);
}
.blog-main-item-01 .content .title:hover {
  color: var(--primary-color);
}
.blog-main-item-01 .content p {
  font-size: 16px;
  margin-bottom: 31px;
}
.blog-main-item-01 .content .post-author {
  display: flex;
  align-items: center;
}
.blog-main-item-01 .content .post-author .author-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.blog-main-item-01 .content .post-author a {
  color: #001b61;
  font-size: 16px;
  font-weight: 700;
}
.blog-main-item-01 .blog-bottom .read-btn-text {
  font-weight: 500;
  color: var(--primary-color);
}

.post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 5px;
}
.post-meta li {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  font-family: var(--body-font);
  font-weight: 400;
  position: relative;
  z-index: 0;
  padding-left: 0;
  text-transform: capitalize;
  color: #8e8e8e;
  list-style: none !important;
  text-transform: capitalize;
}
.post-meta li + li {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: 20px;
}
.post-meta li svg {
  margin-right: 5px;
  color: var(--primary-color);
}
.post-meta li::before {
  display: none !important;
}
.post-meta li.white {
  color: #ffffff;
}
.post-meta li.white span {
  color: #ffffff;
}
.post-meta li span {
  color: var(--heading-color);
}
.post-meta li span.white {
  color: #ffffff;
}
.post-meta li:before {
  display: none;
}
.post-meta li a {
  transition: all 300ms;
  color: #8e8e8e;
}
.post-meta li .posted-on .entry-date {
  color: #8e8e8e;
}
.post-meta li .posted-on .entry-date.white {
  color: #ffffff;
}
.post-meta li .posted-on i {
  margin-right: 10px;
  color: var(--primary-color);
}

blockquote {
  background-color: #FCFCFC;
  border: 1px solid #ededed;
  border-radius: 0px;
  padding: 40px 100px;
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  font-style: italic;
  font-size: 18px;
}
blockquote p {
  color: var(--heading-color);
  text-transform: capitalize;
  font-weight: 700;
}
blockquote .name {
  text-decoration: underline;
}

blockquote svg {
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 40px;
  color: var(--primary-color);
  font-size: 30px !important;
  line-height: 0.8;
}

.scroll-slider-area {
  background-color: var(--secondary-color);
  padding: 40px 0;
}

.scroll-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.scroll-slider .slider-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 70px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 80px;
}
@media only screen and (max-width: 1199px) {
  .scroll-slider .slider-item {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .scroll-slider .slider-item {
    font-size: 15px;
  }
}

.feature-card {
  border-radius: 24px;
  border: 2px solid #FCFCFC;
  background: linear-gradient(206deg, #F2F3F9 17.41%, #FCFFEB 110.37%);
  box-shadow: 8px 8px 26px 10px rgba(3, 11, 41, 0.04);
  padding: 80px 45px 55px;
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .feature-card {
    padding: 60px 25px 45px;
  }
}
@media only screen and (max-width: 575px) {
  .feature-card {
    padding: 40px 25px 35px;
  }
}
.feature-card .bg-image {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  transition: 0.6s;
  height: 237px;
  width: 203px;
}
.feature-card .icon {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 300px;
  box-shadow: 8px 8px 26px 10px rgba(3, 11, 41, 0.04);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
  background-color: var(--white);
  position: relative;
}
@media only screen and (max-width: 1599px) {
  .feature-card .icon {
    margin-bottom: 25px;
  }
}
.feature-card .icon img {
  position: relative;
  z-index: 2;
}
.feature-card .icon:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  height: 92%;
  width: 92%;
  background-image: linear-gradient(125deg, #D89A26 14.31%, #FFCD70 86.5%);
  border-radius: 50%;
  z-index: 1;
  transition: 0.7s;
}
.feature-card .icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  transform: translate(-50%, -50%);
  background: linear-gradient(125deg, #D89A26 14.31%, #FFCD70 86.5%);
  border-radius: 50%;
  z-index: 0;
  transition: 0.5s;
}
.feature-card .details {
  position: relative;
  z-index: 2;
}
.feature-card .details .title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media only screen and (max-width: 1599px) {
  .feature-card .details .title {
    font-size: 20px;
  }
}
.feature-card .details .description {
  margin-bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .feature-card .details .description {
    font-size: 15px;
  }
}
.feature-card:hover .icon:before {
  transform: rotate(180deg);
}
.feature-card:hover .icon:after {
  height: 100%;
  width: 100%;
}
.feature-card.style-two .icon:before {
  opacity: 0.25;
}

.demo-area {
  background: linear-gradient(180deg, #fff 0%, #f4f5fa 100%);
  padding: 120px 60px;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (max-width: 1599px) {
  .demo-area {
    padding: 130px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .demo-area {
    padding: 100px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .demo-area {
    padding: 80px 15px;
  }
}
.demo-area .demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 60px;
}
@media only screen and (max-width: 1599px) {
  .demo-area .demo-wrap {
    gap: 30px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .demo-area .demo-wrap {
    grid-template-columns: 1fr;
  }
}

.demo-item {
  position: relative;
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: 10px 10px 40px 10px rgba(3, 11, 41, 0.04);
  transition: all 0.9s;
}
@media only screen and (max-width: 767px) {
  .demo-item {
    padding: 15px;
  }
}
.demo-item:hover .thumb-wrap .item-overlay {
  width: 100%;
  height: 100%;
}
.demo-item:hover .icon {
  opacity: 1;
  visibility: visible;
}
.demo-item .thumb-wrap {
  position: relative;
}
.demo-item .thumb-wrap .item-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background-color: #b0b0b0;
  content: "";
  z-index: 9;
  opacity: 0.4;
  transition: all 0.9s;
}
.demo-item .thumb {
  border-radius: 20px;
  mask-image: url(../images/demo/demo-mask.png);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .demo-item .thumb {
    mask-image: none;
  }
}
.demo-item .title {
  color: #131221;
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 0px 100px 100px 0px;
  padding: 30px 37px;
  display: inline-block;
  background-color: #ffffff;
  position: absolute;
  left: 0%;
  bottom: 41px;
  z-index: 9;
}
@media only screen and (max-width: 1599px) {
  .demo-item .title {
    font-size: 25px;
    padding: 19px 20px;
    bottom: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .demo-item .title {
    font-size: 18px;
    padding: 16px 20px;
    bottom: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .demo-item .title {
    font-size: 26px;
    padding: 21px 29px;
    bottom: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .demo-item .title {
    font-size: 20px;
    padding: 21px 29px;
    bottom: 28px;
  }
}
.demo-item .icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: #0c1a1a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.9s;
}
.demo-item .icon:hover {
  background-color: var(--primary-color);
}
@media only screen and (max-width: 1599px) {
  .demo-item .icon {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .demo-item .icon {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .demo-item .icon img {
    width: 30px;
  }
}

.unique-area .demo-item .title {
  padding: 28px 58px 28px 33px;
}
@media only screen and (max-width: 1599px) {
  .unique-area .demo-item .title {
    bottom: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .unique-area .demo-item .title {
    bottom: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .unique-area .demo-item .title {
    padding: 20px 35px 23px 33px;
  }
}

.section-title .title {
  font-size: 80px;
  line-height: 1.2;
}
@media only screen and (max-width: 1599px) {
  .section-title .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title .title {
    font-size: 40px;
    line-height: 1;
  }
}
.section-title .count-title-shadow {
  color: #EBEDEF;
  font-size: 480px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 1599px) {
  .section-title .count-title-shadow {
    font-size: 280px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title .count-title-shadow {
    font-size: 100px;
  }
}
.section-title .description {
  max-width: 600px;
  margin: 0 auto;
}
.section-title.style-shadow {
  position: relative;
}
.section-title.style-shadow .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* Footer  */
.footer-widget {
  margin-bottom: 60px;
}
.footer-widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

aside .widget {
  border: 1px solid #ededed;
  padding: 30px;
  border-radius: 0;
  margin-bottom: 30px;
}
aside .widget-headline {
  font-size: 22px;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  padding-bottom: 8px;
  font-family: var(--body-font);
}
aside .widget-headline:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 60px;
  background: var(--primary-color);
  z-index: 2;
}
aside .widget-headline:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background: #E1E1E1;
}

.widget-about .thumb {
  margin-bottom: 20px;
}
.widget-about .thumb img {
  max-width: 150px;
}
.widget-about .details p {
  margin-bottom: 0;
  color: #fff;
}
.widget-about .details p svg {
  color: var(--primary-color);
  margin-right: 10px;
}
.widget-about .details p + p {
  font-weight: 500;
}
.widget-about .details .social-media {
  margin-top: 26px;
  padding-left: 0;
}
.widget-about .details .social-media li {
  display: inline-block;
  margin-right: 5px;
}
.widget-about .details .social-media li a {
  border: 1px solid #CDD8F9;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 39px;
  text-align: center;
}
.widget-about .details .social-media li a:hover {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.widget-about .details .social-media li a:hover svg path {
  color: #fff;
}

.widget-nav-menu ul {
  margin: 0;
  padding: 0;
}
.widget-nav-menu ul li {
  list-style: none;
  margin-bottom: 12px;
  position: relative;
  color: #fff;
  position: relative;
}
.widget-nav-menu ul li svg {
  margin-right: 8px;
  color: #fff;
  transition: 0.4s;
}
.widget-nav-menu ul li:hover svg {
  color: var(--primary-color);
}

.widget-contact .details {
  padding: 0;
}
.widget-contact .details li {
  margin-bottom: 10px;
  position: relative;
  list-style: none;
  color: #fff;
}
.widget-contact .details li i {
  margin-right: 14px;
  color: var(--primary-color);
}
.widget-contact .details li svg {
  margin-right: 14px;
  color: var(--primary-color);
}
.widget-contact .details li:last-child {
  margin-bottom: 0;
}
.widget-contact .details li .time {
  font-size: 12px;
  margin-top: 3px;
}

.widget-search .post-inside-wrapper {
  position: relative;
}
.widget-search .search-form {
  position: relative;
}
.widget-search .search-form .form-group {
  margin-bottom: 0;
}
.widget-search .search-form .form-group .form-control {
  height: 55px;
  color: var(--heading-color);
  border: none;
  border: 0;
  padding: 0 57px 0 15px;
  background: #f4f6f9;
  border-radius: 0;
  border: 1px solid #e1e1e1;
}
.widget-search .search-form .submit-btn {
  position: absolute;
  height: 55px;
  width: 53px;
  right: 0;
  top: 0;
  transition: 0.3s ease-in;
  border: none;
  background-color: var(--primary-color);
  cursor: pointer;
  color: #fff;
  border-radius: 0;
}
.widget-search .search-form .submit-btn:hover {
  background: var(--heading-color);
}

.theme-recent-post-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
}
.theme-recent-post-wrap li {
  display: block;
}
.theme-recent-post-wrap li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ededed;
}
.theme-recent-post-wrap li.theme-recent-post-item {
  display: flex;
  align-self: flex-start;
  align-items: center;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb {
  width: 80px;
  height: 80px;
  margin-right: 12px;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:hover {
  padding-left: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb img {
  border-radius: 5px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content {
  flex: 1;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title {
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title:hover a {
  color: var(--primary-color) !important;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a {
  padding-left: 0;
  color: var(--heading-color);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:hover {
  color: var(--primary-color);
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:before {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a:after {
  display: none;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .author a {
  font-size: 14px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time {
  font-size: 13px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 5px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time svg,
.theme-recent-post-wrap li.theme-recent-post-item .content .time i {
  color: var(--primary-color);
  padding-right: 5px;
  padding-top: 6px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time svg {
  font-size: 20px;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta {
  margin: 0;
  padding: 0;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta li {
  display: inline-block;
}
.theme-recent-post-wrap li.theme-recent-post-item .post-meta li + li {
  padding-left: 10px;
  margin-left: 10px;
}

.wp-block-tag-cloud a {
  background: #F4F6F9;
  height: 36px;
  line-height: 34px;
  padding: 0 16px;
  border-radius: 0;
  display: inline-block;
  margin: 0 5px 9px 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #909090;
  border: 1px solid rgba(66, 74, 97, 0.1);
}
.wp-block-tag-cloud a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.widget-category ul {
  padding: 0;
  margin: 0;
}
.widget-category ul li {
  list-style: none;
}
.widget-category ul li + li {
  margin-top: 14px;
}
.widget-category ul li a span {
  float: right;
}

.footer-area {
  background-color: var(--green);
  padding: 170px 0 150px 0;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .footer-area {
    padding: 120px 0 100px 0;
  }
}
.footer-area .section-title {
  position: relative;
  z-index: 2;
}
.footer-area .title {
  color: var(--white);
}
@media only screen and (max-width: 1599px) {
  .footer-area .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .title {
    font-size: 35px;
  }
}
.footer-area .description {
  color: var(--white-2);
  font-size: 20px;
  max-width: 700px;
}
@media only screen and (max-width: 1599px) {
  .footer-area .description {
    font-size: 16px;
    max-width: 600px;
  }
}
.footer-area .animate-img-1 {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.footer-area .animate-img-2 {
  left: 160px;
  top: -150px;
}
@media only screen and (min-width: 2000px) {
  .footer-area .animate-img-2 {
    left: 300px;
  }
}
@media only screen and (max-width: 1599px) {
  .footer-area .animate-img-2 {
    max-width: 300px;
    left: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .animate-img-2 {
    left: 10px;
    max-width: 130px;
    top: -70px;
  }
}
.footer-area .animate-img-3 {
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 1599px) {
  .footer-area .animate-img-3 {
    max-width: 350px;
  }
}
@media only screen and (max-width: 1599px) {
  .footer-area .animate-img-3 {
    max-width: 250px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .animate-img-3 {
    left: 10px;
    max-width: 130px;
  }
}
.footer-area .animate-img-4 {
  top: -180px;
  right: 0;
}
@media only screen and (max-width: 1599px) {
  .footer-area .animate-img-4 {
    max-width: 250px;
    top: -100px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .animate-img-4 {
    max-width: 150px;
  }
}
.footer-area .animate-img-5 {
  right: 160px;
  bottom: 0;
}
@media only screen and (min-width: 2000px) {
  .footer-area .animate-img-5 {
    right: 300px;
  }
}
@media only screen and (max-width: 1599px) {
  .footer-area .animate-img-5 {
    right: 100px;
    max-width: 250px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-area .animate-img-5 {
    max-width: 150px;
    right: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
