@charset "UTF-8";
/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Accessibility
 * 3.0 - Globals
 * 4.0 - Alignments
 * 5.0 - Clearings
 * 6.0 - Captions
 * 7.0 - Posts and pages
 * 8.0 - Galleries
 * 9.0 - Unit Test
 * 10.0 - Guterberg 
 * 11.0 - Guterberg Style
 * 12.0 - Block Color Palette Colors
 * 13.0 - Sections
   * 13.1 - Breadcrumb
   * 13.2 - Comments
   * 13.3 - Widgets
   * 13.4 - Nav Bar
   * 13.5 - Info Bar
   * 13.6 - Header
   * 13.7 - Header Bottom Area
   * 13.8 - Footer Area
   * 13.9 - Error 404 Area
   * 13.10 - Why us Area
   * 13.11 - Highly Skilled Area
   * 13.12 - Call TO Action Area
   * 13.13 - Testimonial Area
   * 13.14 - Top Lawyer Style 02
   * 13.15 - Counterup Area
   * 13.16 - Case Category Area
   * 13.17 - Legal Support Area
   * 13.18 - Practice Details Area
   * 13.19 - Attorney Details Area
* 14.0 - Elements
  * 14.1 - Preloader
  * 14.2 - Preloader
  * 14.3 - Button
  * 14.4 - Blog
  * 14.5 - Accordion
  * 14.6 - Contact Info Item
  * 14.7 - Quote block with sign
  * 14.8 - Counterup Item
  * 14.9 - Video With Image
  * 14.10 - Video Play Button
  * 14.11 - Why Us Item
  * 14.12 - Section Title
  * 14.13 - What we cover item
  * 14.14 - Icon Box Item
  * 14.15 - Testimonial Item
  * 14.16 - Case Categories Item
  * 14.17 - Quote With Image
  * 14.18 - Price Plan Item
  * 14.19 - Back Top
*/
/*-----------------
    # Typography
-----------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #DCBB87;
  --main-color-two: #A37D3D;
  --secondary-color: #19232D;
  --heading-color: #19232D;
  --paragraph-color: #585858;
  --heading-font: "Playfair Display", serif;
  --body-font: "Lato", sans-serif;
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

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

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

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

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

h5 {
  font-size: 16px;
  line-height: 1.0833333333;
}

h6 {
  font-size: 14px;
  line-height: 1.0833333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.75;
  margin-bottom: 10px;
}

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

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

pre {
  margin-top: 15px;
  background-color: whitesmoke;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2U2ZTZlNiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f5f5f5), color-stop(50%, #e6e6e6));
  background-image: linear-gradient(#f5f5f5 50%, #e6e6e6 50%);
  background-size: 38px 38px;
  border: 1px solid #d4d4d4;
  display: block;
  line-height: 19px;
  margin-bottom: 20px;
  overflow: visible;
  overflow-y: hidden;
  padding: 0 0 0 4px;
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
  height: auto;
}

ol:not([class]) {
  margin-bottom: 20px;
}

ol:not([class]) ol {
  margin-bottom: 0;
}

ul ol:not([class]) {
  margin-bottom: 0;
}

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

ol ol, ol ul, ul ol, ul ul {
  margin-top: 10px;
}

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

input:checked ~ span::before {
  background-color: white;
}

button:focus {
  outline: none;
}

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

.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%;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid #e2e2e2;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  width: 50%;
  border: 1px solid #e2e2e2;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: var(--paragraph-color);
}

.comment-navigation .nav-previous:hover,
.posts-navigation .nav-previous:hover,
.post-navigation .nav-previous:hover,
.comment-navigation .nav-next:hover,
.posts-navigation .nav-next:hover,
.post-navigation .nav-next:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

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

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

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 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-15 {
  padding-top: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-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: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-bottom-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;
  margin-top: 1.75em;
  margin-bottom: 1.7em;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
  margin-top: 1.75em;
  margin-bottom: 1.7em;
}

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

.alignnone {
  margin: 1.75em 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;
}

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

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages {
  margin-bottom: 30px;
  clear: both;
  padding-top: 30px;
}
.wp-link-pages a {
  margin: 0 5px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 30px;
}
.wp-link-pages a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.wp-link-pages span {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 30px;
}
.wp-link-pages span:first-child {
  margin-right: 5px;
}
.wp-link-pages .current {
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 30px;
  border-color: var(--main-color-one);
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 4px;
  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-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  display: inline-block;
}
.post-password-form input[type=submit]:hover {
  background-color: var(--main-color-one);
}

.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-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-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-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-wrap.navbar- .breadcrumb-content {
  padding: 110px 0 120px 0;
}

.breadcrumb-wrap {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.breadcrumb-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#19232DA2), color-stop(47%, #363F48BB), to(#656c72b6)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #19232DA2 0%, #363F48BB 47%, #656c72b6 100%) 0% 0% no-repeat padding-box;
  z-index: -1;
}
.breadcrumb-wrap.extra {
  padding-bottom: 138px;
}
.breadcrumb-wrap.navbar-style-02 .breadcrumb-content {
  padding: 257px 0 157px 0;
}
.breadcrumb-wrap.navbar-style-03 .breadcrumb-content {
  padding: 150px 0 155px 0;
}
.breadcrumb-wrap .breadcrumb-content {
  padding: 155px 0 155px 0;
  text-align: center;
}
.breadcrumb-wrap .page-title {
  font-size: 65px;
  line-height: 75px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 15px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  text-transform: uppercase;
  background-color: var(--main-color-one);
  font-size: 14px;
  line-height: 20px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.breadcrumb-wrap .page-list {
  margin: 0;
  padding: 0;
}
.breadcrumb-wrap .page-list li {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.breadcrumb-wrap .page-list li:first-child {
  padding-left: 0;
}
.breadcrumb-wrap .page-list li:first-child a {
  color: var(--main-color-one);
}
.breadcrumb-wrap .page-list li:first-child:after {
  display: none;
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  left: 18px;
  font-size: 12px;
  top: 7px;
  content: "";
  font-family: "flaticon";
}

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

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 30px;
}
.comments-area .comments-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 38px;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.comments-area .comment-list .comment-respond {
  margin-bottom: 42px;
}
.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list li:last-child .single-comment-wrap .thumb .date {
  margin-bottom: 0;
}
.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style: none;
}
.comments-area .comment-list li .single-comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  --ms-flex-item-align: start;
  -ms-flex-item-align: start;
      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%;
  border: 2px solid #fafafa;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.02);
}
.comments-area .comment-list li .single-comment-wrap .date {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.comments-area .comment-list li .single-comment-wrap .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 630px;
}
.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 70px;
  color: #111;
  font-family: var(--heading-font);
}
.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 670px;
}
.comments-area .comment-list li .single-comment-wrap .content p {
  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(--main-color-one);
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color-one);
  font-size: 14px;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:after {
  position: static;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  font-weight: 900;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:hover {
  color: var(--main-color-one);
}
.comments-area .comment-list li.comment {
  margin-bottom: 30px;
}
.comments-area .comment-list .has-children {
  padding-left: 80px;
}
.comments-area .comment-list ol:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ol:not([class]) li ol {
  margin-bottom: 0;
}
.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}
.comments-area .comment-list ul:not([class]) {
  margin-bottom: 20px;
}
.comments-area .comment-list ul:not([class]) ul {
  margin-bottom: 0px;
}
.comments-area .reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title small {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-bottom: 0;
}
.comments-area .comment-form-wrap {
  padding: 65px 95px 70px;
}
.comments-area .form-submit {
  margin-bottom: 0;
}

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

.comment-form .form-group.textarea .form-control {
  min-height: 120px;
  resize: none;
  line-height: 26px;
}
.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.comment-form .form-group.textarea:after {
  content: "";
  top: 20px;
}
.comment-form .form-group {
  position: relative;
}
.comment-form .form-group .form-control {
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  border: 1px solid #f2f2f3;
  background-color: #fff;
  padding: 10px 20px;
  padding-right: 35px;
}
.comment-form .form-group:after {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  color: var(--main-color-one);
  font-weight: 900;
}
.comment-form .form-group:first-child:after {
  content: "";
}
.comment-form .form-group:nth-child(2):after {
  content: "";
}
.comment-form .form-group:nth-child(3):after {
  content: "";
}
.comment-form .btn-wrap .boxed-btn {
  font-size: 14px;
}
.comment-form .submit-btn {
  height: 50px;
  width: auto;
  border-radius: 40px;
  font-weight: 600;
  background-color: var(--main-color-one);
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #fff;
  padding: 0 30px;
}
.comment-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

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

label[for=wp-comment-cookies-consent] {
  font-size: 14px;
}

.comment-respond {
  margin-top: 42px;
}

.form-group.textarea {
  width: 100% !important;
  margin-left: 0 !important;
}

.full-width-content .comments-area .comment-list li .single-comment-wrap .content {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 384px) {
  .comments-area .comment-list li .single-comment-wrap {
    display: block;
  }
  .comments-area .comment-list li .single-comment-wrap .content {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 30px;
  padding: 25px;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 30px #00000012;
          box-shadow: 0px 6px 30px #00000012;
  border-radius: 10px;
}
.widget.style-01 {
  padding: 0;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  margin: 8px 0;
  display: block;
  -ms-word-wrap: break-word;
  word-break: break-word;
}
.widget ul li + li {
  margin-top: 10px;
}
.widget ul li:before {
  display: none;
}
.widget ul li:last-child {
  margin-bottom: 0;
}
.widget ul li:first-child {
  margin-top: 0;
}
.widget ul li a {
  color: inherit;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.widget ul li a:hover {
  color: var(--main-color-one);
}
.widget ul li a.rsswidget {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.widget ul li .rss-date {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #a7a7a7;
}
.widget ul li ul {
  margin-left: 20px;
  margin-top: 10px;
}
.widget ul li ul.sub-menu {
  position: initial;
  visibility: visible;
  opacity: 1;
  background-color: transparent;
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 10px;
}
.widget ul li ul.sub-menu li a {
  padding: 0 0 0 10px;
}
.widget ul li ul.sub-menu li a:hover {
  background-color: transparent;
}
.widget > h1,
.widget > h2,
.widget > h3,
.widget > h4,
.widget > h5,
.widget > h6,
.widget .widget-headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.widget > h1:after,
.widget > h2:after,
.widget > h3:after,
.widget > h4:after,
.widget > h5:after,
.widget > h6:after,
.widget .widget-headline:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}
.widget select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 40px;
}

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

.widget ul li,
.comments-area .comment-list li,
.comments-area .comment-list li.comment {
  padding-left: 0;
}

.comments-area .comment-list li:before,
.comments-area .comment-list li.comment:before {
  display: none;
}

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

.widget-nav-menu ul li + li {
  border-top: 1px solid #2c3e88;
}

.footer-widget .widget_search .search-form .form-group .form-control {
  color: #fff;
}

.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;
  color: var(--heading-color);
  border: 1px solid var(--main-color-one);
  border-radius: 4px;
  padding: 0 55px 0 15px;
  background-color: transparent;
}
.widget_search .search-form .submit-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 22px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: var(--main-color-one);
}
.widget_search .search-form .submit-btn:hover {
  color: var(--heading-color);
}

.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 .name p {
  font-size: 16px;
  line-height: 26px;
}
.widget_author_meta .content .name ul {
  margin-top: 25px;
}
.widget_author_meta .content .name ul li {
  display: inline-block;
  margin: 0 5px;
}
.widget_author_meta .content .name 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%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.widget_author_meta .content .name ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.widget_tag_cloud .tagcloud a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 500;
  background: var(--main-color-one);
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-radius: 4px;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu ul li {
  margin: 10px 0;
}
.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu ul li:first-child {
  margin-top: 0;
}
.widget_nav_menu ul li a {
  border: none;
}
.widget_nav_menu ul li > ul {
  margin-left: 15px;
}

.widget.widget_archive ul li:first-child {
  padding-top: 0;
}
.widget.widget_archive ul li + li {
  margin-top: 15px;
}
.widget.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget.widget_archive ul li a i {
  color: var(--main-color-one);
  margin-right: 5px;
}

.widget ul.widget_categories li + li {
  margin-top: 15px;
}

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

.widget.elementor-widget-wp-widget-flynext_request_form_widget, .widget.flynext-request-form-widget {
  padding: 0;
}
.widget .request-form-widget {
  padding: 25px 25px 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}
.widget .request-form-widget:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
  background-color: rgba(17, 13, 14, 0.85);
}
.widget .request-form-widget .widget-headline {
  color: #fff;
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 30px;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.widget.footer-widget select {
  color: #e2e2e2;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='16' height='16' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='white'/></g></svg>");
}
.widget.footer-widget select option {
  color: var(--heading-color);
}
.widget.footer-widget .widget-headline {
  color: #E5E5E5;
  position: relative;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--body-font);
  line-height: 28px;
  padding-bottom: 10px;
  padding-left: 0;
  z-index: 0;
}
.widget.footer-widget .widget-headline:after {
  content: "";
  position: absolute;
  top: initial;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  background-color: var(--main-color-one);
  z-index: -1;
}
.widget.footer-widget .widget-headline:before {
  display: none;
}
.widget.footer-widget .widget-headline p {
  color: #fff;
  font-size: 14px;
}
.widget.footer-widget.style-01 {
  border: none;
}
.widget.footer-widget.style-01 .widget-headline {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li a {
  color: var(--heading-color);
}
.widget.footer-widget.style-01 ul li:hover {
  color: var(--main-color-one);
}
.widget.footer-widget.style-01 ul li:hover a {
  color: var(--main-color-one);
}
.widget.footer-widget ul li {
  color: #fff;
  font-size: 14px;
  position: relative;
}
.widget.footer-widget ul li a {
  color: #fff;
  font-size: 16px;
  position: relative;
}
.widget.footer-widget ul li a:hover {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: var(--main-color-one);
}
.widget.footer-widget.widget_tag_cloud .tagcloud {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_tag_cloud .tagcloud a {
  font-size: 14px;
}
.widget.footer-widget.widget_recent_comments ul li a:after {
  display: none;
}
.widget.footer-widget.widget_recent_comments ul li a:hover {
  padding-left: 0;
}
.widget.footer-widget.widget_calendar table th {
  border: 1px solid #ddd;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table th a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget.widget_calendar table td {
  border: 1px solid #ddd;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.widget.footer-widget.widget_calendar table td a {
  font-weight: 600;
  text-decoration: underline;
}
.widget.footer-widget .subscribe-form .form-group .form-control {
  background-color: #515457;
  color: #fff;
}
.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.6);
}
.widget.footer-widget .subscribe-form .submit-btn:hover {
  background-color: #fff;
  color: var(--main-color-one);
}
.widget.footer-widget .wp-calendar-nav {
  padding: 8px 0;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-prev:hover {
  color: var(--main-color-one);
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
  color: #fff;
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next:hover {
  color: var(--main-color-one);
}

.widget ul > li:last-child {
  padding-bottom: 0;
}
.widget img {
  height: auto;
}

.footer-widget.widget_nav_menu ul li a {
  position: relative;
}

.footer-widget.widget.widget_nav_menu ul li {
  margin: 0;
}

.footer-style .footer-wrap {
  background-color: var(--heading-color);
}

.footer-wrap .footer-top .footer-widget .menu li ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget_tag_cloud.footer-widget .tagcloud a {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: var(--heading-color);
}
.widget_tag_cloud.footer-widget .tagcloud a:hover {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}

.wp-block-calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.widget_calendar caption {
  caption-side: top;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  color: var(--heading-color);
  background-color: #ddd;
}

.wp-block-calendar table th {
  background-color: transparent;
}

.widget_flynext_category ul li + li {
  padding-top: 10px;
  border-top: 1px dashed #C9C9C9;
}

.widget_recent_comments ul li {
  position: relative;
}

.widget .widget_calendar caption {
  color: var(--paragraph-color);
}

.widget.widget_rss li {
  margin-bottom: 20px;
}
.widget.widget_rss cite {
  font-weight: 600;
  margin-top: 5px;
  display: inline-block;
}

.widget_calendar table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.widget_calendar table th {
  border: 1px solid #ddd;
  padding: 8px;
}

#wp-calendar {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
#wp-calendar th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}

.widget_recent_comments ul li a {
  text-decoration: underline;
}

.footer-widget .theme-recent-post-wrap li.theme-recent-post-item + li {
  border-top: initial;
  padding-top: 0;
}

.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;
}
.theme-recent-post-wrap li.theme-recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.theme-recent-post-wrap li.theme-recent-post-item + li {
  padding-top: 20px;
  border-top: 1px dashed #e1e6ff;
}
.theme-recent-post-wrap li.theme-recent-post-item .thumb {
  width: 70px;
  border-radius: 4px;
  height: 70px;
  margin-right: 15px;
}
.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: 4px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--body-font);
  font-weight: 600;
  margin-bottom: 0;
}
.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(--main-color-one);
}
.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 .time {
  font-size: 14px;
  text-transform: uppercase;
  color: #858585;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .time i {
  color: var(--main-color-one);
  padding-right: 5px;
}

.contact_info_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact_info_list li.single-info-item {
  display: inline-block;
  margin-right: 10px;
}
.contact_info_list li.single-info-item.style-01 .icon {
  color: var(--main-color-one);
}
.contact_info_list li.single-info-item.style-01 .details {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact_info_list li.single-info-item .icon {
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #1F2E3C;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.contact_info_list li.single-info-item .icon a {
  color: #1F2E3C !important;
}
.contact_info_list li.single-info-item .icon:hover {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.contact_info_list li.single-info-item .icon:hover a {
  color: #fff !important;
}
.contact_info_list li.single-info-item .details {
  margin-left: 15px;
}

.footer-nav-widget .widget-headline {
  color: var(--main-color-one);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-nav-widget p {
  color: #fff;
  margin-bottom: 0;
}

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

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      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 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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;
}

.widget.widget_media_gallery .gallery {
  margin-bottom: 0;
}

.about_me_widget .content {
  text-align: center;
}
.about_me_widget .content .thumb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: auto;
}
.about_me_widget .content .thumb img {
  border-radius: 50%;
}
.about_me_widget .content .title {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
}
.about_me_widget .content p {
  padding-top: 10px;
}

.about-us-widget img {
  margin-bottom: 20px;
}
.about-us-widget p {
  color: #fff;
  max-width: 340px;
}

.about_me_two_widget p {
  font-size: 16px;
  line-height: 26px;
}
.about_me_two_widget .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.about_me_two_widget .thumb {
  width: 60px;
  margin-right: 20px;
}
.about_me_two_widget .title {
  font-size: 20px;
  font-weight: 600;
}
.about_me_two_widget .designation {
  color: var(--main-color-one);
}

.widget.widget_media_image {
  padding: 0;
}
.widget.widget_media_image img {
  width: 100%;
}

.custom-logo-link img, .site-logo img, .footer-logo img {
  max-width: 180px !important;
}

.widget .elementor-widget-container > h1,
.widget .elementor-widget-container > h2,
.widget .elementor-widget-container > h3,
.widget .elementor-widget-container > h4,
.widget .elementor-widget-container > h5,
.widget .elementor-widget-container > h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.widget .elementor-widget-container > h1:after,
.widget .elementor-widget-container > h2:after,
.widget .elementor-widget-container > h3:after,
.widget .elementor-widget-container > h4:after,
.widget .elementor-widget-container > h5:after,
.widget .elementor-widget-container > h6:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

.wp-block-group__inner-container > h1,
.wp-block-group__inner-container > h2,
.wp-block-group__inner-container > h3,
.wp-block-group__inner-container > h4,
.wp-block-group__inner-container > h5,
.wp-block-group__inner-container > h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.wp-block-group__inner-container > h1:after,
.wp-block-group__inner-container > h2:after,
.wp-block-group__inner-container > h3:after,
.wp-block-group__inner-container > h4:after,
.wp-block-group__inner-container > h5:after,
.wp-block-group__inner-container > h6:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

.wp-block-search__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.wp-block-search__label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 18px;
  width: 4px;
  background-color: var(--main-color-one);
}

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

.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.navigation-style-02 {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 75px;
  z-index: 3;
}
.navbar-area.navigation-style-02.has-topbar {
  top: 75px;
}
.navbar-area.navigation-style-02 .custom-container {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.navbar-area.navigation-style-02 .custom-container .logo-wrapper {
  max-width: 200px;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 80px;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content ul li {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content ul li + li {
  margin-left: 10px;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content ul li a .icon {
  color: #fff;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content ul li a .icon i {
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content ul li a .icon:hover {
  color: #fff;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content .info-items li {
  font-weight: 700;
}
.navbar-area.navigation-style-02 .custom-container .nav-right-content .btn-wrap {
  margin-left: 50px;
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav {
  text-align: right;
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.current-menu-item:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  z-index: initial;
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  background-color: #fff;
  color: var(--paragraph-color);
}
.navbar-area.navigation-style-02 .custom-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.navigation-style-02 .custom-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.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li:hover a {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 {
  background-color: #fff;
}
.navbar-area.navigation-style-01 .custom-container {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 0 20px;
}
.navbar-area.navigation-style-01 .custom-container .logo-wrapper {
  max-width: 200px;
}
.navbar-area.navigation-style-01 .custom-container .nav-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.navbar-area.navigation-style-01 .custom-container .nav-right-content ul li {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 .custom-container .nav-right-content ul li + li {
  margin-left: 10px;
}
.navbar-area.navigation-style-01 .custom-container .nav-right-content ul li a .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--main-color-one);
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.navbar-area.navigation-style-01 .custom-container .nav-right-content ul li a .icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav {
  text-align: center;
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.current-menu-item:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  z-index: initial;
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  background-color: #fff;
  color: var(--paragraph-color);
}
.navbar-area.navigation-style-01 .custom-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.navigation-style-01 .custom-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.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #19232D;
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
  color: var(--main-color-one);
}
.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li:hover a {
  color: var(--main-color-one);
}
.navbar-area .custom-container {
  background-color: #fff;
  padding: 0 15px;
  max-width: 1680px;
}
.navbar-area .custom-container .nav-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-area .custom-container .nav-right-content .btn-wrap {
  margin-left: 10px;
}
.navbar-area .custom-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar-area .custom-container .nav-right-content ul li {
  display: inline-block;
  color: #19232D;
}
.navbar-area .custom-container .nav-right-content ul li a {
  color: #19232D;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .custom-container .nav-right-content ul li a:hover {
  color: var(--main-color-one);
}
.navbar-area .custom-container .nav-right-content ul li a:hover i {
  color: var(--main-color-one);
}
.navbar-area .custom-container .nav-right-content ul li a i {
  color: #19232D;
  padding-right: 6px;
  font-weight: 800;
}
.navbar-area .custom-container .nav-right-content ul li.search {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .custom-container .nav-right-content ul li.search:hover {
  color: var(--main-color-one);
}
.navbar-area .custom-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 .custom-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
  background-color: var(--main-color-one);
}
.navbar-area .custom-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 .custom-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 80px;
  position: relative;
  z-index: 0;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li + li {
  margin-left: 30px;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 25px;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "+";
  font-weight: 700;
  color: var(--heading-color);
  font-size: 18px;
  font-family: var(--body-font);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  border-bottom: 4px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 14px;
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
  border-top: 1px solid rgba(17, 17, 17, 0.6);
}
.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 12px 17px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .custom-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 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:before {
  display: none;
}
.navbar-area .custom-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 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: -220px;
  top: 10px;
  margin-bottom: 0;
}
.navbar-area .custom-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 .custom-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 .custom-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 .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: block;
}

@media only screen and (max-width: 991px) {
  .navbar-area.navigation-style-02 .custom-container {
    padding: 20px 15px;
    background-color: var(--secondary-color);
  }
  .navbar-area.navigation-style-02 .custom-container.style-01 {
    background-color: #fff;
  }
  .navbar-area.navigation-style-02 .custom-container .navbar-toggler {
    background-color: #fff;
  }
  .navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav {
    padding: 0;
  }
  .navbar-area.navigation-style-02 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: transparent;
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container {
    padding: 20px 10px;
  }
  .navbar-area.navigation-style-01 .custom-container .responsive-mobile-menu .navbar-toggler {
    background-image: none;
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav {
    text-align: left;
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li {
    line-height: 30px;
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    z-index: initial;
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    background-color: transparent;
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-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.navigation-style-01 .custom-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.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
    color: var(--main-color-one);
  }
  .navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
  }
  .navbar-area .custom-container {
    position: relative;
    z-index: 9999;
    min-height: 80px;
    padding: 40px 10px;
  }
  .navbar-area .custom-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .custom-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--main-color-one);
  }
  .navbar-area .custom-container .navbar-brand {
    display: block;
  }
  .navbar-area .custom-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid rgba(17, 17, 17, 0.6);
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 40px;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid #c7a774;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: -10px;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    height: auto;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    background-color: transparent;
    padding: 0;
    border-bottom: none;
    display: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
  .navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid #c7a774;
  }
}
/*-------------------------------------------------
    [ ## Header ]
*/
.logged-in.admin-bar .header-section {
  top: 30px;
}
.logged-in.admin-bar .navigation-style-02 {
  top: 30px;
}

