/**
 * 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: #1578E9;
  --main-color-two: #2A06A8;
  --secondary-color: #19232D;
  --heading-color: #0D1422;
  --paragraph-color: #14133B;
  --heading-font: "Jost", serif;
  --body-font: "Poppins", 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: 16px;
}

h1 {
  font-size: 50px;
  line-height: 1.4833333333;
}

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

h3 {
  font-size: 35px;
  line-height: 1.5833333333;
}

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

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

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

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

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

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

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

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

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: "\f00c";
  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: "\f105";
  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-top-120 {
  margin-top: 120px;
}

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

.panthar-color-text {
  color: var(--main-color-one);
}

.laevento-pulse-animate {
  -webkit-animation: laevento-pulse-animate 3s linear infinite;
          animation: laevento-pulse-animate 3s linear infinite;
}

.top-image-bounce {
  -webkit-animation: top-image-bounce 5s linear infinite;
          animation: top-image-bounce 5s linear infinite;
}

.left-image-bounce {
  -webkit-animation: left-image-bounce 5s linear infinite;
          animation: left-image-bounce 5s linear infinite;
}

@-webkit-keyframes laevento-pulse-animate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes laevento-pulse-animate {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@-webkit-keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes left-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
/*--------------------------------------------------------------
# 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 .post-page-numbers {
  margin: 0 4px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: 1px solid #e2e2e2;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
}
.wp-link-pages .post-page-numbers:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}
.wp-link-pages span {
  border: 1px solid #e2e2e2;
  height: 40px;
  width: auto;
  line-height: 40px;
  display: inline-block;
  border-radius: 30px;
  padding: 0 15px;
}
.wp-link-pages span:first-child {
  margin-right: 10px;
}
.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: 5px 0 0 5px;
  padding: 0 20px;
  margin-top: 10px;
}
.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: 0 5px 5px 0;
  margin-left: -5px;
  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(--heading-color);
}

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

.social-media-list li {
  display: inline-block;
  margin-right: 5px;
}
.social-media-list li:last-child {
  margin-right: 0;
}
.social-media-list li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #B8B8B8;
  color: #B8B8B8;
  display: inline-block;
  font-size: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social-media-list li a:hover {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  color: #fff;
}

@media all and (min-width: 1300px) {
  .custom-container {
    max-width: 1270px;
  }
}
@media all and (min-width: 1600px) {
  .custom-container {
    max-width: 1434px;
  }

  .banner-custom-container {
    max-width: 1634px;
  }
}
@media all and (max-width: 991px) {
  .team-area .no-gutters > .col,
.team-area .no-gutters > [class*=col-] {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*--------------------------------------------------------------
# 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: 142px 0 147px 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%;
  z-index: -1;
  background: var(--heading-color);
}
.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: 205px 0 148px 0;
}
.breadcrumb-wrap .page-title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 17px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-transform: uppercase;
}
.breadcrumb-wrap p {
  display: inline-block;
  padding: 5px 20px;
  text-transform: uppercase;
  background-color: var(--main-color-two);
  font-size: 14px;
  line-height: 20px;
  max-width: 500px;
  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-right: 20px;
  color: #fff;
  font-weight: 500;
  margin-right: 15px;
  font-family: var(--body-font);
}
.breadcrumb-wrap .page-list li a {
  color: #fff;
}
.breadcrumb-wrap .page-list li a:hover {
  color: var(--main-color-one);
}
.breadcrumb-wrap .page-list li span {
  display: inline-block;
}
.breadcrumb-wrap .page-list li:last-child {
  padding-right: 0;
}
.breadcrumb-wrap .page-list li:last-child:after {
  display: none;
}
.breadcrumb-wrap .page-list li:after {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
}
.breadcrumb-wrap .page-list li:first-child {
  padding-left: 26px;
}
.breadcrumb-wrap .page-list li:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  height: 18px;
  width: 18px;
  background-image: url("../../assets/img/home.svg");
  background-size: cover !important;
}

/*--------------------------------------------------------------
  ## 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: 57px;
}
.comments-area .comment-list .comment-respond {
  margin-top: 37px;
}
.comments-area .comment-list .comment-reply-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.comments-area .comment-list .comment-reply-title small {
  font-size: 20px;
  line-height: 1;
  top: 1px;
  margin-bottom: 0;
}
.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-two);
}
.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-weight: 600;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:after {
  position: static;
  content: "\f3e5";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  font-weight: 800;
}
.comments-area .comment-list li .single-comment-wrap .content .comment-reply-link:hover {
  color: var(--heading-color);
}
.comments-area .comment-list li.comment {
  margin-bottom: 25px;
}
.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: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 25px;
}
.comments-area .comment-reply-title small {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 10px;
  display: inline-block;
  position: relative;
  top: 4px;
  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: 160px;
  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 .form-control {
  height: 56px;
  border-radius: 4px;
  background: #fff;
  color: #A1A1A1;
  padding: 15px 20px;
  line-height: 52px;
  border: 2px solid #f2f2f3;
  background-color: #fff;
}
.comment-form .form-group .form-control:hover, .comment-form .form-group .form-control:focus {
  border-color: var(--main-color-one);
}
.comment-form .form-group .form-control::-webkit-input-placeholder {
  color: #A1A1A1;
}
.comment-form .form-group .form-control::-moz-placeholder {
  color: #A1A1A1;
}
.comment-form .form-group .form-control:-ms-input-placeholder {
  color: #A1A1A1;
}
.comment-form .form-group .form-control::-ms-input-placeholder {
  color: #A1A1A1;
}
.comment-form .form-group .form-control::placeholder {
  color: #A1A1A1;
}
.comment-form .btn-wrap .boxed-btn {
  font-size: 14px;
}
.comment-form .submit-btn {
  height: 54px;
  line-height: 55px;
  width: auto;
  border-radius: 4px;
  font-weight: 600;
  background-color: var(--main-color-one);
  font-family: var(--heading-font);
  border: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #fff;
  padding: 0 30px;
  text-transform: uppercase;
}
.comment-form .submit-btn:hover {
  background-color: var(--heading-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: 28px 25px 30px 25px;
  background-color: #fff;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.0705882353);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px;
}
.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: 14px;
  margin-bottom: 5px;
  display: block;
  color: #8E8E8E;
  font-weight: 500;
}
.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;
}
.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;
}

.widget_recent_comments ul li .comment-author-link {
  font-weight: 600;
  display: block;
}

.widget_recent_comments ul li + li {
  border-top: 1px dashed #e1e6ff;
  padding-top: 15px;
  margin-top: 15px;
}

.widget_search .search-form {
  position: relative;
}
.widget_search .search-form .form-group {
  margin-bottom: 0;
}
.widget_search .search-form .form-group .form-control {
  height: 50px;
  border: 1px solid #D5E0EF;
  border-radius: 4px;
  padding: 0 55px 0 18px;
  color: #858585;
}
.widget_search .search-form .submit-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: var(--main-color-one);
  line-height: 0.9;
}
.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;
  height: 38px;
  line-height: 36px;
  padding: 0 14px;
  text-transform: capitalize;
  border-radius: 0;
  font-size: 14px !important;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #858585;
  border-radius: 4px;
  border: 1px solid #D5E0EF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.widget_tag_cloud .tagcloud a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border: 1px solid var(--main-color-one);
}

.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_nav_menu ul li {
  margin: 9px 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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.widget_nav_menu ul li a:hover {
  color: var(--main-color-one) !important;
}
.widget_nav_menu ul li a:hover:after {
  background: var(--main-color-one);
}
.widget_nav_menu ul li > ul {
  margin-left: 15px;
}

.footer-wrap .widget_nav_menu ul li a {
  color: #C9C9C9;
}

.widget-area .widget_nav_menu ul li a,
.footer-style-default .widget_nav_menu ul li a {
  padding-left: 0;
}

.widget-area .widget_nav_menu ul li a:after,
.footer-style-default .widget_nav_menu ul li a:after {
  display: none;
}

.widget_rss li + li {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed #e1e6ff;
}

.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-two);
  margin-right: 5px;
}

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

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

.widget.request-form-widget {
  background-color: rgba(17, 13, 14, 0.85);
}

.widget.footer-widget {
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 50px;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.widget.footer-widget .widget-headline {
  color: #fff;
  position: relative;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  padding-bottom: 10px;
  padding-left: 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 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-two);
}
.widget.footer-widget.style-01 ul li:hover a {
  color: var(--main-color-two);
}
.widget.footer-widget ul li {
  color: #C9C9C9;
  font-size: 14px;
  position: relative;
  border-color: #5c5c5c;
}
.widget.footer-widget ul li a {
  color: #C9C9C9;
  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 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  border-color: rgba(255, 255, 255, 0.7);
}
.widget.footer-widget.widget_tag_cloud .tagcloud a:hover {
  border-color: var(--main-color-one);
}
.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: rgba(255, 255, 255, 0.7);
}
.widget.footer-widget .wp-calendar-nav .wp-calendar-nav-next {
  color: rgba(255, 255, 255, 0.7);
}
.widget.footer-widget.widget_text .textwidget p {
  color: #C9C9C9;
}
.widget.footer-widget.widget_text .textwidget p b,
.widget.footer-widget.widget_text .textwidget p strong {
  color: #C9C9C9;
}

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

.footer-style-2 .footer-wrap {
  background-image: none !important;
}

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

.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_recent_comments ul li {
  position: relative;
}

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

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

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

.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;
}
.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: 500;
}
.theme-recent-post-wrap li.theme-recent-post-item .content .title a {
  color: var(--heading-color);
  padding-left: 0;
}
.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: 13px;
  color: #858585;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 3px;
}
.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 {
  display: inline-block;
}
.contact_info_list .single-info-item {
  display: inline-block;
}

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

.about_us_widget .footer-logo {
  margin-bottom: 23px;
  display: block;
}
.about_us_widget p {
  margin-bottom: 25px;
}
.about_us_widget .address-info {
  margin: 0;
  padding: 0;
}
.about_us_widget .address-info li {
  font-size: 15px !important;
}
.about_us_widget .address-info li i {
  margin-right: 10px;
  color: var(--main-color-one);
}
.about_us_widget .address-info li .icomoon-mail {
  font-size: 11px;
}

.widget-testimonial .icon {
  font-size: 70px;
  line-height: 60px;
  color: var(--main-color-two);
  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;
}

.widget_edus_post_category ul li:hover a {
  background-color: var(--main-color-one);
}
.widget_edus_post_category ul li:hover a .title {
  color: #fff;
}
.widget_edus_post_category ul li .title {
  padding: 0 20px;
  background-color: var(--secondary-color);
  position: relative;
  line-height: 50px;
  font-family: var(--body-font);
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.widget_edus_post_category ul li .title span {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--hover-color);
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.about_us_widget p,
.about_me_widget p {
  margin-bottom: 15px;
  margin-top: -5px;
}
.about_us_widget .contact_info_list,
.about_me_widget .contact_info_list {
  margin-top: 5px;
}
.about_us_widget .contact_info_list li,
.about_me_widget .contact_info_list li {
  display: inline-block;
  margin-right: 12px;
}
.about_us_widget .contact_info_list li a,
.about_me_widget .contact_info_list li a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.about_us_widget .contact_info_list li a:hover,
.about_me_widget .contact_info_list li a:hover {
  color: var(--main-color-one) !important;
}

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

.edus-widget-about {
  border: 2px solid #f7f7f7;
}

.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_edus_service_category.widget {
  padding: 0;
}
.widget_edus_service_category ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f7f7f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
}
.widget_edus_service_category ul li a.active, .widget_edus_service_category ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.widget_edus_service_category ul li a.active span, .widget_edus_service_category ul li a:hover span {
  opacity: 1;
}
.widget_edus_service_category ul li a span {
  opacity: 0;
}
.widget_edus_service_category ul li + li {
  margin-bottom: 10px;
}

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

.edus-service-doct.widget {
  padding: 0;
}
.edus-service-doct .doc-link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #f7f7f7;
}
.edus-service-doct .doc-link li a i {
  margin-right: 20px;
  color: #ff4815;
}
.edus-service-doct .doc-link li a.active, .edus-service-doct .doc-link li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.edus-service-doct .doc-link li a.active i, .edus-service-doct .doc-link li a:hover i {
  color: #fff;
}
.edus-service-doct .doc-link li + li {
  margin-bottom: 10px;
}

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

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

/***************   case study widget ****************/
.widget_laevento_category ul li {
  border-bottom: 1px dashed #C9C9C9;
  padding: 13px 0;
  margin: 0 !important;
  position: relative;
  padding-left: 20px !important;
}
.widget_laevento_category ul li:after {
  content: "\f054";
  position: absolute;
  left: 0;
  bottom: 13px;
  font-size: 14px;
  font-family: FontAwesome;
  color: var(--main-color-one);
}
.widget_laevento_category ul li:first-child {
  padding-top: 0;
}
.widget_laevento_category ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.widget_laevento_category ul li:last-child:after {
  bottom: 1px;
}

.service-widget .widget_panthar_popular_posts {
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.service-widget .theme-recent-post-wrap li {
  margin: 0;
  background: #F6F6F6;
  padding-top: 0 !important;
  padding: 19px 20px !important;
  border: 2px solid #F6F6F6 !important;
  margin-bottom: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-widget .theme-recent-post-wrap li.theme-recent-post-item .thumb {
  display: none;
}
.service-widget .theme-recent-post-wrap li.theme-recent-post-item .content .title {
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-left: 21px;
  margin: 0;
}
.service-widget .theme-recent-post-wrap li.theme-recent-post-item .content .title .animate-icon {
  display: inline-block !important;
  position: absolute;
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--main-color-one);
}
.service-widget .theme-recent-post-wrap li.theme-recent-post-item .content .title .animate-icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 13px;
  width: 13px;
  border-radius: 50%;
  border: 1px solid #555555;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service-widget .theme-recent-post-wrap li.theme-recent-post-item .content .title .animate-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 1px solid #555555;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.service-widget .theme-recent-post-wrap li:hover {
  border-color: var(--main-color-one) !important;
}

.panthar-request-form-widget {
  padding: 0;
  position: relative;
  border-radius: 8px;
}
.panthar-request-form-widget:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(13, 20, 34, 0.9);
  height: 100%;
  width: 100%;
  z-index: 0;
  border-radius: 8px;
}
.panthar-request-form-widget .request-form {
  position: relative;
  z-index: 2;
}
.panthar-request-form-widget .request-form-widget {
  padding: 26px;
}
.panthar-request-form-widget .widget-headline {
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.panthar-request-form-widget p {
  color: #fff !important;
  margin-bottom: 18px;
}
.panthar-request-form-widget .single-input-inner {
  margin-bottom: 15px;
}
.panthar-request-form-widget .btn-wrap .btn-base:hover {
  background: #A71111;
}

.footer-widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  color: #fff;
  margin-bottom: 18px;
}
.footer-widget .widget-title:before {
  display: none;
}
.footer-widget .contact_info_list li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 50%;
}
.footer-widget .contact_info_list li a:hover {
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: #fff !important;
}

.footer-style-default .footer-widget .widget-headline {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  color: #fff;
  padding-left: 0;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.footer-style-default .footer-widget .widget-headline:before {
  display: none;
}
.footer-style-default .footer-widget .widget-headline:after {
  content: "";
  position: absolute;
  top: initial;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  background-color: var(--main-color-one);
}

.footer-style-1 .widget-headline,
.footer-style-2 .widget-headline {
  font-size: 20px;
  font-weight: 600 !important;
  position: relative;
  color: #fff;
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
}
.footer-style-1 .widget-headline:before,
.footer-style-2 .widget-headline:before {
  display: none;
}
.footer-style-1 .widget-headline:after,
.footer-style-2 .widget-headline:after {
  display: none;
}
.footer-style-1 .widget_nav_menu,
.footer-style-2 .widget_nav_menu {
  padding-left: 30px;
}
.footer-style-1 .panthar-request-form-widget .request-form-widget,
.footer-style-2 .panthar-request-form-widget .request-form-widget {
  padding: 0;
}
.footer-style-1 .widget-footer-subscribe,
.footer-style-2 .widget-footer-subscribe {
  cursor: pointer;
}

.service-doc-widget a {
  display: block;
  background: var(--heading-color);
  padding: 20px;
  border-radius: 4px;
  font-weight: 600;
  color: #fff !important;
}
.service-doc-widget a:hover {
  background: var(--main-color-one);
}
.service-doc-widget a i {
  float: right;
  padding-top: 3px;
  font-size: 20px;
}
.service-doc-widget .doc-link {
  margin-top: 30px;
}

.laevento-media-gallery-wrap {
  overflow: hidden;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li {
  width: 49%;
  display: inline-block;
  float: left;
  padding: 5px;
  margin: 0 !important;
  position: relative;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li img {
  width: 100%;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li a {
  position: absolute;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li:hover:after {
  visibility: visible;
  opacity: 1;
}
.laevento-media-gallery-wrap .media-gallery-widget ul li:hover a {
  top: 50%;
  visibility: visible;
  opacity: 1;
}

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

.header-style-01 {
  width: 100%;
  z-index: 3;
  position: absolute;
}
.header-style-01 .navbar-area .container {
  background-color: transparent;
}
.header-style-01 .sticky-active.navbar-area {
  background: #FFF;
}
.header-style-01 .navbar-nav ul li > a {
  color: #fff;
}

.header-style-03 {
  width: 100%;
  z-index: 3;
  position: absolute;
}
.header-style-03 .navigation-style-02.navbar-area .container .navbar-collapse .navbar-nav > li:before {
  color: var(--heading-color) !important;
}
.header-style-03 .navigation-style-02.navbar-area .container .navbar-collapse .navbar-nav > li > a {
  color: var(--heading-color);
}
.header-style-03 .navigation-style-02.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  display: none;
}
.header-style-03 .navigation-style-02.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children {
  padding-right: 5px;
}
.header-style-03 .navigation-style-02 .nav-right-content .header-search i {
  color: var(--heading-color);
}

.navigation-style-02 .logo-wrapper .site-title {
  color: #fff;
}

.navigation-style-03 .logo-sticky {
  display: none;
}
.navigation-style-03.sticky-active .logo-sticky {
  display: block;
}
.navigation-style-03.sticky-active .default-logo {
  display: none;
}
.navigation-style-03.sticky-active.navbar-area {
  background: #0D1422;
}

.logged-in.admin-bar .sticky-active {
  top: 32px;
}

@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 .container {
  background-color: #fff;
}
.navbar-area .container.for-triangle {
  position: relative;
  z-index: 0;
}
.navbar-area .container.for-triangle:before {
  position: absolute;
  content: "";
  left: -50px;
  top: 0;
  height: 100%;
  width: 290px;
  background: #00a5b8;
  -webkit-transform: skewX(28deg);
          transform: skewX(28deg);
  z-index: -1;
}
.navbar-area .container.for-triangle:after {
  position: absolute;
  content: "";
  right: -50px;
  top: 0;
  height: 100%;
  width: 290px;
  background: #2687ff;
  -webkit-transform: skewX(-28deg);
          transform: skewX(-28deg);
  z-index: -1;
}
.navbar-area .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 .container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: right;
}
.navbar-area .container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 98px;
  position: relative;
  font-family: var(--heading-font);
  text-transform: uppercase;
  cursor: pointer !important;
}
.navbar-area .container .navbar-collapse .navbar-nav li + li {
  margin-left: 30px;
}
.navbar-area .container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}
.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  padding-right: 18px;
}
.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0;
  top: 49%;
  content: "+";
  font-weight: 700;
  font-size: 20px;
  font-family: var(--heading-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 .container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 265px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 96%;
  -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 .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 20px;
  font-size: 14px;
}
.navbar-area .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 .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 .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:before {
  display: none;
}
.navbar-area .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 .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 10px;
  margin-bottom: 0;
}
.navbar-area .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 .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 .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 .container .navbar-collapse .navbar-nav li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .container .navbar-collapse .navbar-nav li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: -1px;
  height: 2px;
  width: 0;
  background: var(--hover-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .container .navbar-collapse .navbar-nav li a::before:hover {
  color: var(--main-color-one);
}
.navbar-area .container .navbar-collapse .navbar-nav li:hover > a:before {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .navbar-area .container {
    position: relative;
    z-index: 0;
    min-height: 80px;
    padding: 15px 10px;
  }
  .navbar-area .container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0;
    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: #fff;
  }
  .navbar-area .container .navbar-brand {
    display: block;
  }
  .navbar-area .container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }
  .navbar-area .container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 22px;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li:before {
    z-index: -1;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li a {
    display: block;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 0;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    height: auto;
    overflow: hidden;
    overflow-y: scroll;
    background-color: transparent;
    padding: 0px;
    border-bottom: none;
    display: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f067";
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }

  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
    color: var(--heading-color) !important;
    right: 0 !important;
    top: 23px;
  }
}
@media only screen and (max-width: 575px) {
  .navbar-area .container {
    margin: 0 15px;
  }
}
@media (min-width: 992px) {
  .navigation-style-01 .logo-wrapper {
    margin-top: -4px;
  }

  .navigation-style-02.navbar-area .container {
    background: transparent !important;
  }

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

  .navigation-style-02 .nav-right-content .header-search i,
.navigation-style-02.navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    color: #fff;
  }
}
/*----------------------------
    Info Bar
----------------------------*/
.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(--hover-color);
}
.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;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 11px;
  font-family: var(--body-font);
  color: #484848;
}
.info-items li a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.info-items li a:hover {
  color: var(--main-color-one);
}
.info-items li:last-child {
  margin-right: 0;
}
.info-items li i {
  margin-right: 9px;
  color: var(--main-color-one);
  line-height: 1.5;
  font-size: 12px;
}
.info-items li i.icomoon-map-marker {
  font-size: 15px;
}

