/* CSS Index
-----------------------------------
-----------------------------------
1. Root
2. Base
3. Form
4. Header
5. Page Title Bar
6. Blog
  6a. Blog Box
  6b. Single Blog
7. Event
  7a. Event Box
  7b. Single Event
8. Sidebar
  8a. Category Widget
  8b. Search Widget
  8c. Recent Posts Widget
  8d. Tagclound Widget
9. Footer
10. Pagination
11. Social Icons
12. Hover Effects
13. Info Box
14. Contact Info Boxes
15. Vertical Tabs
16. Horizontal Accordion
17. Button
  17a. Video Button
18. Section Title
19. Banners
20. Contant Boxes
21. List Boxes
22. Testimonials
23. Counter
24. Pricing
25. Book
26. UIKIT Reset
27. Preloader
-----------------------------------
-----------------------------------*/
/* ---------------------------------------
* 1. Root
------------------------------------------ */
:root {
  --sa-primary-color: #E74C3C;
  --sa-black-color: #000000;
  --sa-white-color: #ffffff;
  --sa-gray-900: #101010;
  --sa-gray-800: #1A1A1A;
  --sa-gray-700: #252525;
  --sa-gray-600: #5A5A5A;
  --sa-gray-500: #878787;
  --sa-gray-400: #A7A7A7;
  --sa-gray-300: #D7D7D7;
  --sa-gray-200: #E7E7E7;
  --sa-gray-100: #F4F4F4;
  --sa-body-font-family: "Inter", sans-serif;
  --sa-heading-font-family: "Lora", serif;
}

/* ---------------------------------------
* 2. Base
------------------------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sa-body-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--sa-gray-600);
  text-align: left;
  background-color: var(--sa-white-color);
  overflow-x: hidden !important;
}

hr {
  color: inherit;
  margin: 15px 0;
}

p {
  margin-top: 0;
  margin-bottom: 25px;
}

p:last-child {
  margin-bottom: 0;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--sa-heading-font-family);
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sa-gray-800);
}

h1 a, .h1 a,
h2 a, .h2 a,
h3 a, .h3 a,
h4 a, .h4 a,
h5 a, .h5 a,
h6 a, .h6 a {
  color: var(--sa-gray-800);
}

h1 a:hover, .h1 a:hover,
h2 a:hover, .h2 a:hover,
h3 a:hover, .h3 a:hover,
h4 a:hover, .h4 a:hover,
h5 a:hover, .h5 a:hover,
h6 a:hover, .h6 a:hover {
  color: var(--sa-primary-color);
}

h1, .h1 {
  font-size: calc(30px + 1vw);
}

h2, .h2 {
  font-size: calc(26px + 0.8333vw);
}

h3, .h3 {
  font-size: calc(22px + 0.5vw);
}

h4, .h4 {
  font-size: calc(20px + 0.1667vw);
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

img {
  border: 0 none;
  max-width: 100%;
  width: auto;
  vertical-align: top;
  height: auto;
}

address {
  margin-bottom: 25px;
}

ol,
ul {
  padding-left: 25px;
}

ol,
ul,
dl {
  margin-bottom: 25px;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 12px;
}

blockquote {
  margin: 0 0 25px;
  font-size: 18px;
  color: var(--sa-gray-800);
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  position: relative;
  margin-left: 50px;
}
blockquote cite {
  display: block;
  font-style: normal;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--sa-gray-600);
}

blockquote::before {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f10d";
  display: block;
  left: -50px;
  font-size: 32px;
  line-height: 32px;
  color: var(--sa-primary-color);
}

b,
strong {
  font-weight: 700;
}

small, .small {
  font-size: 14px;
}

mark, .mark {
  padding: 8px;
  background-color: yellow;
}

pre {
  margin-bottom: 25px;
  font-size: 15px;
  color: inherit;
}

code {
  font-size: 14px;
  color: inherit;
}

kbd {
  padding: 5px 10px;
  font-size: 14px;
  color: var(--sa-white-color);
  background-color: var(--sa-gray-800);
  border-radius: 0;
}

figure {
  margin: 0 0 25px;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--sa-gray-800);
}

a {
  color: var(--sa-primary-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sa-gray-900);
}

::-moz-selection {
  background: var(--sa-black-color);
  color: var(--sa-white-color);
  text-shadow: none;
}

::selection {
  background: var(--sa-black-color);
  color: var(--sa-white-color);
  text-shadow: none;
}

:focus {
  outline-color: transparent !important;
  outline-style: none !important;
}

:active,
:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

button {
  border: 0;
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 42px;
  }
  h2, .h2 {
    font-size: 36px;
  }
  h3, .h3 {
    font-size: 28px;
  }
  h4, .h4 {
    font-size: 22px;
  }
}
/* ---------------------------------------
* 3. Form
------------------------------------------ */
input,
textarea,
button {
  font-family: inherit !important;
  border-radius: 4px;
  margin: 0 !important;
}

button {
  cursor: pointer;
}

.form-group {
  position: relative;
}

.form-group .input-icon {
  position: absolute;
  font-size: 16px;
  line-height: 16px;
  top: 17px;
  left: 15px;
}

.form-group .form-input {
  line-height: 24px;
  padding: 13px 25px 13px 45px;
  background-color: transparent;
  border: 1px solid var(--sa-gray-300);
  width: 100%;
  color: var(--sa-gray-600);
  font-size: 15px;
}

.form-group button {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.form-group ::-webkit-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
}

.form-group ::-moz-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
}

.form-group :-ms-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
}

.form-group ::-ms-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
}

.form-group ::placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
}

.form-group .input-icon-white {
  color: var(--sa-white-color);
}

.form-group .form-input.input-white {
  color: var(--sa-white-color);
  border-color: 1px solid var(--sa-white-color);
}

.form-group .input-white::-webkit-input-placeholder {
  color: var(--sa-white-color) !important;
}

.form-group .input-white::-moz-placeholder {
  color: var(--sa-white-color) !important;
}

.form-group .input-white:-ms-input-placeholder {
  color: var(--sa-white-color) !important;
}

.form-group .input-white::-ms-input-placeholder {
  color: var(--sa-white-color) !important;
}

.form-group .input-white::placeholder {
  color: var(--sa-white-color) !important;
}