.custom-container {
  max-width: 1680px;
}
.custom-container.style-01 {
  max-width: 1440px;
}

.custom-container-02 {
  max-width: 1440px;
}

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}

.header {
  background-color: transparent;
  width: 100%;
  z-index: 99;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.header-bottom-area {
  position: relative;
  padding: 15px 100px 0 100px;
}
@media only screen and (max-width: 1317px) {
  .header-bottom-area {
    padding: 15px 30px 0 30px !important;
  }
}
@media only screen and (max-width: 991px) {
  .header-bottom-area {
    padding: 15px 0 0 0 !important;
  }
}
.header-bottom-area .header-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-bottom-area .header-menu-content .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-bottom-area .header-menu-content .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-bottom-area .header-menu-content .header-right .btn-wrap {
  margin-left: 50px;
}

.header-two .header-bottom-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 100px 15px 100px;
}
@media only screen and (max-width: 1317px) {
  .header-two .header-bottom-area {
    padding: 15px 0 15px 0 !important;
  }
}

.navbar-collapse .main-menu li {
  position: relative;
}

.navbar-collapse .main-menu li.menu-item-has-children a {
  position: relative;
  padding-right: 20px;
}
.navbar-collapse .main-menu li.menu-item-has-children a::before {
  position: absolute;
  content: "";
  background: var(--heading-color);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2px;
  height: 16px;
  top: 50%;
  right: 0;
}
.navbar-collapse .main-menu li.menu-item-has-children a::after {
  position: absolute;
  content: "";
  background: var(--heading-color);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  top: 50%;
  right: -14px;
}