.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-two);
}
.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-two);
  left: 50%;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.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);
}

.left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.left-content i {
  margin-right: 11px;
  color: var(--main-color-one);
  line-height: 1.5;
}

.right-content ul li {
  margin-right: 25px;
}

.navbar-right-side {
  position: fixed;
  top: 0;
  right: -400px;
  height: 100%;
  width: 380px;
  z-index: 3333;
  background: #fff;
  padding: 50px;
  border-left: 4px solid var(--main-color-one);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.navbar-right-side .close-btn {
  position: absolute;
  right: 50px;
  top: 60px;
  font-size: 20px;
  cursor: pointer;
  padding: 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.navbar-right-side .close-btn:hover {
  color: var(--main-color-one);
}
.navbar-right-side.active {
  right: 0;
}
.navbar-right-side .logo-wrapper {
  margin-bottom: 55px;
}
.navbar-right-side .logo-wrapper .site-title {
  color: var(--heading-color) !important;
}

.logged-in.admin-bar .navbar-right-side {
  padding-top: 160px;
}

/*----------------------------
    navbar top
----------------------------*/
.navbar-top {
  border-bottom: 1px solid #D2D2D2;
  padding: 18px 0;
}

.nav-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 70px;
}
.nav-right-content .header-search {
  cursor: pointer;
  line-height: 1;
}
.nav-right-content .header-search i {
  color: #0D1422;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.nav-right-content .header-search i:hover {
  color: var(--main-color-one);
}
.nav-right-content .nav-right-content-info {
  font-weight: 500;
  font-family: var(--heading-font);
  font-size: 16px;
  color: #0D1422;
  margin-left: 68px;
  line-height: 1;
}
.nav-right-content .nav-right-content-info .title {
  font-size: 16px;
  font-weight: 500;
  color: #0D1422;
}
.nav-right-content .nav-right-content-info .title span {
  color: var(--main-color-one);
}

.header-style-02 .navbar-area .custom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-counter-area {
  display: inline-block;
}
.header-counter-area ul {
  margin-bottom: 0;
  padding-left: 0;
}
.header-counter-area ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.56);
  padding: 0 22px;
}
.header-counter-area ul li:last-child {
  border-right: 0;
}
.header-counter-area ul li span {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.header-counter-area ul li h6 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

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

.header-icon-box-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 50%;
  left: 0;
}
.header-icon-box-item.style-01 {
  left: initial;
  bottom: initial;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 270px;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
}
.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: 500;
  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;
}
.header-icon-box-item .content .header-icon-box-btn {
  margin-top: 15px;
  background-color: var(--heading-color);
  border-radius: 4px;
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
}

.main-menu-sidebar-nav .navbar-nav li {
  line-height: 1.2;
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}
.main-menu-sidebar-nav .navbar-nav li a {
  border-top: 1px solid #e2e2e2;
  display: block;
  padding: 12px 0;
}
.main-menu-sidebar-nav .navbar-nav li:first-child a {
  border-top: 0;
}
.main-menu-sidebar-nav .navbar-nav li.menu-item-has-children {
  position: relative;
}
.main-menu-sidebar-nav .navbar-nav li.menu-item-has-children:before {
  position: absolute;
  right: 0;
  top: 22px;
  content: "+";
  font-weight: 600;
  font-size: 20px;
  font-family: var(--heading-font);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
}
.main-menu-sidebar-nav .navbar-nav li .sub-menu {
  padding-left: 20px;
  border-top: 1px solid #e2e2e2;
}
.main-menu-sidebar-nav .navbar-nav li .sub-menu li {
  font-size: 14px;
  font-family: var(--body-font);
  margin-left: 0;
}
.main-menu-sidebar-nav .navbar-nav li .sub-menu li a {
  border-top: 1px solid #e2e2e2;
  display: block;
}
.main-menu-sidebar-nav .navbar-nav li .sub-menu li:first-child a {
  border-top: 0;
}
.main-menu-sidebar-nav ::-webkit-scrollbar {
  width: 4px;
}
.main-menu-sidebar-nav ::-webkit-scrollbar-thumb {
  background: #e2e2e2;
}

/*-------------------------
    Footer Area
-------------------------*/
.copyright-wrap {
  padding: 25px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.copyright-content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.copyright-content a {
  color: rgba(255, 255, 255, 0.6196078431);
}

.footer-wrap {
  background-color: #0D1422;
}
.footer-wrap.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

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

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-wrap-inner .copyright-text {
  text-align: center;
  font-size: 15px;
}
.copyright-wrap-inner .copyright-text a {
  color: rgb(255, 255, 255);
}
.copyright-wrap-inner.style-01 {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-subscribe-inner {
  position: relative;
}
.footer-subscribe-inner input {
  width: 100%;
  height: 88px;
  border-radius: 6px;
  padding: 0 220px 0 30px;
  border: 0;
  font-size: 18px;
}
.footer-subscribe-inner input::-webkit-input-placeholder {
  color: #C9C9C9;
}
.footer-subscribe-inner input::-moz-placeholder {
  color: #C9C9C9;
}
.footer-subscribe-inner input:-ms-input-placeholder {
  color: #C9C9C9;
}
.footer-subscribe-inner input::-ms-input-placeholder {
  color: #C9C9C9;
}
.footer-subscribe-inner input::placeholder {
  color: #C9C9C9;
}
.footer-subscribe-inner button {
  height: 54px;
  line-height: 54px;
  color: var(--main-color-one);
  font-weight: 700;
  font-family: var(--heading-font);
  border: 0;
  position: absolute;
  top: 17px;
  right: 17px;
  cursor: pointer;
}
.footer-subscribe-inner button i {
  margin-top: 0;
  margin-left: 10px;
  font-size: 18px;
}

.footer-wrap .widget select {
  -webkit-filter: brightness(100);
          filter: brightness(100);
  border: 1px solid #C9C9C9;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--main-color-one);
  font-size: 14px;
  margin: 40px 0 0 0;
  color: #4c4c4c;
  border: 1px solid #dfdfdf;
  padding: 12px 20px;
  border-radius: 4px;
}

.footer-wrap .wpcf7 form.sent .wpcf7-response-output {
  font-size: 13px;
  color: #dfdfdf;
  border: 1px solid #646464;
}

.footer-style-1 .footer-subscribe-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-style-3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(233, 248, 255, 0)), to(rgba(21, 120, 233, 0.05))) !important;
  background-image: linear-gradient(rgba(233, 248, 255, 0), rgba(21, 120, 233, 0.05)) !important;
}
.footer-style-3 .footer-wrap {
  background-color: transparent !important;
  background-position: 0 98px;
}
.footer-style-3 .widget.footer-widget .widget-headline:after {
  display: none;
}
.footer-style-3 .widget.footer-widget p,
.footer-style-3 .widget.footer-widget.widget_calendar caption,
.footer-style-3 .widget.footer-widget.widget_calendar th,
.footer-style-3 .widget.footer-widget.widget_calendar td,
.footer-style-3 .footer-widget.widget p,
.footer-style-3 .footer-widget.widget a,
.footer-style-3 .footer-widget.widget,
.footer-style-3 .widget.footer-widget ul li a,
.footer-style-3 .widget.footer-widget ul li,
.footer-style-3 .widget_tag_cloud.footer-widget .tagcloud a,
.footer-style-3 .widget.footer-widget .widget-headline,
.footer-style-3 .footer-widget .widget-title {
  color: #1E1E1E;
}
.footer-style-3 .about_us_widget .contact_info_list li a,
.footer-style-3 .about_me_widget .contact_info_list li a {
  border-color: var(--main-color-one) !important;
  color: var(--main-color-one) !important;
}
.footer-style-3 .laevento-media-gallery-wrap .media-gallery-widget ul li a,
.footer-style-3 .about_us_widget .contact_info_list li a:hover,
.footer-style-3 .about_me_widget .contact_info_list li a:hover {
  border-color: var(--main-color-one) !important;
  color: #fff !important;
}
.footer-style-3 .copyright-wrap-inner .copyright-text a,
.footer-style-3 .copyright-wrap {
  color: #1E1E1E;
}
.footer-style-3 .footer-top {
  border-color: #CFCFCF !important;
}
.footer-style-3 .footer-subscribe-area {
  -webkit-box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.25);
          box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.25);
  padding: 60px;
  border-radius: 8px;
}
.footer-style-3 .subscribe-box input {
  border: 1px solid #CFCFCF;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-404 {
  text-align: center;
}
.error-404 .thumb {
  margin-bottom: 50px;
}
.error-404 .title {
  font-size: 200px;
  line-height: 160px;
  font-weight: 700;
  margin-bottom: 45px;
  color: var(--main-color-one);
}
.error-404 .sub-title {
  margin-bottom: 22px;
}
.error-404 .search-form {
  position: relative;
  z-index: 0;
  margin-top: 36px;
}
.error-404 .search-form .form-control {
  height: 56px;
  padding: 0 20px;
  border-radius: 30px;
}
.error-404 .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  text-align: center;
  padding: 0;
  height: 55px;
  background-color: var(--main-color-one);
  border: 0;
  font-size: 18px;
  border-radius: 0 30px 30px 0;
  color: #fff;
}

/*-----------------------
    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: 60px;
  border: 1px solid #e2e2e2;
  padding: 0 80px 0 30px;
  font-size: 14px;
  border-radius: 6px;
}

.no-results.not-found .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #cfcfcf;
  color: #464646;
  border: 0;
  font-size: 18px;
  border-radius: 0 6px 6px 0;
  padding: 0;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  cursor: pointer;
}

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

/*-----------------------------
    Call To Action Area
-----------------------------*/
.call-to-action-item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 35px;
  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: 500;
  color: var(--heading-color);
}
.call-to-action-item .content .description {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 0;
}

.rotate-text-item h6 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.7;
  width: 300px;
  -webkit-transform-origin: 50% 51%;
          transform-origin: 50% 51%;
}
.rotate-text-item h6 span {
  color: #BA1111;
}
.rotate-text-item h6 span span {
  text-decoration: underline;
}

.rotate-text-item-blury .elementor-widget-container {
  -webkit-transform-origin: 50% 51% !important;
          transform-origin: 50% 51% !important;
}

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

.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;
  }
}
@-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);
  }
}
/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.search-popup .form-group-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.search-popup .search-form {
  width: 100%;
  /* 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: 99;
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-radius: 0px;
  height: 100px;
  padding: 0 130px 0 35px;
  font-size: 20px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  line-height: 60px;
  border: 0 !important;
  background-color: var(--main-color-one);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-size: 26px;
}
.search-popup .search-form .submit-btn:hover {
  background-color: #891010;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(13, 20, 34, 0.9);
  z-index: 2;
  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.99;
}

.click-mobile-search {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 20px;
  background: #fff;
}

@-webkit-keyframes square {
  0% {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

@keyframes square {
  0% {
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.float-bob {
  -webkit-animation: float-bob-y infinite 3s linear;
          animation: float-bob-y infinite 3s linear;
}

@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@-webkit-keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@-webkit-keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@-webkit-keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@-webkit-keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
            transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
            transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
            transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
            transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
            transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
            transform: translate(-346px, 617px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
            transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
            transform: translate(251px, -200px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
            transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
            transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
            transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
            transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
            transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
            transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1 ;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
.btn-wrap {
  display: block;
}
.btn-wrap .read-btn {
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 600;
}
.btn-wrap .read-btn span {
  height: 2px;
  width: 30px;
  display: inline-block;
  margin-top: 10px;
  float: right;
  margin-left: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--paragraph-color);
}
.btn-wrap .read-btn i {
  margin-left: 10px;
}
.btn-wrap .read-btn:hover {
  color: var(--main-color-one);
}
.btn-wrap .read-btn:hover span {
  background: var(--main-color-one);
}

.btn-laevento {
  height: 58px;
  line-height: 58px;
  padding: 0 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

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

.btn-white {
  background: #fff;
  color: var(--heading-color);
  border: 2px solid #fff;
  line-height: 56px;
}
.btn-white:hover {
  background: var(--main-color-one);
  border: 2px solid var(--main-color-one);
  color: #fff;
}

.btn-white-border {
  border: 2px solid #fff;
  color: #fff;
  line-height: 56px;
}
.btn-white-border:hover {
  background: #fff;
}

.btn-base-border {
  border: 2px solid #3249B3;
  color: #fff;
  line-height: 56px;
  color: #3249B3;
}
.btn-base-border:hover {
  background: #3249B3;
  color: #fff;
}

.btn-base-border-fill {
  border: 2px solid #3249B3;
  color: #fff;
  line-height: 56px;
  color: #3249B3;
}
.btn-base-border-fill:hover {
  background: -webkit-gradient(linear, left top, right top, from(#7b26be), to(#2a06a8));
  background: linear-gradient(90deg, #7b26be 0%, #2a06a8 100%);
  color: #fff;
}

.btn-base-fill {
  border: 0;
  background: -webkit-gradient(linear, left top, right top, from(#7b26be), to(#2a06a8));
  background: linear-gradient(90deg, #7b26be 0%, #2a06a8 100%);
  color: #fff !important;
}
.btn-base-fill:hover {
  background: -webkit-gradient(linear, left top, right top, from(#2a06a8), to(#7b26be));
  background: linear-gradient(90deg, #2a06a8 0%, #7b26be 100%);
  color: #fff;
}
.btn-base-fill i {
  margin-left: 5px;
}

/*-----------------------------
	theme-heading-title
-----------------------------*/
.theme-heading-title .subtitle {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main-color-one);
  margin-bottom: 12px;
}
.theme-heading-title .title span {
  color: var(--main-color-one);
}
.theme-heading-title .smalltitle {
  font-family: var(--body-font);
  font-weight: 600;
  margin-top: 27px;
}
.theme-heading-title .content {
  margin-top: 20px;
}

.elementor-icon-list-item:before {
  display: none !important;
}

/*
===========================
2. header 
===========================
*/
.header-style-02 {
  position: absolute;
  width: 100%;
  z-index: 2;
  padding: 30px 0;
}
.header-style-02 .navbar-area .container {
  background: transparent;
}
.header-style-02 .logo-wrapper .site-title {
  color: #fff;
}
.header-style-02 .nav-right-content .header-search i {
  color: #fff;
}
.header-style-02 .nav-right-content .header-search i:hover {
  color: #fff;
}

#mobile-menu {
  display: block !important;
}