.subscription-cont {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.subscription-cont .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-right: 25px;
}

.subscription-cont .form-group .input-icon {
  left: 0;
  top: 23px;
}

.subscription-cont .form-input {
  font-size: 16px;
  line-height: 24px;
  padding: 18px 0 18px 35px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--sa-gray-300);
  border-radius: 0;
  width: 100%;
  color: var(--sa-gray-600);
}

.subscription-cont .form-input::-webkit-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-cont .form-input::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-cont .form-input:-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-cont .form-input::-ms-input-placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-cont .form-input::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------------------------------------
* 4. Header
------------------------------------------ */
.header-cont {
  position: relative;
}

.header {
  z-index: 2000;
  background-color: var(--sa-white-color);
}

.header .header-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;
  height: 80px;
}

.header-logo img {
  max-height: 40px;
  width: auto;
}

.header-inner-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-inner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav ul,
.header-nav ul ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav ul li {
  position: relative;
}

.header-nav > ul > li {
  display: inline-block;
  margin-left: 30px;
}

.header-nav > ul > li > a {
  line-height: 80px;
  font-weight: 600;
  color: var(--sa-gray-700);
  position: relative;
}

.header-nav > ul > li > a::before {
  position: absolute;
  left: 50%;
  bottom: -7px;
  height: 2px;
  width: 0%;
  background-color: var(--sa-primary-color);
  content: "";
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header-nav > ul > li > a:hover,
.header-nav > ul > li:hover > a,
.header-nav > ul > li > a.active,
.header-nav .sub-menu a.active,
.header-nav .sub-menu > li:hover > a {
  color: var(--sa-primary-color);
}

.header-nav > ul > li > a:hover::before,
.header-nav > ul > li > a.active::before,
.header-nav > ul > li:hover > a::before {
  left: 0;
  width: 100%;
}

.header-nav .sub-menu {
  z-index: 2000;
  position: absolute;
  top: 80px;
  left: -30px;
  background-color: var(--sa-gray-800);
  width: 250px;
  padding: 20px 30px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.header-nav .sub-menu .sub-menu {
  z-index: 2000;
  top: -20px;
  left: 100%;
}

.header-nav .sub-menu li {
  padding: 10px 0;
  font-size: 15px;
}

.header-nav .sub-menu li a {
  display: block;
  color: var(--sa-white-color);
  line-height: 1.3;
}

.header-nav .sub-menu li a:hover {
  color: var(--sa-primary-color);
  padding-left: 5px;
}

.header-nav li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-nav > ul > li.has-dropdown > a::after,
.header-nav .sub-menu li.has-dropdown > a::after {
  font-family: "FontAwesome";
  font-size: 12px;
  line-height: 12px;
  padding-left: 4px;
}

.header-nav > ul > li.has-dropdown > a::after {
  content: "\f107";
}

.header-nav .sub-menu li.has-dropdown > a::after {
  content: "\f054";
}

.header.uk-sticky.uk-active {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.08);
}

.header .theme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu-overlay,
.mobile-menu-sidebar,
.mobile-menu-trigger {
  display: none;
}

@media (max-width: 1199.98px) {
  .header-nav,
  .header-social,
  .header-btn {
    display: none;
  }
  .mobile-menu-trigger {
    display: block;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--sa-gray-800);
  }
  .mobile-menu-trigger:hover {
    color: var(--sa-primary-color);
  }
  .mobile-menu-overlay {
    display: block;
    z-index: 2500;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
  }
  .mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .mobile-menu-sidebar {
    display: block;
    height: 100%;
    width: 300px;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--sa-gray-900);
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
  }
  .mobile-menu-sidebar.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .mobile-menu-sidebar .mobile-menu-sidebar-header {
    height: 80px;
    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: 0 20px;
  }
  .mobile-menu-sidebar .mobile-menu-sidebar-header .mobile-logo,
  .mobile-menu-sidebar .mobile-menu-sidebar-header .mobile-close {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .mobile-menu-sidebar .mobile-menu-sidebar-header .mobile-logo img {
    height: 35px;
    width: auto;
  }
  .mobile-menu-sidebar .mobile-menu-sidebar-header .mobile-close a {
    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;
    width: 35px;
    height: 35px;
    border: 2px solid var(--sa-white-color);
    color: var(--sa-white-color);
    font-size: 20px;
    border-radius: 4px;
  }
  .mobile-menu-sidebar .mobile-menu-sidebar-header .mobile-close a:hover {
    border-radius: 50%;
  }
  .mobile-nav {
    border-top: 1px solid var(--sa-gray-800);
  }
  .mobile-nav .mobile-menu,
  .mobile-nav .mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-nav .mobile-menu a {
    display: block;
    color: var(--sa-white-color);
    padding: 11px 20px;
    font-size: 14px;
    line-height: 18px;
    border-bottom: 1px solid var(--sa-gray-800);
  }
  .mobile-nav .mobile-menu a.active,
  .mobile-nav .mobile-menu a:hover {
    color: var(--sa-primary-color);
  }
  .mobile-nav .mobile-menu li {
    position: relative;
    display: block;
  }
  .mobile-nav .mobile-menu .menu-caret-mobile {
    position: absolute;
    top: 5px;
    right: 20px;
    background-color: var(--sa-gray-800);
    color: var(--sa-white-color);
    width: 30px;
    height: 30px;
    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;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
  }
  .mobile-nav .mobile-menu .menu-caret-mobile i {
    font-size: 12px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
  .mobile-nav .mobile-menu li.has-dropdown > a {
    padding-right: 60px;
  }
  .mobile-nav .mobile-menu .sub-menu {
    display: none;
  }
  .rotate-caret {
    display: block;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
/* ---------------------------------------
* 5. Page Title Bar
------------------------------------------ */
.page-titlebar-cont {
  position: relative;
  background-color: var(--sa-gray-900);
  background-image: url("../image/page-titlebar-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

.page-titlebar-cont::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.page-titlebar-cont .page-titlebar-inner {
  z-index: 2;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.page-titlebar-cont .page-titlebar-inner .page-title {
  font-size: calc(30px + 1.5vw);
}

.page-titlebar-cont .page-titlebar-inner .breadcrumbs ul {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  text-align: center;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
}

.page-titlebar-cont .page-titlebar-inner .breadcrumbs ul li {
  color: var(--sa-white-color);
}

.page-titlebar-cont .page-titlebar-inner .breadcrumbs ul li a {
  color: var(--sa-white-color);
}

.page-titlebar-cont .page-titlebar-inner .breadcrumbs ul li a::after {
  font-family: "FontAwesome";
  content: "\f178";
  padding-left: 15px;
  font-size: 12px;
}

@media (min-width: 1200px) {
  .page-titlebar-cont .page-titlebar-inner .page-title {
    font-size: 48px;
  }
}
/* ---------------------------------------
* 6. Blog
------------------------------------------ */
/* 6a. Blog Box
---------------------------*/
.blog-cont {
  background-color: var(--sa-white-color);
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
}

.blog-cont .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
}

.blog-cont .blog-meta span::after {
  content: "/";
  padding-left: 15px;
}

.blog-cont .blog-meta span:last-child::after {
  content: "";
  padding-left: 0;
}

.blog-cont .blog-img {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.blog-cont .blog-img img {
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.blog-cont:hover .blog-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-cont .blog-cat-list {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-cont .blog-cat-list a {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
  padding: 10px 15px;
  line-height: 20px;
  border-bottom-right-radius: 4px;
}

.blog-cont .blog-cat-list a::before {
  font-family: "FontAwesome";
  content: "\f02e";
  padding-right: 5px;
}

.blog-cont .blog-cat-list a:hover {
  color: var(--sa-white-color);
  background-color: var(--sa-gray-900);
}

/* 6b. Single Blog
---------------------------*/
.blog-single .blog-img img {
  border-radius: 8px;
}

.blog-single .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
  border-bottom: 1px solid var(--sa-gray-300);
}

.blog-single .blog-meta span::after {
  content: "/";
  padding-left: 15px;
}

.blog-single .blog-meta span:last-child::after {
  content: "";
  padding-left: 0;
}

.blog-single .tag-cont {
  padding-top: 25px;
  border-top: 1px solid var(--sa-gray-300);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-single .tag-cont h5 {
  margin: 0;
}
.blog-single .tag-cont .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.blog-single .tag-cont .tagcloud a {
  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;
  font-size: 12px;
  line-height: 1;
  color: var(--sa-gray-700);
  background-color: var(--sa-gray-200);
  padding: 10px 15px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-single .tag-cont .tagcloud a:hover {
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
}

.blog-single .author-cont {
  padding: 40px 25px;
  border-radius: 8px;
  background-color: var(--sa-gray-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.blog-single .author-cont .author-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blog-single .author-cont .author-img img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}
.blog-single .author-cont .author-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.blog-single .author-cont .author-meta .theme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-single .prev-next-cont .prev-post,
.blog-single .prev-next-cont .next-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-single .prev-next-cont .prev-post .prev-next-img,
.blog-single .prev-next-cont .next-post .prev-next-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: 120px;
}
.blog-single .prev-next-cont .prev-post .prev-next-img img,
.blog-single .prev-next-cont .next-post .prev-next-img img {
  border-radius: 4px;
}
.blog-single .prev-next-cont .prev-post h5,
.blog-single .prev-next-cont .next-post h5 {
  margin-bottom: 0;
}

.blog-single .prev-next-cont .next-post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.blog-single .comment-cont .comment-list, .blog-single .comment-cont .comment-list ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-single .comment-cont .comment-list ol {
  margin-left: 25px;
}
.blog-single .comment-cont .comment-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.blog-single .comment-cont .comment-box .comment-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blog-single .comment-cont .comment-box .comment-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.blog-single .comment-cont .comment-box .comment-info .comment-links i {
  padding-right: 4px;
}

@media (max-width: 640.98px) {
  .blog-single .author-cont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog-single .author-cont .author-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* ---------------------------------------
* 7. Event
------------------------------------------ */
/* 7a. Event Box
---------------------------*/
.event-cont {
  background-color: var(--sa-white-color);
  border-radius: 8px;
  border: 1px solid var(--sa-gray-200);
}

.event-cont .event-img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.event-cont .event-date {
  display: block;
}

.read-more-link {
  display: block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.read-more-link i {
  display: inline-block;
  padding-left: 2px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.read-more-link:hover i {
  padding-left: 6px;
}

/* 7b. Single Event
---------------------------*/
.event-single .event-img img {
  border-radius: 8px;
}

.event-info-cont {
  padding: 40px 25px;
  background-color: var(--sa-gray-100);
  border-radius: 8px;
  border-top: 5px solid var(--sa-primary-color);
}

.event-info-cont .event-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--sa-white-color);
  padding: 10px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  border-radius: 4px;
}
.event-info-cont .event-info-item:last-child {
  margin-bottom: 0;
}
.event-info-cont .event-info-item .item-title {
  padding-right: 20px;
}
.event-info-cont .event-info-item .item-details {
  font-weight: 700;
  text-align: right;
}

/* ---------------------------------------
* 8. Sidebar
------------------------------------------ */
.theme-sidebar-cont .theme-sidebar-widget {
  margin-bottom: 60px;
  font-size: 15px;
}
.theme-sidebar-cont .theme-sidebar-widget a {
  color: var(--sa-gray-600);
}
.theme-sidebar-cont .theme-sidebar-widget a:hover {
  color: var(--sa-primary-color);
}
.theme-sidebar-cont .theme-sidebar-widget h1 a, .theme-sidebar-cont .theme-sidebar-widget .h1 a,
.theme-sidebar-cont .theme-sidebar-widget h2 a, .theme-sidebar-cont .theme-sidebar-widget .h2 a,
.theme-sidebar-cont .theme-sidebar-widget h3 a, .theme-sidebar-cont .theme-sidebar-widget .h3 a,
.theme-sidebar-cont .theme-sidebar-widget h4 a, .theme-sidebar-cont .theme-sidebar-widget .h4 a,
.theme-sidebar-cont .theme-sidebar-widget h5 a, .theme-sidebar-cont .theme-sidebar-widget .h5 a,
.theme-sidebar-cont .theme-sidebar-widget h6 a, .theme-sidebar-cont .theme-sidebar-widget .h6 a {
  color: var(--sa-gray-800);
}

.theme-sidebar-cont .theme-sidebar-widget:last-child {
  margin-bottom: 0;
}

.theme-sidebar-cont .theme-sidebar-widget {
  padding: 40px 25px;
  background-color: var(--sa-gray-100);
  border-radius: 8px;
}

.theme-sidebar-cont .theme-sidebar-widget .widget-title {
  margin-bottom: 30px;
}

.theme-sidebar-cont .theme-sidebar-widget .widget-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background-color: var(--sa-primary-color);
  margin-top: 15px;
}

/* 8a. Category Widget
---------------------------*/
.category-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-widget ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--sa-white-color);
  padding: 10px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  border-radius: 4px;
}
.category-widget ul li::after {
  font-family: "FontAwesome";
  content: "\f178";
  font-size: 12px;
  color: var(--sa-primary-color);
}
.category-widget ul li:last-child {
  margin-bottom: 0;
}

/* 8b. Search Widget
---------------------------*/
.search-widget-form {
  position: relative;
}
.search-widget-form .search-form-input {
  line-height: 24px;
  padding: 13px 50px 13px 25px;
  background-color: var(--sa-white-color);
  border: 1px solid var(--sa-gray-300);
  width: 100%;
  color: var(--sa-gray-600);
  font-size: 15px;
}
.search-widget-form .search-form-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  color: var(--sa-gray-800);
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.search-widget-form ::-webkit-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}
.search-widget-form ::-moz-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}
.search-widget-form :-ms-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}
.search-widget-form ::-ms-input-placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}
.search-widget-form ::placeholder {
  color: var(--sa-gray-500) !important;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
}

/* 8c. Recent Posts Widget
---------------------------*/
.recent-posts-widget .post-cont {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.recent-posts-widget .post-cont:last-child {
  margin-bottom: 0;
}
.recent-posts-widget .post-cont .post-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recent-posts-widget .post-cont .post-img img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}

/* 8d. Tagclound Widget
---------------------------*/
.tag-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.tag-widget a {
  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;
  font-size: 12px;
  line-height: 1;
  color: var(--sa-gray-700);
  background-color: var(--sa-gray-200);
  padding: 10px 15px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-widget a:hover {
  background-color: var(--sa-primary-color) !important;
  color: var(--sa-white-color) !important;
}

/* ---------------------------------------
* 9. Footer
------------------------------------------ */
.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
}

.footer-nav ul li a {
  color: var(--sa-white-color);
}

.footer-nav ul li a:hover {
  color: var(--sa-primary-color);
}

#back-to-top {
  z-index: 2500;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 60px;
  width: 60px;
  display: none;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
}

#back-to-top-value {
  display: block;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  background-color: var(--sa-white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--sa-primary-color);
}

/* ---------------------------------------
* 10. Pagination
------------------------------------------ */
.theme-pagination {
  display: inline-block;
  background-color: var(--sa-gray-200);
  border-radius: 4px;
  padding: 19px 20px;
}
.theme-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.theme-pagination ul li {
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}
.theme-pagination ul li a {
  color: var(--sa-gray-800);
}
.theme-pagination ul li a:hover {
  color: var(--sa-primary-color);
}
.theme-pagination ul li.current a {
  pointer-events: none;
  color: var(--sa-primary-color);
}

/* ---------------------------------------
* 11. Social Icons
------------------------------------------ */
.theme-social ul,
.theme-social-boxed ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.theme-social ul {
  gap: 20px;
  font-size: 16px;
}

.theme-social-boxed ul {
  gap: 10px;
  font-size: 17px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.theme-social.color-primary a {
  color: var(--sa-primary-color);
}

.theme-social.color-primary a:hover {
  color: var(--sa-gray-800);
}

.theme-social.color-dark a {
  color: var(--sa-gray-800);
}

.theme-social.color-dark a:hover {
  color: var(--sa-primary-color);
}

.theme-social.color-light a {
  color: var(--sa-gray-500);
}

.theme-social.color-light a:hover {
  color: var(--sa-primary-color);
}

.theme-social.color-white a {
  color: var(--sa-white-color);
}

.theme-social.color-white a:hover {
  color: var(--sa-primary-color);
}

.theme-social-boxed ul li a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}

.theme-social-boxed.color-primary ul li a {
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

.theme-social-boxed.color-primary ul li a:hover {
  color: var(--sa-white-color);
  background-color: var(--sa-gray-900);
}

/* ---------------------------------------
* 12. Hover Effects
------------------------------------------ */
.image-hover-one .img-box {
  position: relative;
  overflow: hidden;
}

.image-hover-one .v-bar {
  position: absolute;
  content: "";
  width: 25%;
  height: 100%;
  left: 0;
  bottom: -50%;
  background-color: var(--sa-primary-color);
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.image-hover-one .v-bar.bar-2 {
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  left: 25%;
  -webkit-transform: translateY(40%);
      -ms-transform: translateY(40%);
          transform: translateY(40%);
}

.image-hover-one .v-bar.bar-3 {
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  left: 50%;
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
}

.image-hover-one .v-bar.bar-4 {
  -webkit-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  left: 75%;
  -webkit-transform: translateY(30%);
      -ms-transform: translateY(30%);
          transform: translateY(30%);
}

.image-hover-one:hover .img-box .v-bar {
  opacity: 0.6;
  bottom: 0;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.image-zoom-hover {
  position: relative;
  overflow: hidden;
}
.image-zoom-hover img {
  border-radius: 8px;
}

.image-zoom-hover::after {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  background-color: var(--sa-primary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.image-zoom-hover:hover::after {
  opacity: 0.8;
}

.image-zoom-hover .image-hover-icon {
  position: absolute;
  top: 0;
  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;
  width: 100%;
  height: 100%;
  font-size: 48px;
  line-height: 48px;
  z-index: 3;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.image-zoom-hover:hover .image-hover-icon {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  color: var(--sa-white-color);
}

/* ---------------------------------------
* 13. Info Box
------------------------------------------ */
.info-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

/* ---------------------------------------
* 14. Contact Info Boxes
------------------------------------------ */
.contact-info-boxes .contact-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-info-boxes .contact-info-box:last-child {
  margin-bottom: 0;
}
.contact-info-boxes .contact-info-box .contact-info-box-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--sa-gray-900);
  color: var(--sa-white-color);
  font-size: 15px;
}

.contact-info-box-two {
  padding: 60px 25px 40px;
  background-color: var(--sa-gray-900);
  position: relative;
  margin-top: 40px;
  text-align: center;
  border-radius: 8px;
}

.contact-info-box-two .contact-info-icon {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -40px;
  display: block;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 24px;
  border-radius: 50%;
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

/* ---------------------------------------
* 15. Vertical Tabs
------------------------------------------ */
.vertical-tab-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.vertical-tab-list li {
  margin-bottom: 15px;
}
.vertical-tab-list li a {
  border-radius: 8px;
  border: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 15px 25px;
  font-size: 18px;
  color: var(--sa-gray-800);
  background-color: var(--sa-white-color);
  border: 2px solid var(--sa-gray-200);
  font-family: var(--sa-heading-font-family);
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.vertical-tab-list li a:hover,
.vertical-tab-list li.uk-active a {
  border-color: var(--sa-primary-color);
  color: var(--sa-primary-color);
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

@media (max-width: 959.98px) {
  .vertical-tab-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
/* ---------------------------------------
* 16. Horizontal Accordion
------------------------------------------ */
.horizontal-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.horizontal-accordion .h-acc-item {
  position: relative;
  background-color: var(--sa-white-color);
  border: 2px solid var(--sa-gray-200);
  background-size: cover;
  background-position: 10000px;
  background-repeat: no-repeat;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  height: 60vh;
  cursor: pointer;
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  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;
  border-radius: 8px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.horizontal-accordion .h-acc-item .h-acc-title {
  font-size: 18px;
  display: block;
}

.horizontal-accordion .h-acc-item.active {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  background-position: center;
  border-color: var(--sa-primary-color);
}

.horizontal-accordion .h-acc-item.active .h-acc-title {
  display: none;
}

.horizontal-accordion .h-acc-item .h-acc-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  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;
  opacity: 0;
  visibility: hidden;
}

.horizontal-accordion .h-acc-item .h-acc-overlay .h-acc-zoom-link {
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
  font-size: 32px;
  line-height: 32px;
  display: block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1.8s ease;
  -o-transition: all 1.8s ease;
  transition: all 1.8s ease;
}

.horizontal-accordion .h-acc-item.active .h-acc-overlay,
.horizontal-accordion .h-acc-item.active .h-acc-overlay .h-acc-zoom-link {
  opacity: 1;
  visibility: visible;
}

.horizontal-accordion .h-acc-item.active .h-acc-overlay .h-acc-zoom-link {
  -webkit-transition: all 1.8s ease;
  -o-transition: all 1.8s ease;
  transition: all 1.8s ease;
}

@media (max-width: 959.98px) {
  .horizontal-accordion {
    display: block;
  }
  .horizontal-accordion .h-acc-item {
    display: block;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    height: auto;
    margin-bottom: 20px;
  }
  .horizontal-accordion .h-acc-item:last-child {
    margin-bottom: 0;
  }
  .horizontal-accordion .h-acc-item h4 {
    padding: 25px;
    margin: 0;
  }
  .horizontal-accordion .h-acc-item.active {
    height: 60vh;
  }
}
/* ---------------------------------------
* 17. Button
------------------------------------------ */
.theme-btn {
  z-index: 10;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.theme-btn::before,
.theme-btn::after {
  content: "";
  height: 50%;
  width: 0;
  position: absolute;
  -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.theme-btn::before,
.theme-btn::after,
.theme-btn:hover::before,
.theme-btn:hover::after {
  z-index: 20;
}

.theme-btn::before {
  top: 0;
  left: 0;
  right: auto;
}

.theme-btn::after {
  bottom: 0;
  right: 0;
  left: auto;
}

.theme-btn:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}

.theme-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.theme-btn .theme-btn-text {
  position: relative;
  z-index: 50;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-btn-lg {
  font-size: 16px;
  line-height: 24px;
  padding: 18px 40px;
}

.theme-btn-md {
  font-size: 15px;
  line-height: 24px;
  padding: 13px 33px;
}

.theme-btn-sm {
  font-size: 14px;
  line-height: 20px;
  padding: 10px 27px;
}

.theme-btn-primary {
  color: var(--sa-white-color) !important;
  background-color: var(--sa-primary-color);
}

.theme-btn-primary:active,
.theme-btn-primary:visited,
.theme-btn-primary:focus {
  color: var(--sa-white-color);
}

.theme-btn-primary::before,
.theme-btn-primary::after {
  background-color: var(--sa-gray-800);
}

.theme-btn-primary:hover .theme-btn-text,
.theme-btn-primary:focus .theme-btn-text {
  color: var(--sa-white-color);
}

.theme-btn-primary:hover,
.theme-btn-primary:focus {
  color: var(--sa-white-color);
  background-color: var(--sa-gray-800);
}

.theme-btn-dark {
  color: var(--sa-white-color) !important;
  background-color: var(--sa-gray-900);
}

.theme-btn-dark:active,
.theme-btn-dark:visited,
.theme-btn-dark:focus {
  color: var(--sa-white-color);
}

.theme-btn-dark::before,
.theme-btn-dark::after {
  background-color: var(--sa-primary-color);
}

.theme-btn-dark:hover .theme-btn-text,
.theme-btn-dark:focus .theme-btn-text {
  color: var(--sa-white-color);
}

.theme-btn-dark:hover,
.theme-btn-dark:focus {
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

.theme-btn-white {
  color: var(--sa-gray-800);
  background-color: var(--sa-white-color);
}

.theme-btn-white:active,
.theme-btn-white:visited,
.theme-btn-white:focus {
  color: var(--sa-gray-800);
}

.theme-btn-white::before,
.theme-btn-white::after {
  background-color: var(--sa-primary-color);
}

.theme-btn-white:hover .theme-btn-text,
.theme-btn-white:focus .theme-btn-text {
  color: var(--sa-white-color);
}

.theme-btn-white:hover,
.theme-btn-white:focus {
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

.theme-btn-fullwidth {
  width: 100%;
}

/* 17a. Video Button
---------------------------*/
.video-btn {
  display: inline-block;
}

.video-btn-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-btn .video-btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 60px;
  height: 60px;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 15px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-btn .video-btn-icon i {
  padding-left: 4px;
}

.video-btn .video-btn-text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.video-btn.video-btn-white .video-btn-icon {
  background-color: var(--sa-white-color);
  color: var(--sa-primary-color);
}

.video-btn.video-btn-white .video-btn-text {
  color: var(--sa-white-color);
}

.video-btn.video-btn-white:hover .video-btn-icon {
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
}

.video-btn.video-btn-white:hover .video-btn-text {
  color: var(--sa-primary-color);
}

.video-btn.video-btn-dark .video-btn-icon {
  background-color: var(--sa-gray-800);
  color: var(--sa-primary-color);
}

.video-btn.video-btn-dark .video-btn-text {
  color: var(--sa-gray-800);
}

.video-btn.video-btn-dark:hover .video-btn-icon {
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
}

.video-btn.video-btn-dark:hover .video-btn-text {
  color: var(--sa-primary-color);
}

/* ---------------------------------------
* 18. Section Title
------------------------------------------ */
.section-title-centered {
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-title-cont .section-tag-line,
.sub-section-title-cont .tag-line {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title-cont .section-tag-line {
  position: relative;
  display: inline-block;
  color: var(--sa-primary-color);
  margin-right: 49px;
}

.section-title-centered .section-tag-line {
  margin-left: 49px;
}

.section-title-cont .section-tag-line .tag-before,
.section-title-cont .section-tag-line .tag-after {
  position: absolute;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--sa-primary-color);
}

.section-title-cont .section-tag-line .tag-before {
  left: -25px;
}

.section-title-cont .section-tag-line .tag-after {
  right: -25px;
}

.section-title-cont .section-tag-line .tag-before::before,
.section-title-cont .section-tag-line .tag-after::before {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 2px;
  background: var(--sa-primary-color);
  content: "";
}

.section-title-cont .section-tag-line .tag-before::before {
  left: -25px;
}

.section-title-cont .section-tag-line .tag-after::before {
  right: -25px;
}

.section-title-cont .section-title {
  font-size: calc(30px + 1.5vw);
  margin-bottom: 0;
}

.sub-section-title-cont .section-title,
.call-to-action .action-title {
  font-size: calc(26px + 0.8333vw);
}

.call-to-action .action-title {
  margin-bottom: 0;
}

.sub-section-title-cont .bottom-icon .icon-circle,
.sub-section-title-cont .bottom-icon .icon-circle-left {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--sa-primary-color);
}

.sub-section-title-cont .bottom-icon .icon-circle {
  margin-left: 24px;
  margin-right: 24px;
}

.sub-section-title-cont .bottom-icon .icon-circle-left {
  position: relative;
  display: inline-block;
  margin-right: 24px;
}

.sub-section-title-cont .bottom-icon .icon-circle-left::after,
.sub-section-title-cont .bottom-icon .icon-circle::before,
.sub-section-title-cont .bottom-icon .icon-circle::after {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 2px;
  background: var(--sa-primary-color);
  content: "";
}

.sub-section-title-cont .bottom-icon .icon-circle::after,
.sub-section-title-cont .bottom-icon .icon-circle-left::after {
  right: -25px;
}

.sub-section-title-cont .bottom-icon .icon-circle::before {
  left: -25px;
}

.banner-text-cont .banner-section-title {
  font-size: calc(36px + 3vw);
  line-height: 1.2;
}

.banner-text-cont .banner-desc {
  font-size: 20px;
}

@media (min-width: 1200px) {
  .section-title-cont .section-title {
    font-size: 48px;
  }
  .sub-section-title-cont .section-title,
  .call-to-action .action-title {
    font-size: 36px;
    line-height: 1.4;
  }
  .banner-text-cont .banner-section-title {
    font-size: 72px;
  }
}
/* ---------------------------------------
* 19. Banners
------------------------------------------ */
.top-banner-one-cont {
  position: relative;
  z-index: 1;
  background: var(--sa-gray-900);
}

.top-banner-one-cont::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background: url("../image/banner-one-bg.png") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  top: 0;
  left: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: var(--sa-gray-800);
  border-radius: 50%;
  opacity: 0.5;
  -webkit-animation: rise 10s infinite ease-in;
          animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
}

.bubble:nth-child(2) {
  width: 20px;
  height: 20px;
  left: 20%;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 50%;
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.bubble:nth-child(5) {
  width: 35px;
  height: 35px;
  left: 55%;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bubble:nth-child(6) {
  width: 45px;
  height: 45px;
  left: 65%;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.bubble:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 70%;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.bubble:nth-child(8) {
  width: 25px;
  height: 25px;
  left: 80%;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.bubble:nth-child(9) {
  width: 15px;
  height: 15px;
  left: 70%;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bubble:nth-child(10) {
  width: 90px;
  height: 90px;
  left: 25%;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.top-banner-two-cont,
.banner-dark-with-bg-img,
.banner-video {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-dark-with-bg-img,
.banner-video {
  background-attachment: fixed;
}

.top-banner-two-cont::after,
.banner-dark-with-bg-img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.top-banner-two-cont::after {
  background-color: rgba(0, 0, 0, 0.7);
}

.banner-dark-with-bg-img::after {
  background-color: rgba(0, 0, 0, 0.9);
}

.top-banner-two-cont .banner-content,
.banner-dark-with-bg-img .banner-content {
  z-index: 2;
}

.banner-video .video-cont {
  position: relative;
  background-color: rgba(0, 0, 0, 0.9);
  padding-bottom: 0;
  margin-top: 60px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.banner-video .video-cont .video-btn-item {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  top: -60px;
}

.video-btn-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-btn-item .video-btn {
  z-index: 4;
  display: block;
  text-align: center;
  position: relative;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  cursor: pointer;
  background-color: var(--sa-primary-color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-btn-item .video-btn i {
  position: absolute;
  top: 0;
  left: 2px;
  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;
  width: 100%;
  height: 100%;
  font-size: 36px;
  color: #fff;
}

.video-btn-item .video-btn::after,
.video-btn-item .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  background-color: var(--sa-primary-color);
  -webkit-animation: ripple 1.6s ease-out infinite;
          animation: ripple 1.6s ease-out infinite;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-video .video-cont .video-text-content {
  padding: 120px 40px 80px;
  text-align: center;
}

.banner-video .video-cont .video-text-content .video-title {
  font-size: calc(26px + 0.8333vw);
  margin-bottom: 0;
}

.banner-btns {
  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;
  row-gap: 40px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.banner-btns .theme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1200px) {
  .banner-video .video-cont .video-text-content .video-title {
    font-size: 36px;
  }
}
@-webkit-keyframes rise {
  0% {
    bottom: -100px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translate(100px);
            transform: translate(100px);
  }
  100% {
    bottom: 1080px;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@keyframes rise {
  0% {
    bottom: -100px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translate(100px);
            transform: translate(100px);
  }
  100% {
    bottom: 1080px;
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
}
@-webkit-keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
@keyframes ripple {
  0%, 35% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
/* ---------------------------------------
* 20. Contant Boxes
------------------------------------------ */
.content-box-one,
.content-box-two {
  background-color: var(--sa-white-color);
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
}

.content-box-one {
  padding: 40px 0;
}

.content-box-two {
  padding: 40px 25px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-box-one .icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 25px;
}

.content-box-one .icon-title .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 25px;
}

.content-box-one .icon-title .icon img {
  height: 64px;
  width: auto;
}

.content-box-one .icon-title .title,
.content-box-two .title {
  font-size: calc(18px + 0.5vw);
  margin-bottom: 0;
}

.content-box-two .icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  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;
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
  font-size: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.content-box-two .icon-box,
.content-box-two .title,
.content-box-one .box-desc {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.content-box-two .box-desc {
  margin-top: 25px;
}

.content-box-two:hover {
  background-color: var(--sa-primary-color);
  border-color: var(--sa-primary-color);
}

.content-box-two:hover .title,
.content-box-two:hover .box-desc {
  color: var(--sa-white-color);
}

.content-box-two:hover .icon-box {
  color: var(--sa-primary-color);
  background-color: var(--sa-white-color);
}

.content-box-two:hover .icon-box .dance_on_hover {
  -webkit-animation-name: dance_on_hover;
          animation-name: dance_on_hover;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@media (min-width: 1200px) {
  .content-box-one .icon-title .title,
  .content-box-two .title {
    font-size: 24px;
  }
}
.image-box-one,
.image-box-two {
  position: relative;
  z-index: 1;
}
.image-box-one img,
.image-box-two img {
  border-radius: 8px;
}

.image-box-one {
  margin-top: 25px;
  margin-left: 25px;
}

.image-box-one::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: -25px;
  bottom: 0;
  left: -25px;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sa-primary-color);
  border-radius: 8px;
}

.image-box-two {
  margin-right: 75px;
}

.image-box-two .thumb-img {
  position: absolute;
  right: -75px;
  bottom: 75px;
}

.image-box-two .thumb-img img {
  width: 150px;
  height: auto;
}

.veritcal-move-anim {
  -webkit-animation-name: veritcal;
          animation-name: veritcal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

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

@keyframes veritcal {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes dance_on_hover {
  16.65% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes dance_on_hover {
  16.65% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ---------------------------------------
* 21. List Boxes
------------------------------------------ */
.featured-list-cont .featured-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.check-list-cont .check-list-item {
  margin-bottom: 30px;
}

.featured-list-cont .featured-list-item:last-child,
.check-list-cont .check-list-item:last-child {
  margin-bottom: 0;
}

.featured-list-cont .featured-list-item .featured-list-box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 60px;
  height: 60px;
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
  font-family: var(--sa-heading-font-family);
  font-size: 20px;
  font-weight: 700;
  margin-right: 15px;
  border-radius: 4px;
}

.featured-list-cont .featured-list-item .list-content {
  padding-top: 17px;
}

.featured-list-cont .featured-list-item .list-content .number-list-title {
  font-size: 20px;
}

.check-list-cont .check-list-item .list-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  gap: 15px;
}

.check-list-cont .check-list-item .list-header .list-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
  font-size: 12px;
}

.check-list-cont .check-list-item .list-header .list-title {
  font-size: 20px;
  margin-bottom: 0;
}

/* ---------------------------------------
* 22. Testimonials
------------------------------------------ */
.review-box-one {
  padding: 25px 25px 40px;
}

.review-box-two {
  padding: 60px 25px 40px;
  position: relative;
  margin-top: 40px;
}

.review-box-one,
.review-box-two {
  background-color: var(--sa-white-color);
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
}

.review-box-two::before {
  font-family: "FontAwesome";
  content: "\f10d";
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -40px;
  display: block;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
  border-radius: 50%;
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

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

.review-box-one .review-one-top .top-left-icon {
  font-size: 56px;
  line-height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--sa-primary-color);
}

.review-box-one .review-one-top .review-stars,
.review-box-two .review-one-top .review-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
}

.review-box-one .review-one-top .review-stars i,
.review-box-two .review-stars i {
  padding: 2px;
  color: var(--sa-primary-color);
}

.review-box-two .review-stars i {
  padding: 2px 2px 2px 0;
}

.review-box-one .review-text,
.review-box-two .review-text {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
  font-style: italic;
}

.review-box-one .review-info,
.review-box-two .review-info {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-top: 30px;
}

.review-box-one .review-info .reviewer-img,
.review-box-two .review-info .reviewer-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.review-box-one .review-info .reviewer-img img,
.review-box-two .review-info .reviewer-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.review-box-one .review-info .designation,
.review-box-two .review-info .designation {
  color: var(--sa-gray-500);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------------------------------------
* 23. Counter
------------------------------------------ */
.counter-box-one {
  text-align: center;
}

.counter-box-one .counter-number {
  font-size: calc(32px + 2.6667vw);
  line-height: 1;
  font-family: var(--sa-heading-font-family);
  font-weight: 700;
}

.counter-box-two .counter-number {
  font-size: calc(26px + 1.8333vw);
  line-height: 1;
  font-family: var(--sa-heading-font-family);
  font-weight: 700;
}

.counter-box-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.counter-box-two .counter-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  line-height: 20px;
  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;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--sa-white-color);
  background-color: var(--sa-primary-color);
}

@media (min-width: 1200px) {
  .counter-box-one .counter-number {
    font-size: 64px;
  }
  .counter-box-two .counter-number {
    font-size: 48px;
  }
}
/* ---------------------------------------
* 24. Pricing
------------------------------------------ */
.pricing-table-one,
.pricing-table-two {
  background-color: var(--sa-white-color);
  padding: 40px 25px;
  border: 5px solid var(--sa-gray-200);
  border-radius: 8px;
}

.pricing-table-two .pricing-header {
  text-align: center;
}

.pricing-table-one .price,
.pricing-table-two .price {
  font-size: calc(26px + 1.833vw);
  line-height: 1;
  font-weight: 700;
  color: var(--sa-primary-color);
}

.pricing-table-one .price span,
.pricing-table-two .price span {
  color: var(--sa-gray-500);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table-two .price span {
  display: block;
  padding-top: 15px;
}

.pricing-table-one .pricing-features,
.pricing-table-two .pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-table-one .pricing-features li,
.pricing-table-two .pricing-features li {
  border-top: 1px solid var(--sa-gray-200);
  padding: 15px 0;
  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;
}

.pricing-table-two .pricing-features li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.pricing-table-one .pricing-features li.check-icon::after,
.pricing-table-one .pricing-features li.close-icon::after {
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 18px;
}

.pricing-table-one .pricing-features li.check-icon::after {
  content: "\f058";
  color: var(--sa-primary-color);
}

.pricing-table-one .pricing-features li.close-icon::after {
  content: "\f057";
  color: var(--sa-gray-500);
}

.pricing-table-one .pricing-features li:last-child,
.pricing-table-two .pricing-features li:last-child {
  border-bottom: 1px solid var(--sa-gray-200);
}

@media (min-width: 1200px) {
  .pricing-table-one .price,
  .pricing-table-two .price {
    font-size: 48px;
  }
}
/* ---------------------------------------
* 25. Book
------------------------------------------ */
.book-box {
  padding: 25px 25px 35px;
  border: 1px solid var(--sa-gray-200);
  background-color: var(--sa-white-color);
  text-align: center;
  border-radius: 8px;
}

.book-box .book-img {
  display: block;
  position: relative;
  overflow: hidden;
}
.book-box .book-img img {
  border-radius: 8px;
}

.book-box .book-img::after {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 8px;
  background-color: var(--sa-primary-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.book-box:hover .book-img::after {
  opacity: 0.8;
}

.book-box .book-img .book-link-icon {
  position: absolute;
  top: 0;
  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;
  width: 100%;
  height: 100%;
  font-size: 36px;
  line-height: 36px;
  z-index: 3;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.book-box:hover .book-img .book-link-icon {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  color: var(--sa-white-color);
}

.book-box .book-info {
  padding-top: 30px;
}

.book-filter-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  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;
  gap: 30px;
}

.book-filter-nav li a {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
  color: var(--sa-gray-800);
}

.book-filter-nav li.uk-active a,
.book-filter-nav li a:hover {
  color: var(--sa-primary-color);
}

/* ---------------------------------------
* 26. UIKIT Reset
------------------------------------------ */
.uk-lightbox {
  z-index: 3000;
}

.uk-accordion li {
  background-color: var(--sa-white-color);
  border: 1px solid var(--sa-gray-200);
  padding: 25px;
  border-radius: 8px;
}

.uk-accordion .uk-accordion-title {
  font-size: 20px;
  color: var(--sa-gray-800);
  font-family: var(--sa-heading-font-family);
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.uk-accordion .uk-accordion-title:hover {
  color: var(--sa-gray-800);
}

.uk-accordion-title::before {
  font-family: "FontAwesome";
  content: "\f358";
  background-image: none;
  font-size: 24px;
  line-height: 24px;
  color: var(--sa-primary-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  float: none;
  margin-left: 25px;
  margin-top: 5px;
}

.uk-open > .uk-accordion-title::before {
  background-image: none;
  content: "\f35b";
}

.uk-accordion-content {
  display: flow-root;
  margin-top: 15px;
  margin-bottom: 15px;
}

.theme-slider-nav {
  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;
}

.theme-slider-nav a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  margin: 0 5px;
  font-size: 16px;
  background-color: var(--sa-primary-color);
  color: var(--sa-white-color);
}

.theme-slider-nav a:hover {
  background-color: var(--sa-gray-800);
  color: var(--sa-white-color);
}

.uk-tab::before {
  border: none !important;
}

.theme-dot-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.theme-dot-nav li {
  margin-left: 7px;
  margin-right: 7px;
}

.theme-dot-nav li a {
  display: block;
  width: 26px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--sa-gray-400);
}

.theme-dot-nav li.uk-active a,
.theme-dot-nav li a:hover {
  background-color: var(--sa-primary-color);
}

.uk-flex .theme-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ---------------------------------------
* 27. Preloader
------------------------------------------ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sa-gray-900);
  z-index: 40000;
  overflow-x: hidden !important;
  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;
}

.loader div {
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
  border-radius: 50%;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  display: inline-block;
  -webkit-animation: bouncing 1.4s linear infinite;
          animation: bouncing 1.4s linear infinite;
  background-color: var(--sa-primary-color);
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.loader div:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes bouncing {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1, 1);
            transform: translateY(0) scale(1, 1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: translateY(80px) scale(1, 1);
            transform: translateY(80px) scale(1, 1);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateY(80px) scale(1.5, 0.5);
            transform: translateY(80px) scale(1.5, 0.5);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  55% {
    -webkit-transform: translateY(80px) scale(1, 1);
            transform: translateY(80px) scale(1, 1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes bouncing {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1, 1);
            transform: translateY(0) scale(1, 1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: translateY(80px) scale(1, 1);
            transform: translateY(80px) scale(1, 1);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  50% {
    -webkit-transform: translateY(80px) scale(1.5, 0.5);
            transform: translateY(80px) scale(1.5, 0.5);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  55% {
    -webkit-transform: translateY(80px) scale(1, 1);
            transform: translateY(80px) scale(1, 1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
/* ---------------------------------------
* 28. Demo
------------------------------------------ */
.demo-box {
  text-align: center;
  background-color: var(--sa-gray-100);
}
.demo-box .demo-img {
  position: relative;
  overflow: hidden;
}
.demo-box .demo-overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.demo-box .demo-overlay .demo-btn {
  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;
  height: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.demo-box h5 {
  margin: 0;
  padding: 40px 25px;
}
.demo-box:hover .demo-overlay {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.demo-box:hover .demo-overlay .demo-btn {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}