.navbar-collapse .main-menu li.menu-item-has-children.show a {
  color: var(--heading-color);
}
.navbar-collapse .main-menu li.menu-item-has-children.show a::before, .navbar-collapse .main-menu li.menu-item-has-children.show a::after {
  background: var(--main-color-one);
}
.navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu {
  opacity: 1;
  visibility: visible;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  .navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu {
    display: block;
  }
}
.navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children {
  position: relative;
}
.navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children .sub-menu {
  position: absolute;
  top: -392px;
  left: 200%;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children .sub-menu li a {
  color: #fff !important;
}
.navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children.show .sub-menu {
  left: -116%;
  opacity: 1;
  visibility: visible;
}

.page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children .sub-menu {
  width: 200px;
  height: auto;
  top: 0;
}
.page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu li.menu-item-has-children.show .sub-menu {
  left: 112%;
}

.navbar-collapse .main-menu li a {
  position: relative;
  padding: 10px 0 10px 0;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--heading-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-size: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9;
}
@media only screen and (max-width: 1399px) {
  .navbar-collapse .main-menu li a {
    font-size: 24px;
    padding: 12px 0 12px 0;
  }
}

.navbar-collapse .main-menu li .sub-menu {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: -100%;
  width: 300px;
  padding: 50px;
  height: 100vh;
  background-color: var(--main-color-one);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  margin-left: 0;
}
@media only screen and (max-width: 1399px) {
  .navbar-collapse .main-menu li .sub-menu {
    width: 200px;
    padding: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .navbar-collapse .main-menu li .sub-menu {
    position: relative;
    top: auto;
    right: auto !important;
    height: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    z-index: 999;
  }
}
.navbar-collapse .main-menu li .sub-menu li {
  margin-right: 0;
  padding-right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
  z-index: 2;
}
.navbar-collapse .main-menu li .sub-menu li::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--heading-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-collapse .main-menu li .sub-menu li:hover::before {
  width: 100%;
}
.navbar-collapse .main-menu li .sub-menu li a {
  color: var(--heading-color);
  width: 100%;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 600;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media only screen and (max-width: 1399px) {
  .navbar-collapse .main-menu li .sub-menu li a {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
  }
}
.navbar-collapse .main-menu li .sub-menu li a::before {
  position: unset;
  content: none;
}
.navbar-collapse .main-menu li .sub-menu li a::after {
  position: unset;
  content: none;
}
@media (max-width: 991px) {
  .navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li .sub-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
}
.navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.custom-logo-link,
.site-logo {
  max-width: 180px;
  margin-right: 100px;
}
@media only screen and (max-width: 991px) {
  .custom-logo-link,
.site-logo {
    margin-right: 20px;
  }
}

.language-select {
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .language-select {
    margin-left: 12px;
  }
}

.header-links-area .link-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  background-color: var(--main-color-one);
  border-radius: 5px;
  color: #fff;
  display: none;
}
@media only screen and (max-width: 1199px) {
  .header-links-area .link-btn {
    display: block;
  }
}

@media only screen and (max-width: 1199px) {
  .header-links {
    position: absolute;
    width: 300px;
    left: auto;
    right: 0;
    top: 100%;
    background: #27323c;
    padding: 20px;
    z-index: 9;
    display: none;
  }
}
.header-links li {
  display: inline-block;
  color: #fff;
}
.header-links li i {
  color: var(--heading-color);
  margin-right: 5px;
}
.header-links li + li {
  margin-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .header-links li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}

.page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children.show .sub-menu {
  right: auto;
}
@media only screen and (max-width: 1199px) {
  .page-wrapper-two .site-logo {
    margin-right: 30px;
  }
}
.page-wrapper-two .header-menu-content {
  display: block;
}
.page-wrapper-two .header-right {
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .page-wrapper-two .header-right {
    padding-left: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .page-wrapper-two .header-right .header-links {
    background: rgba(var(--main-color-one), 0.1);
  }
}
.page-wrapper-two .header-right .header-action {
  background: rgba(var(--main-color-one), 0.1);
}
.page-wrapper-two .header-bottom-area {
  padding: 15px 200px 0 200px;
}
@media only screen and (max-width: 1699px) {
  .page-wrapper-two .header-bottom-area {
    padding: 15px 100px 0 100px;
  }
}
@media only screen and (max-width: 1499px) {
  .page-wrapper-two .header-bottom-area {
    padding: 15px 50px 0 50px;
  }
}
@media only screen and (max-width: 1399px) {
  .page-wrapper-two .header-bottom-area {
    padding: 15px 30px 0 30px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-two .header-bottom-area {
    padding: 15px 0 0 0;
  }
}
.page-wrapper-two .header-bottom-area .navbar-expand-lg {
  background-color: transparent;
  padding: 0 !important;
}
@media only screen and (max-width: 1299px) {
  .page-wrapper-two .header-bottom-area .navbar-collapse .main-menu li a {
    padding: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-two .header-bottom-area .navbar-collapse {
    background-color: var(--secondary-color);
  }
  .page-wrapper-two .header-bottom-area .navbar-collapse .main-menu {
    padding: 15px 10px;
  }
  .page-wrapper-two .header-bottom-area .navbar-collapse .main-menu li a {
    color: #fff;
    font-weight: 500;
    padding: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .page-wrapper-two .header-bottom-area .navbar-collapse {
    max-height: 320px;
    overflow: auto;
  }
}
.page-wrapper-two .header-links {
  margin-left: 60px;
}
.page-wrapper-two .header-links li {
  color: var(--heading-color);
  font-weight: 600;
}
.page-wrapper-two .header-links li i {
  color: var(--heading-color);
  font-size: 10px;
}
.page-wrapper-two .navbar-collapse .main-menu li {
  margin-right: 40px;
}
@media only screen and (max-width: 1299px) {
  .page-wrapper-two .navbar-collapse .main-menu li {
    margin-right: 25px;
  }
}
.page-wrapper-two .navbar-collapse .main-menu li .sub-menu {
  position: absolute;
  top: 100%;
  width: 200px;
  padding: 15px 20px;
  height: auto;
  display: block;
  right: auto;
}
@media only screen and (max-width: 1199px) {
  .page-wrapper-two .navbar-collapse .main-menu li .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-two .navbar-collapse .main-menu li .sub-menu {
    position: relative;
    top: auto;
    right: auto !important;
    height: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    z-index: 999;
  }
}
.page-wrapper-two .navbar-collapse .main-menu li .sub-menu li a {
  font-size: 14px;
  padding: 5px 0;
}
.page-wrapper-two .navbar-collapse .main-menu li a {
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 600;
  padding: 0 12px 0 0;
}
.page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::before {
  height: 10px;
}
@media only screen and (max-width: 1299px) {
  .page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::before {
    right: -8px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::before {
    background: #fff;
  }
}
.page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::after {
  width: 10px;
  right: -8px;
}
@media only screen and (max-width: 1299px) {
  .page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::after {
    right: -16px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-two .navbar-collapse .main-menu li.menu-item-has-children a::after {
    background: #fff;
  }
}

.header-action-area .action-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  background-color: var(--main-color-one);
  border-radius: 5px;
  color: #fff;
  display: none;
  margin-left: 5px;
}
@media only screen and (max-width: 1199px) {
  .header-action-area .action-btn {
    display: block;
  }
}

@media only screen and (max-width: 1299px) {
  .header-action {
    margin: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-action {
    display: none;
  }
}

.header-action--style {
  margin-left: 0;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .header-action--style {
    position: unset;
    width: auto;
    background: transparent;
    padding: 0;
    display: block;
  }
}

.nav-menu-wrap .header-social {
  margin-top: 30px;
}

.header-social li {
  display: inline-block;
}
.header-social li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  background: transparent;
  border: 1px solid var(--main-color-one);
  color: #F8B65D;
  font-size: 11px;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-social li a:hover, .header-social li a.active {
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.header-social li + li {
  margin-left: 8px;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  color: var(--heading-color);
  font-size: 30px;
}
@media only screen and (max-width: 1199px) {
  .navbar-toggler span {
    font-size: 22px;
  }
}

.toggle-wrapper {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-wrapper::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color-one);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-wrapper::after {
  position: absolute;
  content: "";
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color-one);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-wrapper:hover::before {
  width: 100%;
}
.toggle-wrapper:hover::after {
  width: 100%;
}
.toggle-wrapper:hover .toggle-bar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.toggle-wrapper:hover .toggle-bar .toggle {
  margin: 0;
}
.toggle-wrapper:hover .toggle-bar .toggle.res {
  display: block;
}
.toggle-wrapper:hover .toggle-bar .toggle.pos {
  display: none;
}
.toggle-wrapper:hover .toggle-bar .element {
  width: auto;
  height: auto;
}

.toggle-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-bar .toggle {
  margin: 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-bar .toggle.res {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-bar .toggle.pos {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle-bar .element {
  background: var(--main-color-one);
  width: 4px;
  height: 4px;
}
.toggle-bar .text {
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .toggle-bar .text {
    font-size: 10px;
  }
}

.nav-menu-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  visibility: hidden;
  z-index: 99999;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .nav-menu-container {
    overflow-y: auto;
  }
}

.page-wrapper.show .nav-menu-container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.page-wrapper.show .menu-element-two {
  -webkit-transform: translateX(0px) scale(1);
          transform: translateX(0px) scale(1);
}
.page-wrapper .btn-wrap.header-action {
  margin-top: 30px;
}
.page-wrapper .btn-wrap .boxed-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-wrapper .btn-wrap .boxed-btn i {
  font-size: 14px;
}

.nav-menu-close {
  position: absolute;
  top: 1rem;
  left: 2rem;
  padding: 0.4rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .nav-menu-close {
    left: 1rem;
  }
}

.nav-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .nav-menu-wrapper {
    display: block;
  }
}

.menu-element-area {
  padding: 3.125rem 5rem;
  width: 50%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .menu-element-area {
    width: 100%;
    padding: 60px 20px;
    min-height: auto;
  }
}
.menu-element-area .menu-element-one {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.menu-element-area .menu-element-two {
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transform: translateX(-700px) scale(0.5);
          transform: translateX(-700px) scale(0.5);
}

.nav-menu-wrap {
  padding: 3.125rem 6rem;
  width: 50%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.nav-menu-wrap .navbar-collapse {
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}
.nav-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1199px) {
  .nav-menu-wrap {
    width: 100%;
    padding: 60px 20px;
    min-height: auto;
  }
}

.header--style {
  position: relative;
}
.header--style .header-bottom-area {
  background-color: var(--secondary-color);
  padding: 15px 100px 15px 100px;
}
@media only screen and (max-width: 1317px) {
  .header--style .header-bottom-area {
    padding: 15px 0 15px 0 !important;
  }
}

/*----------------------------
    Info Bar
----------------------------*/
.info-bar-bottom {
  background-color: transparent;
}
.info-bar-bottom.style-01 {
  position: absolute;
  width: 100%;
  z-index: 2;
  padding: 15px 0 60px;
}
.info-bar-bottom.style-02 {
  position: absolute;
  width: 100%;
  z-index: 2;
  padding: 20px 0 60px;
}

.top-right-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-right-nav li {
  display: inline-block;
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 50px;
}
.top-right-nav li + li {
  margin-left: 35px;
}
.top-right-nav li a:hover {
  color: var(--main-color-one);
}
.top-right-nav li a i {
  color: #30bcff;
  margin-right: 5px;
}

.info-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e9f1ff;
}
.info-bar-inner .left-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-bar-inner .right-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-items li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #1F2E3C;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.info-items li + li {
  margin-left: 20px;
}
.info-items li i {
  margin-right: 3px;
  color: #1F2E3C;
}

.info-items-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-items-02.style-01 li .title {
  color: var(--main-color-one);
}
.info-items-02.style-01 li .number {
  color: var(--main-color-one);
}
.info-items-02 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-items-02 li .title {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-top: 15px;
  margin-right: 15px;
}
.info-items-02 li .number {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
}

.info-items-03 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}
.info-items-03 li + li {
  margin-left: 30px;
}

.info-bar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: var(--bg-color-two);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-bar-item.style-01 .icon {
  font-size: 25px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: var(--main-color-one);
  left: 50%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.info-bar-item.style-01 .content .title {
  font-weight: 600;
  font-size: 14px;
}
.info-bar-item.style-01 .content .details {
  font-size: 16px;
  font-weight: 600;
  color: var(--paragraph-color);
  margin-bottom: 0;
}
.info-bar-item .icon {
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
  font-size: 20px;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.info-bar-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-bar-item .content .title {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
  display: block;
  color: var(--heading-color);
}
.info-bar-item .content .details {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.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;
  -webkit-transition: all 0.3s ease-in;
  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 {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 4;
}

.topbar-inner {
  background-color: #FFFBF6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 40px;
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-slider-one .owl-item.active .title {
  -webkit-animation: slideInLeft 2s 0s both;
          animation: slideInLeft 2s 0s both;
}
.header-slider-one .owl-item.active p {
  -webkit-animation: flipInY 2s 2s both;
          animation: flipInY 2s 2s both;
}
.header-slider-one .owl-item.active span {
  -webkit-animation: flipInY 2s 2s both;
          animation: flipInY 2s 2s both;
}
.header-slider-one .owl-item.active .btn-wrap {
  -webkit-animation: flipInX 2s 2s both;
          animation: flipInX 2s 2s both;
}
.header-slider-one:hover .owl-nav div {
  visibility: visible;
  opacity: 1;
}
.header-slider-one .owl-nav div {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-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);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  visibility: hidden;
  opacity: 0;
}
.header-slider-one .owl-nav div:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.header-slider-one .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}

.header-carousel-wrapper {
  position: relative;
  z-index: 0;
}
.header-carousel-wrapper .main-slider-nav-wrap {
  width: 735px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 10%;
}
.header-carousel-wrapper .main-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-carousel-wrapper .main-slider-nav .slide-item {
  padding: 30px;
  cursor: pointer;
  white-space: nowrap;
}
.header-carousel-wrapper .main-slider-nav .slide-item.slick-current {
  background-color: #fff;
  border-top: 4px solid var(--main-color-one);
}
.header-carousel-wrapper .main-slider-nav .slide-item.slick-current .title {
  color: var(--heading-color);
}
.header-carousel-wrapper .main-slider-nav .slide-item.slick-current p {
  color: var(--heading-color);
}
.header-carousel-wrapper .main-slider-nav .slide-item .title {
  white-space: nowrap;
  width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
.header-carousel-wrapper .main-slider-nav .slide-item p {
  white-space: nowrap;
  width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.banner-area {
  padding: 320px 0 260px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.banner-area.has-nav {
  padding: 290px 0 225px;
}
.banner-area.style-01 {
  padding: 293px 0 268px;
}
.banner-area.style-02 {
  padding: 205px 0 325px;
}
.banner-area.style-03 {
  padding: 263px 0 265px;
}
.banner-area .banner-inner {
  padding-left: 120px;
}
.banner-area .banner-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner-area .banner-inner ul li {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding-right: 10px;
  margin-right: 10px;
}
.banner-area .banner-inner ul li + li {
  position: relative;
}
.banner-area .banner-inner ul li + li:before {
  content: "";
  height: 100%;
  width: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: -12px;
}
.banner-area .banner-inner .subtitle {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}
.banner-area .banner-inner .subtitle span {
  color: var(--main-color-one);
}
.banner-area .banner-inner .hover {
  padding-bottom: 30px;
  padding-left: 20px;
}
.banner-area .banner-inner-02 {
  padding-bottom: 110px;
}
.banner-area .banner-inner-02 .subtitle {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}
.banner-area .banner-inner-02 .subtitle span {
  color: var(--main-color-one);
  font-weight: 600;
}
.banner-area .banner-inner-02 .title {
  font-size: 60px;
  color: var(--heading-color);
  line-height: 70px;
  font-weight: 500;
  margin-bottom: 40px;
}
.banner-area .banner-inner-02 .feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
  margin-bottom: 15px;
}
.banner-area .banner-inner-02 .feature-title span {
  color: var(--main-color-one);
}
.banner-area .banner-inner-02 p {
  color: var(--paragraph-color);
  line-height: 30px;
  max-width: 530px;
}
.banner-area .banner-inner-02 .header-bottom {
  margin-top: 40px;
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .boxed-btn.blank {
  border-color: 1px solid var(--heading-color);
  color: var(--heading-color);
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .boxed-btn.blank i {
  color: var(--main-color-one);
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .boxed-btn.blank:hover {
  border-color: var(--main-color-one);
  color: #fff;
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .boxed-btn.blank:hover i {
  color: #fff;
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .blank-btn {
  color: var(--heading-color);
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .blank-btn:hover {
  color: var(--main-color-one);
}
.banner-area .banner-inner-02 .header-bottom .btn-wrap .blank-btn i {
  color: var(--main-color-one);
}
.banner-area .header-right-image {
  margin-left: 50px;
}
.banner-area .header-right-image .craft-img-shape {
  position: absolute;
  left: 60%;
  top: 20%;
}
.banner-area.header-bg {
  background-color: #19232D;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.banner-area.header-bg-02 {
  background-color: #F5F3F1;
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.banner-area .bg-img {
  height: 100%;
  width: 1080px;
  min-height: 600px;
  background-repeat: no-repeat;
  position: absolute;
  left: 40%;
  bottom: -10px;
  background-position: bottom right;
  -webkit-animation: planefly 2.5s linear;
          animation: planefly 2.5s linear;
}
.banner-area .animate-icon {
  font-size: 22px;
  color: var(--main-color-one);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: startwopath 8s linear infinite;
          animation: startwopath 8s linear infinite;
}
.banner-area .animate-icon-02 {
  font-size: 14px;
  color: var(--main-color-one);
  position: absolute;
  top: 10%;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: startwopath 8s linear infinite;
          animation: startwopath 8s linear infinite;
}
.banner-area .animate-icon-03 {
  font-size: 14px;
  color: var(--main-color-one);
  position: absolute;
  bottom: 10%;
  left: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: startwopath 8s linear infinite;
          animation: startwopath 8s linear infinite;
}
@-webkit-keyframes planefly {
  0% {
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes planefly {
  0% {
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes startwopath {
  0% {
    color: #FFFFFF;
    fill: #e7024b;
    opacity: 0.3;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  50% {
    fill: var(--secondary-color);
    opacity: 0.7;
  }
  60% {
    fill: #e7024b;
    opacity: 1;
  }
  100% {
    fill: #f88c31;
    opacity: 0.3;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes startwopath {
  0% {
    color: #FFFFFF;
    fill: #e7024b;
    opacity: 0.3;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  50% {
    fill: var(--secondary-color);
    opacity: 0.7;
  }
  60% {
    fill: #e7024b;
    opacity: 1;
  }
  100% {
    fill: #f88c31;
    opacity: 0.3;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.banner-area .title {
  font-size: 65px;
  line-height: 85px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}
.banner-area p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 50px;
}
.banner-area .btn-wrap .blank-btn {
  margin-left: 30px;
  color: #fff;
}
.banner-area .btn-wrap .blank-btn:hover {
  color: var(--main-color-one);
}
.banner-area .btn-wrap .blank-btn i {
  margin-right: 15px;
}
.banner-area .hover {
  position: absolute;
  left: 0;
  top: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-icon-box-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 12px 25px #00000030;
          box-shadow: 0px 12px 25px #00000030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 35%;
  left: 0;
  -webkit-animation: scroll-down 4s cubic-bezier(0.4, 0, 1, 1) infinite;
          animation: scroll-down 4s cubic-bezier(0.4, 0, 1, 1) infinite;
}
.header-icon-box-item.style-01 {
  left: initial;
  bottom: initial;
  right: 0;
  top: 34%;
  max-width: 270px;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  -webkit-animation: scroll-ver 3s cubic-bezier(0.4, 0, 1, 1) infinite;
          animation: scroll-ver 3s cubic-bezier(0.4, 0, 1, 1) infinite;
}
.header-icon-box-item .thumb {
  margin-top: 5px;
  margin-right: 15px;
}
.header-icon-box-item .icon {
  font-size: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: #E95821;
  background-color: #FFF1E4;
  margin-right: 15px;
}
.header-icon-box-item .content .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
  font-family: var(--body-font);
}
.header-icon-box-item .content p {
  font-size: 14px;
  line-height: 24px;
  color: var(--heading-color);
  max-width: 170px;
  margin-bottom: 0;
}
.header-icon-box-item .content .header-icon-box-btn {
  margin-top: 15px;
  font-size: 14px;
  background-color: var(--heading-color);
  border-radius: 4px;
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
}

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

@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*-------------------------
    Footer Area
-------------------------*/
.copyright-wrap {
  padding: 20px 0;
  text-align: center;
  color: #898ba7;
  font-size: 14px;
}

.copyright-content {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrap {
  padding: 45px 50px 20px;
  border-radius: 8px;
  background-color: var(--secondary-color);
  border: 1px solid var(--main-color-one);
}

.footer-wrap.bg-image {
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-style-03 .footer-top-widget-wrap {
  margin-top: 40px;
  padding: 45px 50px 40px;
  background-color: #fff;
}

.footer-top-widget-wrap {
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.footer-style-01 .footer-wrap .footer-top {
  padding-top: 30px;
}

.footer-style-02 .footer-top {
  border-bottom: 1px dashed #ddd7d7;
  border-top: 1px dashed #ddd7d7;
  padding-top: 50px;
}

.footer-style-02 {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#dcbb871f), to(#7B7A7900)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #dcbb871f 0%, #7B7A7900 100%) 0% 0% no-repeat padding-box;
}

.copyright-wrap-inner {
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}
.copyright-wrap-inner.style-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.copyright-wrap-inner .copyright-text {
  text-align: center;
  color: #fff;
}
.copyright-wrap-inner.style-01 {
  color: var(--paragraph-color);
}
.copyright-wrap-inner .social_share {
  padding: 0;
  margin: 0;
  list-style: none;
}
.copyright-wrap-inner .social_share li {
  display: inline-block;
}
.copyright-wrap-inner .social_share li + li {
  margin-left: 10px;
}
.copyright-wrap-inner .social_share li a {
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--main-color-one);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--main-color-one);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.copyright-wrap-inner .social_share li:hover a {
  color: #fff;
  background-color: var(--main-color-one);
}

.copyright-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.copyright-menu li {
  display: inline-block;
}
.copyright-menu li + li {
  margin-left: 30px;
}

.call-to-action-inner {
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.call-to-action-inner .title {
  font-size: 40px;
  font-weight: 700;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
  text-align: center;
}
.error-404 .title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 25px;
  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;
  border-radius: 4px;
}
.error-404 .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  text-align: center;
  padding: 0;
  height: 55px;
  background-color: transparent;
  border: 0;
  font-size: 25px;
  color: var(--main-color-one);
}

/*-----------------------
    No Result
-----------------------*/
.no-results.not-found .page-title {
  font-size: 36px;
  text-transform: capitalize;
  line-height: 46px;
  font-weight: 700;
}

.no-results.not-found .search-form {
  position: relative;
  margin-top: 40px;
}

.no-results.not-found .search-form .form-control {
  height: 50px;
  border: 1px solid #e2e2e2;
  padding: 0 80px 0 30px;
  font-size: 14px;
  border-radius: 30px;
}

.no-results.not-found .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  border: 0;
  font-size: 18px;
  border-radius: 0 30px 30px 0;
  padding: 0;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.no-results.not-found .search-form .submit-btn:hover {
  background-color: var(--main-color-one);
}

/*-----------------------------
    Call To Action Area
-----------------------------*/
.call-to-action-item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  z-index: 0;
}
.call-to-action-item:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 85px;
  background-color: var(--main-color-one);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0 8px 8px 0;
}
.call-to-action-item.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.call-to-action-item .content .title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
}
.call-to-action-item .content .description {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 0;
}

/*-------------------------
    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-02 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.testimonial-area.bg-image-02::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 32, 0.35);
  z-index: -1;
}

/*---------------------------
    Request Form Quote
---------------------------*/
.deals-details-item .thumbnail {
  margin-bottom: 50px;
  border-radius: 10px;
}
.deals-details-item .thumbnail img {
  border-radius: 10px;
}

.service-thumb {
  position: relative;
  width: 450px !important;
  height: 450px;
  background-color: rgba(220, 187, 135, 0.1);
  border-radius: 50%;
  z-index: 10;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-thumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: rgba(220, 187, 135, 0.15);
  -webkit-animation: inner-ripple 2000ms linear infinite;
  animation: inner-ripple 2000ms linear infinite;
  z-index: -10;
}
.service-thumb:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: rgba(220, 187, 135, 0.15);
  -webkit-animation: outer-ripple 2000ms linear infinite;
  animation: outer-ripple 2000ms linear infinite;
  z-index: -10;
}

@-webkit-keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
}

@keyframes outer-ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
}
@-webkit-keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
}
@keyframes inner-ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
    filter: alpha(opacity=1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
  }
}
@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
/*-------------------------
    ## Preloader Css
---------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999999;
  background: var(--secondary-color);
}

.svg-calLoader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 230px;
  height: 230px;
  -webkit-transform-origin: 115px 115px;
          transform-origin: 115px 115px;
  -webkit-animation: 1.4s linear infinite loader-spin;
          animation: 1.4s linear infinite loader-spin;
}

.cal-loader__plane {
  fill: var(--main-color-one);
}

.cal-loader__path {
  stroke: #fff;
  -webkit-animation: 1.4s ease-in-out infinite loader-path;
          animation: 1.4s ease-in-out infinite loader-path;
}

@-webkit-keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }
  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}
@keyframes loader-path {
  0% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
  50% {
    stroke-dasharray: 0, 450, 10, 30, 10, 30, 10, 30, 10;
  }
  100% {
    stroke-dasharray: 0, 580, 0, 0, 0, 0, 0, 0, 0;
  }
}
/*---------------------------------------
    ## Button
---------------------------------------*/
.btn-wrap {
  display: block;
}
.btn-wrap .boxed-btn {
  line-height: 50px;
  border: 1px solid var(--main-color-one);
  color: var(--heading-color);
  padding: 0 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  background-color: var(--main-color-one);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn-wrap .boxed-btn i {
  font-size: 14px;
  font-weight: 700;
  margin-right: 10px;
  margin-left: 5px;
}
.btn-wrap .boxed-btn.shadow {
  -webkit-box-shadow: 0px 8px 20px #F8B65D4D;
          box-shadow: 0px 8px 20px #F8B65D4D;
}
.btn-wrap .boxed-btn.white:hover {
  background-color: #fff;
  color: var(--main-color-one);
}
.btn-wrap .boxed-btn.outer-btn {
  border: 1px solid transparent;
}
.btn-wrap .boxed-btn.outer-btn:hover {
  background-color: transparent;
  color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.btn-wrap .boxed-btn.blank {
  background-color: transparent;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn-wrap .boxed-btn.blank.reverse-color {
  background-color: transparent;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
}
.btn-wrap .boxed-btn.blank.reverse-color:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 1px solid var(--main-color-one);
}
.btn-wrap .boxed-btn.blank:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.btn-wrap .boxed-btn:hover {
  border: 1px solid var(--main-color-one);
  background-color: transparent;
  color: var(--main-color-one);
}
.btn-wrap .boxed-btn.btn-rounded {
  border-radius: 5px;
}
.btn-wrap .boxed-btn.reverse-color {
  background-color: var(--main-color-one);
}
.btn-wrap .boxed-btn.reverse-color:hover {
  background-color: var(--main-color-one);
}
.btn-wrap .read-btn {
  border: 1px solid vAR(--heading-color);
  border-radius: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  color: var(--heading-color);
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn-wrap .read-btn i {
  margin-left: 10px;
}
.btn-wrap .read-btn:hover {
  border-color: var(--main-color-one);
  background-color: var(--main-color-one);
  color: #fff;
}
.btn-wrap .request-btn {
  line-height: 50px;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
  padding: 0 50px;
  border-radius: 30px;
  margin-left: 45px;
  font-weight: 700;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
}
.btn-wrap .request-btn i {
  font-size: 15px;
  margin-left: 10px;
}
.btn-wrap .request-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.btn-wrap .request-btn.style-02 {
  background-color: var(--main-color-one);
  color: #fff;
  line-height: 70px;
  padding: 0 40px;
}
.btn-wrap .book-btn {
  font-weight: 700;
  font-size: 16px;
  color: var(--main-color-one);
  cursor: pointer;
  display: inline-block;
  padding: 0 27px;
  line-height: 55px;
  border: 1px solid var(--main-color-one);
  border-radius: 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.btn-wrap .book-btn i {
  padding-left: 10px;
  font-size: 14px;
}
.btn-wrap .blank-btn {
  color: var(--main-color-one);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn-wrap .blank-btn i {
  font-size: 12px;
  margin-right: 10px;
}
.btn-wrap .blank-btn:hover {
  color: var(--heading-color);
}

.btn--base {
  position: relative;
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: var(--heading-color);
  padding: 12px 25px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn--base.active {
  background: transparent;
  border: 1px solid transparent;
  color: var(--main-color-one);
}
.btn--base.active:focus {
  color: var(--heading-color);
  background: var(--main-color-one);
}
.btn--base.active:hover {
  color: var(--heading-color);
  background: var(--main-color-one);
}
.btn--base:focus {
  color: var(--main-color-one);
  background-color: transparent;
}
.btn--base:hover {
  color: var(--main-color-one);
  background-color: transparent;
}

.offer-btn .title {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.offer-btn span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 4px 4px 0;
  font-size: 20px;
  border: none;
  color: #fff;
  cursor: pointer;
  border-color: var(--main-color-one);
  background-color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  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-standard-item-01 {
  position: relative;
}
.blog-standard-item-01 + .blog-standard-item-01 {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px dashed #CBCBCB;
}
.blog-standard-item-01.sticky:after {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 700;
  font-size: 20px;
  color: var(--main-color-one);
}
.blog-standard-item-01 .thumbnail {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
}
.blog-standard-item-01 .thumbnail img {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 10px;
}
.blog-standard-item-01 .thumbnail img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.blog-standard-item-01 .content .cats a {
  display: inline-block;
  color: #fff;
  letter-spacing: 3px;
  padding: 4px 15px;
  font-weight: 400;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: var(--main-color-one);
}
.blog-standard-item-01 .content .post-meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-standard-item-01 .content .post-meta-wrap .social-icon li {
  padding-left: 0;
  margin-top: 0;
}
.blog-standard-item-01 .content .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 0;
}
.blog-standard-item-01 .content .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  margin-right: 25px;
  padding-left: 0;
  margin-top: 0;
}
.blog-standard-item-01 .content .post-meta li:after {
  position: absolute;
  right: -16px;
  top: 0;
  color: var(--main-color-one);
  font-weight: 400;
  content: "|";
}
.blog-standard-item-01 .content .post-meta li:last-child:after {
  display: none;
}
.blog-standard-item-01 .content .post-meta li i {
  color: var(--main-color-one);
}
.blog-standard-item-01 .content .post-meta li:before {
  display: none;
}
.blog-standard-item-01 .content .post-meta li:hover a {
  color: var(--main-color-one);
}
.blog-standard-item-01 .content .post-meta li a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.blog-standard-item-01 .content .title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 600;
  margin-top: 10px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-standard-item-01 .content .title:hover {
  color: var(--main-color-one);
}
.blog-standard-item-01 .content p {
  font-size: 16px;
  margin-bottom: 25px;
}
.blog-standard-item-01 .content .blog-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-top: 30px;
}
.blog-standard-item-01 .content .blog-bottom .btn-wrap .read-btn i {
  color: var(--main-color-one);
}
.blog-standard-item-01 .content .blog-bottom .btn-wrap .read-btn:hover i {
  color: #fff;
}
.blog-standard-item-01 .content .post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-standard-item-01 .content .post-author .author-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.blog-standard-item-01 .content .post-author a {
  color: #001b61;
  font-size: 16px;
  font-weight: 700;
}
.blog-standard-item-01.is-sticky {
  position: relative;
  z-index: 0;
}
.blog-standard-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-standard-item-01.format-video .thumbnail {
  position: relative;
  z-index: 0;
}
.blog-standard-item-01.format-video .thumbnail .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-standard-item-01.format-quote .thumbnail {
  position: relative;
}
.blog-standard-item-01.format-quote .quote-post-type {
  border-radius: 2px;
  z-index: 0;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 {
  position: initial;
  -webkit-transform: initial;
          transform: initial;
  background-color: #FFF8ED;
  padding: 40px;
}
.blog-standard-item-01.format-quote .quote-post-type.style-01:after {
  color: var(--main-color-one);
  opacity: 0.8;
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .title {
  color: var(--heading-color);
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li {
  color: var(--heading-color);
}
.blog-standard-item-01.format-quote .quote-post-type:after {
  position: absolute;
  left: 40px;
  top: 15px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 80px;
  color: var(--main-color-one);
}
.blog-standard-item-01.format-quote .quote-post-type .title {
  padding-left: 100px;
  padding-right: 40px;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 10px;
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
  padding-left: 100px;
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-right: 20px;
  color: #fff;
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta li i {
  color: var(--main-color-one);
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta li:before {
  display: none;
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta li:hover a {
  color: var(--main-color-one);
}
.blog-standard-item-01.format-quote .quote-post-type .post-meta li a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.content-area,
.blog-page-content-area,
.blog-content-page {
  background-color: #fff;
}

.blog-single-content-wrap {
  margin-bottom: 40px;
}
.blog-single-content-wrap .blog-details-image {
  margin-top: 35px;
  margin-bottom: 33px;
}
.blog-single-content-wrap p:not(.has-large-font-size, .wp-block-cover-text) {
  font-size: 16px;
}
.blog-single-content-wrap .thumbnail {
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}
.blog-single-content-wrap .thumbnail img {
  border-radius: 10px;
}
.blog-single-content-wrap .thumbnail .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-single-content-wrap .cats a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--heading-color);
}
.blog-single-content-wrap .cats a:hover {
  background-color: transparent;
}
.blog-single-content-wrap .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  word-wrap: break-word;
}
.blog-single-content-wrap .subtitle {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-single-content-wrap .blog-list {
  padding: 0;
  margin-left: 0;
  list-style: none;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blog-single-content-wrap .blog-list li {
  padding-left: 40px;
  padding-bottom: 10px;
  position: relative;
}
.blog-single-content-wrap .blog-list li + li {
  margin-top: 20px;
}
.blog-single-content-wrap .blog-list li:before {
  display: none;
}
.blog-single-content-wrap .blog-list li:after {
  content: "";
  position: absolute;
  color: var(--heading-color);
  left: 0;
  top: 0;
  width: 30px;
  font-weight: 700;
  font-family: "fontawesome";
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  height: 30px;
  background: #FFF8ED;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
}
.blog-single-content-wrap .wp-block-columns {
  padding-top: 30px;
}
.blog-single-content-wrap .wp-block-quote.has-text-align-right.extraclass {
  text-align: right;
}
.blog-single-content-wrap .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
.blog-single-content-wrap .post-meta li {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-right: 25px;
  padding-left: 0;
}
.blog-single-content-wrap .post-meta li i {
  color: var(--main-color-one);
  margin-right: 5px;
}
.blog-single-content-wrap .post-meta li:before {
  display: none;
}
.blog-single-content-wrap .post-meta li:after {
  position: absolute;
  right: -16px;
  top: 0;
  color: var(--main-color-one);
  font-weight: 400;
  content: "|";
}
.blog-single-content-wrap .post-meta li:last-child:after {
  display: none;
}
.blog-single-content-wrap .post-meta li a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.blog-single-content-wrap .post-meta li a i {
  color: var(--main-color-one);
  margin-right: 5px;
}
.blog-single-content-wrap .post-author {
  padding: 30px;
  background: #f3f5f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.blog-single-content-wrap .post-author .author-image {
  width: 180px;
}
.blog-single-content-wrap .post-author .author-image img {
  width: 100%;
  height: 100%;
}
.blog-single-content-wrap .post-author .author-content {
  margin-left: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog-single-content-wrap .post-author .author-content .title {
  margin-bottom: 15px;
}

.blog-details-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  border-top: 1px dashed #CECECE;
  padding-top: 25px;
  padding-bottom: 25px;
}
.blog-details-footer .title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--heading-color);
  padding-right: 10px;
  margin-bottom: 0;
}
.blog-details-footer .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-details-footer .left .tags {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details-footer .left .tags li {
  padding-left: 0;
  font-family: var(--heading-font);
}
.blog-details-footer .left .tags li:before {
  display: none;
}
.blog-details-footer .left .tags li i {
  padding-right: 5px;
  color: var(--secondary-color);
}
.blog-details-footer .left .tags li a {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid #F3F3F3;
  margin: 5px 5px 5px 0;
  color: inherit;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-family: var(--body-font);
  border-radius: 2px;
  font-size: 14px !important;
  background-color: #F3F3F3;
}
.blog-details-footer .left .tags li a:hover {
  color: #fff;
  background-color: var(--main-color-one);
}
.blog-details-footer .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-details-footer .right .social-share {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details-footer .right .social-share li {
  color: var(--heading-color);
  font-size: 18px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding-left: 0;
}
.blog-details-footer .right .social-share li:before {
  display: none;
}
.blog-details-footer .right .social-share li + li {
  margin-left: 10px;
}
.blog-details-footer .right .social-share li:hover {
  color: var(--main-color-one);
}

.product-related-wrap {
  margin-left: -15px;
  margin-right: -15px;
}

.sm-outer-wrap {
  padding: 0 15px;
}

.product-related-posts {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
  padding-top: 40px;
}
.product-related-posts .service-single-item-04 {
  margin-top: 0;
}
.product-related-posts .sm-outer-wrap:before {
  display: none;
}
.product-related-posts .sm-outer-wrap + li {
  margin-top: 0;
}
.product-related-posts.colum-2 .sm-outer-wrap {
  width: calc(100% / 2);
}
.product-related-posts.colum-3 .sm-outer-wrap {
  width: calc(100% / 3);
}
.product-related-posts.colum-4 .sm-outer-wrap {
  width: calc(100% / 4);
}

.search-page-content-area .blog-standard-item-01 .thumbnail img:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*-----------------------------
    Accordion Item
-----------------------------*/
.accordion-wrapper .card {
  border-right: 6px;
  border: none;
  -webkit-box-shadow: 0px 3px 12px #0000001F;
          box-shadow: 0px 3px 12px #0000001F;
  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;
  line-height: 30px;
  padding: 15px 40px 15px 20px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  border-radius: 6px 6px 0 0;
  color: var(--heading-color);
  position: relative;
}
.accordion-wrapper .card .card-header a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  color: #AAAAAA;
  font-family: "Font Awesome 5 Free";
}
.accordion-wrapper .card .card-header a[aria-expanded=true] {
  color: #fff;
  background-color: var(--main-color-one);
}
.accordion-wrapper .card .card-header a[aria-expanded=true]:after {
  content: "";
  color: #fff;
}
.accordion-wrapper .card .card-body {
  padding: 20px 20px 20px;
}
.accordion-wrapper .card .card-body.style-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.accordion-wrapper .card .card-body.style-01 .card-body-inner {
  margin-left: 20px;
}
.accordion-wrapper .card .card-body.style-01 .card-body-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 15px;
}
.accordion-wrapper .card .card-body.style-01 .card-body-inner ul li {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.accordion-wrapper .card .card-body.style-01 .card-body-inner ul li + li {
  margin-top: 10px;
}
.accordion-wrapper .card .card-body.style-01 .card-body-inner ul li i {
  color: #0B9B1E;
}

/*-------------------------
    Contact Info Item
-------------------------*/
.single-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-contact-item .icon {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  color: var(--main-color-one);
  border-radius: 50%;
  background: rgba(220, 187, 135, 0.11);
  font-size: 28px;
  margin-right: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-contact-item .content .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  font-family: var(--body-font);
  margin-bottom: 0;
  display: block;
  color: var(--heading-color);
}
.single-contact-item .content .details {
  font-size: 16px;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  display: block;
}

.single-contact-item-02 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-contact-item-02 .content .icon {
  color: var(--main-color-one);
  font-size: 30px;
  margin-right: 20px;
}
.single-contact-item-02 .content .title {
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}

.contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info-list .single-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.contact-info-list .single-info-item:hover .icon {
  background-color: var(--secondary-color);
}
.contact-info-list .single-info-item + .single-info-item {
  margin-top: 20px;
}
.contact-info-list .single-info-item .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  margin-right: 20px;
  background-color: var(--main-color-one);
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.contact-info-list .single-info-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-info-list .single-info-item .content .details {
  display: block;
}

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

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

.contact-page-form {
  padding: 80px;
  background-color: #f7f7f7;
}
.contact-page-form .form-group textarea {
  max-height: 160px;
  resize: none;
  width: 100%;
}
.contact-page-form .form-group .form-control {
  border: none;
  color: var(--heading-color);
  background-clip: border-box;
  font-family: var(--body-font);
  background-color: #fff;
  border-radius: 0;
  border: none;
  padding: 22px 30px 22px 20px;
  margin-bottom: 25px;
}
.contact-page-form .form-group .form-control:focus {
  border: none;
  border-bottom: 2px solid #ff4815;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-page-form .form-group .form-control::-webkit-input-placeholder {
  font-family: var(--body-font);
  font-family: "FontAwesome";
  color: #555555;
}
.contact-page-form .form-group .form-control::-moz-placeholder {
  font-family: var(--body-font);
  font-family: "FontAwesome";
  color: #555555;
}
.contact-page-form .form-group .form-control:-ms-input-placeholder {
  font-family: var(--body-font);
  font-family: "FontAwesome";
  color: #555555;
}
.contact-page-form .form-group .form-control::-ms-input-placeholder {
  font-family: var(--body-font);
  font-family: "FontAwesome";
  color: #555555;
}
.contact-page-form .form-group .form-control::placeholder {
  font-family: var(--body-font);
  font-family: "FontAwesome";
  color: #555555;
}
.contact-page-form .btn-wrap .boxed-btn {
  font-size: 14px;
  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;
}

/*----------------------
    [ ## call-widget ]
------------------------*/
.call-widget-wrapper {
  position: fixed;
  z-index: 9999;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(800px);
          transform: translateY(-50%) translateX(800px);
  right: 0;
  width: 800px;
  margin-right: 0;
  padding: 30px 30px 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #1F2E3C;
  border-radius: 8px;
}
.call-widget-wrapper.open {
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}
.call-widget-wrapper.open .call-widget-btn .arrow::after {
  border-top: none;
  border-left: none;
  border-bottom: 3px solid var(--heading-color);
  border-right: 3px solid var(--heading-color);
  margin-top: -10px;
}
.call-widget-wrapper .call-widget-btn {
  position: absolute;
  top: 41.8%;
  left: -142px;
  background-color: #FFF8EE;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  height: 40px;
  border: none;
}
.call-widget-wrapper .call-widget-btn .num {
  padding: 10px 27px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.call-widget-wrapper .call-widget-btn i {
  color: #dcbb87;
  font-size: 18px;
  margin-right: 8px;
}
.call-widget-wrapper .call-widget-btn .arrow {
  width: 50px;
  height: 100%;
  background-color: #dcbb87;
  position: relative;
}
.call-widget-wrapper .call-widget-btn .arrow::after {
  border-top: 3px solid var(--heading-color);
  border-left: 3px solid var(--heading-color);
  content: "";
  display: block;
  height: 14px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 14px;
}

.request-page-form {
  padding: 30px 40px 40px;
}
.request-page-form.style-01 {
  padding: 15px;
}
.request-page-form.style-01 .form-group .form-control {
  color: var(--paragraph-color);
  background-color: #fff;
  border: 1px solid #c1c1c1;
}
.request-page-form.style-01 .form-group .form-control::-webkit-input-placeholder {
  color: #c1c1c1;
}
.request-page-form.style-01 .form-group .form-control::-moz-placeholder {
  color: #c1c1c1;
}
.request-page-form.style-01 .form-group .form-control:-ms-input-placeholder {
  color: #c1c1c1;
}
.request-page-form.style-01 .form-group .form-control::-ms-input-placeholder {
  color: #c1c1c1;
}
.request-page-form.style-01 .form-group .form-control::placeholder {
  color: #c1c1c1;
}
.request-page-form.style-01 .submit-btn {
  background-color: var(--secondary-color);
}
.request-page-form.style-01 .submit-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 1px solid var(--main-color-one);
}
.request-page-form .form-group textarea {
  max-height: 100px;
  min-height: 90px;
  width: 100%;
  resize: none;
}
.request-page-form .form-group .form-control {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 30px 15px 15px;
  color: #fff;
  background-color: #1981d4;
}
.request-page-form .form-group .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.request-page-form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.request-page-form .form-group .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.request-page-form .form-group .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.request-page-form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.request-page-form .submit-btn {
  background-color: #fff;
  width: 100%;
  padding: 19px 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
  cursor: pointer;
}
.request-page-form .submit-btn:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 1px solid var(--main-color-one);
}

.book-form label {
  text-align: left;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.book-form .form-group {
  margin-bottom: 30px;
}
.book-form .form--control {
  border: 1px solid #747272;
  border-radius: 3px;
  background-color: #00000050;
  color: #fff;
  padding: 0px 20px;
  font-size: 14px;
  line-height: 60px;
  font-family: var(--body-font);
  font-weight: 400;
  min-height: 60px;
  display: block;
  width: 100%;
}
.book-form .form--control:after {
  right: 20px;
  border-bottom: 2px solid var(--main-color-one);
  border-right: 2px solid var(--main-color-one);
}
.book-form .form--control:focus {
  border: 1px solid var(--main-color-one);
}
.book-form .form--control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.book-form .form--control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.book-form .form--control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.book-form .form--control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.book-form .form--control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.book-form .form--control .current {
  color: rgba(255, 255, 255, 0.6);
}
.book-form textarea {
  min-height: 180px;
  height: 190px;
}
.book-form .book-form-icon {
  position: absolute;
  top: 15px;
  right: 32px;
  color: var(--main-color-one);
  z-index: 1;
  font-size: 18px;
}
.book-form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.book-form button i {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 14px;
  margin-right: 8px;
}
.book-form button i::before {
  color: var(--heading-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.book-form input[type=date]::-webkit-inner-spin-button,
.book-form input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.book-form .boxed-btn {
  border: 2px solid var(--main-color-one);
  background: var(--main-color-one);
  padding: 15px 50px;
  color: var(--heading-color);
  margin: auto;
  cursor: pointer;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.book-form .boxed-btn:hover {
  background-color: transparent;
  color: var(--main-color-one);
}
.book-form .boxed-btn:hover i:before {
  color: var(--main-color-one);
}

.book-quantity .book-plus-minus {
  width: 100%;
  position: relative;
  display: inline-block;
}
.book-quantity .book-plus-minus .qtybutton {
  color: var(--main-color-one);
  float: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
  z-index: 999;
  text-align: center;
  width: 45px;
  height: 45px !important;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.book-quantity .book-plus-minus .dec.qtybutton {
  left: 0px;
  top: 5px;
}
.book-quantity .book-plus-minus .book-plus-minus-box {
  color: #fff;
  font-size: 14px;
  height: 45px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
  outline: none;
  border: 1px solid var(--main-color-one);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.book-quantity .book-plus-minus .inc.qtybutton {
  right: 0px;
  top: 5px;
}
.book-quantity input[type=number]::-webkit-inner-spin-button,
.book-quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.package-book-form .form-group {
  position: relative;
}
.package-book-form .icon {
  position: absolute;
  top: 8px;
  right: 20px;
  background-color: transparent;
  color: var(--main-color-one);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Playfair Display", sans-serif;
  display: block;
}
.package-book-form .form--control {
  border: 1px solid var(--main-color-one);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--body-font);
  font-weight: 400;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 45px;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 15px;
  width: 100%;
}
.package-book-form .form--control:focus {
  border: 1px solid var(--main-color-one);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.package-book-form .form--control::-webkit-input-placeholder {
  color: #fff;
}
.package-book-form .form--control::-moz-placeholder {
  color: #fff;
}
.package-book-form .form--control:-ms-input-placeholder {
  color: #fff;
}
.package-book-form .form--control::-ms-input-placeholder {
  color: #fff;
}
.package-book-form .form--control::placeholder {
  color: #fff;
}
.package-book-form button i {
  margin-right: 5px;
}
.package-book-form button i::before {
  color: var(--heading-color);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.package-book-form button:hover i::before {
  color: var(--main-color-one);
}

.contact-form .input-box {
  position: relative;
}
.contact-form .input-box input {
  width: 100%;
  border: 2px solid #ddecf3;
  height: 70px;
  line-height: 70px;
  padding-left: 40px;
  padding-right: 70px;
  color: #6b93aa;
}
.contact-form .input-box i {
  position: absolute;
  right: 40px;
  top: 25px;
  color: #6b93aa;
}
.contact-form .input-box textarea {
  width: 100%;
  height: 170px;
  border: 2px solid #ddecf3;
  padding-left: 40px;
  color: #6b93aa;
  padding-top: 20px;
  resize: none;
}
.contact-form .boxed-btn {
  background: var(--main-color-one);
  color: #fff;
  line-height: 70px;
  padding: 0 60px;
  cursor: pointer;
  border: 0;
  border-radius: 40px;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 30px;
}

.contact-form-area select {
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 95%;
  color: var(--paragraph-color);
}
.contact-form-area .icon {
  position: absolute;
  top: 13px;
  right: 30px;
  background-color: transparent;
  color: var(--heading-color);
  font-size: 20px;
  z-index: 1;
}
.contact-form-area textarea {
  min-height: 180px;
  height: 190px;
}
.contact-form-area .form--control {
  border: 1px solid var(--main-color-one);
  background-color: #fff;
  border-radius: 3px;
  color: var(--paragraph-color);
  font-family: var(--body-font);
  font-weight: 400;
  min-height: 50px;
  line-height: 50px;
  width: 100%;
  padding: 0 50px 0 20px;
}
.contact-form-area .form--control:after {
  right: 18px;
  border-bottom: 2px solid var(--paragraph-color);
  border-right: 2px solid var(--paragraph-color);
}
.contact-form-area .form--control:focus {
  border: 1px solid var(--main-color-one);
  background-color: #fff;
  color: var(--paragraph-color);
}
.contact-form-area .form--control::-webkit-input-placeholder {
  color: var(--paragraph-color);
}
.contact-form-area .form--control::-moz-placeholder {
  color: var(--paragraph-color);
}
.contact-form-area .form--control:-ms-input-placeholder {
  color: var(--paragraph-color);
}
.contact-form-area .form--control::-ms-input-placeholder {
  color: var(--paragraph-color);
}
.contact-form-area .form--control::placeholder {
  color: var(--paragraph-color);
}
.contact-form-area button i {
  margin-top: 3px;
  font-size: 12px;
}

.subscribe-form {
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .subscribe-form {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.subscribe-form .form--control {
  border-radius: 999px;
  width: 100%;
  padding-left: 25px;
  border: 1px solid var(--main-color-one);
  height: 70px;
}
@media only screen and (max-width: 991px) {
  .subscribe-form .form--control {
    height: 50px;
  }
}
.subscribe-form button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: auto;
  border-radius: 999px;
  margin-top: 0;
  padding: 15px 30px;
}
.subscribe-form button i {
  margin-left: 5px;
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  .subscribe-form button {
    position: unset;
    width: 100%;
    margin-top: 10px;
  }
}
.subscribe-form .form-box-check {
  display: block;
  margin-top: 20px;
  margin-bottom: 0;
}
.subscribe-form .form-box-check label {
  font-family: var(--body-font);
  color: var(--heading-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
.subscribe-form .form-box-check label a {
  text-decoration: underline;
}

/*Ajex Loader*/
.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 form.submitting .ajax-loader {
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
  border-radius: 2px;
}

.wpcf7-list-item {
  margin-left: 27px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--main-color-one);
}

/*Wp  BlockQuote */
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) {
  background-color: #FFF8ED;
  border-radius: 8px;
  padding: 50px 100px;
  margin-top: 30px;
  margin-bottom: 40px;
  border: none;
  position: relative;
  color: #fff;
  z-index: 0;
  overflow: hidden;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large):before {
  content: "";
  font-family: "flaticon";
  font-weight: 900;
  display: block;
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 45px;
  color: var(--main-color-one);
  font-size: 30px;
  line-height: 0.8;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) p {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) cite {
  color: #7A7A7A !important;
  font-weight: 400;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  font-style: normal;
  font-family: var(--body-font);
  position: relative;
  z-index: 0;
  padding-left: 75px;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) cite:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #7a7a7a;
}

/*-------------------------
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*--------------------------
    Video Play Button
--------------------------*/
.video-play-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 30px;
  background-color: var(--main-color-one);
  color: #fff;
}
.video-play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%) translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(234, 242, 245, 0.5);
  z-index: -1;
}
.video-play-btn.style-01 {
  background-color: var(--main-color-one);
  color: #fff;
}
.video-play-btn.style-01::before {
  background-color: var(--main-color-one);
}
.video-play-btn.style-01:focus, .video-play-btn.style-01:hover {
  color: #fff;
}

.video-play-btn-02 {
  position: relative;
  z-index: 1;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #fff;
  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;
  font-size: 30px;
  color: var(--heading-color);
}
.video-play-btn-02:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%) translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}
.video-play-btn-02.style-01 {
  background-color: var(--main-color-one);
  color: #fff;
}
.video-play-btn-02.style-01::before {
  background-color: var(--main-color-one);
}
.video-play-btn-02.style-01:focus, .video-play-btn-02.style-01:hover {
  color: #fff;
}

.video-play-btn:hover,
.video-play-btn:focus {
  color: #fff;
}

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

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.8);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.8);
    opacity: 0;
  }
}
.footer-menu-item .footer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #336ec6;
}
.footer-menu-item .footer-title.style-02 .icon {
  color: #FF50AF;
}
.footer-menu-item .footer-title.style-03 .icon {
  color: #FFDE00;
}
.footer-menu-item .footer-title .icon {
  font-size: 24px;
  color: #00d2ff;
  padding-right: 15px;
}
.footer-menu-item .footer-title .content .title {
  font-size: 22px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
}
.footer-menu-item .footer-title .content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-menu-item .footer-menu-item {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-menu-item .footer-menu-item li {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.footer-menu-item .footer-menu-item li i {
  color: var(--main-color-one);
  padding-right: 10px;
  font-size: 10px;
}
.footer-menu-item .footer-menu-item li + li {
  margin-top: 15px;
}
.footer-menu-item .footer-menu-item li:hover {
  color: var(--main-color-one);
}

/*-------------------------
    Section Title
-------------------------*/
.theme-heading-title.white .subtitle {
  color: var(--main-color-one);
}
.theme-heading-title.white .title {
  color: #fff;
}
.theme-heading-title.white p {
  color: rgba(255, 255, 255, 0.7);
}
.theme-heading-title.white .section-para {
  color: rgba(255, 255, 255, 0.7);
}
.theme-heading-title .title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 14px;
}
.theme-heading-title .title span {
  color: var(--main-color-one);
  position: relative;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.theme-heading-title .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  z-index: 0;
  margin-bottom: 13px;
  color: var(--heading-color);
}
.theme-heading-title .subtitle span {
  display: contents;
  color: var(--main-color-one);
}
.theme-heading-title .subtitle.shape {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.theme-heading-title .subtitle.shape .icon-left {
  margin-right: 10px;
}
.theme-heading-title .subtitle.shape .icon-right {
  margin-left: 10px;
}
.theme-heading-title[style="text-align:left"] .subtitle.shape {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}
.theme-heading-title span {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--main-color-one);
}
.theme-heading-title p {
  color: #19232D;
}

@-webkit-keyframes moveInleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes moveInleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/*-------------------------
    Icon Box Item
-------------------------*/
.icon-box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.icon-box-list:hover .icon i {
  /* IE 9 */
  -webkit-transform: rotateY(360deg);
  /* Chrome, Safari, Opera */
  transform: rotateY(360deg);
}
.icon-box-list:hover .content .title {
  color: var(--main-color-one);
}
.icon-box-list .icon {
  margin-right: 20px;
  height: 25px;
  width: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  color: #ff4815;
  font-size: 12px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.icon-box-list .icon i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  display: inline-block;
}
.icon-box-list .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.icon-box-list .content .title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #14212b;
}
.icon-box-list .content p {
  margin-top: 10px;
  font-weight: 500;
}
.icon-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 40px 30px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.icon-box-item.top {
  display: block;
}
.icon-box-item.top[style="text-align:center"] .icon {
  margin: 0 auto;
}
.icon-box-item.top[style="text-align:right"] .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.icon-box-item[style="text-align:left"] .icon {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.icon-box-item.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.icon-box-item.right .icon {
  margin-left: 15px;
}
.icon-box-item.left .text-icon,
.icon-box-item.left .icon {
  margin-right: 15px;
}
.icon-box-item .text-icon,
.icon-box-item .icon {
  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;
  font-size: 60px;
  line-height: 1;
  color: var(--secondary-color);
  border-radius: 50%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.icon-box-item .content .title {
  color: var(--heading-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  font-family: var(--heading-font);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.icon-box-item .content p {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.single-icon-box-01 {
  background-color: #1c2a35;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.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 .icon {
  font-size: 60px;
  line-height: 70px;
  color: var(--main-color-one);
  margin-bottom: 18px;
}
.single-icon-box-01 .content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}
.single-icon-box-01 .content p {
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.single-icon-box-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #fff;
  padding: 20px 20px 20px 20px;
}
.single-icon-box-02:hover .icon i {
  /* IE 9 */
  -webkit-transform: rotateY(360deg);
  /* 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;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-icon-box-02 .icon i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  display: inline-block;
}
.single-icon-box-02 .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 5px;
}
.single-icon-box-02 .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.image-box-item .thumb {
  position: relative;
  z-index: 0;
  display: inline-block;
  -webkit-filter: drop-shadow(20px 20px 70px rgba(232, 0, 0, 0.25));
          filter: drop-shadow(20px 20px 70px rgba(232, 0, 0, 0.25));
}
.image-box-item .thumb .content {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.image-box-item .thumb .content .title {
  color: #fff;
  font-size: 14px;
  font-family: var(--body-font);
}
.image-box-item .thumb .content .price {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.image-box-item-two {
  border-radius: 50px;
  padding: 70px;
}
.image-box-item-two.bg-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.image-box-item-two.bg-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FBAD41), to(#980F00));
  background: linear-gradient(#FBAD41, #980F00);
  background-blend-mode: multiply;
  background-size: cover;
  z-index: -1;
  border-radius: 50px;
}
.image-box-item-two .content .title {
  color: #fff;
  font-size: 55px;
  font-weight: 700;
}
.image-box-item-two .content .subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Amita", cursive;
}

.single-meta-item-wrap {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 29px;
     -moz-column-gap: 29px;
          column-gap: 29px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/*Single Counter Up*/
.single-meta-item {
  padding: 30px 20px;
  border: 1px solid #E8E9EA;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.single-meta-item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 25px;
  background-color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.single-meta-item:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.single-meta-item .icon {
  color: var(--main-color-one);
  background-color: #F9F8F7;
  font-size: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
}
.single-meta-item .content {
  margin-left: 15px;
}
.single-meta-item .content .title {
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}
.single-meta-item .content span {
  color: #19232D;
  font-weight: 500;
  font-size: 15px;
}

.brands-carousel .slick-slide.slick-center.single-gallery-item:after {
  background-color: rgba(25, 35, 45, 0);
}

.single-gallery-item {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  z-index: 0;
  width: 100%;
}
.single-gallery-item.style-01 {
  border-radius: 10px;
}
.single-gallery-item.style-01:after {
  border-radius: 10px;
  background-color: transparent;
}
.single-gallery-item:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(25, 35, 45, 0.8);
  position: absolute;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.single-gallery-item img {
  width: 100%;
}

.single-brand-item img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 30px;
  margin: auto;
}
.single-brand-item:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.history-item-wrap {
  position: relative;
  z-index: 0;
}

.history-single-item {
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.history-single-item::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 110px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}
.history-single-item .dot {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 118px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--main-color-one);
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.history-single-item + .history-single-item::before {
  content: "";
  width: 1px;
  height: 110%;
  bottom: 280px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(47, 56, 65, 0.1);
  position: absolute;
  z-index: -1;
}
.history-single-item .content {
  margin-right: 50px;
}
.history-single-item .content .sub-title {
  color: var(--main-color-one);
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
}
.history-single-item .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: var(--heading-color);
}
.history-single-item .content p {
  font-size: 14px;
  color: var(--paragraph-color);
  max-width: 450px;
}
.history-single-item .history-single-item-content {
  position: relative;
  z-index: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history-single-item .history-single-item-content .thumb {
  max-width: 500px;
  border-radius: 8px;
}
.history-single-item .history-single-item-content .thumb img {
  width: 100%;
  border-radius: 8px;
}
.history-single-item:nth-child(even) .history-single-item-content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.history-single-item:nth-child(even) .history-single-item-content .thumb {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}
.history-single-item:nth-child(even) .history-single-item-content .content {
  text-align: right;
  margin-right: 0;
  margin-left: 50px;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

/*----------------------------
    Counterup Item
----------------------------*/
.counter-area.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}
.counter-area.m-top {
  margin-top: -180px;
  position: relative;
  z-index: 1;
}

.single-counterup-block-with-img {
  display: inline-block;
}
.single-counterup-block-with-img .thumb {
  position: relative;
  z-index: 0;
}
.single-counterup-block-with-img .thumb img {
  border-bottom-right-radius: 50px;
}
.single-counterup-block-with-img .thumb .hover {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  background-color: #fff;
  height: 90%;
  border-bottom-right-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-counterup-block-with-img .thumb .hover .title {
  font-size: 18px;
  line-height: 28px;
  font-family: var(--body-font);
}
.single-counterup-block-with-img .thumb .hover .count-num {
  font-size: 120px;
  line-height: 130px;
  color: var(--main-color-one);
  font-family: var(--heading-font);
  font-weight: 700;
}

.single-counterup-01 .icon {
  font-size: 50px;
  line-height: 80px;
  color: var(--main-color-one);
  margin-right: 20px;
}
.single-counterup-01 .content {
  margin-bottom: 0;
}
.single-counterup-01 .content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  font-family: var(--body-font);
}
.single-counterup-01 .content .count-wrap .count-num {
  font-size: 65px;
  line-height: 75px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.single-counterup-01 .content .count-wrap .sing-plus {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  top: -5px;
  right: 0;
  color: #fff;
}

.single-counterup-02 {
  position: relative;
  z-index: 0;
}
.single-counterup-02::before {
  position: absolute;
  content: "";
  left: -20px;
  top: -20px;
  width: 0;
  height: 0;
  border-top: 140px solid #24ffcd;
  border-right: 140px solid transparent;
  z-index: -2;
}
.single-counterup-02 .content {
  width: 140px;
  height: 140px;
  background: #6452db;
  text-align: center;
}
.single-counterup-02 .content .title {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  font-family: var(--body-font);
}
.single-counterup-02 .content .count-num {
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  color: #fff;
}
.single-counterup-02 .content .sing-plus {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  bottom: 0;
  right: 0;
}

/*Single Counter Up*/
.single-counterup-03 {
  border: 1px solid #E8E9EA;
  border-radius: 10px;
  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;
  text-align: center;
  position: relative;
  z-index: 0;
  padding: 40px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.single-counterup-03:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3px;
  width: 61px;
  height: 5px;
  background-color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.single-counterup-03:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  bottom: 0;
}
.single-counterup-03 .content .icon {
  color: var(--main-color-one);
  background-color: #F9F8F7;
  font-size: 60px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  margin: auto;
  display: block;
  margin-bottom: 20px;
}
.single-counterup-03 .content .count-wrap {
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 0;
}
.single-counterup-03 .content .count-wrap sup {
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  margin-left: 10px;
}
.single-counterup-03 .content .title {
  color: var(--heading-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.slick-carousel-controls .slider-dots.style-01 .slick-dots {
  bottom: -90px;
}
.slick-carousel-controls .slick-dots {
  text-align: center;
  bottom: -50px;
  z-index: 99;
  position: absolute;
  left: 0;
  right: 0;
}
.slick-carousel-controls .slick-dots li {
  display: inline-block;
  margin: 0;
}
.slick-carousel-controls .slick-dots li button {
  margin: 0 5px;
  font-size: 24px;
  background: transparent;
  border: 1px solid #19232D;
  outline: none;
  text-indent: -6666666666px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.slick-carousel-controls .slick-dots li.slick-active button {
  border: 1px solid var(--main-color-one);
  position: relative;
  z-index: 0;
}
.slick-carousel-controls .slick-dots li.slick-active button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.slick-carousel-controls .slider-nav.style-01 {
  position: absolute;
  top: -90px;
  right: 0;
}
.slick-carousel-controls .slider-nav.style-01 div.prev-arrow {
  left: -110px;
  top: 0;
}
.slick-carousel-controls .slider-nav.style-01 div.next-arrow {
  right: 0;
  top: 0;
}
.slick-carousel-controls .slider-nav.style-02 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slick-carousel-controls .slider-nav.style-02 div {
  background-color: rgba(255, 255, 255, 0.2);
  width: 90px;
  height: 90px;
  border: none;
  color: #fff;
}
.slick-carousel-controls .slider-nav.style-02 div.prev-arrow {
  left: 21%;
}
.slick-carousel-controls .slider-nav.style-02 div.next-arrow {
  right: 21%;
}
.slick-carousel-controls .slider-nav.style-03 {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
}
.slick-carousel-controls .slider-nav.style-03 div.prev-arrow {
  left: 0;
}
.slick-carousel-controls .slider-nav.style-03 div.next-arrow {
  right: 0;
}
.slick-carousel-controls .slider-nav.style-04 {
  position: absolute;
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slick-carousel-controls .slider-nav.style-04 div.prev-arrow {
  left: -55px;
  top: 0;
}
.slick-carousel-controls .slider-nav.style-04 div.next-arrow {
  right: -55px;
  top: 0;
}
.slick-carousel-controls .slider-nav.style-05 {
  position: absolute;
  bottom: -55px;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slick-carousel-controls .slider-nav.style-05 div.prev-arrow {
  right: 60px;
  top: 0;
  left: inherit;
}
.slick-carousel-controls .slider-nav.style-05 div.next-arrow {
  right: 0px;
  top: 0;
}
.slick-carousel-controls .slider-nav div {
  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;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 44px;
  border: 2px solid var(--main-color-one);
  background-color: transparent;
  color: var(--main-color-one);
  font-size: 25px;
}
.slick-carousel-controls .slider-nav div:hover {
  color: #fff;
  background-color: var(--main-color-one);
}
.slick-carousel-controls .slider-nav div.prev-arrow {
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slick-carousel-controls .slider-nav div.next-arrow {
  position: absolute;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.performance-carousel .slick-slide.slick-center .performance-single-item {
  background: #DCBB87;
  -webkit-box-shadow: 0 12px 30px #00000026;
          box-shadow: 0 12px 30px #00000026;
}
.performance-carousel .slick-slide.slick-center .performance-single-item .title:after {
  border: 1px dashed #19232D;
}
.performance-carousel .slick-slide.slick-center .performance-single-item p:after {
  border: 1px dashed #19232D;
}

.performance-carousel-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.ps-outer-wrap {
  padding: 0 15px;
}

.performance-single-item {
  border-radius: 8px;
  padding: 30px 30px 40px 30px;
  background-color: #fff;
  border: 1px solid rgba(220, 187, 135, 0.3);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  margin-bottom: 35px;
}
.performance-single-item:hover {
  background: #DCBB87;
  -webkit-box-shadow: 0 12px 30px #00000026;
          box-shadow: 0 12px 30px #00000026;
}
.performance-single-item:hover .title:after {
  border: 1px dashed #19232D;
}
.performance-single-item:hover p:after {
  border: 1px dashed #19232D;
}
.performance-single-item .icon {
  color: var(--secondary-color);
  font-size: 65px;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.performance-single-item .icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 72px;
  width: 72px;
  border-radius: 100%;
  background-color: #F1E2CC;
  z-index: -1;
}
.performance-single-item .content .title {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
  z-index: 0;
}
.performance-single-item .content .title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  border: 1px dashed rgba(61, 61, 61, 0.3);
}
.performance-single-item .content p {
  color: #19232D;
  position: relative;
  z-index: 0;
}
.performance-single-item .content p:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 86px;
  border: 1px dashed rgba(61, 61, 61, 0.3);
}

.benefit-single-item {
  border-radius: 3px;
}
.benefit-single-item .icon {
  color: var(--secondary-color);
  font-size: 65px;
  line-height: 75px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.benefit-single-item .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  height: 72px;
  width: 72px;
  border-radius: 100%;
  background-color: #F1E2CC;
  z-index: -1;
}
.benefit-single-item .content .title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--body-font);
  padding-bottom: 10px;
  position: relative;
  z-index: 0;
}
.benefit-single-item .content p {
  color: #19232D;
  position: relative;
  z-index: 0;
}

.how-single-item {
  text-align: center;
  padding: 20px 20px 50px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.how-single-item .icon {
  text-align: center;
  font-size: 50px;
  padding: 20px 25px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms;
  transition: all 300ms;
  margin-bottom: 10px;
}
.how-single-item .icon.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  background-size: contain;
}
.how-single-item .content .title {
  font-size: 20px;
  line-height: 30px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.how-single-item .content p {
  margin: auto;
}

.social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icon li {
  color: #8B8B8B;
  display: inline-block;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding-left: 0;
}
.social-icon li + li {
  margin-left: 10px;
}
.social-icon li:hover {
  color: var(--main-color-one);
}
.social-icon li:before {
  display: none !important;
}
.social-icon.style-01 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 999;
}
.social-icon.style-01:after {
  content: "";
  height: 210px;
  width: 1px;
  left: 50%;
  top: 220px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: #FFFFFF40;
}
.social-icon.style-01:before {
  content: "";
  height: 210px;
  width: 1px;
  left: 50%;
  top: -280px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: #FFFFFF40;
}
.social-icon.style-01 li {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(220, 187, 135, 0.2);
  text-align: center;
  background: transparent;
  color: var(--main-color-one);
  font-size: 15px;
}
.social-icon.style-01 li:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.social-icon.style-01 li + li {
  margin-left: 0;
  margin-top: 10px;
}
.social-icon.style-02 {
  background-color: #F9F8F7;
}
.social-icon.style-02 li {
  font-size: 14px;
  font-weight: 600;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 0;
}
.social-icon.style-02 li:hover {
  background-color: var(--main-color-one);
}
.social-icon.style-02 li:hover a {
  color: #fff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.social-icon.style-02 li + li {
  margin-left: 0;
  margin-top: 10px;
}
.social-icon.style-02 li a {
  color: var(--main-color-one);
}
.social-icon.style-02 li i {
  font-weight: normal;
}
.social-icon.style-03 li {
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #19232D;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.social-icon.style-03 li + li {
  margin-left: 10px;
}
.social-icon.style-03 li:hover {
  border: 1px solid var(--main-color-one);
  background-color: var(--main-color-one);
}
.social-icon.style-03 li:hover a {
  color: #fff;
}
.social-icon.style-03 li a {
  color: var(--heading-color);
}
.social-icon.style-03 li i {
  font-weight: normal;
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.search-popup .search-form {
  min-width: 600px;
  /* position: absolute; */
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-radius: 4px;
  height: 80px;
  padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border-color: var(--main-color-one);
  background-color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  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: black;
  z-index: 9;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  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;
}

.header-style-01 .info-bar-bottom .info-bar-inner {
  padding: 20px 0;
}
.header-style-01 .info-bar-bottom .search-form .search-form-page {
  margin-left: 80px;
}

.search-form.style-01 {
  margin-left: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.search-form .search-form-page {
  position: relative;
  z-index: 0;
}
.search-form .search-form-page .form-group {
  margin-bottom: 0;
}
.search-form .search-form-page input {
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  padding-left: 64px;
  background: transparent;
  border: 0;
  width: 400px;
  color: var(--heading-color);
  font-size: 14px;
}
.search-form .search-form-page .submit-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 50px;
  font-size: 20px;
  border: none;
  color: var(--main-color-one);
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
}
.search-form .search-form-page .submit-btn:focus {
  border: none;
  outline: none;
}

.newsletter-form {
  position: relative;
}
.newsletter-form .subscribe-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #dcbb87;
  z-index: 9;
  margin: 0;
  font-size: 12px;
}
.newsletter-form input {
  width: 100%;
  line-height: 45px;
  height: 45px;
  border-radius: 4px;
  padding: 0 20px 0 40px;
  color: var(--heading-color);
  border: 1px solid #efefef;
  margin-bottom: 15px;
}
.newsletter-form input::-webkit-input-placeholder {
  color: #BFBFBF;
}
.newsletter-form input::-moz-placeholder {
  color: #BFBFBF;
}
.newsletter-form input:-ms-input-placeholder {
  color: #BFBFBF;
}
.newsletter-form input::-ms-input-placeholder {
  color: #BFBFBF;
}
.newsletter-form input::placeholder {
  color: #BFBFBF;
}
.newsletter-form .submit {
  width: 100%;
  line-height: 45px;
  height: 45px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: var(--heading-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.newsletter-form .submit i {
  margin-left: 10px;
  font-size: 14px;
}
.newsletter-form .submit:hover {
  border: 1px solid var(--main-color-one);
  background-color: transparent;
  color: var(--main-color-one);
}

/*--------------------------
  // Team Area
--------------------------*/
.team-member-carousel-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.tm-outer-wrap {
  padding: 0 15px;
}

.team-single-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
}
.team-single-item .thumb {
  position: relative;
  z-index: 0;
}
.team-single-item .thumb img {
  width: 100%;
}
.team-single-item .thumb .social-icon.style-01 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.team-single-item .content {
  padding: 20px 30px 15px;
  background-color: #fff;
}
.team-single-item .content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.team-single-item .content span {
  color: var(--paragraph-color);
  font-size: 16px;
  padding-top: 5px;
}
.team-single-item .content p {
  color: #6b93aa;
  line-height: 28px;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid #e1ebff;
}

/*team block*/
.team-single-item-02 {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.team-single-item-02:hover {
  -webkit-box-shadow: 0px 1px 10px 0px #00000017;
          box-shadow: 0px 1px 10px 0px #00000017;
}
.team-single-item-02:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.team-single-item-02:hover .social-icon.style-02 {
  width: 46px;
  opacity: 1;
  visibility: visible;
}
.team-single-item-02:hover .social-icon.style-02 li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.team-single-item-02 .thumb {
  position: relative;
  z-index: 0;
  background-color: #DDE6EF;
  overflow: hidden;
}
.team-single-item-02 .thumb img {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 100%;
}
.team-single-item-02 .social-icon.style-02 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.team-single-item-02 .content {
  background-color: #F9F8F7;
  text-align: center;
  padding: 20px 20px 10px;
}
.team-single-item-02 .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.team-single-item-02 .content .title:hover {
  color: var(--main-color-one);
}
.team-single-item-02 .content span {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
  display: inline-block;
  margin-bottom: 20px;
}

.team-details-page .top-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.team-details-page .top-content-area .img-wrapper {
  background-color: #DDE6EF;
  border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  min-height: 432px;
  width: 100%;
  max-width: 450px;
}
.team-details-page .top-content-area .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  background-color: #f5f3f1;
  padding: 40px;
  margin-left: 30px;
}
.team-details-page .top-content-area .content .title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--body-font);
}
.team-details-page .top-content-area .content .designation {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
}
.team-details-page .top-content-area .content p {
  margin-bottom: 30px;
}
.team-details-page .top-content-area .content .team-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.team-details-page .top-content-area .content .team-contact-list li {
  color: #19232d;
  font-weight: 500;
  margin-bottom: 10px;
}
.team-details-page .top-content-area .content .team-contact-list li i {
  color: #dcbb87;
  margin-right: 10px;
}
.team-details-page .top-content-area .content .team-social-area .subtitle {
  color: #19232d;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--body-font);
}
.team-details-page .top-content-area .content .team-social-area .social-icon {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.team-details-page .top-content-area .content .team-social-area .social-icon li {
  display: inline-block;
}
.team-details-page .top-content-area .content .team-social-area .social-icon li + li {
  margin-left: 10px;
}
.team-details-page .top-content-area .content .team-social-area .social-icon li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d5e0ef;
  color: #19232d;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.team-details-page .top-content-area .content .team-social-area .social-icon li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 1px solid var(--main-color-one);
}

.course-carousel-one-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.course-outer-wrap {
  padding: 0 15px;
}

.course-slider-controls .slider-nav.style-01 {
  position: absolute;
  top: -125px;
  right: 0;
}
.course-slider-controls .slider-nav.style-01 div {
  color: #87a1c1;
}
.course-slider-controls .slider-nav.style-01 div.prev-arrow {
  left: -140px;
}
.course-slider-controls .slider-nav.style-01 div.next-arrow {
  right: 0;
}
.course-slider-controls .slider-nav div {
  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;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 60px;
  width: 60px;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  color: #fff;
  font-size: 20px;
}
.course-slider-controls .slider-nav div:hover {
  background-color: #00ffd8;
  color: var(--secondary-color);
}
.course-slider-controls .slider-nav div:hover.prev-arrow {
  border-color: #00ffd8;
}
.course-slider-controls .slider-nav div:hover.next-arrow {
  border-color: #00ffd8;
}
.course-slider-controls .slider-nav div.prev-arrow {
  position: absolute;
  left: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 3px solid #e9ecff;
}
.course-slider-controls .slider-nav div.next-arrow {
  position: absolute;
  right: -100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 3px solid #e9ecff;
}

.course-single-item {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-box-shadow: 0px 12px 30px #DCBB8736;
          box-shadow: 0px 12px 30px #DCBB8736;
  border-radius: 10px;
}
.course-single-item .thumb {
  position: relative;
  z-index: 0;
  border-radius: 8px 8px 0 0;
  min-height: 260px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.course-single-item .thumb img {
  border-radius: 8px 8px 0 0;
}
.course-single-item .thumb .price {
  top: 30px;
  left: 20px;
  background-color: var(--main-color-one);
  padding: 10px 20px;
  position: absolute;
  color: var(--heading-color);
  border-radius: 21px;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.course-single-item .content {
  background-color: #fff;
  padding: 28px 35px 30px;
  border-radius: 0 0 8px 8px;
}
.course-single-item .content .tutor-single-loop-meta {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e3e3e3;
}
.course-single-item .content .tutor-single-loop-meta i {
  margin-right: 5px;
  color: var(--main-color-one);
}
.course-single-item .content .tutor-course-loop-meta {
  border-top: 1px solid #e2f4ff;
  margin-top: 25px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}
.course-single-item .content .tutor-course-loop-meta .tutor-loop-cart-btn-wrap .add_to_cart_button.added {
  display: none;
}
.course-single-item .content .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 15px;
  color: var(--heading-color);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.course-single-item .content .title:hover {
  color: var(--main-color-one);
}
.course-single-item .content p {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e3e3e3;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.course-single-item .content .added_to_cart,
.course-single-item .content .add_to_cart_button {
  padding: 10px 20px;
  border: 1px solid var(--main-color-one);
  border-radius: 25px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  display: inline-block;
}
.course-single-item .content .added_to_cart svg path,
.course-single-item .content .add_to_cart_button svg path {
  fill: var(--main-color-one);
}
.course-single-item .content .added_to_cart.added,
.course-single-item .content .add_to_cart_button.added {
  display: none;
}
.course-single-item .content .added_to_cart:hover,
.course-single-item .content .add_to_cart_button:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.packages-carousel-one-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.packages-outer-wrap {
  padding: 0 15px;
}

.single-packages-box {
  padding: 30px;
  border-radius: 8px;
}
.single-packages-box.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-packages-box .content-wrap {
  border-radius: 8px;
  background-color: #fff;
}
.single-packages-box.style-01 {
  padding: 0;
  border-radius: 8px;
}
.single-packages-box.style-01 .thumb {
  border-radius: 8px 8px 0 0;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.single-packages-box.style-01 .thumb img {
  border-radius: 8px 8px 0 0;
}
.single-packages-box.style-01 .content-wrap {
  display: block;
  border-radius: 0 0 8px 8px;
}
.single-packages-box.style-01 .content-wrap .content {
  padding: 20px 25px;
  border-radius: 0 0 8px 8px;
}
.single-packages-box.style-01 .content-wrap .title {
  padding: 15px 25px;
}
.single-packages-box.style-02 {
  padding: 25px 25px 20px;
  border-radius: 8px;
  background-color: #fff;
}
.single-packages-box.style-02 .thumb {
  border-radius: 8px;
  min-height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 15px;
}
.single-packages-box.style-02 .thumb img {
  border-radius: 8px 8px 0 0;
}
.single-packages-box.style-02 .thumb .price {
  background-color: var(--main-color-one);
  border-radius: 4px;
  color: var(--heading-color);
  font-weight: 800;
  padding: 6px 15px;
  display: inline-block;
  margin-top: 25px;
  margin-left: 25px;
}
.single-packages-box.style-02 .content {
  padding: 0;
}
.single-packages-box.style-02 .content .package-list {
  padding-bottom: 18px;
  border-bottom: 1px solid #efefef;
}
.single-packages-box.style-02 .content .title {
  border: none;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 18px;
}
.single-packages-box.style-02 .content .btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-packages-box.style-02 .content .btn-wrap .blank-btn {
  color: var(--heading-color);
}
.single-packages-box.style-02 .content .btn-wrap .blank-btn i {
  color: var(--main-color-one);
}
.single-packages-box.style-02 .content .btn-wrap .blank-btn:hover {
  color: var(--main-color-one);
}
.single-packages-box.style-02 .content .btn-wrap .button-video {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-packages-box.style-02 .content .btn-wrap .button-video:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.single-packages-box .title {
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  margin-bottom: 0;
  border-bottom: 1px dashed #B4B4B4;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-packages-box .title:hover {
  color: var(--main-color-one);
}
.single-packages-box .content {
  background-color: #fff;
  padding: 25px 30px 0;
}
.single-packages-box .content .package-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}
.single-packages-box .content .package-list li {
  color: #19232D;
  font-size: 16px;
}
.single-packages-box .content .package-list li span {
  font-weight: 700;
  font-size: 16px;
}
.single-packages-box .content .package-list li i {
  margin-right: 10px;
  color: var(--main-color-one);
}
.single-packages-box .content .package-list li + li {
  margin-top: 10px;
}
.single-packages-box .btn-wrap .blank-btn {
  display: block;
}

.deals-carousel-one-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.deals-outer-wrap {
  padding: 0 15px;
}

.single-deals-box {
  border-radius: 8px;
  border: 1px solid #D4D4D4;
}
.single-deals-box .thumb {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.single-deals-box .thumb img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.single-deals-box .content {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 0 0 8px 8px;
}
.single-deals-box .content .title {
  font-size: 22px;
  font-weight: 600;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-deals-box .content .title:hover {
  color: var(--main-color-one);
}
.single-deals-box .content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}
.single-deals-box .content .package-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #C9C9C9;
  padding-bottom: 15px;
}
.single-deals-box .content .package-list li {
  font-size: 14px;
  color: #19232D;
  font-weight: 600;
}
.single-deals-box .content .btn-wrap .blank-btn {
  color: var(--secondary-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.single-deals-box .content .btn-wrap .blank-btn i {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: var(--main-color-one);
}
.single-deals-box .content .btn-wrap .blank-btn:hover {
  color: var(--main-color-one);
}
.single-deals-box .content .btn-wrap .blank-btn:hover i {
  margin-right: 15px;
}

.single-image-gallery {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.single-image-gallery:hover .gallery-overlay {
  opacity: 1;
}
.single-image-gallery .thumb {
  display: inline-block;
  border-radius: 30px;
}
.single-image-gallery .thumb img {
  width: 100%;
  border-radius: 30px;
}
.single-image-gallery .gallery-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(41, 5, 5, 0.6);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
}
.single-image-gallery .gallery-overlay .cart-icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-wrapper .left-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 15px;
}
.content-wrapper .left-content .tab-content {
  height: 100%;
}
.content-wrapper .left-content .tab-content .tab-pane {
  height: 100%;
  border-radius: 8px;
}
.content-wrapper .description-tab-content {
  height: 100%;
  padding: 35px 50px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.content-wrapper .description-tab-content.bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.content-wrapper .description-tab-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 35, 45, 0.6);
  z-index: -1;
  border-radius: 0 0 8px 8px;
}
.content-wrapper .description-tab-content .content .title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.content-wrapper .description-tab-content .content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.content-wrapper .description-tab-content .btn-wrap .blank-btn {
  margin-right: 10px;
}
.content-wrapper .right-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 45px 40px 50px;
  border-radius: 8px;
  background-color: #19232D;
  margin-left: 15px;
}
.content-wrapper .right-content.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: overlay;
}
.content-wrapper .right-content .content {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.content-wrapper .right-content .content .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.content-wrapper .right-content .content .subtitle span {
  color: var(--main-color-one);
}
.content-wrapper .right-content .content .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  padding-bottom: 15px;
}
.content-wrapper .right-content .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
  counter-reset: listitem;
}
.content-wrapper .right-content .nav-tabs .nav-item {
  width: 100%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 18px 0;
}
.content-wrapper .right-content .nav-tabs .nav-item .nav-link {
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.service-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  padding: 0;
}
.service-item-list.active .service-title .title {
  color: var(--main-color-one);
  padding-left: 30px;
}
.service-item-list.active .service-title .title:before {
  opacity: 1;
  visibility: visible;
}
.service-item-list.active .service-title .title span {
  display: none;
}
.service-item-list .service-title .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 0;
}
.service-item-list .service-title .title:before {
  position: absolute;
  content: "";
  font-family: "flaticon" !important;
  left: 0;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-item-list .service-title .title span {
  font-weight: 700;
  font-family: var(--body-font);
  margin-right: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-item-list .service-title .title.active {
  color: var(--heading-color);
}

.service-single-item-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.service-single-item-list .service-single-item {
  width: calc(100% / 2);
}

.services-carousel-one-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.services-outer-wrap {
  padding: 0 15px;
}

.service-single-item {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #fff;
  text-align: center;
  border: 1px solid #F5F3F1;
  padding: 50px 55px 53px;
}
.service-single-item:hover {
  -webkit-box-shadow: 0px 0px 40px #0000001A;
          box-shadow: 0px 0px 40px #0000001A;
}
.service-single-item .content {
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-single-item .content .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--heading-color);
  margin-bottom: 16px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item .content .title:hover {
  color: var(--main-color-one);
}
.service-single-item .content p {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item .content .icon {
  font-size: 67px;
}
.service-single-item .content .read-btn {
  margin-top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-single-item .content .read-btn:hover {
  color: var(--main-color-one);
}
.service-single-item .content .read-btn i {
  margin-right: 10px;
}

.service-single-item-02 {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  position: relative;
  min-height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0px solid transparent;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.service-single-item-02:hover {
  border: 12px solid #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item-02:hover .content {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  visibility: visible;
  opacity: 1;
}
.service-single-item-02 .content {
  background-color: #fff;
  padding: 30px 30px 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item-02 .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-color-one);
  margin-bottom: 16px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item-02 .title:hover {
  color: var(--heading-color);
}
.service-single-item-02 p {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.service-single-item-04 {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-radius: 8px;
  -webkit-box-shadow: 0px 1px 10px 0px #00000017;
          box-shadow: 0px 1px 10px 0px #00000017;
  background-color: #fff;
  padding: 30px 35px 25px;
}
.service-single-item-04 .thumb {
  margin-bottom: 30px;
}
.service-single-item-04 .thumb img {
  border-radius: 8px;
  width: 100%;
}
.service-single-item-04 .content-wrap {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-single-item-04 .content-wrap .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service-single-item-04 .content-wrap .content .read-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-single-item-04 .content-wrap .content .read-btn i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
}
.service-single-item-04 .content-wrap .content .read-btn:hover {
  color: var(--heading-color);
}
.service-single-item-04 .content-wrap .content .read-btn:hover i {
  padding-left: 10px;
}
.service-single-item-04 .content-wrap ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-single-item-04 .content-wrap ul li {
  display: inline-block;
  color: var(--main-color-one);
  font-weight: 500;
}
.service-single-item-04 .content-wrap ul li + li:after {
  position: absolute;
  left: -13px;
  top: 0;
  font-weight: 700;
  content: "|";
  font-family: "fontawesome";
}
.service-single-item-04 .content-wrap ul li:before {
  display: none;
}
.service-single-item-04 .content-wrap .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--heading-color);
  margin-bottom: 16px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item-04 .content-wrap .title:hover {
  color: var(--main-color-one);
}
.service-single-item-04 .content-wrap p {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.service-single-item-04 .content-wrap .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f3f5f7;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-single-item-04 .content-wrap .icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.choose-single-item {
  padding: 40px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #fff;
  position: relative;
  z-index: 0;
  border-radius: 8px;
}
.choose-single-item.bg-image {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.choose-single-item.bg-image:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-radius: 8px;
}
.choose-single-item:hover.bg-image:after {
  background-color: rgba(25, 35, 45, 0.6);
}
.choose-single-item:hover .content .subtitle {
  color: var(--main-color-one);
}
.choose-single-item:hover .content .title {
  color: #fff;
}
.choose-single-item:hover .content p {
  color: #fff;
}
.choose-single-item .content .title {
  font-size: 24px;
  line-height: 34px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 20px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.choose-single-item .content .subtitle {
  font-size: 65px;
  line-height: 75px;
  color: #E8E9EA;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.choose-single-item .content p {
  margin: auto;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.single-skill-item {
  border: 1px solid #d5e0ef;
  border-radius: 5px;
  padding: 40px 10px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single-skill-item:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #dcbb87;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.single-skill-item .counter .count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 130px;
  height: 130px;
  border: 10px solid #dcbb87;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.single-skill-item .title {
  margin-top: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #19232d;
  font-weight: 600;
}

/*------------------------------
    Testimonial Item
-----------------------------*/
.testimonial-carousel .slick-slide.slick-center.single-testimonial-item {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  -webkit-box-shadow: 0 8px 25px #DCBB8782;
          box-shadow: 0 8px 25px #DCBB8782;
}
.testimonial-carousel .slick-slide.slick-center.single-testimonial-item .content .description {
  color: #fff;
  border-bottom: 1px dashed #FFFFFF;
}
.testimonial-carousel .slick-slide.slick-center.single-testimonial-item .author-meta {
  border: none;
  background-color: transparent;
}

.testimonial-carousel-wrapper .slick-carousel-controls .slick-dots {
  text-align: center;
  bottom: -50px;
  z-index: 99;
  position: absolute;
  left: 0;
  right: 0;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slick-dots li {
  display: inline-block;
  margin: 0;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slick-dots li button {
  margin: 0 5px;
  font-size: 24px;
  background: transparent;
  border: 1px solid #19232D;
  outline: none;
  text-indent: -6666666666px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slick-dots li.slick-active button {
  border: 1px solid var(--main-color-one);
  position: relative;
  z-index: 0;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slick-dots li.slick-active button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slider-nav div {
  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;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 44px;
  border: 1px solid var(--main-color-one);
  background-color: transparent;
  color: #fff;
  font-size: 25px;
}
.testimonial-carousel-wrapper .slick-carousel-controls .slider-nav div.prev-arrow {
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.testimonial-carousel-wrapper .slick-carousel-controls .slider-nav div.next-arrow {
  position: absolute;
  left: -60px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.testimonial-carousel-wrapper .slick-carousel-controls .slider-nav div:hover {
  background-color: var(--main-color-one);
}

.ts-outer-wrap {
  margin: 0 -15px;
}

.single-testimonial-item {
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
  margin: 0 20px 20px 20px;
}
.single-testimonial-item.style-01 {
  margin: 0 15px;
  border: 1px solid #fff;
}
.single-testimonial-item.style-01 .content .icon {
  font-size: 66px;
  color: #E8E9EA;
}
.single-testimonial-item.style-01 .author-meta {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-testimonial-item.style-01 .author-meta .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-testimonial-item.style-01 .author-meta .thumb img {
  margin-right: 20px;
}
.single-testimonial-item.style-01 .author-meta .title {
  color: var(--heading-color);
}
.single-testimonial-item.style-01 .author-meta .ratings {
  color: #F8B65D;
}
.single-testimonial-item .content {
  padding: 20px 25px 0;
  border-radius: 8px 8px 0 0;
}
.single-testimonial-item .content .description {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #8D8D8D;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.single-testimonial-item .author-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--secondary-color);
  padding: 15px 25px;
  border-radius: 0 0 8px 8px;
}
.single-testimonial-item .author-meta .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
  font-family: var(--body-font);
}
.single-testimonial-item .author-meta .designation {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--body-font);
}
.single-testimonial-item .ratings {
  font-size: 12px;
  line-height: 12px;
  color: #fff;
}
.single-testimonial-item .ratings i {
  margin-right: 5px;
}

.single-testimonial-item-02 {
  background-color: #fff;
  position: relative;
  z-index: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 8px;
  margin: 0 15px;
  border: 1px solid #fff;
}
.single-testimonial-item-02 .content {
  padding: 20px 25px 0;
}
.single-testimonial-item-02 .content .icon {
  font-size: 66px;
  color: #E8E9EA;
}
.single-testimonial-item-02 .content .description {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #8D8D8D;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px dashed rgba(47, 56, 65, 0.2);
}
.single-testimonial-item-02 .author-meta {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 25px;
  border-radius: 0 0 8px 8px;
}
.single-testimonial-item-02 .author-meta .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
  font-family: var(--body-font);
}
.single-testimonial-item-02 .author-meta .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-testimonial-item-02 .author-meta .thumb img {
  margin-right: 20px;
}
.single-testimonial-item-02 .author-meta .designation {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--body-font);
}
.single-testimonial-item-02 .ratings {
  font-size: 12px;
  line-height: 12px;
  color: #F8B65D;
}
.single-testimonial-item-02 .ratings i {
  margin-right: 5px;
}

.single-testimonial-item-03 {
  background-color: #fff;
  position: relative;
  z-index: 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border-radius: 8px;
  margin: 40px 15px 20px;
  padding: 40px 30px 25px;
  -webkit-box-shadow: 0 10px 10px rgba(50, 73, 179, 0.08);
          box-shadow: 0 10px 10px rgba(50, 73, 179, 0.08);
}
.single-testimonial-item-03 .content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.single-testimonial-item-03 .content-top .icon {
  font-size: 35px;
  color: var(--main-color-one);
}
.single-testimonial-item-03 .content-top .thumb {
  margin-top: -80px;
}
.single-testimonial-item-03 .content-top .thumb img {
  border-radius: 47px;
}
.single-testimonial-item-03 .description {
  font-size: 16px;
  line-height: 28px;
  color: #2E2E2E;
  padding-bottom: 20px;
}
.single-testimonial-item-03 .author-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-testimonial-item-03 .author-meta .title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #000000;
  font-family: var(--body-font);
  margin-bottom: 10px;
}
.single-testimonial-item-03 .author-meta .designation {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  display: block;
  font-family: var(--body-font);
}
.single-testimonial-item-03 .ratings {
  font-size: 15px;
  line-height: 25px;
  color: #FFA200;
}
.single-testimonial-item-03 .ratings i {
  margin-right: 5px;
}

/*----------------------------
    Blog Grid Item
-----------------------------*/
.blog-grid-carousel-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

.blog-outer-wrap {
  padding: 0 15px;
  margin: 15px 0 40px;
}

.blog-slider-controls .slider-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 135px;
  height: 75px;
  line-height: 40px;
  text-align: center;
  background-color: #f3f5f7;
  border: 4px solid #fff;
  color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.blog-slider-controls .slider-nav div {
  font-weight: 400;
  font-size: 16px;
  color: #14212b;
  width: 50px;
  height: 50px;
  background: #fff;
  cursor: pointer;
  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;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.blog-slider-controls .slider-nav div:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.blog-slider-controls .slider-nav div.prev-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog-slider-controls .slider-nav div.next-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-grid-item-01 {
  position: relative;
  z-index: 0;
  border-radius: 8px;
  padding: 30px 30px 25px;
  background-color: #fff;
  -webkit-box-shadow: 0 12px 30px #00000026;
          box-shadow: 0 12px 30px #00000026;
}
.blog-grid-item-01 .thumb {
  position: relative;
  border-radius: 8px;
  margin-bottom: 20px;
}
.blog-grid-item-01 .thumb img {
  width: 100%;
  border-radius: 8px;
}
.blog-grid-item-01 .content .post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-grid-item-01 .content .post-categories li {
  display: inline-block;
  color: var(--main-color-one);
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  margin-right: 10px;
}
.blog-grid-item-01 .content .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-grid-item-01 .content .post-meta li {
  display: inline-block;
  font-size: 14px;
  margin-right: 25px;
  position: relative;
  z-index: 0;
  padding-left: 0;
}
.blog-grid-item-01 .content .post-meta li:before {
  display: none;
}
.blog-grid-item-01 .content .post-meta li:after {
  position: absolute;
  right: -16px;
  top: 0;
  color: var(--main-color-one);
  font-weight: 400;
  content: "|";
}
.blog-grid-item-01 .content .post-meta li:last-child:after {
  display: none;
}
.blog-grid-item-01 .content .post-meta li:hover a {
  color: var(--main-color-one);
}
.blog-grid-item-01 .content .post-meta li a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.blog-grid-item-01 .content .post-meta li a svg {
  margin-right: 10px;
}
.blog-grid-item-01 .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  padding-top: 10px;
  word-break: break-word;
  margin-bottom: 20px;
}
.blog-grid-item-01 .content .title:hover {
  color: var(--main-color-one);
}
.blog-grid-item-01 .content .read-btn {
  color: var(--heading-color);
  line-height: 30px;
  font-weight: 600;
  font-family: var(--body-font);
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.blog-grid-item-01 .content .read-btn i {
  font-size: 12px;
  margin-left: 10px;
  margin-top: 2px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.blog-grid-item-01 .content .read-btn:hover {
  color: var(--main-color-one);
}
.blog-grid-item-01 .content .read-btn:hover i {
  margin-left: 15px;
}

.news-section-start {
  margin-top: 116px;
}

.our-speeches-section {
  margin-top: 106px;
}

.news-single-items .news-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 425px;
  width: 100%;
  position: relative;
  border-radius: 10px;
}
.news-single-items .news-bg::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(4, 7, 46, 0)), to(#04072e));
  background: linear-gradient(180deg, rgba(4, 7, 46, 0) 50%, #04072e 100%);
  border-radius: 10px;
  z-index: 0;
}
.news-single-items .post-categories {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  background: var(--main-color-one);
  padding: 0px 15px;
  display: inline-block;
  border-radius: 13px;
  margin-bottom: 10px;
}
.news-single-items .content {
  position: absolute;
  bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0px 30px;
}
.news-single-items .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-bottom: 15px;
}
.news-single-items .content .title:hover {
  color: var(--main-color-one);
}
.news-single-items .content .author-meta {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-single-items .content .author-meta li {
  color: #fff;
  margin-right: 30px;
  position: relative;
  z-index: 0;
  font-size: 14px;
}
.news-single-items .content .author-meta li + li:after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: #fff;
}

.news-single-items-02 .news-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 420px;
  width: 100%;
}
.news-single-items-02 .post-categories {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  background-color: #fff;
  color: var(--main-color-one);
  padding: 0px 15px;
  display: inline-block;
  border-radius: 13px;
  margin-top: 30px;
  margin-left: 30px;
}
.news-single-items-02 .content {
  margin-top: 20px;
}
.news-single-items-02 .content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-bottom: 15px;
}
.news-single-items-02 .content .title:hover {
  color: var(--main-color-one);
}
.news-single-items-02 .content .author-meta {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.news-single-items-02 .content .author-meta li {
  color: #858585;
  margin-right: 30px;
  position: relative;
  z-index: 0;
  font-size: 14px;
}
.news-single-items-02 .content .author-meta li + li:after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: var(--main-color-one);
}

.news-single-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.news-single-list-items + .news-single-list-items {
  border-top: 1px dashed #CCCCCC;
  padding-top: 20px;
}
.news-single-list-items .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-single-list-items .content .author-meta {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-single-list-items .content .author-meta li {
  color: var(--paragraph-color);
  margin-right: 30px;
  position: relative;
  z-index: 0;
  font-size: 14px;
}
.news-single-list-items .content .author-meta li + li:after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 11px;
  background-color: var(--paragraph-color);
}
.news-single-list-items .content .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--heading-color);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.news-single-list-items .content .title:hover {
  color: var(--main-color-one);
}

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

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 40px;
  z-index: 99;
  font-size: 25px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}

/*navbar-default*/
.logo-wrapper .site-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #111;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar-nav ul li {
  color: #fff;
  font-size: 14px;
  line-height: 70px;
  display: inline-block;
}
.navbar-nav ul li + li {
  margin-left: 20px;
}

.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default {
  background-color: var(--secondary-color);
  padding: 20px 0;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container {
  max-width: 1366px;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.current_page_item a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children {
  position: relative;
  padding-right: 15px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children:before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "+";
  font-weight: 700;
  font-size: 14px;
  font-family: var(--body-font);
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children {
  position: absolute;
  text-align: left;
  min-width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  border-bottom: 4px solid var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 14px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li + li {
  border-top: 1px solid rgba(17, 17, 17, 0.5);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a {
  display: block;
  padding: 12px 17px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children li a:before {
  display: none;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "+";
  font-family: "fontawesome";
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children > .children {
  left: -250px;
  top: 10px;
  margin-bottom: 0;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children > .children .children .children {
  left: auto;
  right: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:hover > .children {
  visibility: visible;
  opacity: 1;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li.page_item_has_children .children .page_item_has_children:hover > .children li:hover:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li:hover > a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-nav ul li:hover > a:before {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav {
  text-align: right;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #ffffff;
  display: block;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  color: #fff;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover:before {
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li a {
  color: #fff;
  background-color: var(--secondary-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li:hover a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  color: #fff;
  right: 20px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .logo-wrapper .site-title {
  color: #fff;
}

.navbar-area .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  right: 15px;
}

@media only screen and (max-width: 991px) {
  .navbar-area .custom-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
    padding: 40px 10px;
  }
  .navbar-area .custom-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .custom-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
  }
  .navbar-area .custom-container .navbar-brand {
    display: block;
  }
  .navbar-area .custom-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid rgba(17, 17, 17, 0.5);
  }
  .navbar-area .custom-container .navbar-nav {
    width: 100%;
    display: none;
  }
  .navbar-area .custom-container .navbar-nav.show {
    display: block;
  }
  .navbar-area .custom-container .navbar-nav ul {
    display: block;
    margin-top: 40px;
  }
  .navbar-area .custom-container .navbar-nav ul li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  }
  .navbar-area .custom-container .navbar-nav ul li:last-child {
    border-bottom: none;
  }
  .navbar-area .custom-container .navbar-nav ul li + li {
    margin-left: 0;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children:hover > .children {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    margin-top: 10px;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: height 500ms;
    transition: height 500ms;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children .children .page_item_has_children:before {
    content: "";
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li {
    padding: 0;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li.page_item_has_children:hover:before {
    color: #fff;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li + li {
    border-top: none;
  }
  .navbar-area .custom-container .navbar-nav ul li.page_item_has_children .children li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 991px) {
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default {
    padding: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .responsive-mobile-menu .navbar-toggler {
    background-image: none;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav {
    background-color: var(--main-color-one);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--heading-color);
    font-weight: 700;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children li a {
    background-color: var(--main-color-one);
    color: var(--heading-color);
    padding-left: 40px;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li a {
    background-color: var(--main-color-one);
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a {
    color: var(--heading-color);
    padding-left: 20px;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: var(--heading-color);
    background-color: var(--main-color-one);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: var(--heading-color);
  }
  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .custom-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid #c7a774;
  }
}
.wp-block-image .alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.wp-block-gallery.alignleft {
  margin-right: 20px !important;
  margin-top: 0 !important;
}

.wp-block-button__link {
  margin-bottom: 20px;
}

.wp-block-cover {
  margin-bottom: 20px;
  color: #fff;
}

.wp-block-cover.alignleft {
  margin-top: 0;
}

.wp-block-archives-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-archives-list li + li {
  margin-top: 10px;
}

.blog-single-content-wrap .wp-block-archives-list li:before {
  display: none;
}

.blog-single-content-wrap .wp-block-archives-list li {
  padding-left: 20px;
}

.widget select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 5px;
  color: var(--paragraph-color);
}

.widget.footer-widget.widget_text .textwidget p {
  color: #fff;
}

.blog-single-content-wrap .wp-block-search .wp-block-search__label:after {
  display: none;
}

.wp-block-latest-comments {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.wp-block-latest-comments li:before {
  display: none;
}

.wp-block-latest-comments__comment-meta a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  text-decoration: underline;
}

.wp-block-latest-comments__comment-meta a:hover {
  color: var(--main-color-one);
}

.wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: var(--heading-color);
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  margin: 0;
  padding: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:before {
  display: none;
}

.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li + li {
  margin-top: 10px;
  padding-top: 10px;
}

.widget .wp-block-latest-posts.wp-block-latest-posts__list li + li {
  border-top: 1px dashed #C9C9C9;
}

.wp-block-latest-posts.wp-block-latest-posts__list li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 20px;
}

.wp-block-search .wp-block-search__input {
  border: none;
  border-radius: 4px;
  height: 50px;
  padding: 0 20px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  border-radius: 4px;
  border: 1px solid var(--main-color-one);
}

.wp-block-search__inside-wrapper {
  border-radius: 4px;
  border: 1px solid var(--main-color-one);
}

.wp-block-search button[type=submit] {
  margin-left: 0;
  border: none;
  color: var(--secondary-color);
  padding: 0 20px;
  font-size: 15px;
  background: var(--main-color-one);
  font-weight: 600;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

.wp-block-search button[type=submit]:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-search button[type=submit]:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.wp-block-tag-cloud a {
  font-size: 14px !important;
  padding: 5px 10px;
  margin-bottom: 5px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #D5E0EF;
  background-color: transparent;
  text-transform: capitalize;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.wp-block-tag-cloud a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.wp-block-rss {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.wp-block-rss li + li {
  margin-top: 10px;
}

.wp-block-rss li a:hover {
  color: var(--main-color-one);
}

.wp-block-rss li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: underline;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.wp-block-group.has-background {
  padding: 30px;
  padding-bottom: 1px;
}

.wp-block-calendar {
  margin-bottom: 30px;
}

ul.wp-block-latest-posts__list li,
.blog-single-content-wrap .wp-block-rss li {
  padding-left: 0;
}

ul.wp-block-latest-posts__list li:before,
.blog-single-content-wrap .wp-block-rss li:before {
  display: none;
}

.wp-block-quote.is-style-large {
  padding: 30px;
  padding-left: 90px;
  position: relative;
}

.wp-block-quote.is-style-large:after {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  font-family: "flaticon";
  font-size: 30px;
  color: var(--main-color-one);
  font-weight: 700;
}

.wp-block-quote.has-text-align-right:after {
  left: auto;
  right: 30px;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.wp-block-quote.has-text-align-right {
  padding-left: 30px;
  padding-right: 90px;
}

.wp-block-calendar .wp-calendar-nav {
  text-align: left;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  text-align: center;
}

.wp-block-image {
  margin-bottom: 1em;
}

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

.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-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-column blockquote.wp-block-quote {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 20px !important;
}
.wp-block-column blockquote.wp-block-quote:before {
  top: 30px;
  left: 20px;
  opacity: 0.2;
}

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

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

.wp-block-archives-dropdown select, .wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  position: relative;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>");
  background-repeat: no-repeat;
  background-position-y: 55%;
  background-position-x: 92%;
  color: var(--paragraph-color);
}

.wp-block-archives-dropdown select, .wp-block-categories-dropdown select {
  width: 100%;
  height: 50px;
  background-position-x: 97%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 30px;
  color: var(--paragraph-color);
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  opacity: 0.7;
  font-weight: 600;
}
.wp-caption .wp-caption-text a {
  color: var(--secondary-color);
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

figcaption {
  opacity: 0.7;
  font-weight: 600;
}
figcaption a {
  color: var(--secondary-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--paragraph-color) !important;
  border-color: var(--main-color-one);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  color: #fff !important;
  background-color: var(--main-color-one);
}

/* --------------------------
    Post Navigation
---------------------------- */
.post-navigation-area {
  margin: 40px 0 0px 0;
}
.post-navigation-area .post-navigation-inner .content-area.style-01.no-line .content {
  text-align: left;
}

.post-navigation-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  border-radius: 3px;
}
.post-navigation-inner .content-area {
  width: calc(100% / 2);
}
.post-navigation-inner div .title {
  font-size: 18px;
  line-height: 25px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  margin-bottom: 0px;
}
.post-navigation-inner div .title a {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.post-navigation-inner div .title:hover > a {
  color: var(--main-color-one);
}
.post-navigation-inner div:first-child {
  text-align: left;
}
.post-navigation-inner .content-area.no-line {
  width: 100%;
}
.post-navigation-inner .prev-post {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--main-color-one);
  margin-bottom: 10px;
}
.post-navigation-inner .next-post {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-size: 14px;
  display: block;
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--main-color-one);
  margin-bottom: 10px;
}

.blog-comment-navigation .comment-navigation {
  min-height: 50px;
  margin-bottom: 30px;
}

/*---------------------------
    SINGLE POST NAVGATION
-----------------------------*/
.single-post-navigation {
  padding-top: 40px;
  word-break: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e1e6ff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-post-navigation h3 {
  font-size: 18px;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.single-post-navigation .single-post-navigation-center-grid {
  font-size: 25px;
}
.single-post-navigation .single-post-navigation-center-grid a {
  color: var(--main-color-one);
}
.single-post-navigation .single-post-navigation-center-grid a:hover, .single-post-navigation .single-post-navigation-center-grid a:focus {
  color: var(--secondary-color);
}
.single-post-navigation .prev-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-post-navigation .prev-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .next-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--main-color-one);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.single-post-navigation .next-post a:hover {
  color: var(--heading-color);
}
.single-post-navigation .title-with-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.single-post-navigation .title-with-link i {
  margin-top: 3px;
}
.single-post-navigation .title-with-link span {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
}

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

.has-large-font-size {
  font-size: 36px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
## 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;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# WP Table
--------------------------------------------------------------*/
.blog-single-content-wrap table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.blog-single-content-wrap table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.blog-single-content-wrap table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.blog-single-content-wrap table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.blog-single-content-wrap table th a {
  text-decoration: underline;
  font-weight: 600;
}

.page-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.page-content table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.page-content table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.page-content table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.page-content table th a {
  text-decoration: underline;
  font-weight: 600;
}

.single-comment-wrap table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.single-comment-wrap table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.single-comment-wrap table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.single-comment-wrap table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.single-comment-wrap table th a {
  text-decoration: underline;
  font-weight: 600;
}

.content-area table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 15px;
}
.content-area table th {
  border: 1px solid #e3e3e3;
  padding: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}
.content-area table th a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}
.content-area table td {
  border: 1px solid #e3e3e3;
  padding: 8px;
}
.content-area table td a {
  text-decoration: underline;
  color: var(--main-color-one);
  font-weight: 400;
}

.calendar_wrap table td {
  text-align: center;
}

.widget_calendar table td a, .widget_calendar table th a {
  font-weight: 600;
  color: var(--main-color-one);
  text-decoration: underline;
}

.footer-widget.widget_calendar table td a, .footer-widget.widget_calendar table th a {
  font-weight: 600;
  color: var(--main-color-one);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# WP List
--------------------------------------------------------------*/
.content-area ul {
  list-style: none;
}
.content-area ul li {
  position: relative;
  padding-left: 15px;
}
.content-area ul li + li {
  margin-top: 10px;
}
.content-area ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.content-area ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.content-area ol li {
  padding-left: 0;
}
.content-area ol li:before {
  display: none;
}
.content-area ol li + li {
  margin-top: 10px;
}
.content-area .widget ul li {
  padding-left: 0;
}
.content-area .widget ul li:before {
  display: none;
}

.blog-single-content-wrap ol li + li {
  margin-top: 10px;
}
.blog-single-content-wrap ul {
  list-style: none;
}
.blog-single-content-wrap ul li {
  position: relative;
  padding-left: 15px;
}
.blog-single-content-wrap ul li + li {
  margin-top: 10px;
}
.blog-single-content-wrap ul li ol > li {
  padding-left: 0;
}
.blog-single-content-wrap ul li ol > li:before {
  display: none;
}
.blog-single-content-wrap ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.blog-single-content-wrap ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.blog-single-content-wrap .post-meta li {
  padding-left: 0;
}
.blog-single-content-wrap .post-meta li:before {
  display: none;
}

.page-content ol li + li {
  margin-top: 10px;
}
.page-content ul li + li {
  margin-top: 10px;
}

.single-comment-wrap ol li + li {
  margin-top: 10px;
}
.single-comment-wrap ul li + li {
  margin-top: 10px;
}

.comments-area .comment-list li .single-comment-wrap ul {
  list-style: none;
}
.comments-area .comment-list li .single-comment-wrap ul li {
  position: relative;
  padding-left: 15px;
}
.comments-area .comment-list li .single-comment-wrap ul li:before {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--paragraph-color);
  content: "";
  display: inline-block;
  margin-right: 5px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.comments-area .comment-list li .single-comment-wrap ul li > ul li:before {
  background-color: transparent;
  border: 1px solid;
}
.comments-area .comment-list .trackback {
  margin-bottom: 30px;
}
.comments-area .comment-list .pingback {
  margin-bottom: 30px;
}

.carousel-indicators li + li {
  margin-top: 0 !important;
}

.footer-widget.widget.widget_nav_menu ul li + li {
  margin-top: 15px;
}

ul.blocks-gallery-grid li {
  padding-left: 0;
}
ul.blocks-gallery-grid li:before {
  display: none;
}

.blog-details-footer .right .social-share li {
  padding-left: 0;
}
.blog-details-footer .right .social-share li:before {
  display: none;
}
.blog-details-footer .left .tags li {
  padding-left: 0;
}
.blog-details-footer .left .tags li:before {
  display: none;
}

.blog-pagination {
  display: block;
  width: 100%;
}
.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-pagination ul li {
  display: inline-block;
  padding-left: 0;
}
.blog-pagination ul li + li {
  margin: 0 5px;
}
.blog-pagination ul li:before {
  display: none;
}
.blog-pagination ul li a {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.blog-pagination ul li span {
  display: block;
  padding: 3px 25px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.blog-pagination ul li span.current {
  background-color: var(--main-color-one);
  color: #fff;
}