/* ===========================
9. hero
=========================== */
.banner-area-1 {
  padding: 240px 0 200px;
}
.banner-area-1 .header-inner {
  max-width: 1075px;
  margin: 0 auto;
}
.banner-area-1 .header-inner .title {
  font-size: 250px;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1;
  color: #fff;
}
.banner-area-1 .header-inner .title span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: 12px;
}
.banner-area-1 .header-inner .subtitle {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.banner-area-1 .header-inner .date {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}
.banner-area-1 .header-inner .header-bottom {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.banner-area-1 .thumb {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 480px;
}
.banner-area-1 .animate-icon {
  position: absolute;
}
.banner-area-1 .animate-icon-01 {
  left: 45px;
  top: 190px;
}
.banner-area-1 .animate-icon-02 {
  right: 180px;
  top: 50%;
}
.banner-area-1 .animate-icon-03 {
  right: 190px;
  bottom: 100px;
}

.banner-area-2 {
  padding: 190px 0 110px;
  position: relative;
}
.banner-area-2 .header-inner-info {
  border: 10px solid #fff;
  padding: 55px 40px 45px 40px;
  position: relative;
  z-index: 0;
}
.banner-area-2 .header-inner-info .subtitle {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 13px;
}
.banner-area-2 .header-inner-info .title {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}
.banner-area-2 .header-inner-info .address-info {
  padding-top: 15px;
}
.banner-area-2 .header-inner-info .address-info p {
  font-weight: 600;
  color: #fff;
  display: inline-block;
}
.banner-area-2 .header-inner-info .address-info p i {
  font-size: 18px;
  margin-right: 10px;
}
.banner-area-2 .counter-single-item {
  margin-top: 55px;
}
.banner-area-2 .header-bottom {
  margin-top: 70px;
}
.banner-area-2 .animate-icon {
  position: absolute;
}
.banner-area-2 .animate-icon-01 {
  left: -200px;
  top: 130px;
  width: 50px;
}
.banner-area-2 .animate-icon-02 {
  right: 55px;
  top: 130px;
  z-index: 1;
}
.banner-area-2 .animate-icon-03 {
  right: -100px;
  bottom: 120px;
  z-index: 0;
}
.banner-area-2 .animate-icon-04 {
  left: 55px;
  bottom: 160px;
  z-index: 1;
}
.banner-area-2 .animate-icon-05 {
  right: -200px;
  bottom: 50px;
  width: 50px;
}

.banner-area-three {
  padding: 289px 0px;
  position: relative;
  z-index: 0;
}
.banner-area-three .shape-01 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.banner-area-three .shape-02 {
  position: absolute;
  left: 49%;
  top: 19%;
  z-index: -2;
}
.banner-area-three .shape-03 {
  position: absolute;
  right: 14%;
  bottom: 5%;
  z-index: -1;
}
.banner-area-three .shape-04 {
  position: absolute;
  left: -105px;
  bottom: -10px;
  z-index: -1;
}
.banner-area-three .shape-05 {
  position: absolute;
  right: 145px;
  bottom: 51px;
  -webkit-filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.14));
          filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.14));
}
.banner-area-three .shape-06 {
  position: absolute;
  left: 190px;
  top: 190px;
  -webkit-filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.14));
          filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.14));
}
.banner-area-three.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-area-three .banner-wrapper-three .thumbnail {
  position: absolute;
  top: 205px;
  right: 228px;
  z-index: -1;
}
.banner-area-three .banner-wrapper-three .thumbnail img {
  --webkit-mask-size: cover;
  --webkit-mask-position: center;
  position: relative;
  z-index: -2;
}
.banner-area-three .banner-wrapper-three .thumbnail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -52px;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 100%;
  border: 15px solid #FE9933;
}
.banner-area-three .banner-wrapper-three .thumbnail .subtitle-2 {
  position: absolute;
  z-index: -1;
  top: 80px;
  left: -25px;
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #14133B;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket {
  width: 100px;
  height: 100px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  left: 170px;
  z-index: 99;
  display: inline-block;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket::before {
  content: "";
  position: absolute;
  z-index: 99;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.22));
          filter: drop-shadow(0px 15px 30px rgba(21, 120, 233, 0.22));
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket::after {
  content: "";
  position: absolute;
  z-index: -99;
  left: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
  border: 1px solid #1578E9;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket span {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-family: var(--body-font);
  font-weight: 500;
  color: #1578E9;
  position: relative;
  z-index: 99;
  top: 6%;
  left: 0%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket:hover:after {
  left: 0;
  top: 0;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket:hover:before {
  background-color: var(--main-color-one);
}
.banner-area-three .banner-wrapper-three .banner-inner-three .ticket:hover span {
  color: #fff;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .title {
  font-size: 175px;
  line-height: 1;
  font-family: var(--heading-font);
  font-weight: 800;
  color: #fff;
  letter-spacing: 20px;
  margin-bottom: 0;
  margin-left: -10px;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .title .style-01 {
  color: #7B26BE;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .title .style-02 {
  color: #2A06A8;
}
.banner-area-three .banner-wrapper-three .banner-inner-three .subtitle {
  font-size: 35px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 10px;
  color: #14133B;
}
.banner-area-three .conference-date {
  width: 105px;
  height: 197px;
  background: #fff;
  position: absolute;
  bottom: 60px;
  left: 55px;
  -webkit-filter: drop-shadow(0px 12px 30px rgba(42, 6, 168, 0.1));
          filter: drop-shadow(0px 12px 30px rgba(42, 6, 168, 0.1));
}
.banner-area-three .conference-date .tringle {
  width: 0;
  height: 0;
  border-top: 25px solid #1578E9;
  border-right: 25px solid transparent;
}
.banner-area-three .conference-date span {
  display: block;
  font-size: 30px;
  font-family: var(--body-font);
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
}
.banner-area-three .conference-date span + span {
  border-top: 1px solid #DEDEDE;
  margin-top: 15px;
  padding-top: 15px;
}
.banner-area-three .conference-date p {
  font-size: 16px;
  line-height: 3;
  font-family: var(--body-font);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  background-color: #1578E9;
  text-align: center;
  position: relative;
  bottom: -13px;
}

/*
===========================
16. team
===========================
*/
.team-area {
  position: relative;
  overflow: hidden;
}

.teamshape-01 {
  top: 133px;
  left: 992px;
}

.arrow-btn {
  font-size: 16px;
  color: #7B26BE;
  font-weight: 600;
  text-transform: capitalize;
}

.arrow-btn span {
  display: inline-block;
  background: #7B26BE;
  width: 29px;
  height: 2px;
  margin-left: 18px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.team-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.arrow-up-right {
  position: absolute;
  top: 69px;
  right: 54px;
  opacity: 0;
}

.profile {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(rgba(123, 38, 190, 0.75)), to(rgba(42, 6, 168, 0.75)));
  background: linear-gradient(90deg, rgba(123, 38, 190, 0.75) 0%, rgba(42, 6, 168, 0.75) 100%);
  overflow: hidden;
  cursor: pointer;
  border: 0;
  margin: 0 auto;
  margin-bottom: 30px;
}
.profile__thumb {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.profile__thumb:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.profile__thumb img {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.profile__thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.profile:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.profile:hover .profile__thumb:after {
  visibility: visible;
  opacity: 1;
}
.profile__content {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  bottom: 55px;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 0 50px;
}
.profile .profile-name {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0;
}
.profile .profile-title {
  font-size: 14px;
  font-weight: 500;
}
.profile:hover .profile__thumb {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.profile:hover .profile__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.profile:hover .profile__thumb::before {
  opacity: 0.6;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.profile:hover .arrow-up-right {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.profile.profile-corcle {
  height: 350px;
  width: 350px;
  border-radius: 50%;
}
.profile.profile-corcle .profile__thumb:after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(112, 0, 200, 0.8)), to(rgba(21, 120, 233, 0.8)));
  background-image: linear-gradient(rgba(112, 0, 200, 0.8), rgba(21, 120, 233, 0.8));
  height: 100%;
}
.profile.profile-corcle:hover .profile__thumb,
.profile.profile-corcle:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.profile::before {
  opacity: 1;
}

.speakerTwo {
  position: relative;
  margin-right: 30px;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.speakerTwo__thumb {
  position: relative;
}
.speakerTwo__thumb img {
  width: 100%;
}
.speakerTwo__thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#1578E9)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1578E9 100%) 0% 0% no-repeat padding-box;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.speakerTwo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: -100px;
  left: 0;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  padding: 0 60px;
  width: 100%;
}
.speakerTwo:hover .speakerTwo__thumb::before {
  height: 100%;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.speakerTwo:hover .speakerTwo__content {
  bottom: 40px;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.speaker-name-two {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.speaker-title-two {
  color: #fff;
  position: relative;
  font-weight: 600;
}
.speaker-title-two::before {
  position: absolute;
  content: "";
  left: 50%;
  width: 164px;
  height: 0.5px;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.prev-arrow-blog.team-arrow-left.slick-arrow {
  position: absolute;
  right: 250px;
  top: -103px;
  background: transparent;
  border: 2px solid #1578E9;
  padding: 9px 16px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 700;
  color: #1578E9;
  z-index: 9999999;
}

.next-arrow-blog.team-arrow-right.slick-arrow {
  right: 194px;
  color: #1578E9;
  border: 2px solid #1578E9;
}

.next-arrow-blog.team-arrow-right.team-one.slick-arrow {
  right: 194px;
  color: #1578E9;
  border: 2px solid #1578E9;
  top: -102px;
}

.profile__content.profileInner__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  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;
  overflow: hidden;
}

.profile-name.profile-name-two {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  left: 0;
  bottom: 0;
  position: static;
  margin-bottom: 0;
  text-transform: capitalize;
  color: #1e1e1e;
}

.profile-title.profile-title-two {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  left: 0;
  bottom: 0;
  position: static;
  color: #1E1E1E;
}

.profile.profileInner {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1019607843);
  background: transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}
.profile.profileInner:hover .profile__thumb {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 6px;
}
.profile.profileInner:hover .profile__thumb img {
  border-radius: 6px;
}
.profile.profileInner:hover .team-inner-social {
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.profile.profileInner:hover .arrow-team {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.profile.profileInner:hover .profile-name-two {
  color: #7B26BE;
}

.team-area-inner {
  padding-bottom: 30px;
}

.team-wrapper-inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.team-inner-social ul {
  margin-top: 20px;
  padding-left: 0;
}

.team-inner-social ul li {
  display: inline-block;
  height: 30px;
  width: 30px;
  margin: 0 2px;
  border: 1px solid #fff;
  border-radius: 50px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.team-inner-social ul li:hover {
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}

.team-inner-social ul li a {
  color: #fff;
}

.team-inner-social {
  text-align: center;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.arrow-team {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.speaker-shapes-inner {
  position: relative;
}

.speaker-area-inner-content h2 {
  font-size: 40px;
  line-height: 3.438rem;
}

.speakerTwo-inner {
  margin-right: 0;
}

.speaker-inner-content {
  padding: 0 30px;
  display: block;
  text-align: center;
}

.speaker-name-inner {
  font-size: 18px;
  font-weight: 600;
}

.speaker-title-inner {
  font-size: 16px;
}
.speaker-title-inner::before {
  width: 0;
}

.wrap-speaker.wrap-speaker-inner {
  margin-right: 0;
}

.speaker-area-inner-content p {
  font-size: 16px;
  line-height: 1.75rem;
}

.speaker-area-inner {
  position: relative;
  overflow: hidden;
}

.speaker-inner-01 {
  bottom: 200px;
  left: 100px;
}

.speaker-inner-02 {
  bottom: 50px;
  right: -249px;
}

.teamshape-02 {
  top: 140px;
  left: 10px;
  opacity: 0.1;
}

.teamshape-03 {
  top: 320px;
  left: 105px;
  opacity: 0.1;
}

.teamshape-04 {
  bottom: 50px;
  left: 30px;
  opacity: 0.1;
}

.teamshape-05 {
  right: 700px;
  top: 38px;
  opacity: 0.1;
}

.teamshape-06 {
  right: 700px;
  top: 185px;
  opacity: 0.1;
}

.teamshape-07 {
  right: 180px;
  top: 160px;
  opacity: 0.1;
}

.teamshape-08 {
  right: 17px;
  top: 215px;
  opacity: 0.1;
}

.teamshape-09 {
  bottom: 18px;
  right: 230px;
  opacity: 0.1;
}

.teamshape-10 {
  bottom: 18px;
  right: 50px;
  opacity: 0.1;
}

.more-color {
  font-size: 26px;
}

.about_event_date p {
  font-size: 16px;
  padding-left: 5px;
}

.progress {
  height: 9px;
}

.speakerDetailsImage__content {
  padding-left: 20px;
}

.ticket-area.ticket-area-home::before {
  z-index: 2;
}

.speakerDetailsImage {
  position: relative;
  padding: 40px 0;
  margin-left: 50px;
}
.speakerDetailsImage img {
  border-radius: 6px;
}
.speakerDetailsImage:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  height: 100%;
  width: 100%;
  background: #f6f9fb;
  z-index: -1;
  border-radius: 6px;
}

.single-progressbar {
  margin-bottom: 7px;
  color: var(--main-color-one);
  border-bottom: 1px dashed var(--main-color-one);
  padding-bottom: 8px;
}

.single-progressbar .subtitle {
  font-size: 18px;
  margin-bottom: 12px;
}

.single-progressbar .progressbar {
  width: 100%;
  margin-top: 5px;
  height: 10px;
  position: relative;
  width: 100%;
  background: #ddd;
  border-radius: 10px !important;
}

.single-progressbar .progressbar .proggress {
  height: 5px;
  width: 10px;
  border-radius: 10px !important;
  margin-top: -1px;
  background: -webkit-gradient(linear, left top, right top, from(#2a06a8), color-stop(65%, #7b26be));
  background: linear-gradient(90deg, #2a06a8 0%, #7b26be 65%);
}

.single-progressbar .progressbar .percentCount {
  position: absolute;
  right: -12px;
  top: -44px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  float: right;
  clear: both;
  font-size: 18px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.team-member-carousel {
  margin: 0 -10px;
}

.team-member-carousel-wrap .slick-carousel-controls .slick-arrow {
  border-radius: 50%;
}

.single-team-item-inner-2 {
  background: #fff;
  margin: 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-team-item-inner-2 .thumb img {
  -webkit-mask-size: cover;
  -webkit-mask-position: bottom center;
}
.single-team-item-inner-2 .details {
  padding: 33px 20px;
}
.single-team-item-inner-2 .details .title {
  margin-bottom: 2px;
}
.single-team-item-inner-2 .details .designation {
  color: #717171;
}
.single-team-item-inner-2:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1578E9), to(#7B26BE));
  background-image: linear-gradient(#1578E9, #7B26BE);
}
.single-team-item-inner-2:hover .details .title a {
  color: #fff;
}
.single-team-item-inner-2:hover .details .designation {
  color: #fff;
}

/*
===========================
3. about
===========================
*/
.about-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
.about-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2A06A8 0% 0% no-repeat padding-box;
  opacity: 0.85;
}

.about_para {
  color: #fff;
  line-height: 28px;
  padding-top: 10px;
  font-size: 16px;
  text-align: justify;
}

.about_event_date {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about_event_date li {
  color: #fff;
  position: relative;
  position: relative;
  padding-left: 51px;
}
.about_event_date li img {
  display: inline-block;
}

.about-sub-title {
  padding-bottom: 15px;
}

.bg-circle {
  height: 42px;
  width: 42px;
  background: #fff;
  border-radius: 5px;
  display: inline-block;
  line-height: 42px;
  text-align: center;
  margin-right: 15px;
  position: absolute;
  left: 0px;
}

.cmn_btn.about_btn {
  background: transparent -webkit-gradient(linear, left top, right top, from(#7B26BE), to(#2A06A8)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #7B26BE 0%, #2A06A8 100%) 0% 0% no-repeat padding-box;
  border-radius: 6px;
  color: #fff;
}
.cmn_btn.about_btn img {
  padding-left: 15px;
}

a.cmn_btn.about_btn.butn.butn__new.cmn_btn.readmore.readmore-two.readmore-btn.thm-btn {
  background: #1578e9;
}

.about_images {
  position: relative;
}

.down_image {
  position: absolute;
  right: -4%;
  bottom: -16%;
}

.about_pattern_01 {
  bottom: 0;
  right: 0;
}

img.about_pattern_02 {
  top: 0;
  left: 0;
}

.readmore.readmore-two {
  background-color: #1578E9;
  color: #fff;
  border: 0;
}
.readmore.readmore-two:hover {
  color: #fff;
}
.readmore.readmore-two img {
  padding-left: 10px;
}

.home-two-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #BFBFBF;
  padding-bottom: 12px;
}
.home-two-list ul li {
  margin-right: 30px;
  font-size: 16px;
  line-height: 25px;
  color: #14133B;
  font-weight: 600;
}
.home-two-list ul li i {
  color: #1578E9;
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 20px;
}

.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-para-two {
  padding-top: 30px;
  margin-bottom: 60px;
}
.about-para-two p {
  color: #1E1E1E;
  line-height: 28px;
  font-size: 16px;
  text-align: justify;
}

.about-two-images {
  position: relative;
}

.back-image {
  position: absolute;
  top: 45px;
  right: -67px;
  z-index: -1;
}

.back-image-02 {
  position: absolute;
  right: -53px;
  z-index: 9;
  top: 350px;
}

.about-two-images {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-left: 200px;
}

.about-two-content {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  margin-bottom: 30px;
}

.circle-roteate {
  position: absolute;
  left: 158px;
  top: 0px;
  width: 88%;
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

a#play-video\ play-video-two {
  top: 50%;
  left: 67%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

span.bg-back {
  position: absolute;
  display: inline-block;
  background: #AACEF7;
  height: 100%;
  width: 66%;
  opacity: 0.9;
  z-index: -1;
  bottom: -15%;
  left: 47%;
  border-radius: 6px;
}

.ab-shape-01 {
  position: absolute;
  left: -43px;
  z-index: -1;
  top: -131px;
}

.ab-sec-01 {
  position: absolute;
  left: -8%;
  top: 0;
}

.about-area-two {
  position: relative;
  margin-bottom: 145px;
}

.ab-sec-01 {
  position: absolute;
  left: -12%;
  top: -21px;
}

.ab-sec-02 {
  position: absolute;
  top: 43%;
  left: 2%;
  -webkit-animation: float-bob-y 5s linear infinite;
          animation: float-bob-y 5s linear infinite;
}

.ab-sec-03 {
  position: absolute;
  left: -7%;
  top: 34%;
  -webkit-animation: float-bob-x 20s linear infinite;
          animation: float-bob-x 20s linear infinite;
}

img.ab-sec-04 {
  position: absolute;
  top: 72%;
  z-index: -2;
  left: -3%;
  opacity: 0.4;
}

.sub-title-two {
  color: #1578E9;
}

.schedule-area-two {
  background-color: #F8FBFF;
}

.calculator_05 {
  top: 240px;
  left: 97px;
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

.calculator_06 {
  bottom: 240px;
  right: 93px;
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

.schedule-buttons-two .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff !important;
  background: #1578E9;
  border-radius: 3px;
}

.schedule_btn_two {
  border: 1px solid #1578E9;
  color: #1578E9;
}

#confer-color-two {
  color: #1578E9;
}

.section-mt {
  margin-top: 116px;
}

.section-mb {
  margin-bottom: 116px;
}

.home-two-list-two {
  border-top: 1px dashed #bfbfbf;
  border-bottom: 0;
  padding-top: 30px;
  margin-bottom: 20px;
}

.about-para-two-inner {
  margin-bottom: 40px;
  padding-top: 0;
}

.about-two-images-inner {
  position: relative;
  padding-left: 20px;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #FE9933;
  z-index: 999;
}

.video.video-inner {
  background: #CC3366;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.checkbutton::before {
  position: absolute;
  content: "";
  background-image: url("../img/about/check.png");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  top: 69%;
  left: 69%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.checkbutton.checkbutton-inner::before {
  position: absolute;
  content: "";
  background-image: url("../img/about/speaker.png");
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  top: 75%;
  left: 72%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.waves.waves-inner {
  background: #CC3366;
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #FE9933;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.wrapper.wrapper-inner {
  top: 80%;
  left: 29%;
}

.shape-inner-about {
  left: 40px;
  top: 160px;
}

.shape-inner-about.about-inner-02 {
  left: 11%;
}

.plane_02.about-inner-05 {
  top: 50%;
  right: 50px;
}

.process-inner {
  background: #F6F2FB;
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.processInner {
  position: relative;
  z-index: 2;
  width: 370px;
  height: 248px;
  background-color: #ffffff;
  margin: 124px 0;
  border-left: solid 1px #7B26BE;
  border-right: solid 1px #7B26BE;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.processInner:hover {
  background: #A633FE;
  border: 1px solid #fff;
  padding: 10px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.processInner:hover .processInner__content h4 {
  color: #fff;
}
.processInner:hover .processInner__content p {
  color: #fff;
}
.processInner__thumb {
  position: relative;
  z-index: 6;
  margin-bottom: 20px;
}
.processInner__content {
  position: relative;
  z-index: 9;
  text-align: center;
}
.processInner__content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 35px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.processInner__content p {
  font-size: 16px;
  line-height: 28px;
  color: #1E1E1E;
  font-weight: 600;
}

.processInner:before,
.processInner:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 261.63px;
  height: 261.63px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 53.1852px;
}

.processInner:before {
  top: -130.8148px;
  border-top: solid 1.4142px #7B26BE;
  border-right: solid 1.4142px #7B26BE;
}

.processInner:after {
  bottom: -130.8148px;
  border-bottom: solid 1.4142px #7B26BE;
  border-left: solid 1.4142px #7B26BE;
}

.processInner.mt-top-minus {
  margin-top: 0;
}

.process_active {
  background: #A633FE;
}

.process_active h4 {
  color: #fff;
  text-transform: uppercase;
}

.process_active p {
  color: #fff;
}

.register-area.process-register {
  margin-top: 0;
}

.sheduling-shapes-process-bottom {
  bottom: 250px;
  right: 100px;
  position: absolute;
  z-index: 99;
}

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

.counterWrapper {
  border: 2px solid #F6F2FB;
  padding: 60px 50px;
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  cursor: pointer;
  border-radius: 7px;
}
.counterWrapper:hover {
  -webkit-box-shadow: 0px 3px 20px rgba(112, 0, 200, 0.2);
          box-shadow: 0px 3px 20px rgba(112, 0, 200, 0.2);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.counterWrapper::before {
  content: "";
  position: absolute;
  left: 67%;
  top: 15px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
}
.counterWrapper__thumb {
  margin-bottom: 30px;
}
.counterWrapper__content p {
  font-size: 16px;
  line-height: 28px;
  color: #1E1E1E;
  font-weight: 600;
}

.bg-theme {
  color: #7B26BE;
  font-weight: 500;
}

.extrabold {
  font-weight: 800;
}

.counter-area {
  overflow: hidden;
  position: relative;
}

.counter-02 {
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
  top: 40%;
  left: 5%;
}

.counter-01 {
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
  top: 24%;
  left: 0%;
}

.counter-03 {
  right: 104px;
  top: 300px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.counter-04 {
  right: 104px;
  bottom: 30px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.ticket-area.ticket-area-inner {
  background: transparent;
}
.ticket-area.ticket-area-inner::before {
  background: transparent;
}

.schedule-area-inner {
  background: transparent;
  padding-top: 50px;
}

.inner_btn i {
  display: inline-block;
  padding-left: 10px;
}

.cmn_btn.about_btn.butn.butn__new.inner_btn.inner_btn_two {
  background: #fff;
  color: #7B26BE;
  border: 1px solid #7B26BE;
}

.counterWrapper.counter-wrapper-two {
  padding: 30px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
}

.counterWrapper.counter-wrapper-two::before {
  content: "";
  position: absolute;
  top: 10px;
  height: 100%;
  right: 25px;
  width: 100%;
  background-image: url("../img/about-inner/sm-pattern.png");
  background-repeat: no-repeat;
}

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

.conference-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.conference-slider {
  position: relative;
}
.conference-slider::before {
  position: absolute;
  right: 193px;
  width: 170px;
  height: 1px;
  background: #fff;
  content: "";
  z-index: 99;
  bottom: 112px;
}

.prev-arrow-blog.team-arrow-left.conference-prev {
  position: absolute;
  right: 122px;
  top: 77%;
  background: transparent;
  border: 2px solid white;
  padding: 9px 16px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 700;
  color: white;
  z-index: 99;
}

.next-arrow-blog.team-arrow-right.conference-next {
  right: 58px;
  color: white;
  border: 2px solid white;
  top: 77%;
  z-index: 99;
}

.conference-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 38px;
  position: absolute;
  left: 170px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.conference-img {
  position: relative;
}

#innervideo {
  left: -65px;
  top: 70px;
  position: absolute;
}

.conference-01 h2 {
  font-size: 40px;
  font-weight: 700;
  color: #FE9933;
  line-height: 65px;
}
.conference-01 p {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}

.scheduling-time-wrapper {
  background: #f3f8fd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 35px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 9;
  margin-bottom: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.scheduling-details-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.scheduling-para {
  font-size: 14px;
  color: var(--main-color-one);
  font-weight: 700;
  text-transform: uppercase;
}

.time01 {
  position: absolute;
  left: 0;
  top: 0;
}

.time02 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.section-details-title {
  margin-bottom: 20px;
}

.scheduling-details p {
  font-size: 16px;
  line-height: 28px;
  color: #1E1E1E;
}

.time-bg {
  background: #F6F2FB;
  padding: 20px 36px;
  position: relative;
  margin-bottom: 15px;
}
.time-bg::before {
  position: absolute;
  left: 0;
  background: #7B26BE;
  content: "";
  height: 100%;
  top: 0;
  width: 6px;
}
.time-bg::after {
  position: absolute;
  left: 30%;
  content: "";
  height: 100%;
  top: 0;
  background-image: url("../img/about-inner/left-top-quote.png");
  width: 100%;
  background-repeat: no-repeat;
}
.time-bg p {
  font-size: 16px;
  line-height: 28px;
  color: #1E1E1E;
  font-weight: 700;
  margin-bottom: 0;
}

.time-details-two p {
  font-size: 16px;
  line-height: 28px;
  color: #1E1E1E;
  margin-bottom: 40px;
}

.color-bg {
  color: #1E1E1E;
  padding-bottom: 10px;
}

.color-bg-2 {
  color: #1E1E1E !important;
}

.benefitTwo {
  border: 1px solid #F6F2FB;
  padding: 28px 10px;
  border-radius: 8px;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}
.benefitTwo:hover {
  background-color: #fff;
  border-radius: 8px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.benefit__thumb.benefitTwoThumb img {
  margin-bottom: 15px;
}

.benefit__content.benefitTwoContent h3 {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.details-service-title {
  font-size: 22px;
  line-height: 35px;
  color: #1E1E1E;
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-mentor {
  background: #bb33fe;
  background: linear-gradient(60deg, #bb33fe 0%, #2300db 78%);
  padding: 40px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 13px 26px rgba(123, 38, 190, 0.2);
          box-shadow: 0px 13px 26px rgba(123, 38, 190, 0.2);
  position: relative;
}

.scheduleMentor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.scheduleMentor__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 30px;
  margin-bottom: 20px;
}

.scheduleMentor__content {
  -webkit-box-flex: 11;
      -ms-flex: 11;
          flex: 11;
}

.mentor-social ul li {
  display: inline-block;
  margin-right: 4px;
  border: 2px solid #fff;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  color: #fff;
  text-align: center;
  line-height: 25px;
  font-size: 13px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  cursor: pointer;
}
.mentor-social ul li:hover {
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  background: rgb(166, 51, 254);
  background: linear-gradient(60deg, rgb(166, 51, 254) 0%, rgb(35, 0, 219) 100%);
}

.mentor-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  line-height: 35px;
  margin-bottom: 0;
}

.mentor-title {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 17px;
  display: inline-block;
}

.scheduleMentor__content p {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 31px;
}

.scheduling-time {
  position: relative;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
}

.d-1 {
  top: 120px;
  right: 190px;
}

.d-2 {
  right: 90px;
  top: 120px;
}

.d-3 {
  right: 164px;
  top: 260px;
}

.team-para-inner {
  font-size: 16px;
  line-height: 28px;
}

.why-choose {
  background: #F7F4FC;
  position: relative;
}

.benefitThree {
  background: #fff;
}

.accoridion-section.why-choose {
  background: #fff;
}

.c-1 {
  top: 22%;
}

.c-2 {
  bottom: 10%;
  right: 5%;
}

.footer-area.remove-mt {
  margin-top: 0;
}

.mentor-shape {
  right: 0;
  bottom: 0;
}

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

.prev-arrow-blog-mentor {
  bottom: -113px;
  position: absolute;
  background: transparent;
  border: 0;
  font-size: 18px;
  text-transform: uppercase;
  color: #323232;
  left: 0;
  cursor: pointer;
}
.prev-arrow-blog-mentor i::before {
  margin-right: 10px;
  display: inline-block;
  height: 53px;
  width: 53px;
  border: 2px solid #1E1E1E;
  line-height: 53px;
  text-align: center;
  opacity: 0.4;
  border-radius: 5px;
}

.next-arrow-blog-mentor {
  bottom: -113px;
  position: absolute;
  background: transparent;
  border: 0;
  right: 0;
  font-size: 18px;
  text-transform: uppercase;
  color: #323232;
  cursor: pointer;
}
.next-arrow-blog-mentor i::before {
  margin-left: 10px;
  display: inline-block;
  height: 53px;
  width: 53px;
  border: 2px solid #1E1E1E;
  line-height: 53px;
  text-align: center;
  opacity: 0.4;
  border-radius: 5px;
}

.video-play-button.hometwovideo {
  top: 50%;
  left: 64%;
}

.wrap-form.wrap-w input {
  padding: 15px;
}

input {
  border-radius: 6px;
}

img.image-size {
  max-width: inherit;
}

.about-two-images-inner img {
  max-width: inherit;
}

.slider-nav span {
  font-weight: 600;
}

.video-open.video-play-button.myGallery::after {
  height: 98px;
  width: 98px;
}

.sponsor-area.spnsor-schedule {
  background-color: #F6F2FB;
  padding: 120px;
}

.footer-area.mt_minus {
  margin-top: 0;
}

.scheduleMentor__thumb img {
  max-width: inherit;
}

.speaker-area-inner-content h2 {
  font-weight: 600;
  margin-bottom: 40px;
}

.accoridion-section.why-choose.bg-white.faq-page {
  padding-bottom: 100px;
}

/*
===========================
12. playVideo
===========================
*/
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 73%;
  left: 77%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  width: 112px;
  height: 112px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  overflow: hidden;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 112px;
  height: 112px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 25px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 14px solid transparent;
  margin-top: 40px;
  margin-left: 45px;
}

@-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.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    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.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 999999999999;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-overlay-close:hover {
  background-color: #7B26BE;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.video-play-btn-02 {
  position: relative;
  z-index: 1;
  height: 100px;
  width: 100px;
  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%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  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;
}

/*
===========================
14. schedule
===========================
*/
.schedule-buttons {
  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;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.text-center {
  text-align: center !important;
}

.large_btn {
  border: 1px solid #7B26BE;
  padding: 14px 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #2D07A9;
  border-radius: 6px;
}

.schedule-buttons .nav.nav-pills {
  background-color: #fff;
}

.schedule-buttons .nav.nav-pills-two {
  border-color: transparent;
}

.schedule-buttons .nav.nav-pills .nav-item .nav-link {
  padding: 8px 15px 7px;
  color: #7B7B7B;
  margin-right: 11px;
  border: 0 !important;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
}

.schedule-buttons .nav.nav-pills .nav-item {
  margin-right: 0;
}

.cmn_btn.schedule_btn {
  margin-left: 20px;
  padding: 18px 40px;
  border: 1px solid #7B26BE;
  color: #7B26BE;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
}
.cmn_btn.schedule_btn svg {
  margin-left: 15px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff !important;
  background: transparent -webkit-gradient(linear, left top, right top, from(#7B26BE), to(#2A06A8)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #7B26BE 0%, #2A06A8 100%) 0% 0% no-repeat padding-box;
  border-radius: 3px;
}

.schedule_subtitle {
  margin-bottom: 10px;
}

.scheduleWrapper__thumb {
  margin-right: 30px;
}
.scheduleWrapper__content span:last-child {
  color: var(--heading-color);
  line-height: 28px;
  font-size: 16px;
}

.confer-color {
  color: #7B26BE;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 25px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#7B26BE), to(#2A06A8)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #7B26BE 0%, #2A06A8 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conference-title {
  font-size: 22px;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1.2;
  padding-top: 6px;
  padding-bottom: 10px;
}

.conference-para {
  color: #1E1E1E;
  line-height: 28px;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
}

.scheduleWrapper {
  margin-bottom: 30px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 0px 24px rgba(51, 153, 204, 0.0784313725);
          box-shadow: 0px 0px 24px rgba(51, 153, 204, 0.0784313725);
  border-radius: 8px;
  padding: 60px;
}

.schedulePerson {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedulePerson__content {
  padding-top: 10px;
}
.schedulePerson__content p {
  margin: 0;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 28px;
  color: #8E8E8E !important;
  font-weight: 500;
  font-size: 14px;
}

.speaker-name {
  font-weight: 600;
}

.wrap-speaker {
  margin-right: 60px;
}

.wrap-speaker .schedulePerson__thumb img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.plane_01 {
  top: 410px;
  right: 210px;
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

.schedule-area {
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
  overflow: hidden;
}

.plane_02 {
  top: 120px;
  right: 95px;
  -webkit-animation: float-bob-x 12s linear infinite;
          animation: float-bob-x 12s linear infinite;
}

.plane_03 {
  top: 177px;
  right: -3px;
}

.plane_04 {
  top: 260px;
  right: 66px;
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

.plane_05 {
  bottom: 0;
}

img.plane_06 {
  bottom: 383px;
  left: 12%;
}

.scheduleWrapper__thumb {
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}

.scheduleWrapper__thumb .thumb {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 260px;
}

.scheduleWrapper__thumb img {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.scheduleWrapper__thumb img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pay-0 {
  -webkit-animation: float-bob-y 2s linear infinite;
          animation: float-bob-y 2s linear infinite;
}

.schedule_btn.schedule_btn_two {
  color: #1578E9;
  border: 1px solid #1578E9;
}

.large_btn.large_btn_two {
  border: 0;
  background: #fff;
}

span.quantity {
  color: #1E1E1E !important;
}

#tribe-events-pg-template {
  max-width: 100%;
  padding: 0;
}

/*
===========================
17. ticket
===========================
*/
.ticket-area {
  background-image: url("../img/ticket/chair.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.ticket-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #2A06A8 0% 0% no-repeat padding-box;
  z-index: -2;
  opacity: 0.8;
}

.wrap-ticket {
  position: relative;
  z-index: 99;
}

.ticket-wrapper {
  background: #fff;
  padding: 7px;
  text-align: center;
  position: relative;
  border-radius: 8px;
  margin-bottom: 70px;
}

.ticket_thumb img {
  padding-top: 8px;
}

.ticket-desing {
  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;
}

.ticket {
  padding: 18px;
}
.ticket__body ul li {
  font-size: 16px;
  color: #404040;
  line-height: 32px;
  border-bottom: 1px dashed #D5D5D5;
  margin-bottom: 7px;
  padding-bottom: 5px;
}
.ticket__footer {
  padding-top: 10px;
  padding-bottom: 60px;
}

.ticket-title {
  padding: 17px;
  padding-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #1E1E1E;
  text-transform: uppercase;
}

.calculator-wrapper {
  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;
}

.calculator {
  padding: 10px 18px;
  background: #fff;
  padding-bottom: 9px;
  border-radius: 6px 0px 0px 6px;
}
.calculator h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 28px;
  color: #7B26BE;
  margin-bottom: 0;
}
.calculator h3 img {
  padding-left: 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.counter {
  padding: 7px;
  background: #fff;
  margin-left: 2px;
  max-width: 148px;
  border-radius: 0px 6px 6px 0px;
}

.counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.counter-wrapper span {
  margin-right: 40px;
  display: inline-block;
  color: #404040;
  font-weight: 600;
  font-size: 23px;
}

.ticket_btn {
  background: white;
  display: inline-block;
  height: 92px;
  width: 92px;
  border-radius: 50px;
  line-height: 92px;
  text-align: center;
  outline: 9px solid #2A06A8;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -50px;
}
.ticket_btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 80px;
  width: 80px;
  border: 1px dashed #8F8F8F;
  content: "";
  border-radius: 50px;
}

.ticket-area .container {
  padding: 0;
}

.r-pattern-0 {
  z-index: 9;
  top: 0;
  left: -6%;
  opacity: 0.4;
}

.r-pattern-1 {
  z-index: 9;
  bottom: 0;
  right: -6%;
  opacity: 0.4;
}

.ticket-area-two {
  position: relative;
  background: #F8FBFF;
  padding-bottom: 120px;
  padding-top: 415px;
}

.ticket-wrapper {
  -webkit-box-shadow: 0px 3px 6px rgba(21, 120, 233, 0.2196078431);
          box-shadow: 0px 3px 6px rgba(21, 120, 233, 0.2196078431);
  border: 10px solid #FFFFFF;
  cursor: pointer;
}

.discount-1 {
  right: 0;
  bottom: 107px;
}

.ticket.ticket-two {
  background-color: #E1EFFF;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.ticket.ticket-two::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 120, 233, 0.7)), to(rgba(21, 120, 233, 0.7))), url("../img/home-two/price/Subtraction7.png");
  background-image: linear-gradient(to bottom, rgba(21, 120, 233, 0.7), rgba(21, 120, 233, 0.7)), url("../img/home-two/price/Subtraction7.png");
  background-size: cover;
  content: "";
  opacity: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: -2;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.ticket.ticket-two:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.ticket.ticket-two:hover .ticket-title {
  color: #fff;
}
.ticket.ticket-two:hover ul li {
  color: #fff;
}

.color-black {
  color: #14133B !important;
}

a.ticket_btn.ticket_btn_two {
  background: #1578E9;
  border: 1px dashed #fff;
  outline: 5px solid #1578e9;
  bottom: -52px;
  overflow: visible;
  z-index: 9;
}

.border-design {
  display: inline-block;
  width: 135px;
  height: 135px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: -141px;
}

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

.border-design {
  display: inline-block;
  width: 135px;
  height: 135px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: -141px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.border-design {
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  outline: 9px solid #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  bottom: -125px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  outline-offset: -1px;
}

a.cmn_btn.sponsor_btn.sponsor_btn_two {
  border: 1px solid #1578E9;
  color: #1578E9;
}

a.ticket_btn.ticket_btn_two img {
  width: 35%;
}

.close-01 {
  top: 140px;
  left: 65px;
  opacity: 0.2;
}

.close-01 {
  top: 140px;
  left: 65px;
  opacity: 0.2;
}

.close-02 {
  left: 160px;
  top: 520px;
  opacity: 0.2;
}

.close-03 {
  bottom: 109px;
  left: 85px;
  opacity: 0.2;
}

.close-04 {
  bottom: 60px;
  left: 500px;
  opacity: 0.2;
}

.close-05 {
  right: 530px;
  top: 40px;
  opacity: 0.2;
}

.close-06 {
  right: 226px;
  top: 212px;
  opacity: 0.2;
}

.close-07 {
  right: 65px;
  top: 290px;
  opacity: 0.2;
}

.close-08 {
  bottom: 110px;
  right: 95px;
  opacity: 0.2;
}

.close-09 {
  right: 150px;
  bottom: 110px;
  opacity: 0.2;
}

.ticket-price {
  padding-bottom: 15px;
}
.ticket-price h2 {
  text-transform: capitalize;
  font-size: 22px;
}

.currencey-color {
  color: #7B26BE;
  font-weight: 700;
  font-size: 50px;
  line-height: 4.063rem;
}

.ticket.ticket-design-two {
  background: transparent;
  padding: 20px 0;
}

.body-two-design {
  margin-bottom: 30px;
}

.ticket-wrapper-design-two {
  border: 0;
  margin-bottom: 30px;
  padding: 0px 50px;
  -webkit-box-shadow: 0px 3px 20px rgba(123, 38, 190, 0.2);
          box-shadow: 0px 3px 20px rgba(123, 38, 190, 0.2);
  border-radius: 8px;
  padding-bottom: 20px;
  padding-top: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.ticket-wrapper-design-two::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  background: #7B26BE;
  content: "";
  width: 0%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.ticket-wrapper-design-two::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  background: #7B26BE;
  content: "";
  width: 0%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.ticket-wrapper-design-two:hover::before {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.ticket-wrapper-design-two:hover::after {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.calculation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  position: relative;
}

.result-field {
  background: #F2E2FF;
  padding: 13px 42px;
  border-radius: 50px;
  color: #1E1E1E;
  font-size: 30px;
  line-height: 2.188rem;
  font-weight: 700;
}

span.decrement {
  display: inline-block;
  font-size: 19px;
  height: 30px;
  width: 30px;
  background: #2A06A8;
  color: #fff;
  line-height: 30px;
  border-radius: 50px;
  position: absolute;
  left: 60px;
}

span.increment {
  display: inline-block;
  font-size: 19px;
  height: 30px;
  width: 30px;
  background: #2A06A8;
  color: #fff;
  line-height: 30px;
  border-radius: 50px;
  position: absolute;
  right: 60px;
}

.cmn_btn.bookig_btn {
  background: transparent;
  border: 1px solid #7B26BE;
  color: #7B26BE;
}

.ticket-area-design-two {
  padding-bottom: 0;
}

.ticket-design-two-shape-01 {
  bottom: 10px;
  left: 100px;
  opacity: 1;
}

.ticket-design-two-shape-02 {
  right: 0;
  bottom: 0;
}

.ticket-header-inner-two {
  text-align: left;
}

.ticket-body-inner-two {
  text-align: left;
}
.ticket-body-inner-two ul li {
  border: 0;
  position: relative;
  padding-left: 25px;
}
.ticket-body-inner-two ul li::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/contact/check-mark.png");
  content: "";
  top: 75%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
}

.ticket-body-inner-two {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 10px;
}
.ticket-body-inner-two::before {
  position: absolute;
  top: 243px;
  left: 0;
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed #D5D5D5;
  content: "";
}
.ticket-body-inner-two::after {
  position: absolute;
  bottom: 120px;
  left: 0;
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed #D5D5D5;
  content: "";
}

.ticket-title-pad {
  padding-left: 0;
  font-size: 22px;
  line-height: 35px;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.ticket-price p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 5px;
}

.ticket-price-inner h2 {
  margin-bottom: 15px;
}

.ticket-para-inner {
  font-size: 16px;
}

.inner-ticket {
  padding: 0 28px;
  padding-bottom: 10px;
}

.filtering_btn button {
  border: 0;
  background: transparent;
  padding: 15px 35px;
  cursor: pointer;
  color: #7B26BE;
  font-weight: 700;
  text-transform: uppercase;
}

.filtering_btn button:hover {
  background: #7000C8;
  border-radius: 40px;
  color: #fff;
  padding: 15px 35px;
}

.button:active,
.button.is-checked {
  background-color: #aa96ca;
}

.button.is-checked {
  color: white;
}

.grid-item {
  width: 25%;
  position: relative;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: 9;
}
.grid-item::before {
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#a633fe), color-stop(65%, #2300db));
  background: linear-gradient(180deg, #a633fe 0%, #2300db 65%);
  content: "";
  opacity: 0.8;
  content: "";
  height: 0%;
  width: 100%;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  z-index: 2;
}
.grid-item:hover::before {
  height: 100%;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.grid-item:hover .icons {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.filtering_btn {
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #F2E2FF;
  border-radius: 50px;
}

.custom_pagination.custom_pagination_two ul li {
  border-radius: 50px;
  height: 42px;
  width: 42px;
  line-height: 42px;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-right: 20px;
}

.icons {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: 9;
  cursor: pointer;
}

.faq-tabs.text-center {
  display: inline-block;
}

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

.accordion-wrapper-two .card .card-header a[aria-expanded=true] {
  background: var(--main-color-one);
  border-radius: 5px 5px 0px 0px;
  color: #1e1e1e;
  background: #F6F2FB;
}

.accordion-wrapper-two .card-body-two {
  padding: 30px !important;
  padding-left: 10px !important;
  position: relative;
}
.accordion-wrapper-two .card-body-two p {
  padding: 15px;
  padding-bottom: 0;
}
.accordion-wrapper-two .card-body-two::before {
  position: absolute;
  border-top: 1px dashed #E5E5E5;
  left: 0;
  top: 26px;
  content: "";
  height: 100%;
  width: 100%;
}

.accordion-wrapper-two .card .card-body.card-body-two {
  border-top: 0;
}

.accordion-wrapper-two .card .card-header a {
  border-bottom: 0;
}

.accordion-wrapper.accordion-wrapper-two .card .card-header a[aria-expanded=true] {
  border-bottom: 0;
  padding-bottom: 5px;
}

.faq-tabs {
  display: inline-block;
  text-align: center;
  background: #F2E2FF;
  border-radius: 50px;
}
.faq-tabs ul li a {
  border: 0;
  background: transparent;
  padding: 15px 35px;
  cursor: pointer;
  color: #7B26BE;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-tabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff !important;
  background: #7B26BE;
  border-radius: 50px;
}

.card .card-header.card-header-two {
  background: #F6F2FB !important;
}

.ticket-wrapper.ticket_wrapper-one {
  border: 10px solid #F9F1FF;
}

.ticket.ticket-one {
  background-color: #fff;
}

.calculator.calculator-one {
  background-color: #F9F1FF;
}

.counter.counter-one {
  background-color: #F9F1FF;
}

.remove-font-w {
  font-weight: 500;
}

/*
===========================
15. spnsor
===========================
*/
.sponsor-area {
  position: relative;
  border: 3px solid #F3F5F7;
}

.sponsor-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #F3F5F7;
  padding: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 0;
}

.sponsor {
  background-color: #fff;
  position: relative;
  z-index: 9;
  border: 3px solid #F3F5F7;
}

.sponsor_thumb img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.sponsor_thumb:hover img {
  -webkit-transform: scale(0.93);
          transform: scale(0.93);
}

.speaker-details {
  position: relative;
  overflow: hidden;
}

.speaker-single-d {
  bottom: 210px;
  left: 80px;
  opacity: 0.6;
}

.speaker-single-1 {
  right: 60px;
  top: 100px;
}

.speakerDetailsImage__content span {
  font-size: 15px;
  color: var(--main-color-one);
  line-height: 1.75rem;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  margin-top: 0;
}

.speakerDetailsImage-para {
  padding-top: 13px;
  font-size: 16px;
  line-height: 1.75rem;
  margin-bottom: 23px;
}

.speaker-details-quote {
  position: relative;
  padding: 20px 20px;
  padding-bottom: 10px;
  background: #F6F2FB;
  margin-bottom: 30px;
}
.speaker-details-quote::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: var(--main-color-one);
  content: "";
}
.speaker-details-quote::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  top: 11px;
  left: 33%;
}
.speaker-details-quote p {
  color: #14133B;
  font-size: 16px;
  line-height: 1.75rem;
  font-weight: 600;
}

.speaker-details-social {
  border-top: 1px dashed var(--main-color-one);
  display: inline-block;
}

.speaker-details-social {
  padding-top: 24px;
  margin-bottom: 30px;
}
.speaker-details-social ul li {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid var(--main-color-one);
  border-radius: 50px;
  height: 25px;
  width: 25px;
  line-height: 24px;
  text-align: center;
  font-size: 12px;
  padding-bottom: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.speaker-details-social ul li a {
  color: var(--main-color-one);
}
.speaker-details-social ul li:hover {
  background: var(--main-color-one);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.speaker-details-social ul li:hover a {
  color: #fff;
}

.website-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.website-link h5 {
  margin-right: 10px;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1.3;
}
.website-link a {
  color: var(--main-color-one);
  text-decoration: underline;
  font-weight: 500;
}

.degree {
  padding-left: 60px;
  position: relative;
  padding-bottom: 5px;
}
.degree::before {
  position: absolute;
  left: 0;
  top: 13%;
  width: 14px;
  height: 14px;
  background: #B8B8B8;
  content: "";
  border-radius: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.degree h3 {
  font-size: 18px;
  color: #1E1E1E;
  line-height: 1.125rem;
  font-weight: 700;
}
.degree p {
  font-size: 16px;
  line-height: 1.75rem;
}

.wrapper-degree {
  padding-left: 50px;
  position: relative;
}

.degree-wrapper {
  position: relative;
  padding-top: 20px;
}
.degree-wrapper::before {
  position: absolute;
  left: 6px;
  height: 100%;
  width: 1px;
  background: #E5E5E5;
  content: "";
  top: 0;
}

.skill-wr-two {
  position: relative;
  z-index: 9;
  margin-bottom: 46px;
}

.dgraduation-add-before {
  position: relative;
}

.iconbox {
  display: inline-block;
  background: #2A06A8;
  height: 43px;
  width: 43px;
  border-radius: 50px;
  line-height: 43px;
  text-align: center;
  margin-left: -15px;
  -webkit-box-shadow: 0px 6px 15px rgba(101, 26, 237, 0.1803921569);
          box-shadow: 0px 6px 15px rgba(101, 26, 237, 0.1803921569);
  border-radius: 22px;
}
.iconbox i {
  color: #fff;
}

.wrapper-two {
  padding-left: 15px;
}

.event-card-title, .eventCard__body h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 2.188rem;
  color: #1E1E1E;
  margin-bottom: 50px;
}

.even-card-area {
  padding: 20px;
  padding-bottom: 0;
  position: relative;
}

.eventCard {
  border: 1px solid #F2E2FF;
  -webkit-box-shadow: 0px 6px 15px rgba(112, 0, 200, 0.1803921569);
          box-shadow: 0px 6px 15px rgba(112, 0, 200, 0.1803921569);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
}
.eventCard:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.eventCard__header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 24px;
  background: rgb(166, 51, 254);
  background: linear-gradient(160deg, rgb(166, 51, 254) 0%, rgb(35, 0, 219) 100%);
}
.eventCard__header ul {
  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;
}
.eventCard__header ul li {
  line-height: 1.75rem;
  color: #fff;
}
.eventCard__body {
  padding: 24px;
}
.eventCard__body h3 {
  margin-bottom: 0;
}
.eventCard__footer {
  padding: 24px;
  padding-top: 10px;
}
.eventCard__footer ul li {
  background: transparent -webkit-gradient(linear, left top, right top, from(#7B26BE), to(#2A06A8)) 0% 0%;
  background: transparent linear-gradient(90deg, #7B26BE 0%, #2A06A8 100%) 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.eventCard__footer ul li img {
  margin-right: 10px;
}

.event-single-1 {
  bottom: 115px;
  right: 0;
}

.sponsor-title-inner {
  color: #0D1422;
  font-size: 40px;
  line-height: 4.063rem;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.sponsor-wrap.spnsor-design-two {
  padding: 8px;
  position: relative;
}

.sponsor-area-design-two {
  position: relative;
  overflow: visible;
}

.sponsor-area-design-two-shape-01 {
  position: absolute;
}

.sponsor-area-design-two-shape-01 {
  top: 45%;
}

.sponsor-area-design-two-shape-02 {
  right: 0;
  top: 38%;
}

.spn-wrap {
  position: relative;
}

.spn-wrap::before {
  position: absolute;
  left: 0;
  content: "";
  border-bottom: 1px dashed #ddd;
  height: 101%;
  width: 100%;
  bottom: -69px;
}

.sponsor-form-area {
  position: relative;
}

.wrap-all-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-transform: capitalize;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrap-radio label {
  margin-bottom: 0;
}

.wrap-radio input {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  position: relative;
  float: left;
  margin-top: 2px;
}

.wrap-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 28px;
  margin-right: 30px;
  font-weight: 400;
  color: #1e1e1e;
}

.wrap-form-radio h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 14px;
  font-weight: 600;
}

.conditon p span {
  color: #7B26BE;
  line-height: 28px;
  font-weight: 600;
  background: transparent -webkit-gradient(linear, left top, right top, from(#7B26BE), to(#2A06A8)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #7B26BE 0%, #2A06A8 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-btn {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.wrap-form.wrap-w input {
  border: 2px solid transparent;
}
.wrap-form.wrap-w input:focus {
  border: 2px solid #7B26BE;
}
.wrap-form.wrap-w input::-webkit-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w input::-moz-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w input:-ms-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w input::-ms-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w input::placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select {
  border: 2px solid transparent;
  padding: 7px 24px;
  border-radius: 0;
  color: #ababab;
  margin-bottom: 30px;
}
.wrap-form.wrap-w .nice-select:focus {
  border: 2px solid #7B26BE;
}
.wrap-form.wrap-w .nice-select::-webkit-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select::-moz-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select:-ms-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select::-ms-input-placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select::placeholder {
  color: #ababab;
}
.wrap-form.wrap-w .nice-select:after {
  height: 7px;
  right: 23px;
  width: 7px;
}

.sponsor-form-area {
  overflow: hidden;
}

.moreinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.moreinfo::before {
  position: absolute;
  right: 15%;
  height: 40px;
  width: 1px;
  border: 1px dashed #D4D4D4;
  content: "";
  top: 50%;
  opacity: 0.6;
  -webkit-transform: translateY(-73%);
          transform: translateY(-73%);
}

.moreinfo.wow.moreinfo-two.moreinfo-three::before {
  width: 0;
  height: 0;
}

.border-0::before {
  border: 0;
}

.moreinfo__thumb {
  background: #fff;
  height: 60px;
  width: 60px;
  -webkit-box-shadow: 0px 13px 26px rgba(51, 153, 204, 0.2);
          box-shadow: 0px 13px 26px rgba(51, 153, 204, 0.2);
  border-radius: 8px;
  text-align: center;
  line-height: 60px;
  margin-right: 20px;
}
.moreinfo__thumb img {
  width: 40%;
}

.moreinfo__content h4 {
  color: #717171;
}

.wrap-increse-btn h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.calculationn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

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

.resultt-field {
  background: #fff;
  color: #fff;
  padding: 10px 48px;
  display: inline-block;
  border-radius: 30px;
  color: #1e1e1e;
  font-size: 30px;
  font-weight: 700;
}

span#decrementt {
  display: inline-block;
  font-size: 19px;
  height: 30px;
  width: 30px;
  background: #2A06A8;
  color: #fff;
  line-height: 30px;
  border-radius: 50px;
  position: absolute;
  left: -8px;
  text-align: center;
}

span#incrementt {
  display: inline-block;
  font-size: 19px;
  height: 30px;
  width: 30px;
  background: #2A06A8;
  color: #fff;
  line-height: 30px;
  border-radius: 50px;
  position: absolute;
  right: 2px;
  text-align: center;
}

.wrap-increse-btn {
  padding-left: 16px;
}

.text-area textarea {
  width: 100%;
  height: 225px;
  border: 1px solid #DFDFDF;
  padding: 30px;
  text-transform: capitalize;
  margin-bottom: 30px;
  border-radius: 8px;
}

.text-area h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.pbt {
  font-size: 16px;
  padding: 22px;
  line-height: 28px;
  padding-top: 15px;
}

.event-card-m-title {
  text-transform: uppercase;
}

.conditon p {
  font-size: 16px;
  line-height: 35px;
}

.detailsImage {
  margin-right: 30px;
}

.team-details-event-title-hover h4 a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.team-details-event-title-hover h4 a:hover {
  color: var(--main-color-one) !important;
}

.elementor-swiper-button-wrap .elementor-swiper-button {
  height: 54px;
  width: 54px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  margin: 0 7px;
}
.elementor-swiper-button-wrap .elementor-swiper-button:hover {
  background: var(--main-color-two);
  color: #fff;
}
.elementor-swiper-button-wrap .elementor-swiper-button-prev {
  position: absolute;
  left: auto;
  right: 65px;
  top: -110px;
}
.elementor-swiper-button-wrap .elementor-swiper-button-next {
  position: absolute;
  left: auto;
  right: 0;
  top: -110px;
}

.sponsor-member-carousel-wrap .sponsor-hover-img {
  display: none;
}
.sponsor-member-carousel-wrap .sponsor-slider-list {
  margin: 30px 2px;
}
.sponsor-member-carousel-wrap .sponsor-slider-list:hover {
  -webkit-box-shadow: 0px 5px 15px rgba(21, 120, 233, 0.1);
          box-shadow: 0px 5px 15px rgba(21, 120, 233, 0.1);
}
.sponsor-member-carousel-wrap .sponsor-slider-list:hover .sponsor-img {
  display: none;
}
.sponsor-member-carousel-wrap .sponsor-slider-list:hover .sponsor-hover-img {
  display: block;
}

/*
===========================
13. register
===========================
*/
.register-area {
  background-image: url("../img/parallax/paralax-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  margin-top: 116px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 105px;
}
.register-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: transparent linear-gradient(105deg, #3399CC 0%, #2A06A8 1%, #7B26BE 100%) 0% 0% no-repeat padding-box;
  opacity: 0.8;
  left: 0;
  top: 0;
}

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

.cmn_btn.register_btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 21px 24px;
}
.cmn_btn.register_btn img {
  padding-left: 10px;
}

.register-area-two {
  background-image: url("../img/home-two/price/smoke-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 113px 0;
  border-radius: 6px;
  margin-bottom: -307px;
  position: relative;
  padding-bottom: 90px;
  z-index: 9;
  -webkit-box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.3882352941);
          box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.3882352941);
  border-radius: 10px;
}

/* ===========================
6. blog
=========================== */
.single-blog-item-inner {
  margin-bottom: 30px;
  overflow: hidden;
}
.single-blog-item-inner .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
}
.single-blog-item-inner .thumb img {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.single-blog-item-inner .thumb a {
  height: 30px;
  line-height: 30px;
  padding: 0 14px;
  border-radius: 3px;
  background: var(--main-color-one);
  display: inline-block;
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 30px;
  top: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-blog-item-inner .thumb a:hover {
  background: var(--main-color-two);
}
.single-blog-item-inner .details .cat-wrap {
  margin-bottom: 20px;
}
.single-blog-item-inner .details .cat-wrap a {
  height: 30px;
  line-height: 30px;
  padding: 0 14px;
  background: var(--main-color-one);
  display: inline-block;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}
.single-blog-item-inner .details .author-meta {
  margin: 0;
  padding: 0;
}
.single-blog-item-inner .details .author-meta li {
  display: inline-block;
  list-style: none !important;
  font-weight: 500;
  margin-right: 15px;
  color: #8E8E8E;
}
.single-blog-item-inner .details .author-meta li:before {
  display: none;
}
.single-blog-item-inner .details .author-meta li a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #8E8E8E;
}
.single-blog-item-inner .details .author-meta li a:hover {
  color: var(--main-color-one);
}
.single-blog-item-inner .details .title {
  margin-top: 14px;
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-blog-item-inner .details .title:hover {
  color: var(--main-color-one);
}
.single-blog-item-inner .details .btn-wrap {
  margin-top: 21px;
}
.single-blog-item-inner .details .btn-wrap .read-btn span {
  margin-top: 13px;
}
.single-blog-item-inner.border-style-bottom {
  border-bottom: 1px dashed #CBCBCB;
}
.single-blog-item-inner.border-style-bottom .details {
  padding-bottom: 25px;
}
.single-blog-item-inner:hover .thumb img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.single-blog-item-inner.single-blog-item-two {
  -webkit-box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.16);
          box-shadow: 0px 15px 30px rgba(21, 120, 233, 0.16);
}
.single-blog-item-inner.single-blog-item-two .details {
  padding: 30px 30px 20px 30px;
}
.single-blog-item-inner.single-blog-item-two .details .author-meta .author img {
  width: 35px;
  margin-right: 6px;
}
.single-blog-item-inner.single-blog-item-two .thumb {
  margin-bottom: 0;
  border-radius: 0;
}
.single-blog-item-inner.single-blog-item-two .thumb img {
  -webkit-mask-size: cover;
  -webkit-mask-position: top center;
}

.blog-member-carousel {
  margin: 0 -15px;
}
.blog-member-carousel .single-blog-item-inner {
  margin: 0 15px;
}

.single-blog-item-inner .details .author-meta li {
  margin-top: 0;
}

/*
===========================
8. footer
===========================
*/
.footer-area {
  padding-bottom: 100px;
  background-image: url("../img/footer/footer-bg-01.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  margin-top: 120px;
  z-index: 99;
  overflow: hidden;
}
.footer-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #2A06A8 0% 0% no-repeat padding-box;
  opacity: 0.85;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 13px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  margin-bottom: 60px;
  padding-left: 20px;
}

.subscribe-box {
  position: relative;
}
.subscribe-box svg {
  position: absolute;
  left: 25px;
  top: 18px;
}
.subscribe-box input {
  border: 0;
  padding: 0 225px 0 85px;
  width: 100%;
  height: 80px;
  color: #B9B9B9;
  font-weight: 500;
  font-size: 18px;
}
.subscribe-box input::-webkit-input-placeholder {
  color: #B9B9B9;
}
.subscribe-box input::-moz-placeholder {
  color: #B9B9B9;
}
.subscribe-box input:-ms-input-placeholder {
  color: #B9B9B9;
}
.subscribe-box input::-ms-input-placeholder {
  color: #B9B9B9;
}
.subscribe-box input::placeholder {
  color: #B9B9B9;
}
.subscribe-box button {
  top: 11px;
  right: 10px;
  padding: 0 22px;
}

.submit-subscribe {
  text-transform: uppercase;
  position: absolute;
  right: 0;
  border: 0;
  cursor: pointer;
  border-radius: 6px;
}
.submit-subscribe i {
  padding-left: 10px;
}

.copyright-text p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
}

.footer-area.footer-area-two {
  margin-top: 0;
  background: #fff;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.footer-area.footer-area-two::before {
  background: #fff;
}

.submit-subscribe.submit-subscribe-btn {
  border: 0;
  background: #1578E9;
  border-radius: 6px;
}

.footer_wrapper.footer-wrapper-two {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 15px 35px rgba(21, 120, 233, 0.3098039216);
          box-shadow: 0px 15px 35px rgba(21, 120, 233, 0.3098039216);
  border-radius: 6px;
}

.copyright-text.copyright-text-two p {
  color: #717171;
}

.wrap.wrap-two {
  border-bottom: 1px dashed #B8B8B8;
  padding-bottom: 30px;
  margin-bottom: 35px;
}

.wrap.wrap-two a {
  display: inline-block;
  border: 1px solid #1578E9;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #1578E9;
  font-size: 20px;
  margin-right: 20px;
}

.large-footer-shapes-01 {
  position: absolute;
  z-index: -1;
  top: 43px;
  left: -8%;
}

.large-footer-shapes-02 {
  position: absolute;
  right: -68px;
  bottom: -53px;
  width: 10%;
}

.position-absolute.footer_ractangle_08 {
  left: 378px;
  top: 7px;
  opacity: 0.3;
}

.position-absolute.footer_ractangle_07 {
  top: 247px;
  left: 400px;
  opacity: 0.2;
  z-index: -1;
}

.position-absolute.footer_ractangle_03 {
  right: 135px;
  top: 180px;
  opacity: 0.2;
}

.position-absolute.footer_ractangle_09 {
  bottom: 29px;
  right: 20px;
  opacity: 0.2;
}

.position-absolute.footer_ractangle_06 {
  top: 420px;
  left: 14px;
  opacity: 0.2;
}

.position-absolute.footer_ractangle_05 {
  bottom: 60px;
  left: 499px;
  opacity: 0.2;
}

.position-absolute.footer_ractangle_04 {
  top: 89px;
  left: 985px;
  opacity: 0.2;
  z-index: -1;
}

.position-absolute.footer_ractangle_02 {
  bottom: 144px;
  right: 504px;
  opacity: 0.2;
}

.chec {
  position: absolute;
  top: 27%;
  left: 48%;
}

.speaker {
  position: absolute;
  bottom: 13%;
  left: 31%;
}

.subscribe-logo img {
  width: 192px;
}

/*
===========================
11. mobile
===========================
*/
.small-menu {
  width: 300px;
  height: 100%;
  background: #fff;
  position: fixed;
  z-index: 999999999999;
  right: 0;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #000;
  height: 3px;
  margin-top: 3px;
}

.small-menu {
  width: 300px;
  height: 100%;
  background: #fff;
  position: fixed;
  z-index: 99;
  right: 0;
  padding: 30px;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0px;
  right: 0;
  cursor: pointer;
  color: #383535;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.design-menu .mean-bar .mean-nav ul li a {
  font-size: 12px;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
  padding-left: 10px;
}

.design-menu .mobile-menu .mean-bar .mean-nav ul {
  display: block !important;
}

.design-menu .mean-bar .mean-nav ul li a {
  font-size: 12px;
  color: #000;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: transparent;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
  padding-left: 10px;
}

.small-menu {
  display: none;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  height: 100%;
  width: 100%;
  z-index: 99999999;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}

.activemobile.activemobile-two {
  background-color: #F8FBFF;
}

.open-mobile-menu.mobile-menu-two {
  color: #000;
}

.mean-container .mean-nav ul li a {
  padding: 10px 0px;
}

.mean-container .mean-nav ul li {
  padding-left: 0;
}

.mean-container .mean-nav ul li {
  padding-left: 0;
}

/*
===========================
10. innerBlog
===========================
*/
.inner_header {
  position: static;
}

.breadcrumb_area {
  background-image: url("../img/blog/breadcrube.png");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 80px 0;
  padding-bottom: 100px;
}
.breadcrumb_area::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: transparent linear-gradient(99deg, #A633FE 0%, #2300DB 100%) 0% 0% no-repeat padding-box;
  opacity: 0.75;
}

.br-shapes-02 {
  right: 0;
}

.br-shapes-01 {
  top: 0;
}

.triangle-01 {
  color: #fff;
  font-size: 12px;
  line-height: 21px;
  display: inline-block;
  background: #FE9933;
  padding: 5px 13px;
  text-align: center;
  padding-left: 8px;
  padding-top: 4px;
  margin-right: 3px;
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 52%, 78% 101%, 0% 100%);
          clip-path: polygon(0% 0%, 80% 0%, 100% 52%, 78% 101%, 0% 100%);
  line-height: 21px;
  font-weight: 500;
}

.triangle-02 {
  display: inline-block;
  padding: 5px 15px;
  padding-top: 4px;
  position: relative;
  color: #fff;
  z-index: 9;
  font-size: 12px;
  line-height: 21px;
  font-weight: 500;
  padding-left: 3px;
}
.triangle-02 a {
  display: block;
  padding-left: 4px;
}
.triangle-02::before {
  position: absolute;
  left: -38px;
  top: 0;
  content: "";
  -webkit-clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 45% 100%, 75% 53%);
          clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 45% 100%, 75% 53%);
  background: #3399CC;
  height: 30px;
  width: 50px;
  z-index: -1;
}
.triangle-02::after {
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
  background: #3399CC;
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
}

.br-title {
  font-size: 65px;
  line-height: 85px;
  font-weight: 900;
  color: #fff;
}

.cmn_widget, .search_widgets {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.0705882353);
          box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px;
  padding: 24px 24px;
  position: relative;
  margin-bottom: 30px;
}

.search_widgets form {
  position: relative;
}
.search_widgets form input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #D5E0EF;
  border-radius: 6px;
  padding-right: 50px;
}
.search_widgets form button {
  position: absolute;
  right: 0;
  font-size: 23px;
  top: 50%;
  left: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #7B26BE;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.widget-title {
  font-size: 20px;
  line-height: 32px;
  color: #030519;
  font-weight: 700;
  position: relative;
}
.widget-title::before {
  position: absolute;
  left: -24px;
  width: 3px;
  height: 17px;
  background-color: #7B26BE;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.recent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #D5E0EF;
  margin-bottom: 25px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recent__thumb {
  margin-right: 10px;
  overflow: hidden;
}
.recent__thumb img {
  width: 140px;
}
.recent__content span {
  font-size: 14px;
  line-height: 28px;
  color: #858585;
}
.recent__content a p {
  font-size: 16px;
  color: #030519;
  line-height: 28px;
  font-weight: 600;
}
.recent__content a p:hover {
  color: #7B26BE;
}

.category ul li {
  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-bottom: 15px;
  padding-top: 15px;
  font-size: 15px;
  line-height: 23px;
  border-bottom: 1px dashed #D5E0EF;
  color: #7A7A7A;
}
.category ul li a i {
  display: inline-block;
  padding-right: 14px;
  color: #7B26BE;
}
.category ul li span {
  color: #7A7A7A;
}
.category ul li:hover {
  color: #7B26BE;
}

.tags ul li {
  list-style: none;
  display: inline-block;
  padding: 9px 12px;
  border: 1px solid #D5E0EF;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tags ul li:hover {
  background: #7B26BE;
  color: #fff;
}

.custom_pagination ul li {
  display: inline-block;
  text-transform: capitalize;
  margin-right: 14px;
  border: 1px solid #DDDDDD;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  padding: 3px 11px;
  color: #555555;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.custom_pagination ul li:first-child {
  border: 0;
}
.custom_pagination ul li:last-child {
  border: 0;
}
.custom_pagination ul li:hover {
  background-color: #7B26BE;
  color: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.innerFooter {
  margin-top: 20px;
}

.classic {
  padding-bottom: 30px;
  border-bottom: 1px dashed #CBCBCB;
  margin-bottom: 30px;
}
.classic__thumb {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 6px;
}
.classic__thumb img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.classic__thumb img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.classic__thumb::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(218, 216, 216, 0)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(to right, rgba(218, 216, 216, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.classic__thumb:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
.classic__content p {
  font-size: 16px;
  line-height: 30px;
  color: #484848;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.category-name-two {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-block;
  padding: 2px 10px;
  background-color: #7B26BE;
  text-transform: capitalize;
  color: #fff;
  line-height: 28px;
  font-size: 14px;
  border-radius: 3px;
  font-weight: 600;
}

.classic_title {
  font-size: 20px;
  line-height: 32px;
  color: #030519;
  font-weight: 700;
}

.classic_btn {
  color: #7B26BE;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  padding-top: 5px;
}
.classic_btn i {
  display: inline-block;
  padding-left: 10px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.classic_btn:hover i {
  padding-left: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.details_listing {
  padding: 10px 0;
}
.details_listing li {
  position: relative;
  padding-left: 45px;
  line-height: 30px;
  font-size: 16px;
  z-index: 9;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}
.details_listing li::before {
  position: absolute;
  left: 0;
  height: 26px;
  width: 26px;
  content: "\f00c";
  top: 0;
  color: #7B26BE;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  background: rgba(123, 38, 190, 0.1);
  border-radius: 50px;
  z-index: -1;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
}

.details_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
  padding-bottom: 30px;
}

.detailsImage_two {
  position: relative;
}

.play-video-blog {
  position: absolute;
  left: 50%;
  top: 50%;
}

.video-play-button.play-video-blog:after {
  border: 3px solid #fff;
  background: rgba(123, 38, 190, 0.3);
}

.post_tags {
  padding-top: 20px;
  border-top: 1px dashed #CECECE;
}
.post_tags ul li {
  display: inline-block;
  padding: 3px 24px;
  background: #F3F3F3;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  margin-right: 10px;
}
.post_tags ul li:first-child {
  padding: 0;
  background: transparent;
}

.single_pagination ul {
  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;
}

.bg-icon {
  display: inline-block;
  background: #7B26BE;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}

.sugesst_title, .title_comments {
  font-size: 24px;
  line-height: 44px;
  color: #0D1422;
  font-weight: 600;
  text-transform: capitalize;
}

.blog-quote {
  background: #F2E2FF;
  padding: 37px 104px;
  position: relative;
}

.blog-quote-sign {
  position: absolute;
  top: 25px;
  left: 40px;
}

.quote-title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
}

.quote-name {
  font-size: 16px;
  line-height: 30px;
  color: #484848;
  position: relative;
  padding-left: 100px;
}
.quote-name::before {
  position: absolute;
  left: 0px;
  top: 50%;
  background: #707070;
  width: 70px;
  height: 1px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.form-title {
  font-size: 16px;
  line-height: 30px;
  color: #484848;
  margin-bottom: 24px;
}

.wrap-form input {
  width: 100%;
  border: 0;
  padding: 12px 0;
  text-transform: capitalize;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
  border-radius: 0;
}
.wrap-form input:focus {
  border-bottom: 2px solid #7B26BE;
}
.wrap-form textarea {
  width: 100%;
  height: 180px;
  border: 1px solid #DFDFDF;
  padding: 17px 24px;
  margin-bottom: 50px;
  border-radius: 8px;
  background: #FBFBFB;
  resize: none;
}

.mbremove {
  margin-top: 0;
}

.mbadd {
  margin-bottom: 60px;
}

.d-blog {
  padding: 15px;
}

.d-blog-edit {
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 30px;
}

.conference-areaa {
  overflow: hidden;
}

.readmore-about {
  padding: 19px !important;
}

/*
===========================
5. benefit
===========================
*/
.benifit-area {
  background-image: url("../img/about-inner/bg-benifit.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 30px;
}
.benifit-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  mix-blend-mode: screen;
  opacity: 1;
  left: 0;
  background: rgb(112, 0, 200);
  background: -webkit-gradient(linear, left top, right top, from(rgb(112, 0, 200)), color-stop(35%, rgb(112, 0, 200)));
  background: linear-gradient(90deg, rgb(112, 0, 200) 0%, rgb(112, 0, 200) 35%);
}
.benifit-area::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(166, 51, 254);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(166, 51, 254, 0.75)), to(rgba(35, 0, 219, 0.75)));
  background: linear-gradient(180deg, rgba(166, 51, 254, 0.75) 0%, rgba(35, 0, 219, 0.75) 100%);
}

.section-para {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}

.benefit {
  margin-bottom: 50px;
  text-align: left;
  padding: 20px;
}
.benefit__thumb img {
  margin-bottom: 25px;
}
.benefit__content {
  color: #fff;
}
.benefit__content h3 {
  line-height: 35px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.benefit__content p {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
}

.benefit-shape-01 {
  top: 0;
}

/*
===========================
7. contact
===========================
*/
.counterWrapper-two {
  position: relative;
  padding: 30px;
  border: 2px solid #F6F2FB;
}
.counterWrapper-two::before {
  left: 52%;
}

.contact-title-1 {
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.75rem;
  margin-bottom: 0;
}

p.contact-sub-title {
  font-size: 18px;
  line-height: 2.188rem;
  font-weight: 600;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.speaker-single-f {
  right: 50px;
}

.contact-para {
  font-size: 16px;
  line-height: 1.75rem;
}

.wrap-input input {
  width: 100%;
  padding: 13px 18px;
  margin-bottom: 30px;
  border: 2px solid transparent;
  background: #fff;
}
.wrap-input input:focus {
  border: 2px solid #7B26BE;
}
.wrap-input input::-webkit-input-placeholder {
  color: #ababab;
}
.wrap-input input::-moz-placeholder {
  color: #ababab;
}
.wrap-input input:-ms-input-placeholder {
  color: #ababab;
}
.wrap-input input::-ms-input-placeholder {
  color: #ababab;
}
.wrap-input input::placeholder {
  color: #ababab;
}

.border-gradient {
  border: 5px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-radius: 5px;
}

.wrap-input textarea {
  width: 100%;
  height: 225px;
  padding: 18px;
  text-transform: capitalize;
  border: 0;
  margin-bottom: 30px;
  border-radius: 8px;
}
.wrap-input textarea::-webkit-input-placeholder {
  color: #ababab;
}
.wrap-input textarea::-moz-placeholder {
  color: #ababab;
}
.wrap-input textarea:-ms-input-placeholder {
  color: #ababab;
}
.wrap-input textarea::-ms-input-placeholder {
  color: #ababab;
}
.wrap-input textarea::placeholder {
  color: #ababab;
}
.wrap-input a {
  display: inline-block;
  text-transform: capitalize;
}

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

.contact-map {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

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

.contact-map {
  position: relative;
}
.contact-map::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  background-image: url("../img/contact/contactmap.png");
  height: 100px;
  width: 100px;
  border-radius: 50px;
  z-index: 99999999999;
  content: "";
  background-repeat: no-repeat;
  -webkit-filter: grayscale(0) !important;
          filter: grayscale(0) !important;
  line-height: 100px;
  text-align: center;
  background-position: center;
}

.venue_inner {
  width: 100%;
  border: 0;
  position: relative;
}

iframe {
  border: 0;
}

.gmnoprint {
  display: none !important;
}

.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom {
  display: none !important;
}

.venue_map {
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}

.map__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(166, 51, 254);
  background: linear-gradient(-260deg, rgb(166, 51, 254) 0%, rgb(35, 0, 219) 100%);
  padding: 17px 35px;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.map__header svg {
  margin-right: 20px;
  width: 35px;
}
.map__header h2 {
  font-size: 22px;
  line-height: 35px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

.map__body {
  padding: 10px 30px;
  padding-bottom: 30px;
  text-align: left;
}
.map__body h4 {
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  padding: 10px 0;
  text-transform: capitalize;
  font-weight: 600;
  color: #8B8B8B;
  text-align: left;
}

button.accordion-button.custom-button {
  font-size: 20px;
  line-height: 28px;
  border: 0;
  background: transparent;
  font-weight: 600;
  margin-bottom: 20px;
}

h4.border-up {
  border-bottom: 1px dashed #DBDBDB;
}

.add-before-image {
  position: relative;
  margin-bottom: 20px;
  z-index: 2;
  padding-left: 46px;
  line-height: 30px;
}
.add-before-image::after {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  height: 34px;
  width: 34px;
  background: #daebff;
  border-radius: 50px;
}

.map_accordion ul {
  padding-left: 0;
  margin-bottom: 0;
}

.map_accordion ul li {
  list-style: none;
}

.map_accordion ul li i {
  width: 13px;
  position: relative;
  z-index: 99;
  margin-left: 11px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 12px;
  position: absolute;
  left: 0;
  color: var(--main-color-one);
}

.get-location h4 {
  font-size: 16px;
  font-weight: 600;
  color: #A131FC;
  text-transform: uppercase;
  line-height: 28px;
}
.get-location h2 {
  text-transform: capitalize;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 22px;
  line-height: 35px;
}

h2.section-title-two {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #1e1e1e;
  margin-bottom: 30px;
}

.ticket-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ticket-info-title {
  font-weight: 700 !important;
}

.venue-tab .nav-item {
  text-transform: capitalize;
}

.hall-facelaties {
  position: relative;
}

.benefitFour {
  position: relative;
  background: #F9F7FC;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.benefitFour::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: #7B26BE;
  content: "";
  bottom: 0;
}
.benefitFour:hover::before {
  height: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.counterWrapper__content h4:hover {
  color: #7B26BE;
}

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

.contact-card.contact-card-two {
  padding-bottom: 100px;
}

.accoridion-section.whychoose-two {
  padding-bottom: 70px;
}

/*
===========================
4. accordion
===========================
*/
/*-----------------------------
    Accordion Item
-----------------------------*/
.accordion-wrapper .card {
  border: none;
  background-color: transparent;
}
.accordion-wrapper .card + .card {
  margin-top: 20px;
}
.accordion-wrapper .card .card-header {
  background-color: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}
.accordion-wrapper .card .card-header a {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--heading-font);
  background-color: transparent;
  color: var(--heading-color);
  border: 1px solid var(--main-color-one);
  padding: 15px 25px;
  cursor: pointer;
  position: relative;
  border: 1px solid #E5E5E5;
  border-radius: 0 !important;
}
.accordion-wrapper .card .card-header a:after {
  position: absolute;
  right: 22px;
  top: 10px;
  content: "\f107";
  font-family: "FontAwesome";
  height: 40px;
  width: 40px;
  line-height: 43px;
  text-align: center;
  background: #e2f0ff;
  color: var(-main-color-one);
  border-radius: 50px;
}
.accordion-wrapper .card .card-header a[aria-expanded=true] {
  background: var(--main-color-one);
  border-radius: 5px 5px 0px 0px;
  color: #1e1e1e;
  background: #fff;
}
.accordion-wrapper .card .card-header a[aria-expanded=true]:after {
  content: "\f00d";
}
.accordion-wrapper .card .card-body {
  background-color: #fff;
  padding: 25px 25px;
  border: 1px solid #E5E5E5;
  border-top: 0;
  border-radius: 0px 0px 5px 5px;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--heading-color);
  -webkit-transition: 0.7s alternate;
  transition: 0.7s alternate;
  border-radius: 0;
}

.accoridion-section {
  background: #F7F4FC;
  padding: 116px 0px 128px 0px;
  position: relative;
  overflow: hidden;
}
.accoridion-section.style-01 {
  margin-top: 120px;
}
.accoridion-section .section-title .title {
  font-size: 40px;
  font-weight: 700;
  color: #000629;
  line-height: 55px;
}
.accoridion-section .shape {
  position: absolute;
  right: 14%;
  top: 32%;
}
.accoridion-section .shape-01 {
  position: absolute;
  top: 65%;
  left: 10%;
}
.accoridion-section .shape-02 {
  position: absolute;
  top: 15%;
  left: 20%;
}

.description {
  text-align: center;
  margin-bottom: 50px;
}

.accordion-wrapper .card .card-header a::first-letter {
  color: var(--main-color-one);
}

.accordion-wrapper .card .card-header a.collapsed {
  color: var(--heading-color) !important;
}

.accordion-wrapper .card .card-header a {
  color: var(--main-color-one) !important;
}

.accordion-wrapper.accordion-wrapper-three .card .card-header a:after {
  position: absolute;
  right: 0;
  top: 9px;
  content: "\f107";
  font-family: "FontAwesome";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: transparent;
  color: var(--main-color-one);
  border-radius: 50px;
}

.accordion-wrapper .card .card-header a[aria-expanded=true]:after {
  content: "\f106";
  line-height: 39px;
}

.accordion-wrapper.accordion-wrapper-three .card .card-header a.collapsed {
  color: var(--heading-color) !important;
}

.accordion-wrapper.accordion-wrapper-three .card .card-header a {
  border: 0 solid transparent;
  padding-left: 0;
  color: var(--main-color-one) !important;
}

.nav-bg {
  background: #f1f1f1;
}

/*-----------------------------
    Accordion Item
-----------------------------*/
.accordion-section .shape-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.accordion-section .conference-date {
  width: 85px;
  height: 178px;
  background: #fff;
  position: absolute;
  bottom: 37px;
  left: 23px;
  -webkit-filter: drop-shadow(0px 12px 30px rgba(42, 6, 168, 0.1));
  filter: drop-shadow(0px 12px 30px rgba(42, 6, 168, 0.1));
  z-index: 99;
  border: 1px solid #1578E9;
  overflow: hidden;
}

.accordion-section .conference-date .tringle {
  width: 0;
  height: 0;
  border-top: 25px solid;
  border-right: 25px solid transparent;
  border-image-source: linear-gradient(to bottom, #1578E9, #7B26BE);
  -webkit-transform: skew(134deg, 56deg);
          transform: skew(134deg, 56deg);
  position: absolute;
  top: -19px;
  left: -14px;
}

.accordion-section .conference-date span {
  display: block;
  font-size: 25px;
  font-family: var(--body-font);
  font-weight: 700;
  text-align: center;
  margin-top: 0px;
  padding-top: 25px;
}

.accordion-section .conference-date span + span {
  border-top: 1px solid #DEDEDE;
  margin-top: 10px;
  padding-top: 10px;
}

.accordion-section .conference-date p {
  font-size: 15px;
  line-height: 3;
  font-family: var(--body-font);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  background-color: #1578E9;
  text-align: center;
  position: relative;
  bottom: -10px;
}

.appFrame .accordion-main .acc-content-wrap {
  position: relative;
  left: 124px;
  width: 75%;
  height: 100%;
}

article.accordion div {
  position: relative;
  display: block;
  float: left;
  width: 140px;
  height: 500px;
  color: #666;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 5px 30px rgba(21, 120, 233, 0.15));
  filter: drop-shadow(0px 5px 30px rgba(21, 120, 233, 0.15));
  overflow: hidden;
  border-radius: 3px;
}

article.accordion div + div {
  margin-left: 30px;
}

article.accordion div h2 {
  position: absolute;
  font-size: 25px;
  font-weight: 700;
  width: 500px;
  height: 140px;
  top: 100%;
  left: 0;
  text-indent: 115px;
  padding: 0;
  margin: 0;
  color: #1E1E1E;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

article.accordion div h2 a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2em;
  text-decoration: none;
  color: inherit;
  outline: none;
  padding-top: 35px;
}

article.accordion div:target {
  width: 500px;
  padding: 0 1em;
  color: #333;
  background-color: #fff;
}

article.accordion div:target h2 {
  background: dodgerblue;
}

article.accordion div,
article.accordion div h2 {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/*********** minds-area ************/
.x-schedule-trigger {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  text-align: center;
  left: -324px;
  min-width: 780px;
  top: 40%;
  height: 130px;
  line-height: 130px;
  z-index: 4;
  font-size: 25px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: #1E1E1E;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.x-schedule-trigger:hover {
  color: #1E1E1E;
}

.x-day-group {
  will-change: opacity, transform;
  opacity: 1;
  -webkit-transform: transformX(0);
  transform: transformX(0);
}

.x-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.x-accordion-panel {
  -webkit-box-flex: initial;
  -ms-flex: initial;
  flex: initial;
  min-width: 130px;
  border-left: 1px solid #fff;
  position: relative;
  margin-left: -1px;
  width: 11%;
  will-change: width;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 841px;
  margin-right: 20px;
  background: #fff;
  -webkit-box-shadow: 0 5px 30px rgba(21, 120, 233, 0.15);
  box-shadow: 0 5px 30px rgba(21, 120, 233, 0.15);
  padding-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.x-accordion-panel:first-child {
  margin-left: 0;
}

.x-accordion-panel:before {
  content: "\f067" !important;
  font-family: "fontawesome";
  font-weight: 900;
  position: absolute;
  z-index: 2;
  left: 39px;
  top: 35px;
  height: 66px;
  width: 42px;
  text-align: center;
  color: #2A06A8;
  font-size: 20px;
  width: 53px;
  height: 53px;
  line-height: 53px;
  border: 2px solid #2A06A8;
  border-radius: 50%;
}

.x-accordion-panel.is-active {
  width: 100%;
  padding-left: 130px;
}

.x-accordion-panel.is-active .x-schedule-trigger {
  color: #2A06A8;
}

.x-accordion-panel.is-active:before {
  content: "\f068" !important;
  font-family: "fontawesome";
  font-weight: 900;
}

.x-accordion-panel-last {
  border-right: 1px solid #fff;
}

.x-accordion-content {
  overflow: hidden;
  min-height: 100%;
  padding: 0 23px;
  width: 100%;
}

.x-accordion-content > *:first-child {
  margin-top: 0;
}

.x-accordion-content h4 {
  font-weight: 700;
  margin-bottom: 35px;
}

.x-accordion-content p {
  margin-bottom: 85px;
  letter-spacing: 0.02em;
}

.x-accordion-content a {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.x-accordion-panel.is-active .x-accordion-content {
  border-left: 1px solid #CFCFCF;
}

.x-accordion-panel-2 .scheduleWrapper {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.x-accordion-panel-2 .scheduleWrapper .scheduleWrapper__thumb {
  margin-bottom: 10px;
  border-radius: 0;
}
.x-accordion-panel-2 .scheduleWrapper .main-img {
  -webkit-mask-size: cover;
  -webkit-mask-position: bottom center;
}
.x-accordion-panel-2 .scheduleWrapper .thumb {
  min-height: 300px;
}
.x-accordion-panel-2 .clock-time {
  color: #717171;
}
.x-accordion-panel-2 .scheduleWrapper__content p {
  margin-bottom: 0;
}
.x-accordion-panel-2 .scheduleWrapper__content .clock-time {
  margin-bottom: 20px;
  display: inline-block;
}
.x-accordion-panel-2 .scheduleWrapper__content .schedulePerson {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #CFCFCF;
}
.x-accordion-panel-2 .scheduleWrapper__content .speaker-name {
  color: var(--heading-color);
}
.x-accordion-panel-2 .scheduleWrapper__content .speaker-name-base {
  color: var(--main-color-one);
}
.x-accordion-panel-2 .schedulePerson .wrap-speaker:nth-child(3),
.x-accordion-panel-2 .schedulePerson .wrap-speaker:nth-child(4),
.x-accordion-panel-2 .schedulePerson .wrap-speaker:nth-child(5) {
  display: none;
}

/*---------------------------
    Price Plan
---------------------------*/
.price-single-items {
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 23px 30px 30px 30px;
  border-radius: 6px;
  margin-bottom: 3px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
}
.price-single-items .price-header {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price-single-items .price-header .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #1C1C1C;
  text-transform: capitalize;
  padding-top: 5px;
}
.price-single-items .price-header .tag {
  padding: 8px 18px;
  background: rgba(21, 120, 233, 0.08);
  border-radius: 50px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: #1578E9;
  margin-left: 15px;
}
.price-single-items .price-body {
  position: relative;
  z-index: 0;
}
.price-single-items .price-body .list-parent {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}
.price-single-items .price-body .list-parent .list-child {
  color: #4B4B4B;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--body-font);
  font-weight: 500;
}
.price-single-items .price-body .list-parent .list-child svg {
  margin-right: 7px;
}
.price-single-items .price-body .list-parent .list-child + .list-child {
  margin-top: 15px;
}
.price-single-items .price-body .list-parent p {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--heading-color);
}
.price-single-items .price-wrap {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  color: #1578E9;
  margin-bottom: 20px;
}
.price-single-items .price-wrap .price {
  margin-right: 10px;
}
.price-single-items .price-wrap .price-month {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #727272;
}
.price-single-items:hover .price-body .list-parent .list-child path, .price-single-items.active-pricing .price-body .list-parent .list-child path {
  stroke: var(--heading-color);
}
.price-single-items:hover .price-wrap .price-month, .price-single-items.active-pricing .price-wrap .price-month {
  color: var(--main-color-one);
}
.price-single-items:hover .btn-base-border-fill, .price-single-items.active-pricing .btn-base-border-fill {
  background: -webkit-gradient(linear, left top, right top, from(#7b26be), to(#2a06a8));
  background: linear-gradient(90deg, #7b26be 0%, #2a06a8 100%);
  color: #fff;
}
.price-single-items.price-single-style-two {
  background: #FBFBFB;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 50px;
  overflow: hidden;
  position: relative;
}
.price-single-items.price-single-style-two .top-after {
  margin: 0;
  padding: 0;
}
.price-single-items.price-single-style-two .top-after li {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: -30px;
  top: -30px;
  list-style: none;
  display: inline-block;
}
.price-single-items.price-single-style-two .top-after li:nth-child(2) {
  height: 120px;
  width: 120px;
  background: rgba(255, 255, 255, 0.07);
}
.price-single-items.price-single-style-two .top-after li:nth-child(3) {
  height: 140px;
  width: 140px;
  background: rgba(255, 255, 255, 0.05);
}
.price-single-items.price-single-style-two .bottom-after {
  margin: 0;
  padding: 0;
}
.price-single-items.price-single-style-two .bottom-after li {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: -30px;
  bottom: -30px;
  list-style: none;
  display: inline-block;
}
.price-single-items.price-single-style-two .bottom-after li:nth-child(2) {
  height: 120px;
  width: 120px;
  background: rgba(255, 255, 255, 0.07);
}
.price-single-items.price-single-style-two .bottom-after li:nth-child(3) {
  height: 140px;
  width: 140px;
  background: rgba(255, 255, 255, 0.05);
}
.price-single-items.price-single-style-two:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin-top: -30px;
}
.price-single-items.price-single-style-two:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin-top: -30px;
}
.price-single-items.price-single-style-two .price-header {
  margin-bottom: 3px;
}
.price-single-items.price-single-style-two .price-header .title {
  margin-bottom: 2px;
  font-size: 35px;
  padding-top: 0;
}
.price-single-items.price-single-style-two .price-wrap {
  line-height: 0;
  border-bottom: 1px dashed #CFCFCF;
  padding-bottom: 25px;
}
.price-single-items.price-single-style-two.active-pricing, .price-single-items.price-single-style-two:hover {
  background: linear-gradient(40deg, #1578E9 0%, #7B26BE 100%);
}
.price-single-items.price-single-style-two.active-pricing .btn-base, .price-single-items.price-single-style-two:hover .btn-base {
  background: -webkit-gradient(linear, left top, right top, from(#7b26be), to(#2a06a8));
  background: linear-gradient(90deg, #7b26be 0%, #2a06a8 100%);
  border: 1px solid #fff;
}
.price-single-items.price-single-style-two.active-pricing .price-header .title, .price-single-items.price-single-style-two:hover .price-header .title {
  color: #fff;
}
.price-single-items.price-single-style-two.active-pricing .price-wrap .price-month, .price-single-items.price-single-style-two:hover .price-wrap .price-month {
  color: #fff;
}
.price-single-items.price-single-style-two.active-pricing .price-body .list-child, .price-single-items.price-single-style-two:hover .price-body .list-child {
  color: #fff;
}
.price-single-items.price-single-style-two.active-pricing .price-body .list-child path, .price-single-items.price-single-style-two:hover .price-body .list-child path {
  stroke: #fff;
}

.service-card-item {
  background: #fff;
  padding: 22px 30px 24px 30px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  border-radius: 6px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.service-card-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(123, 38, 190)), to(rgb(42, 6, 168)));
  background: linear-gradient(90deg, rgb(123, 38, 190) 0%, rgb(42, 6, 168) 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-card-item .line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 0%;
  height: 0%;
  border-top-left-radius: 6px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-card-item .line-02 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 0%;
  height: 0%;
  border-top-right-radius: 6px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-card-item .line-03 {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 0%;
  height: 0%;
  border-bottom-left-radius: 6px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-card-item .line-04 {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 0%;
  height: 0%;
  border-bottom-right-radius: 6px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-card-item.active-intro::before {
  opacity: 1;
  visibility: visible;
}
.service-card-item.active-intro .content .title {
  color: #fff;
}
.service-card-item.active-intro .content .title::after {
  display: none;
}
.service-card-item.active-intro .content p {
  color: #fff;
}
.service-card-item.active-intro::before {
  opacity: 1;
  visibility: visible;
}
.service-card-item.active-intro .line,
.service-card-item.active-intro .line-02,
.service-card-item.active-intro .line-03,
.service-card-item.active-intro .line-04 {
  width: 35%;
  height: 30%;
}
.service-card-item.active-intro .content .title {
  color: #fff;
}
.service-card-item.active-intro .content .title::after {
  display: none;
}
.service-card-item.active-intro .content p {
  color: #fff;
}
.service-card-item .content.style-1, .service-card-item .content.style-2, .service-card-item .content.style-3, .service-card-item .content.style-4, .service-card-item .content.style-5 {
  border-top: 1px dashed #cccccc;
  margin-top: 25px;
  padding-top: 22px;
}
.service-card-item .content .title {
  font-size: 20px;
  line-height: 1.7;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #1E1E1E;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.service-card-item .content .title::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 9px;
  left: -30px;
  width: 4px;
  height: 14px;
  background: #1578E9;
}
.service-card-item .content p {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #404040;
  margin-bottom: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.slick-carousel-controls .slick-arrow {
  height: 54px;
  width: 54px;
  line-height: 52px;
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--main-color-two);
  color: var(--main-color-two);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  margin: 0 7px;
}
.slick-carousel-controls .slick-arrow:first-child {
  margin-left: 0;
}
.slick-carousel-controls .slick-arrow:last-child {
  margin-right: 0;
}
.slick-carousel-controls .slick-arrow:hover {
  background: var(--main-color-two);
  color: #fff;
}
.slick-carousel-controls .slick-dots {
  margin: 0;
  padding: 0;
}
.slick-carousel-controls .slick-dots li {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0 3px;
}
.slick-carousel-controls .slick-dots li:first-child {
  margin-left: 0;
}
.slick-carousel-controls .slick-dots li:last-child {
  margin-right: 0;
}
.slick-carousel-controls .slick-dots li button {
  padding: 0;
  border: 1px solid var(--main-color-two);
  height: 26px;
  width: 26px;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 26px;
  color: var(--main-color-two);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slick-carousel-controls .slick-dots li.slick-active button {
  background: var(--main-color-two);
  color: #fff;
}
.slick-carousel-controls.nav-style-top {
  position: absolute;
  top: 0;
  left: 0;
  top: -114px;
  width: 100%;
}
.slick-carousel-controls.nav-style-top .slide-nav {
  position: relative;
}
.slick-carousel-controls.nav-style-top .prev-arrow {
  position: absolute;
  left: 0;
  top: 0;
}
.slick-carousel-controls.nav-style-top .next-arrow {
  position: absolute;
  right: 0;
  top: 0;
}
.slick-carousel-controls .nav-radius-class .slick-arrow {
  border-radius: 50%;
}
.slick-carousel-controls.nav-style-top-right {
  position: absolute;
  top: -114px;
  right: 0;
}
.slick-carousel-controls.slick-carousel-controls-white .slider-controlprogress {
  background-image: -webkit-gradient(linear, left top, right top, from(#000000), to(#000000)) !important;
  background-image: linear-gradient(to right, #000000, #000000) !important;
}
.slick-carousel-controls.slick-carousel-controls-white .slick-arrow {
  border: 2px solid #fff;
  color: #fff;
}
.slick-carousel-controls.slick-carousel-controls-white .slick-arrow:hover {
  background: #fff;
  border: 2px solid #fff;
  color: var(--main-color-two);
}

.slick-carousel-controls .slider-controlprogress {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #C8C8C8;
  background-image: -webkit-gradient(linear, left top, right top, from(#BA1111), to(#BA1111));
  background-image: linear-gradient(to right, #BA1111, #BA1111);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.4s ease-in-out;
  transition: background-size 0.4s ease-in-out;
}
.slick-carousel-controls .slider__label_Progress {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.slick-carousel-controls.slick-carousel-controls-white .slider-controlprogress {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(to right, #fff, #fff);
}

.gallery-member-carousel .thumb-wrap {
  margin: 0 15px;
}
.gallery-member-carousel .thumb-wrap .thumb {
  border-radius: 5px;
  overflow: hidden;
}

.gallery-popup-btn-relative {
  position: relative;
}
.gallery-popup-btn-relative img {
  width: 100%;
}
.gallery-popup-btn-relative:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.gallery-popup-btn-relative .gallery-popup-btn {
  height: 50px;
  width: 50px;
  border: 1px solid #fff;
  display: inline-block;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
.gallery-popup-btn-relative .gallery-popup-btn i {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.gallery-popup-btn-relative .gallery-popup-btn:hover {
  background: var(--main-color-one);
  border: 1px solid var(--main-color-one);
}
.gallery-popup-btn-relative:hover:after {
  visibility: visible;
  opacity: 1;
}
.gallery-popup-btn-relative:hover .gallery-popup-btn {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}
.gallery-popup-btn-relative.mb-30 {
  margin-bottom: 30px;
}

/*Wp  BlockQuote */
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) {
  background-color: #dcecff;
  border-radius: 6px;
  padding: 56px 83px 23px 83px;
  margin-top: 23px;
  margin-bottom: 33px;
  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: "\e911";
  font-family: "icomoon";
  font-weight: 900;
  display: block;
  position: absolute;
  z-index: -1;
  top: 30px;
  left: 45px;
  color: var(--main-color-one);
  font-size: 33px;
  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;
  margin-bottom: 20px;
}
blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) cite {
  color: var(--heading-color) !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: var(--heading-color);
}

.counter-single-item {
  display: inline-block;
}
.counter-single-item .counter-item {
  width: 120px;
  padding: 22px 20px;
  display: inline-block;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  margin: 0 6px;
}
.counter-single-item .counter-item span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: block;
}
.counter-single-item .counter-item h6 {
  font-family: var(--body-font);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

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

.loader span {
  position: absolute;
  width: 250px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-transform: uppercase;
}

.loader span::before,
.loader span::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--main-color-one);
  position: absolute;
  -webkit-animation: load 0.7s infinite alternate ease-in-out;
          animation: load 0.7s infinite alternate ease-in-out;
}

.loader span::before {
  top: 0;
}

.loader span::after {
  bottom: 0;
}

@-webkit-keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}
/*navbar-default*/
.logo-wrapper {
  min-width: 230px;
  padding-right: 70px;
}
.logo-wrapper .site-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar-nav ul li {
  font-size: 16px;
  line-height: 98px;
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--heading-font);
  color: #0D1422;
  font-weight: 500;
  cursor: pointer !important;
}
.navbar-nav ul li:hover {
  color: var(--main-color-one);
}
.navbar-nav ul li + li {
  margin-left: 30px;
}

.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default {
  border-bottom: 1px dashed #dbdbdb;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-nav ul {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .container .navbar-nav ul li.page_item_has_children {
  position: relative;
  padding-right: 18px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-nav ul li.page_item_has_children:before {
  position: absolute;
  right: 0;
  top: 49%;
  content: "+";
  font-weight: 700;
  font-size: 29px;
  font-family: var(--body-font);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all all 0.3s ease-in ease-out 0s;
  transition: all all 0.3s ease-in ease-out 0s;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .container .navbar-nav ul li.page_item_has_children .children {
  position: absolute;
  text-align: left;
  min-width: 246px;
  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 all 0.3s ease-in ease-out 0s;
  transition: all all 0.3s ease-in ease-out 0s;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .container .navbar-nav ul li.page_item_has_children .children li a {
  display: block;
  padding: 12px 17px;
  background-color: #fff;
  white-space: nowrap;
  -webkit-transition: all all 0.3s ease-in ease-out 0s;
  transition: all all 0.3s ease-in ease-out 0s;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .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 .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 .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";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .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 .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 .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 .container .navbar-nav ul li a {
  -webkit-transition: all all 0.3s ease-in ease-out 0s;
  transition: all all 0.3s ease-in ease-out 0s;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-nav ul li:hover > a:before {
  width: 100%;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav {
  text-align: right;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li {
  color: #0D1422;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav 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 .container .navbar-collapse .navbar-nav li:hover {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li:hover:before {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  color: var(--paragraph-color);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  color: #fff;
  background-color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .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 .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > .sub-menu li:hover a {
  background-color: var(--main-color-one);
  color: #fff;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  color: #fff;
  right: 15px;
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.current-menu-item:before {
  color: var(--main-color-one);
}
.navbar.navbar-area.navbar-expand-lg.navigation-style-01.navbar-default .container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

@media only screen and (max-width: 991px) {
  .navbar-area .container {
    position: relative;
    z-index: 0;
    min-height: 80px;
    padding: 20px 10px 23px;
  }
  .navbar-area .container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .navbar-area .container .navbar-brand {
    display: block;
  }
  .navbar-area .container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
  }
  .navbar-area .container .navbar-nav {
    width: 100%;
    display: none;
  }
  .navbar-area .container .navbar-nav.show {
    display: block;
  }
  .navbar-area .container .navbar-nav ul {
    display: block;
    margin-top: 22px;
  }
  .navbar-area .container .navbar-nav ul li {
    display: block;
    text-align: left;
    line-height: 30px;
  }
  .navbar-area .container .navbar-nav ul li:last-child {
    border-bottom: none;
  }
  .navbar-area .container .navbar-nav ul li + li {
    margin-left: 0;
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children:hover > .children {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
  }
  .navbar-area .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: 246px;
    overflow-y: scroll;
    -webkit-transition: all height 500ms ease-out 0s;
    transition: all height 500ms ease-out 0s;
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children .children .children .page_item_has_children:before {
    content: "\f067";
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children .children li {
    padding: 0;
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children .children li.page_item_has_children:hover:before {
    color: #fff;
  }
  .navbar-area .container .navbar-nav ul li.page_item_has_children .children li + li {
    border-top: none;
  }
  .navbar-area .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 (min-width: 992px) {
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    border-top: 1px solid #e2e2e2;
  }
  .navbar-area .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .responsive-mobile-menu .navbar-toggler {
    background-image: none;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li a {
    padding: 10px 0;
    border-top: 1px solid #e2e2e2;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding-left: 20px;
    border-top: 1px solid #e2e2e2;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    border-top: 1px solid #e2e2e2;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    background: transparent !important;
    color: var(--main-color-one) !important;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child a {
    border-top: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover > a {
    background: transparent !important;
    color: var(--main-color-one) !important;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu li a {
    border-top: 1px solid #e2e2e2;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu li a:hover {
    background: transparent !important;
    color: var(--main-color-one) !important;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu li:first-child a {
    border-top: 0;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu li:hover a {
    background: transparent !important;
    color: var(--main-color-one) !important;
  }
  .navbar.navbar-area.navbar-expand-lg.navbar-default .container .navbar-collapse .navbar-nav li:first-child a {
    border-top: 0;
  }

  .navigation-style-02 .nav-right-content {
    display: none;
  }
}
.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 a:hover {
  color: var(--main-color-one);
}

.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: 95%;
  border: 1px solid #e2e2e2;
  background-color: transparent;
  margin-bottom: 30px;
  color: var(--paragraph-color);
}

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

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

.wp-block-latest-comments__comment {
  line-height: 1.6;
}

.wp-block-latest-comments__comment + li {
  border-top: 1px dashed #e1e6ff;
  padding-top: 15px;
}

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

.wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-author {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.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 + li {
  border-top: 1px dashed #e1e6ff;
  padding-top: 15px;
}

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

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

.wp-block-search {
  margin-bottom: 4px;
}

.wp-block-search .wp-block-search__input {
  border: 1px solid #e1e1e1;
  border-radius: 4px 0 0 4px;
  height: 50px;
  padding: 0 18px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  border-radius: 4px;
  border: 1px solid #D5E0EF;
}

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

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

.wp-block-tag-cloud a {
  font-size: 14px !important;
  height: 38px;
  line-height: 36px;
  padding: 0 18px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #D5E0EF;
  text-transform: capitalize;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  margin-right: 8px;
  color: #858585;
  border-radius: 4px;
}

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

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

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

.wp-block-tag-cloud {
  margin-bottom: 0;
}

.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);
  -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: "\e94e";
  font-family: "icomoon";
  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-calendar-nav-prev:hover,
.wp-calendar-nav-next:hover {
  color: var(--main-color-one);
}

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

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

.wp-block-columns.alignwide blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large) {
  padding: 70px 20px 20px 20px;
}

.wp-block-columns.alignwide blockquote:not(.has-light-gray-color):not(.has-very-dark-gray-color):not(.is-style-large):not(.is-style-large):before {
  top: 30px;
  left: 23px;
}

.widget_text .textwidget form select,
.widget_categories form select,
.widget_archive select {
  margin-bottom: 0 !important;
}

.widget_text .textwidget p img {
  margin: 8px 0;
}

.widget_text .textwidget form {
  margin-top: 20px;
}

.blog-single-content-wrap .blog-details-author-meta li a {
  color: #8E8E8E;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}
/*-------------------------------------------
    Blog Grid Item
-------------------------------------------*/
.blog-standard-item-01 {
  position: relative;
  border-bottom: 1px dashed #C9C9C9;
  margin-bottom: 38px;
  padding-bottom: 38px;
}
.blog-standard-item-01 .blog-details-author-meta li {
  margin-top: 0;
}
.blog-standard-item-01.sticky:after {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f08d";
  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: 22px;
  padding-top: 8px;
}
.blog-standard-item-01 .thumbnail img {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  border-radius: 6px;
}
.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: 12px;
}
.blog-standard-item-01 .content .post-meta-wrap .social-icon li {
  padding-left: 0;
}
.blog-standard-item-01 .content .post-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-standard-item-01 .content .post-meta li {
  display: inline-block;
  line-height: 24px;
  font-weight: 400;
  margin-right: 20px;
  padding-left: 0;
  color: #8E8E8E;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.blog-standard-item-01 .content .post-meta li span {
  position: relative;
}
.blog-standard-item-01 .content .post-meta li:after {
  position: absolute;
  right: -14px;
  top: 1px;
  line-height: 1;
  font-weight: 700;
  content: "|";
  font-family: "fontawesome";
}
.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 500ms;
  transition: all 500ms;
  color: #8E8E8E;
}
.blog-standard-item-01 .content .post-meta li:last-child:after {
  display: none;
}
.blog-standard-item-01 .content .title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.blog-standard-item-01 .content .title:hover {
  color: var(--main-color-one);
}
.blog-standard-item-01 .content p {
  font-size: 16px;
  margin-bottom: 0;
}
.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: 20px;
}
.blog-standard-item-01 .content .blog-bottom .btn-wrap .read-btn span {
  margin-top: 13px;
}
.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: "\f08d";
  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: #dcecff;
  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 {
  margin-bottom: 0;
}
.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.style-01 .post-meta li {
  display: inline-block;
  line-height: 24px;
  font-weight: 500;
  margin-right: 20px;
  padding-left: 0;
  color: #8E8E8E;
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li:after {
  position: absolute;
  right: -14px;
  top: -2px;
  font-weight: 700;
  content: "|";
  font-family: "fontawesome";
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li i {
  color: var(--main-color-one);
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li:before {
  display: none;
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li:hover a {
  color: var(--main-color-one);
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li a {
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.blog-standard-item-01.format-quote .quote-post-type.style-01 .post-meta li:last-child:after {
  display: none;
}
.blog-standard-item-01.format-quote .quote-post-type:after {
  position: absolute;
  left: 40px;
  top: 15px;
  content: "\f10d";
  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 500ms;
  transition: all 500ms;
}

.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: 15px;
  position: relative;
  z-index: 0;
  border-radius: 6px;
  overflow: hidden;
}
.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;
  font-weight: 500;
  margin-bottom: 10px;
}
.blog-single-content-wrap .cats a:hover {
  color: var(--main-color-one);
}
.blog-single-content-wrap .subtitle {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 12px;
}
.blog-single-content-wrap .blog-list {
  padding: 0;
  margin-left: 0;
  list-style: none;
  margin-top: 30px;
}
.blog-single-content-wrap .blog-list li {
  padding-left: 44px;
  padding-bottom: 10px;
  position: relative;
}
.blog-single-content-wrap .blog-list li + li {
  margin-top: 10px;
}
.blog-single-content-wrap .blog-list li:before {
  display: none;
}
.blog-single-content-wrap .blog-list li:after {
  content: "\f00c";
  position: absolute;
  color: var(--main-color-one);
  left: 0;
  top: -4px;
  width: 30px;
  font-weight: 700;
  font-family: "fontawesome";
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  height: 30px;
  background: #dcecff;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
}
.blog-single-content-wrap .wp-block-columns {
  padding-top: 20px;
}
.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: 20px;
  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 a {
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.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-single-content-wrap .social-icon {
  margin: 0;
  padding: 0;
}
.blog-single-content-wrap .social-icon li {
  list-style: none !important;
  display: inline-block;
  margin-top: 7px;
}
.blog-single-content-wrap .social-icon li:before {
  display: none;
}
.blog-single-content-wrap .social-icon li a:hover {
  color: var(--main-color-one);
}

.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: 15px;
  border-top: 1px dashed #CECECE;
  padding-top: 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;
  min-width: 60px;
  line-height: 40px;
}
.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;
  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: 4px;
  font-size: 14px !important;
  background-color: #E2E2E2;
}
.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 all 0.3s ease-in ease-out 0s;
  transition: all all 0.3s ease-in ease-out 0s;
  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-posts {
  margin-top: 65px;
}
.product-related-posts .product-related-title {
  margin-bottom: 40px;
  font-family: var(--body-font);
}

.blog-details-author-meta {
  margin: 0;
  padding: 0;
}
.blog-details-author-meta li {
  list-style: none;
  display: inline-block;
  padding-right: 17px;
  margin-right: 8px;
  padding-left: 0 !important;
  font-family: var(--body-font);
  font-weight: 400;
  color: #8E8E8E;
  position: relative;
}
.blog-details-author-meta li a {
  color: #8E8E8E;
}
.blog-details-author-meta li a:hover {
  color: var(--main-color-one);
}
.blog-details-author-meta li:after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
}
.blog-details-author-meta li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.blog-details-author-meta li:last-child:after {
  display: none;
}
.blog-details-author-meta li i {
  font-size: 18px;
  margin-top: 0;
  float: left;
  margin-right: 8px;
  font-weight: 600;
}
.blog-details-author-meta li:before {
  display: none !important;
}
.blog-details-author-meta li:last-child {
  padding-right: 0;
}
.blog-details-author-meta li .cats a {
  font-weight: 400;
}

/*--------------------------------------------------------------
## 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: 50%;
}
.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: 65px;
  word-break: break-word;
  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;
}
.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: 35px;
  padding-top: 4px;
  font-weight: 900;
}
.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: #438FF9;
}
.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);
}
.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);
}
.single-post-navigation .title-with-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.single-post-navigation .title-with-link span {
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
  display: inline-block;
  height: 58px;
  width: 58px;
  border-radius: 4px;
  line-height: 56px;
  background: var(--main-color-one);
  color: #fff;
  text-align: center;
  font-size: 35px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.single-post-navigation .title-with-link span:hover {
  background: var(--heading-color);
}

/*--------------------------------------------------------------
## 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 12px;
  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 12px;
}
.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: 12px;
}

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;
  margin: 0 10px;
}
.blog-pagination ul li:first-child {
  margin-left: 0;
}
.blog-pagination ul li:last-child {
  margin-right: 0;
}
.blog-pagination ul li:before {
  display: none;
}
.blog-pagination ul li .prev,
.blog-pagination ul li .next {
  height: auto;
  width: auto;
  border: 0;
  background: transparent !important;
  text-transform: uppercase;
}
.blog-pagination ul li .prev:hover,
.blog-pagination ul li .next:hover {
  height: auto;
  width: auto;
  border: 0;
  background: transparent !important;
  color: var(--main-color-one);
}
.blog-pagination ul li a {
  display: block;
  border: 1px solid #555555;
  height: 42px;
  width: 42px;
  line-height: 42px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #555555;
}
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}
.blog-pagination ul li span {
  display: block;
  border: 1px solid #555555;
  height: 42px;
  width: 42px;
  line-height: 42px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  color: #555555;
}
.blog-pagination ul li span.current {
  background-color: var(--main-color-one);
  border: 1px solid var(--main-color-one);
  color: #fff;
}