/*------------------------------------------------------------------
Project:  Labore
Version:  1.0
Last change:  23 October 2019
Assigned to:  HunThemes
Primary use:  HunThemes
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Content / .content-page
        - Section Layouts / div .name-section
        - Sidebar / .main-sidebar
            - Search / .hun-widget-search
            - Categories / .hun-widget-categories
            - Post / .hun-widget-posts
            - Tag / .hun-widget-tags
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  #5e5e78
# Primary Color 01:  #25e3d7
# Primary Color 02:  #30aee1

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 15px/1.8 'Nunito', Arial, sans-serif;
Title           : 40px/1.1 'Alice', Arial, sans-serif;
Paragrap        : 15px/1.8 'Nunito', Arial, sans-serif;
Input, textarea : 15px/1.5 'Nunito', Arial, sans-serif;
-------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Alice&display=swap");
/*[ restyle ]
//////////////////////////////////////////////////////////////////*/
*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  position: relative;
}

body {
  font-family: Nunito, apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  height: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Alice;
  color: #333;
  margin-bottom: 0.75rem;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  line-height: 1.3;
}

h4,
h5,
h6 {
  line-height: 1.4;
}

p {
  margin-bottom: 0.75rem;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  list-style-type: circle;
  padding-left: 18px;
  margin-bottom: 0.75rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

input,
textarea,
button {
  outline: none;
  min-width: 0;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
}
input::-ms-clear,
textarea::-ms-clear,
button::-ms-clear {
  display: none;
}

button {
  border: none;
  cursor: pointer;
}

iframe {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*\
 *
 * Restyle bootstrap
 *
\*/
@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
/*\
 *
 * Restyle Slick
 *
\*/
.slick-slide:focus {
  outline: none;
}

/*[ header ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * General
 *
\*/

.mb-50{margin-bottom: 50px;}
.hun-header .wrapper-header .logo-header .main-logo {
  display: inline;
}
.hun-header .wrapper-header .logo-header .mobile-logo {
  display: none;
}
.hun-header .wrapper-header .logo-header .sticky-logo {
  display: none;
}
.hun-header .wrapper-header .logo-header .retina-logo {
  display: none;
}
.hun-header .wrapper-header .logo-header img {
  max-height: 100px;
}
.hun-header .wrapper-header .main-navigation ul, .hun-header .wrapper-header .main-navigation ol, .hun-header .wrapper-header .main-navigation li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hun-header .wrapper-header .main-navigation .list-menu {
  padding-top: 15px;
}
.hun-header .wrapper-header .main-navigation .list-menu > li {
  display: inline-block;
}
.hun-header .wrapper-header .main-navigation .list-menu > li > a {
  display: block;
  padding: 0px 20px 15px 20px;
  white-space: nowrap;
}
.hun-header .wrapper-header .main-navigation .list-menu li {
  position: relative;
}
.hun-header .wrapper-header .main-navigation .list-menu li .sub-menu {
  background: #fff;
  transition: all 0.2s;
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0px;
  width: 180px;
  visibility: hidden;
  opacity: 0;
}
.hun-header .wrapper-header .main-navigation .list-menu li .sub-menu .sub-menu {
  top: 0px;
  left: 100%;
}
.hun-header .wrapper-header .main-navigation .list-menu li .sub-menu li a {
  display: block;
  padding: 5px 20px;
  transition: all .2s;
}
.hun-header .wrapper-header .main-navigation .list-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.hun-header.style-sticky .element-for-stick {
  transition: all 0.3s;
}
.hun-header.style-sticky.fixed .element-for-stick {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}
.hun-header.style-sticky.fixed .wrapper-header .logo-header .main-logo {
  display: none;
}
.hun-header.style-sticky.fixed .wrapper-header .logo-header .mobile-logo {
  display: none;
}
.hun-header.style-sticky.fixed .wrapper-header .logo-header .sticky-logo {
  display: inline;
}
.hun-header.style-overlay {
  position: absolute;
  z-index: 200;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .hun-header .wrapper-header {
    position: static !important;
  }
  .hun-header .wrapper-header .logo-header .main-logo {
    display: none;
  }
  .hun-header .wrapper-header .logo-header .mobile-logo {
    display: inline;
  }
  .hun-header .wrapper-header .main-navigation {
    display: none;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 2000px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 2000px), only screen and (-o-min-device-pixel-ratio: 2 / 1) and (max-width: 2000px), only screen and (min-device-pixel-ratio: 2) and (max-width: 2000px), only screen and (min-resolution: 192dpi) and (max-width: 2000px), only screen and (min-resolution: 2dppx) and (max-width: 2000px) {
  .hun-header .wrapper-header .logo-header .main-logo {
    display: none !important;
  }
  .hun-header .wrapper-header .logo-header .mobile-logo {
    display: none !important;
  }
  .hun-header .wrapper-header .logo-header .sticky-logo {
    display: none !important;
  }
  .hun-header .wrapper-header .logo-header .retina-logo {
    display: inline !important;
  }
}

/*\
 *
 * Layout-1
 *
\*/
.hun-header.layout-1 .wrapper-header {
  display: flex;
  align-items: center;
  padding-top: 35px;
}
.hun-header.layout-1 .wrapper-header .content-header {
  padding-left: 20px;
  padding-right: 20px;
}
.hun-header.layout-1 .wrapper-header .content-header .logo-header {
  text-align: center;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation {
  padding-top: 11px;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu {
  padding-top: 20px;
  text-align: center;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li > a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  padding: 0px 24px 20px 24px;
  position: relative;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li > a::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-image: url(../images/icons/wave-line-01.png);
  background-repeat: repeat;
  position: absolute;
  left: 24px;
  bottom: 19px;
  transition: all .3s ease;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li:hover > a {
  color: #fff;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li:hover > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li.current-menu-item > a {
  color: #fff;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu > li.current-menu-item > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu li .sub-menu {
  text-align: left;
  border: 1px solid #ededff;
  padding: 10px 0px;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu li .sub-menu .sub-menu {
  top: -10px;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu li .sub-menu li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  padding: 8px 24px;
}
.hun-header.layout-1 .wrapper-header .content-header .main-navigation .list-menu li .sub-menu li a:hover {
  color: #25e3d7;
}
.hun-header.layout-1 .wrapper-header .group-feature {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.hun-header.layout-1 .wrapper-header .group-feature > * {
  margin-right: 30px;
}
.hun-header.layout-1 .wrapper-header .group-feature > *:last-child {
  margin-right: 0;
}
.hun-header.layout-1 .wrapper-header .group-feature.right-side {
  justify-content: flex-end;
}
.hun-header.layout-1 .wrapper-header .group-feature.right-side > * {
  margin-right: 0px;
  margin-left: 30px;
}
.hun-header.layout-1 .wrapper-header .group-feature.right-side > *:first-child {
  margin-left: 0;
}
.hun-header.layout-1 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  display: block;
  transform: translateY(2px);
}
.hun-header.layout-1 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open:hover {
  text-shadow: 0px 0px 3px #fff;
}
.hun-header.layout-1 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1 {
  color: #fff;
}
.hun-header.layout-1 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1:hover {
  text-shadow: 0px 0px 3px #fff;
}
@media (max-width: 767px) {
  .hun-header.layout-1 .wrapper-header {
    padding-top: 20px;
  }
  .hun-header.layout-1 .wrapper-header .logo-header img {
    max-height: 50px;
  }
}

/*\
 *
 * Layout-2
 *
\*/
.hun-header.layout-2 .wrapper-header {
  padding-right: 80px;
  padding-left: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.hun-header.layout-2 .wrapper-header .logo-header {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 150px;
}
.hun-header.layout-2 .wrapper-header .main-navigation {
  padding: 0 15px;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu {
  padding-top: 33px;
  text-align: center;
  transition: all .2s;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #39385a;
  padding: 0px 21px 33px 21px;
  position: relative;
  transition: all .2s;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-image: url(../images/icons/wave-line-04.png);
  background-repeat: repeat;
  position: absolute;
  left: 24px;
  bottom: 32px;
  transition: all .3s ease;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu li .sub-menu {
  text-align: left;
  border: 1px solid #ededff;
  padding: 10px 0px;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu li .sub-menu .sub-menu {
  top: -10px;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu li .sub-menu li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  padding: 8px 24px;
}
.hun-header.layout-2 .wrapper-header .main-navigation .list-menu li .sub-menu li a:hover {
  color: #25e3d7;
}
.hun-header.layout-2 .wrapper-header .group-feature {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hun-header.layout-2 .wrapper-header .group-feature > * {
  margin-right: 0px;
  margin-left: 30px;
}
.hun-header.layout-2 .wrapper-header .group-feature > *:first-child {
  margin-left: 0;
}
.hun-header.layout-2 .wrapper-header .group-feature .buttons-header .hun-button {
  font-size: 13px;
  line-height: 44px;
  text-transform: uppercase;
  padding: 0 23px;
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open {
  font-size: 20px;
  line-height: 1;
  color: #39385a;
  display: block;
  transform: translateY(2px);
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open:hover {
  color: #25e3d7;
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1 {
  color: #39385a;
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1:hover {
  color: #25e3d7;
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu {
  border-color: #39385a;
}
.hun-header.layout-2 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu::before, .hun-header.layout-2 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu::after {
  background-color: #39385a;
}
.hun-header.layout-2.style-sticky.fixed .wrapper-header {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-header.layout-2.style-sticky.fixed .wrapper-header .main-navigation .list-menu {
  padding-top: 23px;
}
.hun-header.layout-2.style-sticky.fixed .wrapper-header .main-navigation .list-menu > li > a {
  padding-bottom: 23px;
}
.hun-header.layout-2.style-sticky.fixed .wrapper-header .main-navigation .list-menu > li > a::before {
  bottom: 22px;
}
@media (max-width: 1299px) {
  .hun-header.layout-2 .wrapper-header {
    padding-right: 15px;
    padding-left: 15px;
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a {
    padding: 0px 18px 33px 18px;
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a::before {
    left: 18px;
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
    width: calc(100% - 18px - 18px);
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
    width: calc(100% - 18px - 18px);
  }
}
@media (max-width: 1199px) {
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a {
    padding: 0px 15px 33px 15px;
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li > a::before {
    left: 15px;
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
    width: calc(100% - 15px - 15px);
  }
  .hun-header.layout-2 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
    width: calc(100% - 15px - 15px);
  }
}
@media (max-width: 991px) {
  .hun-header.layout-2 .wrapper-header {
    padding: 10px 15px;
  }
  .hun-header.layout-2 .wrapper-header .group-feature {
    flex-grow: unset;
  }
}
@media (max-width: 767px) {
  .hun-header.layout-2 .wrapper-header .logo-header {
    padding-right: 20px;
    min-width: 100px;
  }
  .hun-header.layout-2 .wrapper-header .logo-header img {
    max-height: 50px;
  }
}

/*\
 *
 * Layout-3
 *
\*/
.hun-header.layout-3 .wrapper-header {
  padding-right: 80px;
  padding-left: 80px;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.hun-header.layout-3 .wrapper-header .logo-header {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 150px;
}
.hun-header.layout-3 .wrapper-header .main-navigation {
  padding: 0 15px;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu {
  padding-top: 33px;
  text-align: center;
  transition: all .2s;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  padding: 0px 24px 33px 24px;
  position: relative;
  transition: all .2s;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-image: url(../images/icons/wave-line-01.png);
  background-repeat: repeat;
  position: absolute;
  left: 24px;
  bottom: 32px;
  transition: all .3s ease;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
  width: calc(100% - 24px - 24px);
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu li .sub-menu {
  text-align: left;
  border: 1px solid #ededff;
  padding: 10px 0px;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu li .sub-menu .sub-menu {
  top: -10px;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu li .sub-menu li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  padding: 8px 24px;
}
.hun-header.layout-3 .wrapper-header .main-navigation .list-menu li .sub-menu li a:hover {
  color: #25e3d7;
}
.hun-header.layout-3 .wrapper-header .group-feature {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hun-header.layout-3 .wrapper-header .group-feature > * {
  margin-right: 0px;
  margin-left: 30px;
}
.hun-header.layout-3 .wrapper-header .group-feature > *:first-child {
  margin-left: 0;
}
.hun-header.layout-3 .wrapper-header .group-feature .buttons-header .hun-button {
  font-size: 13px;
  line-height: 44px;
  text-transform: uppercase;
  padding: 0 23px;
}
.hun-header.layout-3 .wrapper-header .group-feature .buttons-header .hun-button:hover {
  background-color: #30aee1;
  border-color: #30aee1;
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  display: block;
  transform: translateY(2px);
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-element-search.layout-1 .search-open:hover {
  text-shadow: 0px 0px 3px #fff;
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1 {
  color: #fff;
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-element-dropdown-menu.layout-1:hover {
  text-shadow: 0px 0px 3px #fff;
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu {
  border-color: #fff;
}
.hun-header.layout-3 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu::before, .hun-header.layout-3 .wrapper-header .group-feature .hun-menu-mobile .btn-toggle-menu::after {
  background-color: #fff;
}
.hun-header.layout-3.style-sticky.fixed .wrapper-header {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
  background-color: #30aee1;
}
.hun-header.layout-3.style-sticky.fixed .wrapper-header .main-navigation .list-menu {
  padding-top: 23px;
}
.hun-header.layout-3.style-sticky.fixed .wrapper-header .main-navigation .list-menu > li > a {
  padding-bottom: 23px;
}
.hun-header.layout-3.style-sticky.fixed .wrapper-header .main-navigation .list-menu > li > a::before {
  bottom: 22px;
}
.hun-header.layout-3.style-sticky.fixed .wrapper-header .group-feature .buttons-header .hun-button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #30aee1 !important;
}
@media (max-width: 1299px) {
  .hun-header.layout-3 .wrapper-header {
    padding-right: 15px;
    padding-left: 15px;
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a {
    padding: 0px 18px 33px 18px;
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a::before {
    left: 18px;
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
    width: calc(100% - 18px - 18px);
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
    width: calc(100% - 18px - 18px);
  }
}
@media (max-width: 1199px) {
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a {
    padding: 0px 15px 33px 15px;
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li > a::before {
    left: 15px;
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li:hover > a:before {
    width: calc(100% - 15px - 15px);
  }
  .hun-header.layout-3 .wrapper-header .main-navigation .list-menu > li.current-menu-item > a:before {
    width: calc(100% - 15px - 15px);
  }
}
@media (max-width: 991px) {
  .hun-header.layout-3 .wrapper-header {
    padding: 10px 15px;
  }
  .hun-header.layout-3 .wrapper-header .group-feature {
    flex-grow: unset;
  }
}
@media (max-width: 767px) {
  .hun-header.layout-3 .wrapper-header .logo-header {
    padding-right: 20px;
    min-width: 100px;
  }
  .hun-header.layout-3 .wrapper-header .logo-header img {
    max-height: 50px;
  }
}

/*[ menu-mobile ]
//////////////////////////////////////////////////////////////////*/
.hun-menu-mobile {
  display: none;
}
.hun-menu-mobile .btn-toggle-menu {
  display: block;
  width: 19px;
  height: 13px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  transition: all .3s;
}
.hun-menu-mobile .btn-toggle-menu::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: 0;
}
.hun-menu-mobile .btn-toggle-menu::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all .3s;
}
.hun-menu-mobile .btn-toggle-menu.hidden-btn {
  visibility: hidden;
  opacity: 0;
}
.hun-menu-mobile .mobile-navigation {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
  position: fixed;
  z-index: 99998;
  visibility: hidden;
  left: 0;
  bottom: 0;
  width: 269px;
  max-width: 80%;
  height: 100%;
  padding: 39px 22px 50px 22px;
  overflow: auto;
  transition: all .5s;
  transform: translateX(-105%);
}
.hun-menu-mobile .mobile-navigation .logo-menu-mobile {
  margin-bottom: 50px;
}
.hun-menu-mobile .mobile-navigation ul, .hun-menu-mobile .mobile-navigation ol, .hun-menu-mobile .mobile-navigation li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.hun-menu-mobile .mobile-navigation .list-menu > li > a {
  font-weight: 400;
  font-size: 13px;
  color: #30aee1;
  text-transform: uppercase;
}
.hun-menu-mobile .mobile-navigation .list-menu > li > a:hover {
  color: #25e3d7;
}
.hun-menu-mobile .mobile-navigation .list-menu li {
  padding: 6px 0;
  position: relative;
  margin: 0;
}
.hun-menu-mobile .mobile-navigation .list-menu li .sub-menu {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}
.hun-menu-mobile .mobile-navigation .list-menu li .sub-menu a {
  font-weight: 400;
  font-size: 14px;
  color: #5e5e78;
}
.hun-menu-mobile .mobile-navigation .list-menu li .sub-menu a:hover {
  color: #25e3d7;
}
.hun-menu-mobile .mobile-navigation .list-menu li .toggle-sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: -7px;
  top: 4px;
}
.hun-menu-mobile .mobile-navigation .list-menu li .toggle-sub-menu::before {
  content: '';
  display: block;
  width: 11px;
  height: 1px;
  background-color: #5e5e78;
  margin-right: -6px;
}
.hun-menu-mobile .mobile-navigation .list-menu li .toggle-sub-menu::after {
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  background-color: #5e5e78;
}
.hun-menu-mobile .mobile-navigation .list-menu li .toggle-sub-menu.icon-up::after {
  opacity: 0;
}
.hun-menu-mobile.menu-mobile-active .btn-toggle-menu {
  visibility: visible !important;
  opacity: 1 !important;
}
.hun-menu-mobile.menu-mobile-active .btn-toggle-menu::after {
  width: 130%;
}
.hun-menu-mobile.menu-mobile-active .mobile-navigation {
  visibility: visible;
  transform: translateX(0);
}
@media (max-width: 991px) {
  .hun-menu-mobile {
    display: block;
  }
}

/*[ page-layout-general ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * wrap-page
 *
\*/
.wrap-page-01 {
  padding: 0px 80px 80px 80px;
}
.wrap-page-01 .hun-header {
  margin-right: -80px;
  margin-left: -80px;
}
@media (max-width: 1299px) {
  .wrap-page-01 {
    padding: 0px 50px 50px 50px;
  }
  .wrap-page-01 .hun-header {
    margin-right: -50px;
    margin-left: -50px;
  }
  .wrap-page-01 .hun-header .wrapper-header {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 1199px) {
  .wrap-page-01 {
    padding: 0px;
  }
  .wrap-page-01 .hun-header {
    margin-right: 0px;
    margin-left: 0px;
  }
  .wrap-page-01 .hun-header .wrapper-header {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.wrap-page-02 {
  padding: 0px 80px;
}
.wrap-page-02 .hun-header {
  margin-right: -80px;
  margin-left: -80px;
}
@media (max-width: 1299px) {
  .wrap-page-02 {
    padding: 0px 50px;
  }
  .wrap-page-02 .hun-header {
    margin-right: -50px;
    margin-left: -50px;
  }
  .wrap-page-02 .hun-header .wrapper-header {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width: 1199px) {
  .wrap-page-02 {
    padding: 0px;
  }
  .wrap-page-02 .hun-header {
    margin-right: 0px;
    margin-left: 0px;
  }
  .wrap-page-02 .hun-header .wrapper-header {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*\
 *
 * content-page
 *
\*/
.content-page {
  padding-top: 120px;
  padding-bottom: 120px;
}
.content-page.have-sidebar-left .main-content, .content-page.have-sidebar-right .main-content {
  margin-bottom: 100px;
}
.content-page .main-sidebar {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #39385a;
  word-break: break-word;
}
.content-page .main-sidebar ul {
  list-style-type: none;
  padding: 0;
}
.content-page .main-sidebar ul li {
  margin-bottom: 8px;
  color: #5e5e78;
}
.content-page .main-sidebar ul li:last-child {
  margin-bottom: 0px;
}
.content-page .main-sidebar ul li a {
  color: inherit;
  transition: all .3s;
}
.content-page .main-sidebar ul li a:hover {
  color: #25e3d7;
}
.content-page .main-sidebar .title-widget {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.1;
  color: #30aee1;
  margin-bottom: 24px;
}
.content-page .main-sidebar [class*="hun-widget-"] {
  margin-bottom: 45px;
}
.content-page .main-sidebar [class*="hun-widget-"]:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .content-page.have-sidebar-right .main-content {
    padding-right: 20px;
    margin-bottom: 0;
  }
  .content-page.have-sidebar-left .main-content {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .content-page {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

/*[ title-page ]
//////////////////////////////////////////////////////////////////*/
.title-page {
  padding-top: 107px;
  padding-bottom: 107px;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f3f3f3;
}
.title-page .main-title {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  word-break: break-word;
  letter-spacing: 5px;
  margin-bottom: 12px;
}
.title-page .breadcrumbs {
  list-style-type: none;
  padding: 0;
  letter-spacing: 10px;
}
.title-page .breadcrumbs li {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: #5e5e78;
  letter-spacing: normal;
  word-break: break-word;
  display: inline-block;
  position: relative;
}
.title-page .breadcrumbs li::after {
  content: '/';
  position: absolute;
  top: 0;
  right: -9px;
}
.title-page .breadcrumbs li:last-child:after {
  display: none;
}
.title-page .breadcrumbs li a {
  color: inherit;
  transition: all .3s;
}
.title-page .breadcrumbs li a:hover {
  color: #25e3d7;
}
.title-page.style-full-width .container {
  width: 100%;
  max-width: 100%;
  padding-right: 80px;
  padding-left: 80px;
}
@media (max-width: 1299px) {
  .title-page.style-full-width .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .title-page {
    background-position: center center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .title-page .main-title {
    font-size: 35px;
  }
}

/*[ footer ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-footer.layout-1 {
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hun-footer.layout-1::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b8a85;
  opacity: .85;
}
.hun-footer.layout-1 .content-footer {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #b8edfb;
  word-break: break-word;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.hun-footer.layout-1 .content-footer ul {
  list-style-type: none;
  padding: 0;
}
.hun-footer.layout-1 .content-footer ul li {
  margin-bottom: 8px;
}
.hun-footer.layout-1 .content-footer ul li:last-child {
  margin-bottom: 0;
}
.hun-footer.layout-1 .content-footer ul li a {
  color: inherit;
  transition: all .3s;
}
.hun-footer.layout-1 .content-footer ul li a:hover {
  color: #25e3d7;
}
.hun-footer.layout-1 .content-footer .logo-footer {
  margin-bottom: 53px;
}
.hun-footer.layout-1 .content-footer [class*="col-"] {
  padding-bottom: 45px;
}
.hun-footer.layout-1 .content-footer .subscribe-form-01 {
  max-width: 525px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 35px;
}

/*\
 *
 * layout-2
 *
\*/
.hun-footer.layout-2 .content-footer {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #39385a;
  word-break: break-word;
  padding-top: 146px;
}
.hun-footer.layout-2 .content-footer ul {
  list-style-type: none;
  padding: 0;
}
.hun-footer.layout-2 .content-footer ul li {
  margin-bottom: 8px;
}
.hun-footer.layout-2 .content-footer ul li:last-child {
  margin-bottom: 0;
}
.hun-footer.layout-2 .content-footer ul li a {
  color: inherit;
  transition: all .3s;
}
.hun-footer.layout-2 .content-footer ul li a:hover {
  color: #25e3d7;
}
.hun-footer.layout-2 .content-footer .title-widget {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.1;
  color: #30aee1;
  margin-bottom: 38px;
}
.hun-footer.layout-2 .content-footer .logo-footer {
  margin-bottom: 42px;
  margin-top: -66px;
}
.hun-footer.layout-2 .content-footer [class*="col-"] {
  padding-bottom: 52px;
}
.hun-footer.layout-2 .content-footer [class*="col-"] > *:last-child {
  margin-bottom: 0 !important;
}
.hun-footer.layout-2 .content-footer [class*="col-"] .hun-widget-text {
  margin-bottom: 18px;
}
.hun-footer.layout-2 .content-footer .subscribe-form-01 {
  max-width: 525px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 35px;
}
.hun-footer.layout-2 .copyright-footer {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #39385a;
  text-align: center;
  word-break: break-word;
  border-top: 1px solid rgba(21, 19, 76, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}
.hun-footer.layout-2 .copyright-footer a {
  color: #30aee1;
  transition: all .3s;
}
.hun-footer.layout-2 .copyright-footer a:hover {
  color: #25e3d7;
}
@media (min-width: 992px) {
  .hun-footer.layout-2 .content-footer [class*="col-"]:nth-child(1) {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .hun-footer.layout-2 .content-footer [class*="col-"]:nth-child(2) {
    flex: 0 0 23%;
    max-width: 23%;
  }
  .hun-footer.layout-2 .content-footer [class*="col-"]:nth-child(3) {
    flex: 0 0 22%;
    max-width: 22%;
  }
  .hun-footer.layout-2 .content-footer [class*="col-"]:nth-child(4) {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/*\
 *
 * layout-3
 *
\*/
.hun-footer.layout-3 {
  background-color: #30aee1;
}
.hun-footer.layout-3 .content-footer {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #9999cc;
  word-break: break-word;
  padding-top: 146px;
}
.hun-footer.layout-3 .content-footer ul {
  list-style-type: none;
  padding: 0;
}
.hun-footer.layout-3 .content-footer ul li {
  margin-bottom: 8px;
}
.hun-footer.layout-3 .content-footer ul li:last-child {
  margin-bottom: 0;
}
.hun-footer.layout-3 .content-footer ul li a {
  color: inherit;
  transition: all .3s;
}
.hun-footer.layout-3 .content-footer ul li a:hover {
  color: #25e3d7;
}
.hun-footer.layout-3 .content-footer .title-widget {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.1;
  color: #ccccff;
  margin-bottom: 38px;
}
.hun-footer.layout-3 .content-footer .logo-footer {
  margin-bottom: 42px;
  margin-top: -66px;
}
.hun-footer.layout-3 .content-footer [class*="col-"] {
  padding-bottom: 52px;
}
.hun-footer.layout-3 .content-footer [class*="col-"] > *:last-child {
  margin-bottom: 0 !important;
}
.hun-footer.layout-3 .content-footer [class*="col-"] .hun-widget-text {
  margin-bottom: 18px;
}
.hun-footer.layout-3 .content-footer .subscribe-form-01 {
  max-width: 525px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 35px;
}
.hun-footer.layout-3 .copyright-footer {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #666699;
  text-align: center;
  word-break: break-word;
  border-top: 1px solid #15134c;
  padding-top: 15px;
  padding-bottom: 15px;
}
.hun-footer.layout-3 .copyright-footer a {
  color: #9999cc;
  transition: all .3s;
}
.hun-footer.layout-3 .copyright-footer a:hover {
  color: #25e3d7;
}
@media (min-width: 992px) {
  .hun-footer.layout-3 .content-footer [class*="col-"]:nth-child(1) {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .hun-footer.layout-3 .content-footer [class*="col-"]:nth-child(2) {
    flex: 0 0 23%;
    max-width: 23%;
  }
  .hun-footer.layout-3 .content-footer [class*="col-"]:nth-child(3) {
    flex: 0 0 22%;
    max-width: 22%;
  }
  .hun-footer.layout-3 .content-footer [class*="col-"]:nth-child(4) {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/*[ forms ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * subscribe-form-01
 *
\*/
.subscribe-form-01 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 0;
}
.subscribe-form-01::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px solid rgb(255 255 255 / 44%);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.subscribe-form-01 input {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 1px;
  border-radius: 30px;
  border: none;
  background-color: transparent;
  padding: 0px 30px;
}
.subscribe-form-01 input::-webkit-input-placeholder {
  color: #9999cc;
}
.subscribe-form-01 input:-moz-placeholder {
  color: #9999cc;
}
.subscribe-form-01 input::-moz-placeholder {
  color: #9999cc;
}
.subscribe-form-01 input:-ms-input-placeholder {
  color: #9999cc;
}
.subscribe-form-01 button {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #1de2da;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 30px;
  background-color: #0b8a85;
  padding: 0 45px;
  transition: all .3s;
}
.subscribe-form-01 button:hover {
  background-color: #25e3d7;
  color: #fff;
}
@media (max-width: 480px) {
  .subscribe-form-01 input {
    padding: 0 20px;
  }
  .subscribe-form-01 button {
    padding: 0 18px;
  }
}

/*\
 *
 * book-service-form-01
 *
\*/
.book-service-form-01 {
  background-color: #fff;
  padding: 110px 14% 120px 14%;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
  position: relative;
}
.book-service-form-01::before {
  content: '';
  display: block;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  position: absolute;
  top: 17px;
  left: 17px;
  border: 1px solid #25e3d7;
  pointer-events: none;
}
.book-service-form-01 .heading-form {
  margin-bottom: 42px;
}
.book-service-form-01 .heading-form .title-form {
  font-weight: 400;
  font-size: 33px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 7px;
}
.book-service-form-01 .heading-form img {
  max-width: 100%;
}
.book-service-form-01 .wrap-input {
  text-align: left;
  display: block;
  position: relative;
  margin-bottom: 39px;
}
.book-service-form-01 .wrap-input i {
  pointer-events: none;
  font-size: 13px;
  color: #5e5e78;
  line-height: 1;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%);
}
.book-service-form-01 .wrap-input input {
  font-weight: 400;
  font-size: 13px;
  color: #5e5e78;
  line-height: 1.5;
  width: 100%;
  height: 38px;
  border: none;
  border-bottom: 1px solid #5e5e78;
  background-color: transparent;
  padding: 0px 20px 0px 0px;
}
.book-service-form-01 .wrap-input input:focus {
  border-color: #25e3d7;
}
.book-service-form-01 .wrap-input input::-webkit-input-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-01 .wrap-input input:-moz-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-01 .wrap-input input::-moz-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-01 .wrap-input input:-ms-input-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-01 button {
  text-transform: uppercase;
  padding: 0 26px;
  margin-top: 20px;
}
.book-service-form-01.no-border {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}
.book-service-form-01.no-border::before {
  display: none;
}
@media (max-width: 575px) {
  .book-service-form-01 {
    padding: 80px 10% 90px 10%;
  }
  .book-service-form-01::before {
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    top: 14px;
    left: 14px;
  }
}

/*\
 *
 * book-service-form-02
 *
\*/
.book-service-form-02 {
  text-align: center;
}
.book-service-form-02 .heading-form {
  margin-bottom: 42px;
}
.book-service-form-02 .heading-form .title-form {
  font-weight: 400;
  font-size: 33px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 7px;
}
.book-service-form-02 .heading-form img {
  max-width: 100%;
}
.book-service-form-02 .wrap-input {
  text-align: left;
  display: block;
  position: relative;
  margin-bottom: 39px;
}
.book-service-form-02 .wrap-input i {
  pointer-events: none;
  font-size: 13px;
  color: #5e5e78;
  line-height: 1;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%);
}
.book-service-form-02 .wrap-input textarea,
.book-service-form-02 .wrap-input input {
  font-weight: 400;
  font-size: 13px;
  color: #5e5e78;
  line-height: 1.5;
  width: 100%;
  height: 38px;
  border: none;
  border-bottom: 1px solid #5e5e78;
  background-color: transparent;
  padding: 0px 20px 0px 0px;
}
.book-service-form-02 .wrap-input textarea:focus,
.book-service-form-02 .wrap-input input:focus {
  border-color: #25e3d7;
}
.book-service-form-02 .wrap-input textarea::-webkit-input-placeholder,
.book-service-form-02 .wrap-input input::-webkit-input-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-02 .wrap-input textarea:-moz-placeholder,
.book-service-form-02 .wrap-input input:-moz-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-02 .wrap-input textarea::-moz-placeholder,
.book-service-form-02 .wrap-input input::-moz-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-02 .wrap-input textarea:-ms-input-placeholder,
.book-service-form-02 .wrap-input input:-ms-input-placeholder {
  color: #5e5e78;
  text-transform: uppercase;
}
.book-service-form-02 .wrap-input textarea {
  height: auto;
  min-height: 92px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
  margin-bottom: 0;
}
.book-service-form-02 button {
  text-transform: uppercase;
  padding: 0 26px;
  margin-top: 20px;
}

/*\
 *
 * contact-form-01
 *
\*/
.contact-form-01 .row {
  margin-right: -10px;
  margin-left: -10px;
}
.contact-form-01 .row [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.contact-form-01 .input-field {
  font-weight: 400;
  font-size: 15px;
  color: #5e5e78;
  line-height: 1.8;
  display: block;
  width: 100%;
  border: 1px solid #c8c8d4;
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 20px;
}
.contact-form-01 .input-field:focus {
  border-color: #25e3d7;
}
.contact-form-01 .input-field::-webkit-input-placeholder {
  color: #5e5e78;
}
.contact-form-01 .input-field:-moz-placeholder {
  color: #5e5e78;
}
.contact-form-01 .input-field::-moz-placeholder {
  color: #5e5e78;
}
.contact-form-01 .input-field:-ms-input-placeholder {
  color: #5e5e78;
}
.contact-form-01 input {
  height: 46px;
}
.contact-form-01 textarea {
  min-height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.contact-form-01 button {
  text-transform: uppercase;
  padding: 0 37px;
}

/*[ back-to-top ]
//////////////////////////////////////////////////////////////////*/
.btn-back-to-top {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  bottom: 75px;
  right: 16px;
  background-color: #25e3d7;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.btn-back-to-top:hover {
  background-color: #30aee1;
}
.btn-back-to-top .symbol-btn {
  display: block;
  width: 1px;
  height: 22px;
  background-color: #fff;
  position: absolute;
  top: 14px;
  left: 24px;
}
.btn-back-to-top .symbol-btn::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  left: -3px;
}
.btn-back-to-top.active-btn {
  visibility: visible;
  opacity: 1;
}
.btn-back-to-top.hidden-btn {
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .btn-back-to-top {
    width: 39px;
    height: 39px;
    right: 22px;
    bottom: 72px;
  }
  .btn-back-to-top .symbol-btn {
    width: 1px;
    height: 18px;
    top: 11px;
    left: 19px;
  }
}

/*[ pre-loading ]
//////////////////////////////////////////////////////////////////*/
.hun-pre-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spinner {
  -webkit-animation: load 1s infinite linear;
  -moz-animation: load 1s infinite linear;
  animation: load 1s infinite linear;
  background: -webkit-linear-gradient(top, #25e3d7 10%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #25e3d7 10%, rgba(255, 255, 255, 0) 100%);
  height: 4em;
  width: 4em;
  border-radius: 50%;
  font-size: 13px;
  margin: 5em auto;
  position: relative;
  overflow: hidden;
  opacity: .69;
}
.spinner span {
  display: block;
  width: 15%;
  height: 10%;
  background-color: #25e3d7;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
}

.spinner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 50%, #25e3d7 50%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #25e3d7 50%);
  border-radius: 100%;
  content: '';
}

.spinner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 80%;
  background: #fff;
  border-radius: 50%;
  content: '';
  margin: auto;
}

@-webkit-keyframes load {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes load {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes load {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*[ style-select2 ]
//////////////////////////////////////////////////////////////////*/
.select2-hidden-accessible {
  -webkit-clip-path: unset !important;
}

/*\
 *
 * layout-1
 *
\*/
.select2-container--layout-1 {
  width: 100% !important;
}
.select2-container--layout-1 .select2-selection--single {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  height: 100%;
}
.select2-container--layout-1 .select2-selection--single .select2-selection__rendered {
  font-weight: 400;
  font-size: 13px;
  color: #5e5e78;
  line-height: 1.5;
  text-transform: uppercase;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #5e5e78;
  padding-left: 0px;
  padding-right: 20px;
}
.select2-container--layout-1 .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--layout-1 .select2-selection--single .select2-selection__placeholder {
  color: #5e5e78;
}
.select2-container--layout-1 .select2-selection--single .select2-selection__arrow {
  font-size: 14px;
  color: #5e5e78;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select2-container--layout-1 .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--layout-1.select2-container--open .select2-selection--single .select2-selection__rendered, .select2-container--layout-1.select2-container--focus .select2-selection--single .select2-selection__rendered {
  border-color: #25e3d7;
}
.select2-container--layout-1[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--layout-1[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--layout-1.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--layout-1.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--layout-1.select2-container--open .select2-dropdown {
  border-radius: 0;
}
.select2-container--layout-1.select2-container--open .select2-dropdown--above {
  border: 1px solid #ededff;
  transform: translateY(-2px);
}
.select2-container--layout-1.select2-container--open .select2-dropdown--below {
  border: 1px solid #ededff;
  transform: translateY(2px);
}
.select2-container--layout-1 .select2-search--dropdown .select2-search__field {
  border: 1px solid #ededff;
}
.select2-container--layout-1 .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--layout-1 .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--layout-1 .select2-results__option {
  padding: 6px 15px;
  color: #5e5e78;
}
.select2-container--layout-1 .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--layout-1 .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--layout-1 .select2-results__option[aria-selected=true] {
  background-color: #25e3d7 !important;
  color: #fff;
}
.select2-container--layout-1 .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--layout-1 .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--layout-1 .select2-results__option--highlighted[aria-selected] {
  background-color: #eee;
}
.select2-container--layout-1 .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/*[ datepicker ]
//////////////////////////////////////////////////////////////////*/
.daterangepicker.ltr .drp-calendar.left .calendar-table {
  padding-right: 8px !important;
}

.daterangepicker {
  border-radius: 0px;
  width: auto !important;
  border-color: #ededff;
}
.daterangepicker::before {
  border-bottom-color: #ededff;
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 13px;
  color: #5e5e78;
  outline: none !important;
  border-color: #ededff;
}
.daterangepicker .drp-calendar {
  max-width: 300px;
}
.daterangepicker .drp-calendar.left {
  padding-top: 6px;
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  padding: 0px 8px;
  font-size: 13px;
  color: #5e5e78;
}
.daterangepicker .calendar-table th.off,
.daterangepicker .calendar-table td.off {
  color: #bdbdcb;
}
.daterangepicker .calendar-table thead th {
  padding-top: 8px;
}
.daterangepicker .calendar-table .next:hover,
.daterangepicker .calendar-table .prev:hover {
  border-color: transparent;
  background-color: transparent;
}
.daterangepicker .calendar-table .next:hover span,
.daterangepicker .calendar-table .prev:hover span {
  border-color: #25e3d7;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  border-color: #5e5e78;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #25e3d7;
  color: #fff;
}
.daterangepicker .ranges li.active {
  background-color: #25e3d7;
  color: #fff;
}

/*[ Magnific popup ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * Restyle Magnific Popup
 *
\*/
.mfp-arrow {
  transition: all .3s;
}

/*\
 *
 * Fade Magnific-popup
 *
\*/
.mfp-bg {
  z-index: 10000;
  background-color: #000;
  opacity: 0.9;
}

.mfp-wrap {
  z-index: 10000;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-preloader,
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-preloader,
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-preloader,
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*[ hun-button ]
//////////////////////////////////////////////////////////////////*/
.hun-button {
  font-family: Nunito;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  min-width: 100px;
  padding: 0 15px;
  transition: all .2s;
}
.hun-button.size-small {
  height: 44px;
}
.hun-button.size-normal {
  height: 50px;
}
.hun-button.size-large {
  height: 60px;
}
.hun-button.shape-square {
  border-radius: 0;
}
.hun-button.shape-round.size-small {
  border-radius: 22px;
}
.hun-button.shape-round.size-normal {
  border-radius: 25px;
}
.hun-button.shape-round.size-large {
  border-radius: 30px;
}
.hun-button.style-fill-color {
  border: none;
  background: #25e3d7;
  color: #fff;
}
.hun-button.style-fill-color:hover {
  background: #30aee1;
}
.hun-button.style-fill-light {
  border: none;
  background: #fff;
  color: #25e3d7 !important;
}
.hun-button.style-fill-light:hover {
  background: #30aee1;
  color: #fff !important;
}
.hun-button.style-border-color {
  border: 1px solid #25e3d7;
  color: #25e3d7 !important;
}
.hun-button.style-border-color:hover {
  background: #25e3d7;
  color: #fff !important;
}
.hun-button.style-border-light {
  border: 1px solid #fff;
  color: #fff !important;
}
.hun-button.style-border-light:hover {
  border-color: #25e3d7;
  background: #25e3d7;
  color: #fff;
}

/*[ pagination ]
//////////////////////////////////////////////////////////////////*/
.loop-pagination ul {
  list-style-type: none;
  padding: 0;
  letter-spacing: 6px;
}
.loop-pagination ul li {
  display: inline-block;
  vertical-align: middle;
}
.loop-pagination .page-numbers {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #5e5e78;
  letter-spacing: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f2f2f2;
  transition: all .3s;
}
.loop-pagination .page-numbers:hover {
  background-color: #25e3d7;
  color: #fff;
}
.loop-pagination .page-numbers.current {
  background-color: #25e3d7;
  color: #fff;
}
.loop-pagination .page-numbers.next i, .loop-pagination .page-numbers.prev i {
  font-size: 20px;
}

/*[ others elements ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * hun-element-dropdown-menu
 *
\*/
.hun-element-dropdown-menu.layout-1 {
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  position: relative;
  padding: 10px 15px 10px 0px;
  transition: all .3s;
}
.hun-element-dropdown-menu.layout-1::before {
  content: '\f2f9';
  font-family: 'Material-Design-Iconic-Font';
  position: absolute;
  top: 10px;
  right: 0;
}
.hun-element-dropdown-menu.layout-1 .sub-menu {
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 15px;
  background-color: #fff;
}
.hun-element-dropdown-menu.layout-1 .sub-menu li {
  color: #5e5e78;
  padding: 3px 0;
}
.hun-element-dropdown-menu.layout-1 .sub-menu li a {
  color: inherit;
  transition: all .3s;
}
.hun-element-dropdown-menu.layout-1 .sub-menu li a:hover {
  color: #25e3d7;
}

/*\
 *
 * hun-element-our-story
 *
\*/
.hun-element-our-story.layout-1 {
  position: relative;
  z-index: 0;
}
.hun-element-our-story.layout-1 .text-element {
  background-color: #fff;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  padding: 130px 50px 120px 50px;
  box-shadow: 0px 0px 65px 0px rgba(168, 82, 82, 0.26);
  position: relative;
}
.hun-element-our-story.layout-1 .text-element::before {
  content: '';
  display: block;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  position: absolute;
  top: 17px;
  left: 17px;
  border: 1px solid #25e3d7;
  pointer-events: none;
}
.hun-element-our-story.layout-1 .text-element .heading-element {
  text-align: center;
  margin-bottom: 50px;
}
.hun-element-our-story.layout-1 .text-element .heading-element .title-element {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.hun-element-our-story.layout-1 .text-element .heading-element img {
  max-width: 100%;
}
.hun-element-our-story.layout-1 .text-element .content-element {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #5e5e78;
  text-align: center;
  margin-bottom: 32px;
}
.hun-element-our-story.layout-1 .text-element .content-element .strong-content {
  display: block;
  margin-bottom: 12px;
}
.hun-element-our-story.layout-1 .text-element .info-element {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hun-element-our-story.layout-1 .text-element .info-element .sign-element {
  padding: 10px 21px;
}
.hun-element-our-story.layout-1 .text-element .info-element .author-element {
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e78;
  padding: 10px 21px;
}
.hun-element-our-story.layout-1 .text-element .info-element .author-element .name-author {
  font-family: Alice;
  font-size: 23px;
  color: #30aee1;
  display: block;
  margin-bottom: 2px;
}
.hun-element-our-story.layout-1 .pic-element-top {
  width: 22.7%;
  position: absolute;
  z-index: -1;
  right: 5.8%;
  top: 0;
  transform: translateY(-21%);
}
.hun-element-our-story.layout-1 .pic-element-top img {
  width: 100%;
}
.hun-element-our-story.layout-1 .pic-element-bottom {
  width: 31.1%;
  position: absolute;
  z-index: -1;
  left: 2.5%;
  bottom: 0;
  transform: translateY(15.8%);
}
.hun-element-our-story.layout-1 .pic-element-bottom img {
  width: 100%;
}
@media (max-width: 1199px) {
  .hun-element-our-story.layout-1 .text-element {
    width: 60%;
  }
  .hun-element-our-story.layout-1 .pic-element-top {
    right: 1.5%;
  }
  .hun-element-our-story.layout-1 .pic-element-bottom {
    left: 0;
  }
}
@media (max-width: 991px) {
  .hun-element-our-story.layout-1 .text-element {
    width: 80%;
  }
  .hun-element-our-story.layout-1 .pic-element-top {
    width: 33%;
    position: relative;
    right: 0;
    margin-right: 0;
    margin-left: auto;
    transform: translate(0, 30%);
  }
  .hun-element-our-story.layout-1 .pic-element-bottom {
    width: 45%;
    position: relative;
    left: 0;
    margin-left: 0;
    margin-right: auto;
    transform: translate(0, -18%);
  }
}
@media (max-width: 767px) {
  .hun-element-our-story.layout-1 .text-element {
    width: 88%;
    padding: 100px 30px 90px 30px;
  }
  .hun-element-our-story.layout-1 .text-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    top: 14px;
    left: 14px;
  }
  .hun-element-our-story.layout-1 .pic-element-top {
    width: 38%;
  }
  .hun-element-our-story.layout-1 .pic-element-bottom {
    width: 55%;
  }
}
@media (max-width: 575px) {
  .hun-element-our-story.layout-1 .text-element {
    width: 100%;
    padding: 90px 30px 80px 30px;
  }
  .hun-element-our-story.layout-1 .text-element .heading-element .title-element {
    font-size: 33px;
  }
  .hun-element-our-story.layout-1 .pic-element-top {
    display: none;
  }
  .hun-element-our-story.layout-1 .pic-element-bottom {
    display: none;
  }
}

.hun-element-our-story.layout-2 .heading-element {
  margin-bottom: 50px;
}
.hun-element-our-story.layout-2 .heading-element .title-element {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.hun-element-our-story.layout-2 .heading-element img {
  max-width: 100%;
}
.hun-element-our-story.layout-2 .content-element {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #5e5e78;
  margin-bottom: 32px;
}
.hun-element-our-story.layout-2 .content-element .strong-content {
  display: block;
  margin-bottom: 12px;
}
.hun-element-our-story.layout-2 .info-element {
  letter-spacing: 35px;
}
.hun-element-our-story.layout-2 .info-element .sign-element {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin: 10px 0;
}
.hun-element-our-story.layout-2 .info-element .author-element {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e78;
  margin: 10px 0;
}
.hun-element-our-story.layout-2 .info-element .author-element .name-author {
  font-family: Alice;
  font-size: 23px;
  color: #30aee1;
  display: block;
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .hun-element-our-story.layout-2 .heading-element .title-element {
    font-size: 33px;
  }
}

/*\
 *
 * hun-element-voucher
 *
\*/
.hun-element-voucher.layout-1 .slide-element {
  position: relative;
}
.hun-element-voucher.layout-1 .slide-element .slide-slick {
  overflow: hidden;
}
.hun-element-voucher.layout-1 .slide-element .slide-slick .slick-list {
  margin-right: -15px;
  margin-left: -15px;
}
.hun-element-voucher.layout-1 .slide-element .slide-slick .slick-list .slick-track {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
}
.hun-element-voucher.layout-1 .slide-element .slide-slick .item-slick {
  padding: 0px 15px;
  height: unset;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  position: relative;
  transition: all .3s;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 15px;
  transition: all .3s;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #ccc;
  position: absolute;
  top: 11px;
  transform: rotate(45deg);
  transition: all .3s;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
  margin-right: -100px;
  margin-left: auto;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.next-slick::before {
  right: 12px;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.next-slick::after {
  right: 12px;
  border-bottom: none;
  border-left: none;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
  margin-left: -100px;
  margin-right: auto;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick::before {
  left: 12px;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick::after {
  left: 12px;
  border-top: none;
  border-right: none;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow:hover {
  border-color: #25e3d7;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow:hover:before {
  background-color: #25e3d7;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow:hover:after {
  border-color: #25e3d7;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.slick-arrow.slick-hidden {
  display: none;
}
.hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow[aria-disabled="true"] {
  visibility: hidden;
}
.hun-element-voucher.layout-1 .item-element {
  display: block;
  position: relative;
  z-index: 0;
}
.hun-element-voucher.layout-1 .item-element::before {
  content: '';
  display: block;
  width: 100%;
  height: calc(100% - 110px);
  position: absolute;
  z-index: -1;
  top: 55px;
  left: 0;
  border-radius: 10px;
}
.hun-element-voucher.layout-1 .item-element .pic-item {
  height: 100%;
  display: flex;
  align-items: center;
}
.hun-element-voucher.layout-1 .item-element .pic-item img {
  max-width: 100%;
}
.hun-element-voucher.layout-1 .item-element .text-item {
  padding: 95px 52px 95px 0px;
  text-align: right;
}
.hun-element-voucher.layout-1 .item-element .text-item .logo-item {
  margin-bottom: 65px;
}
.hun-element-voucher.layout-1 .item-element .text-item .logo-item img {
  display: inline;
}
.hun-element-voucher.layout-1 .item-element .text-item .title-item {
  font-weight: 400;
  font-size: 70px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hun-element-voucher.layout-1 .item-element .text-item .description-item {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  word-break: break-word;
}
.hun-element-voucher.layout-1 .item-element.color-1::before {
  background-color: #e995b5;
}
.hun-element-voucher.layout-1 .item-element.color-2::before {
  background-color: #25e3d7;
}
.hun-element-voucher.layout-1 .item-element.color-3::before {
  background-color: #b392d2;
}
@media (max-width: 1399px) {
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow {
    border-color: #30aee1 !important;
  }
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow::before {
    background-color: #30aee1 !important;
  }
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow::after {
    border-color: #30aee1 !important;
  }
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
    margin-right: -65px;
  }
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
    margin-left: -65px;
  }
}
@media (max-width: 1349px) {
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
    margin-right: -15px;
  }
  .hun-element-voucher.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
    margin-left: -15px;
  }
}
@media (max-width: 991px) {
  .hun-element-voucher.layout-1 .item-element .text-item .logo-item {
    margin-bottom: 35px;
  }
  .hun-element-voucher.layout-1 .item-element .text-item .title-item {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hun-element-voucher.layout-1 .item-element .pic-item {
    justify-content: center;
  }
  .hun-element-voucher.layout-1 .item-element .text-item {
    padding: 95px 39px 35px 39px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .hun-element-voucher.layout-1 .item-element::before {
    height: calc(100% - 90px);
  }
  .hun-element-voucher.layout-1 .item-element .text-item .title-item {
    font-size: 38px;
  }
}

/*\
 *
 * hun-element-work-time
 *
\*/
.hun-element-work-time.layout-1 {
  font-weight: 400;
  letter-spacing: 38px;
}
.hun-element-work-time.layout-1 .title-element {
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: normal;
  margin-bottom: 0;
  margin-bottom: 10px;
}
.hun-element-work-time.layout-1 .content-element {
  display: inline-block;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 38px;
  margin-bottom: 10px;
}
.hun-element-work-time.layout-1 .content-element span {
  display: inline-block;
  letter-spacing: normal;
}

/*\
 *
 * hun-element-info-contact
 *
\*/
.hun-element-info-contact.layout-1 .title-element {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 27px;
}
.hun-element-info-contact.layout-1 .list-info {
  list-style-type: none;
  padding: 0;
}
.hun-element-info-contact.layout-1 .list-info li {
  color: #5e5e78;
  word-break: break-word;
  margin-bottom: 24px;
}
.hun-element-info-contact.layout-1 .list-info li:last-child {
  margin-bottom: 0;
}
.hun-element-info-contact.layout-1 .list-info li span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.hun-element-info-contact.layout-1 .list-info li a {
  color: inherit;
  transition: all .3s;
}
.hun-element-info-contact.layout-1 .list-info li a:hover {
  color: #25e3d7;
}

/*\
 *
 * hun-element-map
 *
\*/
.hun-element-map.layout-1 {
  width: 100%;
  height: 570px;
  border: 5px solid #c1eaef;
}
.hun-element-map.layout-1 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*[ hun-widget ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * hun-widget-info
 *
\*/
.hun-widget-info.layout-1 ul li i {
  margin-right: 6px;
}

.hun-widget-info.layout-2 p {
  margin-bottom: 20px;
}
.hun-widget-info.layout-2 ul li {
  padding-left: 27px;
  position: relative;
}
.hun-widget-info.layout-2 ul li i {
  position: absolute;
  top: 4px;
  left: 0;
}

/*\
 *
 * hun-widget-search
 *
\*/
.hun-widget-search.layout-1 {
  padding-top: 6px;
  padding-bottom: 9px;
}
.hun-widget-search.layout-1:first-child {
  padding-top: 0;
}
.hun-widget-search.layout-1:last-child {
  padding-bottom: 0;
}
.hun-widget-search.layout-1 form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 46px;
  border: 1px solid #c8c8d4;
}
.hun-widget-search.layout-1 form input {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  flex-basis: 0;
  flex-grow: 1;
  border: none;
  background-color: transparent;
  padding: 0 17px;
}
.hun-widget-search.layout-1 form input::-webkit-input-placeholder {
  color: #5e5e78;
}
.hun-widget-search.layout-1 form input:-moz-placeholder {
  color: #5e5e78;
}
.hun-widget-search.layout-1 form input::-moz-placeholder {
  color: #5e5e78;
}
.hun-widget-search.layout-1 form input:-ms-input-placeholder {
  color: #5e5e78;
}
.hun-widget-search.layout-1 form button {
  font-size: 20px;
  line-height: 1;
  color: #5e5e78;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #c8c8d4;
  background-color: transparent;
  transition: all .3s;
}
.hun-widget-search.layout-1 form button:hover {
  background-color: #25e3d7;
  color: #fff;
}

/*\
 *
 * hun-widget-author
 *
\*/
.hun-widget-author.layout-1 {
  padding-top: 6px;
  padding-bottom: 9px;
}
.hun-widget-author.layout-1:first-child {
  padding-top: 0;
}
.hun-widget-author.layout-1:last-child {
  padding-bottom: 0;
}
.hun-widget-author.layout-1 .inner-widget {
  background-color: #fafafa;
  text-align: center;
  padding: 43px 15px;
}
.hun-widget-author.layout-1 .ava-author {
  max-width: 100%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
.hun-widget-author.layout-1 .ava-author img {
  width: 100%;
  border-radius: 50%;
}
.hun-widget-author.layout-1 .name-author {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 7px;
}
.hun-widget-author.layout-1 .name-author a {
  color: inherit;
  transition: all .3s;
}
.hun-widget-author.layout-1 .name-author a:hover {
  color: #25e3d7;
}
.hun-widget-author.layout-1 .info-author {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
}
.hun-widget-author.layout-1 .info-author a {
  color: inherit;
  transition: all .3s;
}
.hun-widget-author.layout-1 .info-author a:hover {
  color: #25e3d7;
}

/*\
 *
 * hun-widget-categories
 *
\*/
.hun-widget-categories.layout-1 ul ul {
  margin-right: -40px;
}
.hun-widget-categories.layout-1 ul li {
  padding-right: 40px;
  position: relative;
}
.hun-widget-categories.layout-1 ul li a {
  padding: 5px 40px 5px 0px;
}
.hun-widget-categories.layout-1 ul li .count {
  position: absolute;
  right: 0;
  top: 0;
}

/*\
 *
 * hun-widget-posts
 *
\*/
.hun-widget-posts.layout-1 .list-post {
  padding-top: 6px;
  padding-bottom: 9px;
}
.hun-widget-posts.layout-1 .list-post .item-post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hun-widget-posts.layout-1 .list-post .item-post:last-child {
  margin-bottom: 0;
}
.hun-widget-posts.layout-1 .list-post .item-post .pic-post {
  width: 90px;
  display: block;
}
.hun-widget-posts.layout-1 .list-post .item-post .pic-post img {
  width: 100%;
  transition: all .3s;
}
.hun-widget-posts.layout-1 .list-post .item-post .pic-post:hover img {
  opacity: .68;
}
.hun-widget-posts.layout-1 .list-post .item-post .text-post {
  width: calc(100% - 90px - 16px);
  align-self: center;
}
.hun-widget-posts.layout-1 .list-post .item-post .text-post .date-post {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 7px;
}
.hun-widget-posts.layout-1 .list-post .item-post .text-post .title-post {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: #30aee1;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.1 * 2em);
  margin-bottom: 0;
}
.hun-widget-posts.layout-1 .list-post .item-post .text-post .title-post a {
  color: inherit;
  transition: all .3s;
}
.hun-widget-posts.layout-1 .list-post .item-post .text-post .title-post a:hover {
  color: #25e3d7;
}

/*\
 *
 * hun-widget-tags
 *
\*/
.hun-widget-tags.layout-1 .list-tag {
  letter-spacing: 8px;
  padding-bottom: 9px;
}
.hun-widget-tags.layout-1 .list-tag .item-tag {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #5e5e78;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f2f2f2;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 15px 7px 15px;
  margin: 6px 0px;
  transition: all .3s;
}
.hun-widget-tags.layout-1 .list-tag .item-tag:hover {
  background-color: #25e3d7;
  color: #fff;
}

/*[ hun-element-search ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-search.layout-1 .search-open {
  cursor: pointer;
  transition: all .3s;
}
.hun-element-search.layout-1 .search-form {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hun-element-search.layout-1 .search-form.open {
  opacity: 1;
  visibility: visible;
}
.hun-element-search.layout-1 .search-form.open form .search-field {
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1);
  transition-duration: 1s;
}
.hun-element-search.layout-1 .search-close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  opacity: .6;
}
.hun-element-search.layout-1 .search-close::before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin-bottom: -1px;
  transform: rotate(45deg);
}
.hun-element-search.layout-1 .search-close::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.hun-element-search.layout-1 .search-close:hover {
  opacity: 1;
}
.hun-element-search.layout-1 form {
  width: 80%;
  position: relative;
}
.hun-element-search.layout-1 form .search-field {
  width: 100%;
  height: 100px;
  padding: 20px 0;
  background: transparent;
  font-size: 50px;
  border: 0;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  border-bottom: 3px solid #25e3d7;
  transform: scale3d(0, 1, 1);
  transition: all 0.3s;
  transform-origin: 0 50% center;
}
.hun-element-search.layout-1 form .search-notice {
  display: inline-block;
  float: right;
  margin-top: 5px;
  color: #f0f0f0;
}
.hun-element-search.layout-1 .list-result {
  list-style-type: none;
  padding-left: 0;
  position: absolute;
  left: 10%;
  top: calc(50% + 80px);
  width: 80%;
  max-height: calc(50% - 110px);
  overflow-y: auto;
}
.hun-element-search.layout-1 .list-result li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}
.hun-element-search.layout-1 .list-result li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
  transition: all .2s;
}
.hun-element-search.layout-1 .list-result li a:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .hun-element-search.layout-1 .search-form form .search-field {
    font-size: 40px;
    border-width: 3px;
  }
}
@media (max-width: 767px) {
  .hun-element-search.layout-1 .search-form form .search-field {
    height: 60px;
    font-size: 25px;
    border-width: 2px;
  }
}
@media (max-width: 575px) {
  .hun-element-search.layout-1 .search-form form .search-field {
    height: 50px;
    padding: 8px 0;
    font-size: 1.2rem;
  }
  .hun-element-search.layout-1 .search-form form .search-notice {
    font-size: 0.8rem;
  }
}

/*[ hun-element-main-slider ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-main-slider.layout-1 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
  position: relative;
}
.hun-element-main-slider.layout-1 .main-slider {
  position: relative;
}
.hun-element-main-slider.layout-1 .main-slider .slide-slick .slick-track {
  display: flex;
  align-items: stretch;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick {
  border: none;
  min-height: 100vh;
  height: unset;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 200px;
  padding-bottom: 100px;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .55;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .subtitle-slide {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 25px;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  color: #fff;
  margin-bottom: 53px;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .buttons-slide {
  letter-spacing: 10px;
}
.hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .buttons-slide .hun-button {
  min-width: 174px;
  text-transform: uppercase;
  margin: 6px 0;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick {
  position: absolute;
  top: 0;
  right: 18px;
  height: 100%;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots {
  list-style-type: none;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots li {
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 5px;
  margin: 7px;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots li span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 2px;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots li span::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: all .3s;
}
.hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots li:hover span::before, .hun-element-main-slider.layout-1 .main-slider .dots-slick .slick-dots li.slick-active span::before {
  opacity: 1;
}
.hun-element-main-slider.layout-1 .social-slider {
  position: absolute;
  height: 100%;
  top: 0;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hun-element-main-slider.layout-1 .social-slider .item-social {
  font-size: 17px;
  line-height: 1;
  color: #ccc;
  padding: 5px;
  margin: 8px 5px;
  opacity: .8;
  transition: all .3s;
}
.hun-element-main-slider.layout-1 .social-slider .item-social:hover {
  color: #fff;
  opacity: .9;
}
@media (max-width: 1299px) {
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
    font-size: 100px;
  }
}
@media (max-width: 1199px) {
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .subtitle-slide {
    font-size: 25px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .hun-element-main-slider.layout-1 .main-slider .item-slick {
    padding-top: 160px;
    padding-bottom: 50px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .subtitle-slide {
    font-size: 20px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
    font-size: 69px;
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .hun-element-main-slider.layout-1 .main-slider .item-slick {
    padding-left: 69px;
    padding-right: 69px;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .subtitle-slide {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
    font-size: 55px;
  }
  .hun-element-main-slider.layout-1 .main-slider .dots-slick {
    right: 8px;
  }
  .hun-element-main-slider.layout-1 .social-slider {
    left: 10px;
  }
}
@media (max-width: 575px) {
  .hun-element-main-slider.layout-1 .main-slider .item-slick {
    padding-left: 50px;
    padding-right: 50px;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .subtitle-slide {
    font-size: 15px;
    line-height: 1.5;
  }
  .hun-element-main-slider.layout-1 .main-slider .item-slick .content-slide .title-slide {
    font-size: 38px;
  }
  .hun-element-main-slider.layout-1 .main-slider .dots-slick {
    right: 0px;
  }
  .hun-element-main-slider.layout-1 .social-slider {
    left: 0px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-main-slider.layout-2 {
  position: relative;
}
.hun-element-main-slider.layout-2 .main-slider {
  position: relative;
}
.hun-element-main-slider.layout-2 .main-slider .slide-slick .slick-track {
  display: flex;
  align-items: stretch;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick {
  border: none;
  min-height: 100vh;
  height: unset;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .title-slide {
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  color: #30aee1;
  margin-bottom: 59px;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .buttons-slide {
  letter-spacing: 10px;
}
.hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .buttons-slide .hun-button {
  min-width: 174px;
  text-transform: uppercase;
  margin: 6px 0;
}
.hun-element-main-slider.layout-2 .main-slider .dots-slick {
  position: absolute;
  top: 0;
  right: -80px;
  width: 80px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots {
  list-style-type: none;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots li {
  cursor: pointer;
  font-family: Alice;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #5e5e78;
  padding: 10px 0;
  transition: all .3s;
}
.hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots li:hover {
  color: #30aee1;
}
.hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots li.slick-active {
  font-size: 30px;
  color: #30aee1;
}
.hun-element-main-slider.layout-2 .social-slider {
  position: absolute;
  width: 80px;
  height: 100%;
  top: 0;
  left: -80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hun-element-main-slider.layout-2 .social-slider .item-social {
  font-size: 17px;
  line-height: 1;
  color: #30aee1;
  padding: 5px;
  margin: 8px 5px;
  opacity: .8;
  transition: all .3s;
}
.hun-element-main-slider.layout-2 .social-slider .item-social:hover {
  color: #25e3d7;
}
@media (max-width: 1600px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide {
    width: 60%;
  }
}
@media (max-width: 1299px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .title-slide {
    font-size: 90px;
    margin-bottom: 50px;
  }
  .hun-element-main-slider.layout-2 .main-slider .dots-slick {
    right: -50px;
    width: 50px;
  }
  .hun-element-main-slider.layout-2 .social-slider {
    width: 50px;
    left: -50px;
  }
}
@media (max-width: 1199px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide {
    width: 65%;
    margin-right: auto;
    margin-left: auto;
    padding: 60px;
  }
  .hun-element-main-slider.layout-2 .main-slider .item-slick::before {
    opacity: .6;
  }
  .hun-element-main-slider.layout-2 .main-slider .dots-slick {
    right: 0;
  }
  .hun-element-main-slider.layout-2 .social-slider {
    left: 0;
  }
}
@media (max-width: 991px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide {
    width: 80%;
  }
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .title-slide {
    font-size: 69px;
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .title-slide {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide {
    width: 100%;
    padding: 50px;
  }
  .hun-element-main-slider.layout-2 .main-slider .item-slick .content-slide .title-slide {
    font-size: 38px;
  }
  .hun-element-main-slider.layout-2 .main-slider .dots-slick {
    width: 40px;
  }
  .hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots li {
    font-size: 16px;
  }
  .hun-element-main-slider.layout-2 .main-slider .dots-slick .slick-dots li.slick-active {
    font-size: 25px;
  }
  .hun-element-main-slider.layout-2 .social-slider {
    width: 40px;
  }
}

/*\
 *
 * layout-3
 *
\*/
.hun-element-main-slider.layout-3 .main-slider {
  position: relative;
}
.hun-element-main-slider.layout-3 .main-slider .slide-slick {
  overflow: hidden;
}
.hun-element-main-slider.layout-3 .main-slider .slide-slick .slick-list {
  margin-right: -13px;
  margin-left: -13px;
  overflow: visible;
}
.hun-element-main-slider.layout-3 .main-slider .slide-slick .slick-list .slick-track {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
}
.hun-element-main-slider.layout-3 .main-slider .slide-slick .item-slick {
  padding: 0px 13px;
  height: unset;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ccc;
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #ccc;
  transform: rotate(45deg);
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.next-slick {
  margin-right: -80px;
  margin-left: auto;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.next-slick::after {
  border-left: none;
  border-bottom: none;
  margin-left: -13px;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.prev-slick {
  margin-left: -80px;
  margin-right: auto;
  flex-direction: row-reverse;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.prev-slick::after {
  border-right: none;
  border-top: none;
  margin-right: -13px;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow:hover {
  border-color: #25e3d7;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow:hover:before {
  background-color: #25e3d7;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow:hover:after {
  border-color: #25e3d7;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.slick-arrow.slick-hidden {
  display: none;
}
.hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow[aria-disabled="true"] {
  visibility: hidden;
}
.hun-element-main-slider.layout-3 .item-element {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  padding-top: 146%;
  position: relative;
}
.hun-element-main-slider.layout-3 .item-element .content-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 3.8% 6.3%;
  background-image: -webkit-linear-gradient(top, transparent 10%, rgba(40, 200, 219, 0.8));
  background-image: -o-linear-gradient(top, transparent 10%, rgba(40, 200, 219, 0.8));
  background-image: -moz-linear-gradient(top, transparent 10%, rgba(40, 200, 219, 0.8));
  background-image: linear-gradient(top, transparent 10%, rgba(40, 200, 219, 0.8));
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .item-element .content-item .title-item {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  word-break: break-word;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(-100%);
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .item-element .content-item .description-item {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  word-break: break-word;
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s;
}
.hun-element-main-slider.layout-3 .item-element:hover .content-item {
  opacity: 1;
  pointer-events: auto;
}
.hun-element-main-slider.layout-3 .item-element:hover .content-item .title-item,
.hun-element-main-slider.layout-3 .item-element:hover .content-item .description-item {
  opacity: 1;
  transform: translateY(0%);
}
@media (max-width: 1299px) {
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow {
    width: 50px;
    height: 50px;
  }
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.next-slick {
    margin-right: -50px;
  }
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.prev-slick {
    margin-left: -50px;
  }
}
@media (max-width: 1199px) {
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow::before {
    background-color: #fff;
  }
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow::after {
    border-color: #fff;
  }
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.next-slick {
    margin-right: 0px;
  }
  .hun-element-main-slider.layout-3 .main-slider .arrows-slick .item-arrow.prev-slick {
    margin-left: 0px;
  }
}

/*\
 *
 * layout-4
 *
\*/
.hun-element-main-slider.layout-4 .main-slider {
  position: relative;
}
.hun-element-main-slider.layout-4 .main-slider .slide-slick .slick-track {
  display: flex;
  align-items: stretch;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick {
  border: none;
  min-height: 100vh;
  height: unset;
  position: relative;
  z-index: 0;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .bg-left {
  pointer-events: none;
  position: absolute;
  z-index: -3;
  bottom: 0;
  left: 0;
  max-height: 100%;
  max-width: 20%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .bg-right {
  pointer-events: none;
  position: absolute;
  z-index: -3;
  bottom: 0;
  right: 0;
  max-height: 100%;
  max-width: 25%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .bg-bottom {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .pic-item {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 15px;
  transform: translate(-50%, -50%);
  position: relative;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
  font-weight: 400;
  font-size: 115px;
  line-height: 1;
  color: #fff;
  margin-bottom: 13px;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .description-slide {
  color: #fff;
  list-style-type: none;
  padding: 0;
  margin-bottom: 45px;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .description-slide li {
  padding-left: 13px;
  position: relative;
  margin-bottom: 4px;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .description-slide li:last-child {
  margin-bottom: 0;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .description-slide li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .buttons-slide {
  letter-spacing: 10px;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .buttons-slide .hun-button {
  padding: 0 37px;
  text-transform: uppercase;
  margin: 6px 0;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .buttons-slide .hun-button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #25e3d7 !important;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-01 {
  background-color: #25e3d7;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-01 .content-slide {
  top: 42%;
  left: 36%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-01 .content-slide .buttons-slide .hun-button:hover {
  color: #25e3d7 !important;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-02 {
  background-color: #b392d2;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-02 .content-slide {
  top: 49%;
  left: 68%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-02 .content-slide .buttons-slide .hun-button:hover {
  color: #b392d2 !important;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-03 {
  background-color: #e995b5;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-03 .content-slide {
  top: 49%;
  left: 68%;
}
.hun-element-main-slider.layout-4 .main-slider .item-slick.item-slide-03 .content-slide .buttons-slide .hun-button:hover {
  color: #e995b5 !important;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0px;
  width: 70px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots {
  list-style-type: none;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li {
  cursor: pointer;
  font-family: Alice;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  padding: 10px 0;
  transition: all .3s;
  position: relative;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li::before {
  content: '';
  display: block;
  width: 31px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 39px;
  opacity: 0;
  transition: all .3s;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li:hover {
  text-shadow: 0px 0px 3px #fff;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li.slick-active {
  font-size: 30px;
}
.hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li.slick-active::before {
  opacity: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick {
    height: 100vh;
  }
}
@media (max-width: 1599px) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
    font-size: 105px;
  }
}
@media (max-width: 1199px) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick {
    min-height: 0 !important;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-left {
    max-height: 350px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-right {
    max-height: 350px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .pic-item {
    max-height: 350px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide {
    width: 80%;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 250px;
    transform: translate(0%, 0%);
    position: static;
    top: 0 !important;
    left: 0 !important;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
    font-size: 95px;
    margin-bottom: 23px;
  }
}
@media all and (max-width: 1199px) and (-ms-high-contrast: none), (max-width: 1199px) and (-ms-high-contrast: active) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 991px) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-left {
    max-height: 300px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-right {
    max-height: 300px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .pic-item {
    max-height: 300px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide {
    width: 80%;
    padding-top: 120px;
    padding-bottom: 300px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
    font-size: 65px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick {
    width: 60px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li::before {
    width: 21px;
    left: 39px;
  }
}
@media (max-width: 767px) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-left {
    max-height: 200px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-right {
    max-height: 200px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .pic-item {
    max-height: 200px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide {
    width: 90%;
    padding-left: 30px;
    padding-right: 80px;
    padding-bottom: 200px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
    font-size: 55px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick {
    width: 60px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li::before {
    width: 21px;
  }
}
@media (max-width: 575px) {
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-left {
    max-height: 150px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .bg-right {
    max-height: 150px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .pic-item {
    max-height: 150px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide {
    width: 100%;
    padding-bottom: 160px;
    padding-left: 20px;
    padding-right: 50px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .title-slide {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .hun-element-main-slider.layout-4 .main-slider .item-slick .content-slide .description-slide {
    margin-bottom: 30px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick {
    width: 30px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li {
    font-size: 15px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li.slick-active {
    font-size: 20px;
  }
  .hun-element-main-slider.layout-4 .main-slider .dots-slick .slick-dots li::before {
    width: 8px;
    left: 22px;
  }
}

/*[ hun-element-social ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/

.subscribe-form-01 input::-webkit-input-placeholder {
  color: #b8edfb;
}

.subscribe-form-01 input:-moz-placeholder { /* Firefox 18- */
  color: #b8edfb;  
}

.subscribe-form-01 input::-moz-placeholder {  /* Firefox 19+ */
  color: #b8edfb;  
}

.subscribe-form-01 input:-ms-input-placeholder {  
  color: #b8edfb;  
}

.hun-element-social.layout-1 {
  letter-spacing: 7px;
}
.hun-element-social.layout-1 .item-social {
  font-size: 15px;
  line-height: 1;
  color: #b8edfb;
  letter-spacing: normal;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 5px 0px;
  transition: all .3s;
}
.hun-element-social.layout-1 .item-social:hover {
  background-color: #25e3d7;
  color: #fff;
}

.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 18px;
  right: 16px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #25d36682;
  z-index: 100;
}

.float:hover {
  color: #fff;
}

.my-float {
  margin-top: 6px;
}


/*\
 *
 * layout-2
 *
\*/
.hun-element-social.layout-2 {
  letter-spacing: 7px;
}
.hun-element-social.layout-2 .item-social {
  font-size: 15px;
  line-height: 1;
  color: #39385a;
  letter-spacing: normal;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(57, 56, 90, 0.3);
  margin: 5px 0px;
  transition: all .3s;
}
.hun-element-social.layout-2 .item-social:hover {
  border-color: #25e3d7;
  background-color: #25e3d7;
  color: #fff;
}

/*[ hun-element-heading ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-heading.layout-1 .title-element {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.hun-element-heading.layout-1 .line-element img {
  max-width: 100%;
}
.hun-element-heading.layout-1.style-light .title-element {
  color: #fff;
}
@media (max-width: 575px) {
  .hun-element-heading.layout-1 .title-element {
    font-size: 33px;
  }
}

/*[ hun-element-service ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-service.layout-1 [class*="col-"] {
  padding-bottom: 30px;
}
.hun-element-service.layout-1 .slide-element {
  position: relative;
}
.hun-element-service.layout-1 .slide-element .slide-slick {
  margin-right: -15px;
  margin-left: -15px;
}
.hun-element-service.layout-1 .slide-element .slide-slick .slick-list .slick-track {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: stretch;
}
.hun-element-service.layout-1 .slide-element .slide-slick .item-slick {
  padding: 15px;
  height: unset;
}
.hun-element-service.layout-1 .slide-element .arrows-slick {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow {
  pointer-events: auto;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  position: relative;
  transition: all .3s;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 15px;
  transition: all .3s;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid #ccc;
  position: absolute;
  top: 11px;
  transform: rotate(45deg);
  transition: all .3s;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
  margin-right: -100px;
  margin-left: auto;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.next-slick::before {
  right: 12px;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.next-slick::after {
  right: 12px;
  border-bottom: none;
  border-left: none;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
  margin-left: -100px;
  margin-right: auto;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick::before {
  left: 12px;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick::after {
  left: 12px;
  border-top: none;
  border-right: none;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow:hover {
  border-color: #25e3d7;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow:hover:before {
  background-color: #25e3d7;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow:hover:after {
  border-color: #25e3d7;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.slick-arrow.slick-hidden {
  display: none;
}
.hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow[aria-disabled="true"] {
  visibility: hidden;
}
.hun-element-service.layout-1 .item-element {
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 1px solid #ededff;
  transition: all .3s;
}
.hun-element-service.layout-1 .item-element:hover {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-service.layout-1 .item-element:hover .foot-item .link-item {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-service.layout-1 .item-element .pic-item {
  padding: 40px 30px 25px 30px;
}
.hun-element-service.layout-1 .item-element .pic-item .wrap-pic {
  display: block;
  padding: 11px;
  width: 268px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  border: 2px solid rgba(40, 200, 219, 0.2);
}
.hun-element-service.layout-1 .item-element .pic-item .wrap-pic img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-service.layout-1 .item-element .text-item {
  flex-grow: 1;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  text-align: center;
  padding: 0px 30px 23px 30px;
}
.hun-element-service.layout-1 .item-element .text-item .title-item {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #39385a;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.2 * 2em);
  margin-bottom: 13px;
}
.hun-element-service.layout-1 .item-element .text-item .title-item a {
  color: inherit;
  transition: all .3s;
}
.hun-element-service.layout-1 .item-element .text-item .title-item a:hover {
  color: #25e3d7;
}
.hun-element-service.layout-1 .item-element .text-item .meta-info-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 13px;
}
.hun-element-service.layout-1 .item-element .text-item .meta-info-item .item-info {
  margin: 0 17px;
}
.hun-element-service.layout-1 .item-element .text-item .meta-info-item .item-info i {
  font-size: 18px;
  margin-right: 5px;
}
.hun-element-service.layout-1 .item-element .text-item .description-item {
  /*word-break: break-word;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 6;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
  /*max-height: calc(1.8 * 6em);*/
}
.hun-element-service.layout-1 .item-element .foot-item {
  border-top: 1px solid #ededff;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 10px;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item .pic-author {
  display: block;
  width: 40px;
  border-radius: 50%;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item .pic-author img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item .text-author {
  width: calc(100% - 40px - 12px);
  align-self: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.25;
  color: #5e5e78;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item .text-author .name-author {
  display: block;
  font-family: Alice;
  font-size: 16px;
  color: #30aee1;
  transition: all .3s;
  margin-bottom: 3px;
}
.hun-element-service.layout-1 .item-element .foot-item .author-item .text-author .name-author:hover {
  color: #25e3d7;
}
.hun-element-service.layout-1 .item-element .foot-item .link-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 42px;
  color: #25e3d7;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #25e3d7;
  padding: 0 22px;
  overflow: hidden;
  transition: all .3s;  
  margin: 0 auto;
}
.hun-element-service.layout-1 .item-element .foot-item .link-item:hover {
  background-color: #30aee1;
  border-color: #30aee1;
  color: #fff;
}
.hun-element-service.layout-1.style-round .item-element {
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow {
    background-color: #fff;
  }
  .hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
    margin-right: -65px;
  }
  .hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
    margin-left: -65px;
  }
}
@media (max-width: 1349px) {
  .hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.next-slick {
    margin-right: -15px;
  }
  .hun-element-service.layout-1 .slide-element .arrows-slick .item-arrow.prev-slick {
    margin-left: -15px;
  }
}
@media (max-width: 991px) {
  .hun-element-service.layout-1 .item-element .pic-item {
    padding: 40px 15px 25px 15px;
  }
  .hun-element-service.layout-1 .item-element .text-item {
    padding: 0px 15px 23px 15px;
  }
  .hun-element-service.layout-1 .item-element .foot-item {
    padding: 25px 15px;
  }
}
@media (max-width: 480px) {
  .hun-element-service.layout-1 .item-element .foot-item .link-item {
    padding: 0 10px;
  }
}

/*[ hun-element-video ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-video.layout-1 {
  background-color: #fff;
  padding: 15px;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
  position: relative;
}
.hun-element-video.layout-1 .btn-play {
  font-size: 25px;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #25e3d7;
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  padding-left: 5px;
  padding-top: 2px;
  transition: all .3s;
}
.hun-element-video.layout-1 .btn-play:hover {
  background-color: #30aee1;
}
.hun-element-video.layout-1 img {
  width: 100%;
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-video.layout-2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 69%;
  height: 100%;
  position: relative;
}
.hun-element-video.layout-2 .btn-play {
  font-size: 25px;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #25e3d7;
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  padding-left: 5px;
  padding-top: 2px;
  transition: all .3s;
}
.hun-element-video.layout-2 .btn-play:hover {
  background-color: #30aee1;
}

/*[ hun-element-feature ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * hun-element-feature
 *
\*/
.hun-element-feature.layout-1 {
  text-align: center;
}
.hun-element-feature.layout-1 .icon-element {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #25e3d7;
  padding: 10px;
  margin-bottom: 23px;
}
.hun-element-feature.layout-1 .icon-element img {
  max-width: 100%;
}
.hun-element-feature.layout-1 .title-element {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
}
.hun-element-feature.layout-1 .title-element a {
  color: inherit;
  transition: all .3s;
}
.hun-element-feature.layout-1 .title-element a:hover {
  color: #25e3d7;
}
.hun-element-feature.layout-1 .description-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
}
.hun-element-feature.layout-1.align-left {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hun-element-feature.layout-1.align-left .icon-element {
  margin-bottom: 0;
  padding: 0;
}
.hun-element-feature.layout-1.align-left .text-element {
  width: calc(100% - 88px - 25px);
  align-self: center;
}
.hun-element-feature.layout-1.align-right {
  text-align: right;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hun-element-feature.layout-1.align-right .icon-element {
  margin-bottom: 0;
  padding: 0;
}
.hun-element-feature.layout-1.align-right .text-element {
  width: calc(100% - 18px - 5px);
  align-self: center;
}
@media (max-width: 767px) {
  .hun-element-feature.layout-1.align-right {
    text-align: left;
    flex-direction: row;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-feature.layout-2 {
  display: block;
  height: 100%;
  padding: 38px 10%;
  background-color: #25e3d7;
  border-radius: 10px;
  text-align: center;
}
.hun-element-feature.layout-2 .icon-element {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 27px;
}
.hun-element-feature.layout-2 .icon-element img {
  max-width: 100%;
  max-height: 100%;
}
.hun-element-feature.layout-2 .text-element .title-element {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #fff;
  word-break: break-word;
  margin-bottom: 15px;
}
.hun-element-feature.layout-2 .text-element .title-element a {
  color: inherit;
  transition: all .3s;
}
.hun-element-feature.layout-2 .text-element .title-element a:hover {
  color: #30aee1;
}
.hun-element-feature.layout-2 .text-element .description-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  word-break: break-word;
}
.hun-element-feature.layout-2:hover .icon-element {
  transition: all .9s ease;
  transform: rotateY(360deg);
}

/*[ hun-element-testimonial ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/

.hun-element-testimonial.layout-1 .slide-ava {
  width: 483px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 68px;
  overflow: hidden;
  margin-bottom: 53px;
}
.hun-element-testimonial.layout-1 .slide-ava .item-slick {
  padding: 10px;
}
.hun-element-testimonial.layout-1 .slide-ava .item-slick .wrap-ava {
  cursor: pointer;
  width: 119px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  transform-origin: bottom center;
  transform: scale(0.88);
  transition: all .5s;
}
.hun-element-testimonial.layout-1 .slide-ava .item-slick .wrap-ava img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-testimonial.layout-1 .slide-ava .item-slick.slick-current .wrap-ava, .hun-element-testimonial.layout-1 .slide-ava .item-slick.slick-center .wrap-ava {
  cursor: auto;
  transform: scale(1);
}
.hun-element-testimonial.layout-1 .slide-text .item-slick {
  text-align: center;
}
.hun-element-testimonial.layout-1 .slide-text .item-slick .content-tes {
  font-family: Alice;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.8;
  color: #303044;
  position: relative;
  z-index: 0;
  margin-bottom: 53px;
}
.hun-element-testimonial.layout-1 .slide-text .item-slick .content-tes .mark-tes {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.hun-element-testimonial.layout-1 .slide-text .item-slick .star-tes {
  font-size: 20px;
  color: #fecc33;
  margin-bottom: 5px;
}
.hun-element-testimonial.layout-1 .slide-text .item-slick .author-tes {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #303044;
}
.hun-element-testimonial.layout-1 .slide-text .item-slick .author-tes .name-author {
  font-family: Alice;
  font-size: 30px;
  margin-right: 9px;
}
@media (max-width: 575px) {
  .hun-element-testimonial.layout-1 .slide-ava {
    margin-bottom: 43px;
  }
  .hun-element-testimonial.layout-1 .slide-text .item-slick .content-tes {
    font-size: 20px;
    margin-bottom: 43px;
  }
  .hun-element-testimonial.layout-1 .slide-text .item-slick .author-tes {
    font-size: 15px;
  }
  .hun-element-testimonial.layout-1 .slide-text .item-slick .author-tes .name-author {
    font-size: 25px;
  }
}




.slick-prev {
    left: 5px;
    color: #a0a0a0;
    
    z-index: 9999999999999;
}

.slick-next {
    right: 5px;
    color: #a0a0a0;
    
    z-index: 9999999999999;
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 35%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    /*color: transparent;*/
    border: none;
    outline: none;
    background: transparent;
    
    z-index: 9999999999999;
}


.slick-prev .fa-angle-left, .slick-next .fa-angle-right {
    font-size: 40px;
    
    z-index: 9999999999999;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: #ddd;
    outline: none;
    background: transparent;
}


.your-class {
  /*width: 850px;*/
  padding: 0 60px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 68px;
  overflow: hidden;
  margin-bottom: 53px;
}
.your-class .item-slick {
  padding: 10px;
}

/*.your-class .item-slick .wrap-ava {*/
/*  cursor: pointer;*/
/*  width: 119px;*/
/*  max-width: 100%;*/
/*  margin-right: auto;*/
/*  margin-left: auto;*/
/*  border-radius: 50%;*/
/*  border: 3px solid #fff;*/
/*  background-color: #fff;*/
/*  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);*/
/*  transform-origin: bottom center;*/
/*  transform: scale(0.88);*/
/*  transition: all .5s;*/
/*}*/
/*.hun-element-testimonial.layout-1 .slide-ava .item-slick .wrap-ava img {*/
/*  width: 100%;*/
/*  border-radius: 50%;*/
/*}*/
/*.hun-element-testimonial.layout-1 .slide-ava .item-slick.slick-current .wrap-ava, .hun-element-testimonial.layout-1 .slide-ava .item-slick.slick-center .wrap-ava {*/
/*  cursor: auto;*/
/*  transform: scale(1);*/
/*}*/
.your-class .item-slick {
  text-align: center;
}
.your-class .item-slick .content-tes {
  font-family: Alice;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.8;
  color: #303044;
  position: relative;
  z-index: 0;
  margin-bottom: 53px;
}
.your-class .item-slick .content-tes .mark-tes {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.your-class .item-slick .star-tes {
  font-size: 20px;
  color: #fecc33;
  margin-bottom: 5px;
}
.your-class .item-slick .author-tes {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #303044;
}
.your-class .item-slick .author-tes .name-author {
  font-family: Alice;
  font-size: 30px;
  margin-right: 9px;
}
@media (max-width: 575px) {
  /*.hun-element-testimonial.layout-1 .slide-ava {*/
  /*  margin-bottom: 43px;*/
  /*}*/
  .your-class .item-slick .content-tes {
    font-size: 20px;
    margin-bottom: 43px;
  }
  .your-class .item-slick .author-tes {
    font-size: 15px;
  }
  .your-class .item-slick .author-tes .name-author {
    font-size: 25px;
  }
  .your-class {
        /* width: 850px; */
        padding: 0 20px;
       
    }
}










/*\
 *
 * layout-2
 *
\*/
.hun-element-testimonial.layout-2 {
  padding-top: 9.3%;
  padding-bottom: 12.5%;
  position: relative;
  z-index: 0;
}
.hun-element-testimonial.layout-2::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  background-color: #25e3d7;
  opacity: .97;
}
.hun-element-testimonial.layout-2 .bg-element-top {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  top: -1px;
  left: 0;
  width: 100%;
}
.hun-element-testimonial.layout-2 .bg-element-bottom {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.hun-element-testimonial.layout-2 .pic-element {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.hun-element-testimonial.layout-2 .text-element {
  text-align: center;
}
.hun-element-testimonial.layout-2 .text-element .mark-tes {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}
.hun-element-testimonial.layout-2 .text-element .mark-tes img {
  max-width: 100%;
  max-height: 100%;
}
.hun-element-testimonial.layout-2 .text-element .content-tes {
  font-family: Alice;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
  color: #fff;
  word-break: break-word;
  margin-bottom: 48px;
}
.hun-element-testimonial.layout-2 .text-element .author-tes {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
.hun-element-testimonial.layout-2 .text-element .author-tes .name-author {
  display: block;
  font-family: Alice;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .hun-element-testimonial.layout-2 {
    padding-top: 15%;
    padding-bottom: 15%;
  }
}
@media (max-width: 575px) {
  .hun-element-testimonial.layout-2 {
    padding-top: 110px;
    padding-bottom: 0px;
  }
  .hun-element-testimonial.layout-2 .pic-element {
    position: static;
    margin-top: 50px;
  }
  .hun-element-testimonial.layout-2 .text-element .content-tes {
    font-size: 20px;
  }
}

/*[ hun-element-price-list ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-price-list.layout-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-price-list.layout-1 .text-element {
  width: 50%;
  text-align: center;
  padding: 124px 83px 100px 103px;
  position: relative;
}
.hun-element-price-list.layout-1 .text-element::before {
  content: '';
  pointer-events: none;
  display: block;
  width: calc(100% - 17px);
  height: calc(100% - 34px);
  border: 1px solid #25e3d7;
  border-right: none;
  position: absolute;
  top: 17px;
  right: 0;
}
.hun-element-price-list.layout-1 .text-element .heading-element {
  margin-bottom: 46px;
}
.hun-element-price-list.layout-1 .text-element .heading-element .title-element {
  font-weight: 400;
  font-size: 33px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  word-break: break-word;
  letter-spacing: 4px;
  margin-bottom: 7px;
}
.hun-element-price-list.layout-1 .text-element .heading-element img {
  max-width: 100%;
}
.hun-element-price-list.layout-1 .text-element .list-price {
  text-align: left;
  margin-bottom: 51px;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 36px;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price:last-child {
  margin-bottom: 0;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price .title-item {
  flex-basis: 0;
  flex-grow: 1;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 13px;
  position: relative;
  z-index: 0;
  padding-right: 20px;
  transition: all .3s;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price .title-item .inner-title {
  background: #fff;
  box-shadow: 8px 0 0 #fff, -8px 0 0 #fff;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price .title-item::before {
  content: '........................................................................................................................................................................................................................................................................................................................................................................';
  font-family: Alice;
  font-size: 10px;
  color: #5e5e78;
  letter-spacing: 1px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 16px);
  position: absolute;
  z-index: -1;
  bottom: 4px;
  right: 8px;
  transition: all .3s;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price .price-item {
  font-family: Alice;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #30aee1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 13px;
  transition: all .3s;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price .description-item {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.8 * 3em);
  padding-right: 40px;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price:hover .title-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price:hover .title-item::before {
  color: #25e3d7;
}
.hun-element-price-list.layout-1 .text-element .list-price .item-price:hover .price-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-1 .text-element .link-element {
  text-transform: uppercase;
  padding: 0 33px;
}
.hun-element-price-list.layout-1 .pic-element {
  width: 50%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hun-element-price-list.layout-1 .pic-element::before {
  content: '';
  pointer-events: none;
  display: block;
  width: calc(100% - 17px);
  height: calc(100% - 34px);
  border: 1px solid #fff;
  border-left: none;
  position: absolute;
  top: 17px;
  left: 0;
}
@media (max-width: 1199px) {
  .hun-element-price-list.layout-1 .text-element {
    padding: 124px 53px 100px 73px;
  }
}
@media (max-width: 991px) {
  .hun-element-price-list.layout-1 .text-element {
    order: 2;
    width: 100%;
    padding: 100px;
  }
  .hun-element-price-list.layout-1 .text-element::before {
    width: calc(100% - 34px);
    height: calc(100% - 17px);
    border: 1px solid #25e3d7;
    border-top: none;
    top: 0;
    bottom: auto;
    left: 17px;
    right: auto;
  }
  .hun-element-price-list.layout-1 .pic-element {
    order: 1;
    width: 100%;
    padding-top: 80%;
  }
  .hun-element-price-list.layout-1 .pic-element::before {
    width: calc(100% - 34px);
    height: calc(100% - 17px);
    border: 1px solid #fff;
    border-bottom: none;
    top: auto;
    bottom: 0;
    left: 17px;
    right: auto;
  }
}
@media (max-width: 767px) {
  .hun-element-price-list.layout-1 .text-element {
    padding: 90px 15%;
  }
}
@media (max-width: 575px) {
  .hun-element-price-list.layout-1 .text-element {
    padding: 80px 10%;
  }
  .hun-element-price-list.layout-1 .text-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 14px);
    left: 14px;
  }
  .hun-element-price-list.layout-1 .pic-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 14px);
    left: 14px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-price-list.layout-2 {
  min-height: 529px;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
  position: relative;
  z-index: 0;
}
.hun-element-price-list.layout-2::before {
  content: '';
  display: block;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  border: 1px solid #25e3d7;
  position: absolute;
  z-index: -2;
  top: 17px;
  left: 17px;
  pointer-events: none;
}
.hun-element-price-list.layout-2 .bg-element {
  display: block;
  width: 29.4%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: #25e3d7;
}
.hun-element-price-list.layout-2 .bg-element::before {
  content: '';
  display: block;
  width: calc(100% - 17px);
  height: calc(100% - 34px);
  position: absolute;
  top: 17px;
  left: 0;
  border: 1px solid #fff;
  border-left: none;
  pointer-events: none;
}
.hun-element-price-list.layout-2 .text-element {
  width: 50%;
  padding: 93px 6.4% 80px 6.4%;
}
.hun-element-price-list.layout-2 .text-element .title-element {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: #25e3d7;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 47px;
}
.hun-element-price-list.layout-2 .text-element .list-price {
  text-align: left;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 36px;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price:last-child {
  margin-bottom: 0;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price .title-item {
  flex-basis: 0;
  flex-grow: 1;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 13px;
  position: relative;
  z-index: 0;
  padding-right: 20px;
  transition: all .3s;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price .title-item .inner-title {
  background: #fff;
  box-shadow: 8px 0 0 #fff, -8px 0 0 #fff;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price .title-item::before {
  content: '........................................................................................................................................................................................................................................................................................................................................................................';
  font-family: Alice;
  font-size: 10px;
  color: #5e5e78;
  letter-spacing: 1px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 16px);
  position: absolute;
  z-index: -1;
  bottom: 4px;
  right: 8px;
  transition: all .3s;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price .price-item {
  font-family: Alice;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #30aee1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 13px;
  transition: all .3s;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price .description-item {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.8 * 3em);
  padding-right: 40px;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price:hover .title-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price:hover .title-item::before {
  color: #25e3d7;
}
.hun-element-price-list.layout-2 .text-element .list-price .item-price:hover .price-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-2 .pic-element {
  width: 35%;
  max-height: 80%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  right: 13.2%;
}
.hun-element-price-list.layout-2 .pic-element::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}
.hun-element-price-list.layout-2.color-1::before {
  border: 1px solid #beeef4;
}
.hun-element-price-list.layout-2.color-1 .bg-element {
  background-color: #beeef4;
}
.hun-element-price-list.layout-2.color-1 .text-element .title-element {
  color: #25e3d7;
}
.hun-element-price-list.layout-2.color-1 .text-element .list-price .item-price:hover .title-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-2.color-1 .text-element .list-price .item-price:hover .title-item::before {
  color: #25e3d7;
}
.hun-element-price-list.layout-2.color-1 .text-element .list-price .item-price:hover .price-item {
  color: #25e3d7;
}
.hun-element-price-list.layout-2.color-2::before {
  border: 1px solid #f8dfe9;
}
.hun-element-price-list.layout-2.color-2 .bg-element {
  background-color: #f8dfe9;
}
.hun-element-price-list.layout-2.color-2 .text-element .title-element {
  color: #e995b5;
}
.hun-element-price-list.layout-2.color-2 .text-element .list-price .item-price:hover .title-item {
  color: #e995b5;
}
.hun-element-price-list.layout-2.color-2 .text-element .list-price .item-price:hover .title-item::before {
  color: #e995b5;
}
.hun-element-price-list.layout-2.color-2 .text-element .list-price .item-price:hover .price-item {
  color: #e995b5;
}
.hun-element-price-list.layout-2.color-3::before {
  border: 1px solid #ffe7bc;
}
.hun-element-price-list.layout-2.color-3 .bg-element {
  background-color: #ffe7bc;
}
.hun-element-price-list.layout-2.color-3 .text-element .title-element {
  color: #e7bc6e;
}
.hun-element-price-list.layout-2.color-3 .text-element .list-price .item-price:hover .title-item {
  color: #e7bc6e;
}
.hun-element-price-list.layout-2.color-3 .text-element .list-price .item-price:hover .title-item::before {
  color: #e7bc6e;
}
.hun-element-price-list.layout-2.color-3 .text-element .list-price .item-price:hover .price-item {
  color: #e7bc6e;
}
.hun-element-price-list.layout-2.img-round .pic-element {
  overflow: hidden;
  border-radius: 50%;
}
.hun-element-price-list.layout-2.img-square .pic-element {
  overflow: hidden;
  border-radius: 0;
}
.hun-element-price-list.layout-2.img-diamond .pic-element {
  width: 37.6%;
  right: 10.5%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.hun-element-price-list.layout-2.row-reverse .bg-element {
  right: auto;
  left: 0;
}
.hun-element-price-list.layout-2.row-reverse .bg-element::before {
  left: auto;
  right: 0;
  border: 1px solid #fff;
  border-right: none;
}
.hun-element-price-list.layout-2.row-reverse .text-element {
  margin-right: 0;
  margin-left: auto;
}
.hun-element-price-list.layout-2.row-reverse .pic-element {
  right: auto;
  left: 13.2%;
}
.hun-element-price-list.layout-2.row-reverse.img-diamond .pic-element {
  right: auto;
  left: 10.5%;
}
@media (max-width: 767px) {
  .hun-element-price-list.layout-2 {
    padding-bottom: 10%;
  }
  .hun-element-price-list.layout-2 .bg-element {
    width: 100%;
    height: auto;
    padding-top: 35%;
    position: absolute;
    z-index: -1;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .hun-element-price-list.layout-2 .bg-element::before {
    width: calc(100% - 34px);
    height: calc(100% - 17px);
    top: 0px;
    left: 17px;
    border: 1px solid #fff;
    border-top: none;
  }
  .hun-element-price-list.layout-2 .text-element {
    width: 100%;
    padding: 93px 10% 60px 10%;
  }
  .hun-element-price-list.layout-2 .pic-element {
    width: 50% !important;
    margin-right: auto;
    margin-left: auto;
    position: unset;
    transform: translateY(0%);
  }
  .hun-element-price-list.layout-2.row-reverse .bg-element::before {
    left: 17px;
    right: auto;
    border: 1px solid #fff;
    border-top: none;
  }
}
@media (max-width: 575px) {
  .hun-element-price-list.layout-2::before {
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    top: 14px;
    left: 14px;
  }
  .hun-element-price-list.layout-2 .bg-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 14px);
    left: 14px;
  }
}

/*[ hun-element-post ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-post.layout-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.hun-element-post.layout-1 .pic-element {
  width: 50%;
  overflow: hidden;
}
.hun-element-post.layout-1 .pic-element .wrap-pic {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all .3s;
}
.hun-element-post.layout-1 .pic-element:hover .wrap-pic {
  opacity: .68;
}
.hun-element-post.layout-1 .text-element {
  width: 50%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 50px 0 50px 50px;
}
.hun-element-post.layout-1 .text-element .cat-element {
  letter-spacing: 10px;
  margin-bottom: 25px;
}
.hun-element-post.layout-1 .text-element .cat-element .item-cat {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #5e5e78;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f2f2f2;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 15px 7px 15px;
  margin: 6px 0px;
  transition: all .3s;
}
.hun-element-post.layout-1 .text-element .cat-element .item-cat:hover {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-post.layout-1 .text-element .title-element {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.1;
  color: #30aee1;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.1 * 2em);
  margin-bottom: 16px;
}
.hun-element-post.layout-1 .text-element .title-element a {
  color: inherit;
  transition: all .3s;
}
.hun-element-post.layout-1 .text-element .title-element a:hover {
  color: #25e3d7;
}
.hun-element-post.layout-1 .text-element .description-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.8 * 3em);
  margin-bottom: 46px;
}
.hun-element-post.layout-1 .text-element .link-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #25e3d7;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
}
.hun-element-post.layout-1 .text-element .link-element:hover {
  color: #30aee1;
}
.hun-element-post.layout-1.style-reverse {
  flex-direction: row-reverse;
}
.hun-element-post.layout-1.style-reverse .text-element {
  text-align: right;
  padding: 50px 50px 50px 0px;
}
@media (max-width: 991px) {
  .hun-element-post.layout-1 .text-element {
    padding: 39px 0 39px 39px;
  }
  .hun-element-post.layout-1.style-reverse .text-element {
    padding: 39px 39px 39px 0px;
  }
}
@media (max-width: 767px) {
  .hun-element-post.layout-1 {
    margin-bottom: 60px;
  }
  .hun-element-post.layout-1:last-child {
    margin-bottom: 0;
  }
  .hun-element-post.layout-1 .pic-element {
    width: 100%;
  }
  .hun-element-post.layout-1 .pic-element .wrap-pic {
    padding-top: 68%;
  }
  .hun-element-post.layout-1 .text-element {
    width: 100%;
    padding: 40px 0px 0px 0px;
    min-height: unset;
  }
  .hun-element-post.layout-1 .text-element .description-element {
    margin-bottom: 30px;
  }
  .hun-element-post.layout-1.style-reverse {
    flex-direction: row-reverse;
  }
  .hun-element-post.layout-1.style-reverse .text-element {
    text-align: left;
    padding: 40px 0px 0px 0px;
  }
}
@media (max-width: 575px) {
  .hun-element-post.layout-1 .text-element .title-element {
    font-size: 25px;
  }
  .hun-element-post.layout-1 .text-element .description-element {
    margin-bottom: 30px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-post.layout-2 [class*="col-"] {
  padding-bottom: 30px;
}
.hun-element-post.layout-2 .feature-item-post {
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 76.8%;
}
.hun-element-post.layout-2 .feature-item-post.video-item {
  position: relative;
}
.hun-element-post.layout-2 .feature-item-post.video-item .btn-play {
  font-size: 25px;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #25e3d7;
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  padding-left: 5px;
  padding-top: 2px;
  transition: all .3s;
}
.hun-element-post.layout-2 .feature-item-post.video-item .btn-play:hover {
  background-color: #30aee1;
}
.hun-element-post.layout-2 .item-post {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  transition: all .3s;
  margin-bottom: 30px;
}
.hun-element-post.layout-2 .item-post:last-child {
  margin-bottom: 0;
}
.hun-element-post.layout-2 .item-post:hover {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-post.layout-2 .item-post .pic-item {
  width: 240px;
  position: relative;
  overflow: hidden;
}
.hun-element-post.layout-2 .item-post .pic-item::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 85%;
}
.hun-element-post.layout-2 .item-post .pic-item .wrap-pic {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all .3s;
}
.hun-element-post.layout-2 .item-post .pic-item:hover .wrap-pic {
  opacity: .68;
}
.hun-element-post.layout-2 .item-post .text-item {
  width: calc(100% - 240px);
  padding: 15px 15px 15px 6.1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ededff;
  border-left: none;
}
.hun-element-post.layout-2 .item-post .text-item .title-item {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.2 * 2em);
  margin-bottom: 17px;
}
.hun-element-post.layout-2 .item-post .text-item .title-item a {
  color: inherit;
  transition: all .3s;
}
.hun-element-post.layout-2 .item-post .text-item .title-item a:hover {
  color: #25e3d7;
}
.hun-element-post.layout-2 .item-post .text-item .info-item {
  list-style-type: none;
  padding: 0;
}
.hun-element-post.layout-2 .item-post .text-item .info-item li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  padding-left: 26px;
  position: relative;
  margin-bottom: 7px;
}
.hun-element-post.layout-2 .item-post .text-item .info-item li:last-child {
  margin-bottom: 0;
}
.hun-element-post.layout-2 .item-post .text-item .info-item li a {
  color: inherit;
  transition: all .3s;
}
.hun-element-post.layout-2 .item-post .text-item .info-item li a:hover {
  color: #25e3d7;
}
.hun-element-post.layout-2 .item-post .text-item .info-item li i {
  font-size: 15px;
  color: #25e3d7;
  position: absolute;
  top: 4px;
  left: 0;
}
@media (max-width: 480px) {
  .hun-element-post.layout-2 .item-post .pic-item {
    width: 100%;
  }
  .hun-element-post.layout-2 .item-post .text-item {
    width: 100%;
    padding: 25px 6.1%;
    border: 1px solid #ededff;
    border-top: none;
  }
}

/*[ hun-element-image ]
//////////////////////////////////////////////////////////////////*/
.hun-element-image img {
  max-width: 100%;
}

/*\
 *
 * layout-1
 *
\*/
.hun-element-image.layout-1 {
  padding-left: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 0;
}
.hun-element-image.layout-1::before {
  content: '';
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  border: 5px solid #25e3d7;
  opacity: .5;
}
.hun-element-image.layout-1 img {
  width: 100%;
}

/*[ hun-element-gallery ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-gallery.layout-1 {
  overflow: hidden;
}
.hun-element-gallery.layout-1 [class*="col-"] .row {
  height: 100%;
}
.hun-element-gallery.layout-1 .item-gallery {
  height: calc(100% - 30px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 83.7%;
  margin-bottom: 30px;
}
.hun-element-gallery.layout-1 .item-gallery.size-2x {
  padding-top: 40.4%;
}
.hun-element-gallery.layout-1 .item-gallery .overlay-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
}
.hun-element-gallery.layout-1 .item-gallery .overlay-item .title-item {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: all .3s;
}
.hun-element-gallery.layout-1 .item-gallery .overlay-item .description-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s;
}
.hun-element-gallery.layout-1 .item-gallery .overlay-item:hover {
  opacity: 1;
}
.hun-element-gallery.layout-1 .item-gallery .overlay-item:hover .title-item,
.hun-element-gallery.layout-1 .item-gallery .overlay-item:hover .description-item {
  transform: translateY(0%);
  opacity: 1;
}
@media (max-width: 991px) {
  .hun-element-gallery.layout-1 .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .hun-element-gallery.layout-1 .row [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .hun-element-gallery.layout-1 .item-gallery {
    height: calc(100% - 16px);
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .hun-element-gallery.layout-1 .item-gallery .overlay-item .title-item {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hun-element-gallery.layout-1 .item-gallery .overlay-item .title-item {
    font-size: 18px;
  }
  .hun-element-gallery.layout-1 .item-gallery .overlay-item .description-item {
    font-size: 12px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-gallery.layout-2 {
  overflow: hidden;
}
.hun-element-gallery.layout-2 [class*="col-"] .row {
  height: 100%;
}
.hun-element-gallery.layout-2 .item-gallery {
  height: calc(100% - 30px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 83.7%;
  margin-bottom: 30px;
}
.hun-element-gallery.layout-2 .item-gallery.size-1x2 {
  padding-top: 175.1%;
}
.hun-element-gallery.layout-2 .item-gallery.size-2x2 {
  padding-top: 84.1%;
}
.hun-element-gallery.layout-2 .item-gallery .overlay-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
}
.hun-element-gallery.layout-2 .item-gallery .overlay-item .title-item {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: all .3s;
}
.hun-element-gallery.layout-2 .item-gallery .overlay-item .description-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s;
}
.hun-element-gallery.layout-2 .item-gallery .overlay-item:hover {
  opacity: 1;
}
.hun-element-gallery.layout-2 .item-gallery .overlay-item:hover .title-item,
.hun-element-gallery.layout-2 .item-gallery .overlay-item:hover .description-item {
  transform: translateY(0%);
  opacity: 1;
}
@media (max-width: 991px) {
  .hun-element-gallery.layout-2 .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .hun-element-gallery.layout-2 .row [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }
  .hun-element-gallery.layout-2 .item-gallery {
    height: calc(100% - 16px);
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .hun-element-gallery.layout-2 .item-gallery .overlay-item .title-item {
    font-size: 18px;
  }
  .hun-element-gallery.layout-2 .item-gallery .overlay-item .description-item {
    font-size: 12px;
  }
}

/*\
 *
 * layout-3
 *
\*/
.hun-element-gallery.layout-3 {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}
.hun-element-gallery.layout-3 .item-gallery {
  display: block;
  width: calc((100% - 30px * 4) / 4);
  margin: 15px;
  overflow: hidden;
}
.hun-element-gallery.layout-3 .item-gallery img {
  width: 100%;
  transition: all .3s;
}
.hun-element-gallery.layout-3 .item-gallery:hover img {
  opacity: .68;
}
@media (max-width: 991px) {
  .hun-element-gallery.layout-3 {
    padding: 8px;
  }
  .hun-element-gallery.layout-3 .item-gallery {
    width: calc((100% - 16px * 4) / 4);
    margin: 8px;
  }
}
@media (max-width: 767px) {
  .hun-element-gallery.layout-3 .item-gallery {
    width: calc((100% - 16px * 2) / 2);
  }
}

/*\
 *
 * layout-4
 *
\*/
.hun-element-gallery.layout-4 {
  column-count: 3;
  column-gap: 30px;
  padding: 30px 30px 0px 30px;
  line-height: 0;
}
.hun-element-gallery.layout-4 .item-gallery {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}
.hun-element-gallery.layout-4 .item-gallery img {
  width: 100%;
  transition: all .3s;
}
.hun-element-gallery.layout-4 .item-gallery:hover img {
  opacity: .68;
}
@media (max-width: 991px) {
  .hun-element-gallery.layout-4 {
    column-gap: 15px;
    padding: 15px 15px 0px 15px;
  }
  .hun-element-gallery.layout-4 .item-gallery {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .hun-element-gallery.layout-4 {
    column-count: 2;
  }
}

/*\
 *
 * layout-5
 *
\*/
.hun-element-gallery.layout-5 {
  overflow: hidden;
}
.hun-element-gallery.layout-5 .row {
  margin-right: -10px;
  margin-left: -10px;
}
.hun-element-gallery.layout-5 .row [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.hun-element-gallery.layout-5 .row [class*="col-"] .row {
  height: 100%;
}
.hun-element-gallery.layout-5 .item-gallery {
  height: calc(100% - 20px);
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 81.4%;
  margin-bottom: 20px;
  transition: all .3s;
}
.hun-element-gallery.layout-5 .item-gallery:hover {
  opacity: .68;
}
.hun-element-gallery.layout-5 .item-gallery.size-2x {
  padding-top: 39.2%;
}

/*[ hun-element-team ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-team.layout-1 [class*="col-"] {
  padding-bottom: 30px;
}
.hun-element-team.layout-1 .item-team {
  position: relative;
  border: 1px solid #ededff;
  transition: all .3s;
}
.hun-element-team.layout-1 .item-team:hover {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-team.layout-1 .item-team .pic-item {
  width: 100%;
}
.hun-element-team.layout-1 .item-team .content-item {
  pointer-events: none;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-top: 18.9%;
  padding-left: 8%;
  padding-right: 10px;
}
.hun-element-team.layout-1 .item-team .content-item .name-item {
  pointer-events: auto;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 10px;
}
.hun-element-team.layout-1 .item-team .content-item .name-item a {
  color: inherit;
  transition: all .3s;
}
.hun-element-team.layout-1 .item-team .content-item .name-item a:hover {
  color: #25e3d7;
}
.hun-element-team.layout-1 .item-team .content-item .info-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.hun-element-team.layout-1 .item-team .content-item .social-link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  margin-left: -5px;
  max-height: calc(100% - 100px);
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social {
  pointer-events: auto;
  font-size: 15px;
  color: #25e3d7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #25e3d7;
  margin: 5px;
  transition: all .3s;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:hover {
  border-color: #25e3d7;
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(1) {
  border-color: #46cbec;
  color: #46cbec;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(1):hover {
  border-color: #46cbec;
  background-color: #46cbec;
  color: #fff;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(2) {
  border-color: #4090e1;
  color: #4090e1;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(2):hover {
  border-color: #4090e1;
  background-color: #4090e1;
  color: #fff;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(3) {
  border-color: #f37ca9;
  color: #f37ca9;
}
.hun-element-team.layout-1 .item-team .content-item .social-link .item-social:nth-child(3):hover {
  border-color: #f37ca9;
  background-color: #f37ca9;
  color: #fff;
}
@media (max-width: 1199px) {
  .hun-element-team.layout-1 .item-team .content-item {
    padding-top: 12.9%;
  }
}
@media (max-width: 991px) {
  .hun-element-team.layout-1 .item-team .content-item {
    padding-top: 18.9%;
  }
}
@media (max-width: 575px) {
  .hun-element-team.layout-1 .item-team .content-item {
    padding-top: 12.9%;
  }
}

/*[ hun-element-banner ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-banner.layout-1 {
  background-color: #ffdce1;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0 15px;
}
.hun-element-banner.layout-1 .pic-element {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 50%;
  max-height: 95%;
  max-width: 100%;
}
.hun-element-banner.layout-1 .row {
  min-height: 700px;
}
.hun-element-banner.layout-1 .row [class*="col-"] {
  padding-top: 80px;
  padding-bottom: 80px;
}
.hun-element-banner.layout-1 .title-element {
  font-weight: 400;
  font-size: 100px;
  line-height: 1.1;
  color: #30aee1;
  margin-bottom: 20px;
}
.hun-element-banner.layout-1 .info-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #39385a;
  text-transform: uppercase;
  letter-spacing: 15px;
  margin-bottom: 60px;
}
.hun-element-banner.layout-1 .info-element .item-info {
  display: inline-block;
  letter-spacing: normal;
  color: inherit;
  position: relative;
  transition: all .3s;
}
.hun-element-banner.layout-1 .info-element .item-info::before {
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  background-color: #39385a;
  position: absolute;
  top: 7px;
  right: -10px;
}
.hun-element-banner.layout-1 .info-element .item-info:last-child:before {
  display: none;
}
.hun-element-banner.layout-1 .info-element .item-info:hover {
  color: #25e3d7;
}
.hun-element-banner.layout-1 .link-element {
  text-transform: uppercase;
  padding: 0 37px;
}
@media (max-width: 991px) {
  .hun-element-banner.layout-1 .row {
    min-height: 0px;
  }
  .hun-element-banner.layout-1 .row [class*="col-"] {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .hun-element-banner.layout-1 .pic-element {
    position: unset;
    max-width: 90%;
    max-height: 350px;
  }
  .hun-element-banner.layout-1 .title-element {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hun-element-banner.layout-1 .title-element {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hun-element-banner.layout-1 .row [class*="col-"] {
    padding-top: 80px;
  }
  .hun-element-banner.layout-1 .title-element {
    font-size: 50px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-banner.layout-2 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 92px 15px;
  text-align: center;
}
.hun-element-banner.layout-2 .pic-element {
  display: inline-block;
  max-width: 100%;
}
.hun-element-banner.layout-2 img {
  max-width: 100%;
}

/*[ hun-element-pricing-table ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-pricing-table.layout-1 [class*="col-"] {
  padding-bottom: 30px;
}
.hun-element-pricing-table.layout-1 .item-pricing {
  height: 100%;
  width: 270px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-top-left-radius: 135px;
  border-top-right-radius: 135px;
  border: 1px solid #ededff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 20px 35px 20px;
  transition: all .3s;
}
.hun-element-pricing-table.layout-1 .item-pricing:hover {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-pricing-table.layout-1 .item-pricing:hover .link-item {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-pricing-table.layout-1 .item-pricing .pic-item {
  width: 227px;
  max-width: 100%;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  margin-bottom: 23px;
}
.hun-element-pricing-table.layout-1 .item-pricing .pic-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 7px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
}
.hun-element-pricing-table.layout-1 .item-pricing .pic-item img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-pricing-table.layout-1 .item-pricing .title-item {
  font-weight: 400;
  font-size: 27px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 0;
}
.hun-element-pricing-table.layout-1 .item-pricing .price-item {
  font-family: Alice;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #30aee1;
  margin-top: -8px;
  margin-bottom: 8px;
}
.hun-element-pricing-table.layout-1 .item-pricing .price-item .icon-money {
  font-size: 20px;
  vertical-align: super;
  margin-right: 2px;
}
.hun-element-pricing-table.layout-1 .item-pricing .price-item .number {
  font-size: 60px;
}
.hun-element-pricing-table.layout-1 .item-pricing .info-item {
  flex-grow: 1;
  list-style-type: none;
  padding: 0;
  margin-bottom: 26px;
}
.hun-element-pricing-table.layout-1 .item-pricing .info-item li {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #39385a;
  margin-bottom: 8px;
}
.hun-element-pricing-table.layout-1 .item-pricing .info-item li:last-child {
  margin-bottom: 0;
}
.hun-element-pricing-table.layout-1 .item-pricing .link-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 42px;
  color: #25e3d7;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  border-radius: 22px;
  border: 1px solid #25e3d7;
  padding: 0 28px;
  overflow: hidden;
  transition: all .3s;
}
.hun-element-pricing-table.layout-1 .item-pricing .link-item:hover {
  background-color: #30aee1;
  border-color: #30aee1;
  color: #fff;
}

/*[ hun-element-instagram ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-instagram.layout-1 {
  text-align: center;
  overflow: hidden;
}
.hun-element-instagram.layout-1 .title-element {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: #30aee1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hun-element-instagram.layout-1 .info-element {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #39385a;
  margin-bottom: 40px;
}
.hun-element-instagram.layout-1 .info-element a {
  color: inherit;
  transition: all .3s;
}
.hun-element-instagram.layout-1 .info-element a:hover {
  color: #25e3d7;
}
.hun-element-instagram.layout-1 .row {
  margin-right: -10px;
  margin-left: -10px;
}
.hun-element-instagram.layout-1 .row [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}
.hun-element-instagram.layout-1 .item-insta {
  position: relative;
}
.hun-element-instagram.layout-1 .item-insta .overlay-item {
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
}
.hun-element-instagram.layout-1 .item-insta .overlay-item i {
  font-size: 25px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-100%);
  transition: all .3s;
}
.hun-element-instagram.layout-1 .item-insta .overlay-item span {
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s;
}
.hun-element-instagram.layout-1 .item-insta img {
  width: 100%;
}
.hun-element-instagram.layout-1 .item-insta:hover .overlay-item {
  opacity: 1;
}
.hun-element-instagram.layout-1 .item-insta:hover .overlay-item i,
.hun-element-instagram.layout-1 .item-insta:hover .overlay-item span {
  opacity: 1;
  transform: translateY(0%);
}

/*[ hun-element-progress ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-progress.layout-1 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.hun-element-progress.layout-1 .text-element {
  flex-grow: 1;
  flex-basis: 0;
  padding-right: 30px;
}
.hun-element-progress.layout-1 .progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  margin-top: 7px;
}
.hun-element-progress.layout-1 .progress-bar .inner-progress {
  display: block;
  width: 0;
  height: 100%;
  background-color: #25e3d7;
}
.hun-element-progress.layout-1.color-2 {
  color: #5e5e78;
}
.hun-element-progress.layout-1.color-2 .progress-bar {
  background-color: rgba(40, 200, 219, 0.15);
}

/*[ hun-element-brand ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-brand.layout-1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hun-element-brand.layout-1 .item-brand {
  display: block;
  padding: 25px;
  transition: all .3s;
}
.hun-element-brand.layout-1 .item-brand:hover {
  opacity: .6;
}
@media (max-width: 991px) {
  .hun-element-brand.layout-1 .item-brand {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .hun-element-brand.layout-1 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hun-element-brand.layout-1 .item-brand {
    width: calc(100% / 3);
    text-align: center;
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .hun-element-brand.layout-1 .item-brand {
    padding: 15px;
  }
}

/*[ hun-element-blog ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-blog.layout-1 {
  margin-bottom: 63px;
}
.hun-element-blog.layout-1 .item-blog {
  margin-bottom: 63px;
}
.hun-element-blog.layout-1 .item-blog:last-child {
  margin-bottom: 0;
}
.hun-element-blog.layout-1 .item-blog .pic-blog {
  overflow: hidden;
  margin-bottom: 39px;
}
.hun-element-blog.layout-1 .item-blog .pic-blog img {
  width: 100%;
  transition: all .3s;
}
.hun-element-blog.layout-1 .item-blog .pic-blog:hover img {
  opacity: .68;
}
.hun-element-blog.layout-1 .item-blog .text-blog {
  margin-bottom: 36px;
}
.hun-element-blog.layout-1 .item-blog .text-blog .cat-blog {
  letter-spacing: 10px;
  margin-bottom: 23px;
}
.hun-element-blog.layout-1 .item-blog .text-blog .cat-blog .item-cat {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #5e5e78;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f2f2f2;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 15px 7px 15px;
  margin: 6px 0px;
  transition: all .3s;
}
.hun-element-blog.layout-1 .item-blog .text-blog .cat-blog .item-cat:hover {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-blog.layout-1 .item-blog .text-blog .title-blog {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 14px;
}
.hun-element-blog.layout-1 .item-blog .text-blog .title-blog a {
  color: inherit;
  transition: all .3s;
}
.hun-element-blog.layout-1 .item-blog .text-blog .title-blog a:hover {
  color: #25e3d7;
}
.hun-element-blog.layout-1 .item-blog .text-blog .description-blog {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
}
.hun-element-blog.layout-1 .item-blog .foot-item {
  display: flex;
  justify-content: space-between;
}
.hun-element-blog.layout-1 .item-blog .foot-item .link-blog {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #25e3d7;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  padding-right: 30px;
  transition: all .3s;
}
.hun-element-blog.layout-1 .item-blog .foot-item .link-blog:hover {
  color: #30aee1;
}
.hun-element-blog.layout-1 .item-blog .foot-item .share-link {
  list-style-type: none;
  padding: 0;
  text-align: right;
  letter-spacing: 11px;
  margin: 0 -5px;
}
.hun-element-blog.layout-1 .item-blog .foot-item .share-link li {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  color: #30aee1;
  letter-spacing: normal;
}
.hun-element-blog.layout-1 .item-blog .foot-item .share-link li a {
  padding: 5px;
  color: inherit;
  transition: all .3s;
}
.hun-element-blog.layout-1 .item-blog .foot-item .share-link li a:hover {
  color: #25e3d7;
}
@media (max-width: 575px) {
  .hun-element-blog.layout-1 .item-blog .text-blog .title-blog {
    font-size: 25px;
  }
}

/*\
 *
 * layout-2
 *
\*/
.hun-element-blog.layout-2 {
  overflow: hidden;
  text-align: center;
}
.hun-element-blog.layout-2 .item-blog {
  text-align: left;
  margin-bottom: 40px;
}
.hun-element-blog.layout-2 .item-blog .pic-blog {
  overflow: hidden;
  margin-bottom: 26px;
}
.hun-element-blog.layout-2 .item-blog .pic-blog img {
  width: 100%;
  transition: all .3s;
}
.hun-element-blog.layout-2 .item-blog .pic-blog:hover img {
  opacity: .68;
}
.hun-element-blog.layout-2 .item-blog .text-blog .cat-blog {
  letter-spacing: 10px;
  margin-bottom: 14px;
}
.hun-element-blog.layout-2 .item-blog .text-blog .cat-blog .item-cat {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #5e5e78;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f2f2f2;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 15px 7px 15px;
  margin: 6px 0px;
  transition: all .3s;
}
.hun-element-blog.layout-2 .item-blog .text-blog .cat-blog .item-cat:hover {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-blog.layout-2 .item-blog .text-blog .title-blog {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 0px;
}
.hun-element-blog.layout-2 .item-blog .text-blog .title-blog a {
  color: inherit;
  padding: 5px 0px;
  transition: all .3s;
}
.hun-element-blog.layout-2 .item-blog .text-blog .title-blog a:hover {
  color: #25e3d7;
}
.hun-element-blog.layout-2 .btn-loadmore {
  text-transform: uppercase;
  padding: 0 37px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .hun-element-blog.layout-2 .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .hun-element-blog.layout-2 .row [class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .hun-element-blog.layout-2 .item-blog .text-blog .title-blog {
    font-size: 25px;
  }
}

/*[ hun-element-blog-detail ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-blog-detail.layout-1 .pic-blog {
  overflow: hidden;
  margin-bottom: 39px;
}
.hun-element-blog-detail.layout-1 .pic-blog img {
  width: 100%;
}
.hun-element-blog-detail.layout-1 .cat-blog {
  letter-spacing: 10px;
  margin-bottom: 23px;
}
.hun-element-blog-detail.layout-1 .cat-blog .item-cat {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #5e5e78;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f2f2f2;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 15px 7px 15px;
  margin: 6px 0px;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .cat-blog .item-cat:hover {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-blog-detail.layout-1 .title-blog {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 14px;
}
.hun-element-blog-detail.layout-1 .title-blog a {
  color: inherit;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .title-blog a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .content-blog {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  margin-bottom: 40px;
}
.hun-element-blog-detail.layout-1 .content-blog .subtitle-content {
  font-family: Nunito;
  font-weight: 700;
  font-size: 17px;
  color: #5e5e78;
  padding-top: 19px;
  margin-bottom: 12px;
}
.hun-element-blog-detail.layout-1 .content-blog .subtitle-content:first-child {
  padding-top: 0;
}
.hun-element-blog-detail.layout-1 .content-blog .subtitle-content:last-child {
  margin-bottom: 0;
}
.hun-element-blog-detail.layout-1 .content-blog p {
  margin-bottom: 9px;
}
.hun-element-blog-detail.layout-1 .content-blog p:last-child {
  margin-bottom: 0;
}
.hun-element-blog-detail.layout-1 .content-blog figure {
  padding-top: 32px;
  padding-bottom: 18px;
}
.hun-element-blog-detail.layout-1 .content-blog .hun-element-gallery.layout-5 {
  margin-top: 42px;
  margin-bottom: 13px;
}
.hun-element-blog-detail.layout-1 .info-and-share {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.hun-element-blog-detail.layout-1 .info-and-share .info-blog {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 20px;
  padding-right: 20px;
}
.hun-element-blog-detail.layout-1 .info-and-share .info-blog .item-info {
  display: inline-block;
  letter-spacing: 3px;
}
.hun-element-blog-detail.layout-1 .info-and-share .info-blog .item-info a {
  color: inherit;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .info-and-share .info-blog .item-info a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .info-and-share .share-link {
  list-style-type: none;
  padding: 0;
  text-align: right;
  letter-spacing: 11px;
  margin: 0 -5px;
}
.hun-element-blog-detail.layout-1 .info-and-share .share-link li {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  color: #30aee1;
  letter-spacing: normal;
}
.hun-element-blog-detail.layout-1 .info-and-share .share-link li a {
  padding: 5px;
  color: inherit;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .info-and-share .share-link li a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .author-blog {
  background-color: #fafafa;
  padding: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 90px;
}
.hun-element-blog-detail.layout-1 .author-blog .pic-author {
  width: 170px;
  border-radius: 50%;
}
.hun-element-blog-detail.layout-1 .author-blog .pic-author img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author {
  width: calc(100% - 170px - 25px);
  align-self: center;
  color: #5e5e78;
  word-break: break-word;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .name-author {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 6px;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .name-author a {
  color: inherit;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .name-author a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .info-author {
  margin-bottom: 16px;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .info-author a {
  color: inherit;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .author-blog .text-author .info-author a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .comments-blog {
  margin-bottom: 90px;
}
.hun-element-blog-detail.layout-1 .comments-blog .title-comments {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 13px;
}
.hun-element-blog-detail.layout-1 .comments-blog .list-comment {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.hun-element-blog-detail.layout-1 .comments-blog .list-comment .list-comment {
  width: 100%;
  padding-left: calc(100px + 40px);
  border-top: 1px solid #c8c8d4;
}
.hun-element-blog-detail.layout-1 .comments-blog .list-comment .list-comment .item-comment:last-child {
  border-bottom: none;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  border-bottom: 1px solid #c8c8d4;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .ava-comment {
  width: 100px;
  margin-bottom: 31px;
  display: block;
  border-radius: 50%;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment {
  width: calc(100% - 100px - 40px);
  margin-bottom: 31px;
  position: relative;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .star-cmt {
  font-size: 20px;
  line-height: 1;
  color: #ffcc33;
  padding-right: 80px;
  margin-bottom: 10px;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .info-cmt {
  margin-bottom: 12px;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .info-cmt .name-author {
  display: inline-block;
  font-family: Alice;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  padding-right: 8px;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .info-cmt .date-cmt {
  display: inline-block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .info-cmt .date-cmt::before {
  content: '/';
  margin-right: 12px;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .content-cmt {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .link-cmt {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  text-transform: uppercase;
  letter-spacing: 10px;
  position: absolute;
  top: -2px;
  right: 0;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .link-cmt a {
  display: inline-block;
  color: inherit;
  letter-spacing: 2px;
  text-decoration: underline;
  transition: all .3s;
}
.hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .link-cmt a:hover {
  color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .form-comment .title-form {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 53px;
}
.hun-element-blog-detail.layout-1 .form-comment .row {
  margin-right: -10px;
  margin-left: -10px;
}
.hun-element-blog-detail.layout-1 .form-comment .row [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field {
  font-weight: 400;
  font-size: 15px;
  color: #5e5e78;
  line-height: 1.8;
  display: block;
  width: 100%;
  border: 1px solid #c8c8d4;
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 20px;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field:focus {
  border-color: #25e3d7;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field::-webkit-input-placeholder {
  color: #5e5e78;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field:-moz-placeholder {
  color: #5e5e78;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field::-moz-placeholder {
  color: #5e5e78;
}
.hun-element-blog-detail.layout-1 .form-comment .input-field:-ms-input-placeholder {
  color: #5e5e78;
}
.hun-element-blog-detail.layout-1 .form-comment input {
  height: 46px;
}
.hun-element-blog-detail.layout-1 .form-comment textarea {
  min-height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hun-element-blog-detail.layout-1 .form-comment button {
  text-transform: uppercase;
  padding: 0 37px;
}
@media (max-width: 767px) {
  .hun-element-blog-detail.layout-1 .comments-blog .list-comment .list-comment {
    padding-left: calc(80px + 20px);
  }
  .hun-element-blog-detail.layout-1 .comments-blog .item-comment .ava-comment {
    width: 80px;
  }
  .hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment {
    width: calc(100% - 80px - 20px);
  }
}
@media (max-width: 575px) {
  .hun-element-blog-detail.layout-1 .title-blog {
    font-size: 25px;
  }
  .hun-element-blog-detail.layout-1 .author-blog {
    padding: 30px;
  }
  .hun-element-blog-detail.layout-1 .author-blog .pic-author {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .hun-element-blog-detail.layout-1 .author-blog .text-author {
    width: 100%;
    text-align: center;
  }
  .hun-element-blog-detail.layout-1 .comments-blog .title-comments {
    font-size: 25px;
  }
  .hun-element-blog-detail.layout-1 .comments-blog .list-comment .list-comment {
    padding-left: calc(40px + 10px);
  }
  .hun-element-blog-detail.layout-1 .comments-blog .item-comment .ava-comment {
    width: 40px;
  }
  .hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment {
    width: calc(100% - 40px - 10px);
  }
  .hun-element-blog-detail.layout-1 .comments-blog .item-comment .text-comment .info-cmt .name-author {
    font-size: 20px;
  }
  .hun-element-blog-detail.layout-1 .form-comment .title-form {
    font-size: 25px;
  }
}

/*[ hun-element-gallery-single ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-gallery-single.layout-1 .pic-element .item-pic {
  display: block;
  margin-bottom: 30px;
}
.hun-element-gallery-single.layout-1 .pic-element .item-pic:last-child {
  margin-bottom: 0;
}
.hun-element-gallery-single.layout-1 .pic-element .item-pic img {
  width: 100%;
}
.hun-element-gallery-single.layout-1 .text-element {
  margin-bottom: 60px;
}
.hun-element-gallery-single.layout-1 .text-element .title-element {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  margin-top: -11px;
  margin-bottom: 10px;
}
.hun-element-gallery-single.layout-1 .text-element .description-element {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  margin-bottom: 33px;
}
.hun-element-gallery-single.layout-1 .text-element .info-element {
  list-style-type: none;
  padding: 0;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #5e5e78;
  word-break: break-word;
  margin-bottom: 13px;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li:last-child {
  margin-bottom: 0;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li .name-info {
  display: block;
  font-weight: 700;
  letter-spacing: normal;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li a {
  display: inline-block;
  color: inherit;
  transition: all .3s;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li a:hover {
  color: #25e3d7;
}
.hun-element-gallery-single.layout-1 .text-element .info-element li.share-link {
  letter-spacing: 2px;
}
.hun-element-gallery-single.layout-1 .navigate-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 77px;
}
.hun-element-gallery-single.layout-1 .navigate-element .item-navi {
  font-size: 33px;
  line-height: 0;
  color: #5e5e78;
  transition: all .3s;
}
.hun-element-gallery-single.layout-1 .navigate-element .item-navi:hover {
  color: #25e3d7;
}
.hun-element-gallery-single.layout-1 .navigate-element .item-navi.group {
  font-size: 28px;
}
@media (min-width: 992px) {
  .hun-element-gallery-single.layout-1 .pic-element {
    padding-right: 20px;
  }
  .hun-element-gallery-single.layout-1 .text-element {
    margin-bottom: 0;
  }
}

/*[ hun-element-countdown ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-countdown.layout-1 .title-element {
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
.hun-element-countdown.layout-1 .description-element {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.88;
  color: #9999cc;
  text-align: center;
  margin-bottom: 27px;
}
.hun-element-countdown.layout-1 .countdown-element {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.hun-element-countdown.layout-1 .countdown-element .item-countdown {
  flex-grow: 1;
  flex-basis: 0;
  font-family: Alice;
  font-size: 30px;
  line-height: 1.8;
  color: #9999cc;
  text-align: center;
  padding: 15px;
}
.hun-element-countdown.layout-1 .countdown-element .item-countdown .number-item {
  display: block;
  font-size: 111px;
  color: #fff;
  line-height: 1;
}
@media (max-width: 991px) {
  .hun-element-countdown.layout-1 .title-element {
    font-size: 80px;
  }
  .hun-element-countdown.layout-1 .countdown-element .item-countdown .number-item {
    font-size: 69px;
  }
}
@media (max-width: 767px) {
  .hun-element-countdown.layout-1 .title-element {
    font-size: 60px;
  }
  .hun-element-countdown.layout-1 .countdown-element .item-countdown .number-item {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .hun-element-countdown.layout-1 .title-element {
    font-size: 33px;
  }
  .hun-element-countdown.layout-1 .countdown-element .item-countdown {
    font-size: 17px;
  }
  .hun-element-countdown.layout-1 .countdown-element .item-countdown .number-item {
    font-size: 25px;
  }
}

/*[ hun-element-404error ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-404error.layout-1 {
  min-height: 100vh;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 15.6%;
}
.hun-element-404error.layout-1 .title-element {
  font-weight: 400;
  font-size: 90px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 24px;
}
.hun-element-404error.layout-1 .description-element {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.6;
  color: #5e5e78;
  margin-bottom: 58px;
}
.hun-element-404error.layout-1 .buttons-element {
  letter-spacing: 26px;
}
.hun-element-404error.layout-1 .buttons-element .hun-button {
  min-width: 166px;
  padding: 0 30px;
  text-transform: uppercase;
  margin: 10px 0;
}
@media (max-width: 1499px) {
  .hun-element-404error.layout-1 {
    padding: 80px 10%;
    background-position: center center;
  }
}
@media (max-width: 1299px) {
  .hun-element-404error.layout-1 .title-element {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .hun-element-404error.layout-1 .title-element {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hun-element-404error.layout-1 .title-element {
    font-size: 40px;
  }
  .hun-element-404error.layout-1 .description-element {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hun-element-404error.layout-1 {
    padding: 80px 15px;
  }
  .hun-element-404error.layout-1 .title-element {
    font-size: 35px;
  }
  .hun-element-404error.layout-1 .description-element {
    font-size: 17px;
  }
}

/*[ hun-element-newsletter ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-newsletter.layout-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.hun-element-newsletter.layout-1 .text-element {
  width: 50%;
  padding: 134px 77px 140px 94px;
  position: relative;
  text-align: right;
}
.hun-element-newsletter.layout-1 .text-element::before {
  content: '';
  pointer-events: none;
  display: block;
  width: calc(100% - 17px);
  height: calc(100% - 34px);
  border: 1px solid #25e3d7;
  border-right: none;
  position: absolute;
  top: 17px;
  right: 0;
}
.hun-element-newsletter.layout-1 .text-element .heading-element {
  margin-bottom: 60px;
}
.hun-element-newsletter.layout-1 .text-element .heading-element .subtitle-element {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #5e5e78;
  text-transform: uppercase;
  word-break: break-word;
  letter-spacing: 2px;
  margin-bottom: 9px;
}
.hun-element-newsletter.layout-1 .text-element .heading-element .title-element {
  font-weight: 400;
  font-size: 45px;
  line-height: 1.1;
  color: #30aee1;
  word-break: break-word;
}
.hun-element-newsletter.layout-1 .text-element .form-element {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  height: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 0;
}
.hun-element-newsletter.layout-1 .text-element .form-element::before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  border-radius: inherit;
  border: 1px solid rgba(94, 94, 120, 0.25);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.hun-element-newsletter.layout-1 .text-element .form-element input {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #5e5e78;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 1px;
  border-radius: 30px;
  border: none;
  background-color: transparent;
  padding: 0px 38px;
}
.hun-element-newsletter.layout-1 .text-element .form-element input::-webkit-input-placeholder {
  color: #9999cc;
}
.hun-element-newsletter.layout-1 .text-element .form-element input:-moz-placeholder {
  color: #9999cc;
}
.hun-element-newsletter.layout-1 .text-element .form-element input::-moz-placeholder {
  color: #9999cc;
}
.hun-element-newsletter.layout-1 .text-element .form-element input:-ms-input-placeholder {
  color: #9999cc;
}
.hun-element-newsletter.layout-1 .text-element .form-element button {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #9999cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 30px;
  background-color: #1b1b8a;
  padding: 0 30px;
  transition: all .3s;
}
.hun-element-newsletter.layout-1 .text-element .form-element button:hover {
  background-color: #25e3d7;
  color: #fff;
}
.hun-element-newsletter.layout-1 .pic-element {
  width: 50%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hun-element-newsletter.layout-1 .pic-element::before {
  content: '';
  pointer-events: none;
  display: block;
  width: calc(100% - 17px);
  height: calc(100% - 34px);
  border: 1px solid #fff;
  border-left: none;
  position: absolute;
  top: 17px;
  left: 0;
}
@media (max-width: 1199px) {
  .hun-element-newsletter.layout-1 .text-element {
    padding: 134px 50px 140px 67px;
  }
}
@media (max-width: 991px) {
  .hun-element-newsletter.layout-1 .text-element {
    order: 2;
    width: 100%;
    padding: 80px 15% 97px 15%;
    text-align: center;
  }
  .hun-element-newsletter.layout-1 .text-element::before {
    width: calc(100% - 34px);
    height: calc(100% - 17px);
    border: 1px solid #25e3d7;
    border-top: none;
    top: 0;
    bottom: auto;
    left: 17px;
    right: auto;
  }
  .hun-element-newsletter.layout-1 .pic-element {
    order: 1;
    width: 100%;
    padding-top: 80%;
  }
  .hun-element-newsletter.layout-1 .pic-element::before {
    width: calc(100% - 34px);
    height: calc(100% - 17px);
    border: 1px solid #fff;
    border-bottom: none;
    top: auto;
    bottom: 0;
    left: 17px;
    right: auto;
  }
}
@media (max-width: 767px) {
  .hun-element-newsletter.layout-1 .text-element {
    padding: 80px 10% 97px 10%;
  }
  .hun-element-newsletter.layout-1 .text-element .heading-element {
    margin-bottom: 50px;
  }
  .hun-element-newsletter.layout-1 .text-element .heading-element .subtitle-element {
    font-size: 15px;
  }
  .hun-element-newsletter.layout-1 .text-element .heading-element .title-element {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .hun-element-newsletter.layout-1 .text-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 14px);
    left: 14px;
  }
  .hun-element-newsletter.layout-1 .pic-element::before {
    width: calc(100% - 28px);
    height: calc(100% - 14px);
    left: 14px;
  }
}
@media (max-width: 480px) {
  .hun-element-newsletter.layout-1 .text-element .form-element {
    height: auto;
    justify-content: center;
  }
  .hun-element-newsletter.layout-1 .text-element .form-element input {
    width: 100%;
    flex-grow: unset;
    flex-basis: unset;
    height: 60px;
    margin-bottom: 20px;
  }
  .hun-element-newsletter.layout-1 .text-element .form-element button {
    height: 50px;
    padding: 0 37px;
  }
}

/*[ hun-element-service-detail ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * layout-1
 *
\*/
.hun-element-service-detail.layout-1 .pic-service {
  position: relative;
  margin-bottom: 46px;
}
.hun-element-service-detail.layout-1 .pic-service .item-slick img {
  width: 100%;
}
.hun-element-service-detail.layout-1 .pic-service .arrows-slick {
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 120px;
  height: 57px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #fff;
}
.hun-element-service-detail.layout-1 .pic-service .arrows-slick .item-arrow {
  cursor: pointer;
  font-size: 35px;
  line-height: 0;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  transition: all .3s;
}
.hun-element-service-detail.layout-1 .pic-service .arrows-slick .item-arrow:hover {
  color: #25e3d7;
}
.hun-element-service-detail.layout-1 .head-element {
  letter-spacing: 47px;
}
.hun-element-service-detail.layout-1 .head-element .title-service {
  display: inline-block;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #30aee1;
  margin-bottom: 0;
  letter-spacing: normal;
  padding-bottom: 11px;
}
.hun-element-service-detail.layout-1 .head-element .info-service {
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  color: #5e5e78;
  letter-spacing: 25px;
  padding-bottom: 11px;
}
.hun-element-service-detail.layout-1 .head-element .info-service .item-info {
  display: inline-block;
  letter-spacing: normal;
}
.hun-element-service-detail.layout-1 .head-element .info-service .item-info i {
  margin-right: 8px;
}
.hun-element-service-detail.layout-1 .subtitle-service {
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: #30aee1;
  padding-top: 36px;
  margin-bottom: 17px;
}
.hun-element-service-detail.layout-1 .subtitle-service:last-child {
  margin-bottom: 0;
}
.hun-element-service-detail.layout-1 .subtitle-service:first-child {
  padding-top: 0;
}
.hun-element-service-detail.layout-1 p {
  color: #5e5e78;
  margin-bottom: 9px;
}
.hun-element-service-detail.layout-1 p:last-child {
  margin-bottom: 0;
}
.hun-element-service-detail.layout-1 .steps-service {
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 17px;
}
.hun-element-service-detail.layout-1 .steps-service .row {
  margin-bottom: -40px;
}
.hun-element-service-detail.layout-1 .steps-service .row [class*="col-"] {
  padding-bottom: 40px;
}
.hun-element-service-detail.layout-1 .steps-service .item-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hun-element-service-detail.layout-1 .steps-service .item-step .pic-item {
  width: 144px;
  border-radius: 50%;
  border: 1px solid rgba(40, 200, 219, 0.2);
  padding: 6px;
}
.hun-element-service-detail.layout-1 .steps-service .item-step .pic-item img {
  width: 100%;
  border-radius: 50%;
}
.hun-element-service-detail.layout-1 .steps-service .item-step .text-item {
  width: calc(100% - 144px - 23px);
  align-self: center;
}
.hun-element-service-detail.layout-1 .steps-service .item-step .text-item .title-item {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #30aee1;
  word-break: break-word;
  margin-bottom: 15px;
}
.hun-element-service-detail.layout-1 .steps-service .item-step .text-item .content-item {
  color: #5e5e78;
  word-break: break-word;
}
@media (min-width: 992px) {
  .hun-element-service-detail.layout-1 .steps-service .row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .hun-element-service-detail.layout-1 .steps-service .row [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .hun-element-service-detail.layout-1 .pic-service .arrows-slick {
    width: 60px;
    height: 35px;
  }
  .hun-element-service-detail.layout-1 .pic-service .arrows-slick .item-arrow {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .hun-element-service-detail.layout-1 .steps-service .item-step .pic-item {
    width: 69px;
  }
  .hun-element-service-detail.layout-1 .steps-service .item-step .text-item {
    width: calc(100% - 69px - 10px);
  }
}

/*[ sections ]
//////////////////////////////////////////////////////////////////*/
/*\
 *
 * home-1
 *
\*/
.sec--main-slider--home-1 {
  position: relative;
  z-index: 1;
}

.sec--our-story--home-1 {
  margin-top: calc(100vh / 100 * 20 * (-1));
  position: relative;
  z-index: 0;
  padding-top: calc(100vh / 100 * 20 + 180px);
  padding-bottom: 160px;
}
.sec--our-story--home-1::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #fff3f3;
  opacity: .9;
}
@media (max-width: 991px) {
  .sec--our-story--home-1 {
    padding-top: calc(100vh / 100 * 20);
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .sec--our-story--home-1 {
    padding-top: calc(100vh / 100 * 20 + 100px);
    padding-bottom: 100px;
  }
}

.sec--our-service--home-1 {
  padding-top: 110px;
  padding-bottom: 120px;
}
.sec--our-service--home-1 .hun-element-heading {
  margin-bottom: 55px;
}
.sec--our-service--home-1 .buttons-section {
  text-align: center;
  padding-top: 45px;
}
.sec--our-service--home-1 .buttons-section .hun-button {
  width: 158px;
  max-width: 100%;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .sec--our-service--home-1 {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .sec--our-service--home-1 .hun-element-heading {
    margin-bottom: 25px;
  }
}

.sec--video--home-1 {
  padding-top: 120px;
  padding-bottom: 50px;
  background-image: -webkit-linear-gradient(top, #ebfdff, #fff);
  background-image: -o-linear-gradient(top, #ebfdff, #fff);
  background-image: -moz-linear-gradient(top, #ebfdff, #fff);
  background-image: linear-gradient(top, #ebfdff, #fff);
  position: relative;
}
.sec--video--home-1 .deco-section-top {
  max-width: 15%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 2.5%;
}
.sec--video--home-1 .deco-section-bottom {
  max-width: 23%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 2.6%;
}
@media (max-width: 575px) {
  .sec--video--home-1 {
    padding-top: 90px;
  }
}

.sec--feature--home-1 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.sec--feature--home-1 [class*="col-"] {
  padding-bottom: 40px;
}
.sec--feature--home-1 .hun-element-feature {
  max-width: 270px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 575px) {
  .sec--feature--home-1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.sec--price-list--home-1 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 575px) {
  .sec--price-list--home-1 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.sec--testimonial--home-1 {
  padding-top: 110px;
  padding-bottom: 106px;
  position: relative;
  z-index: 0;
}
.sec--testimonial--home-1::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: .68;
}
.sec--testimonial--home-1::after {
  content: '';
  display: block;
  width: 1px;
  height: 85px;
  background-color: #303044;
  opacity: .3;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
}
@media (max-width: 575px) {
  .sec--testimonial--home-1 {
    padding-top: 80px;
    padding-bottom: 76px;
  }
  .sec--testimonial--home-1::after {
    height: 55px;
  }
}

.sec--news-events--home-1 {
  padding-top: 110px;
  padding-bottom: 120px;
}
.sec--news-events--home-1 .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--news-events--home-1 {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .sec--news-events--home-1 .hun-element-heading {
    margin-bottom: 40px;
  }
}

/*\
 *
 * home-2
 *
\*/
.sec--our-story--home-2 {
  padding-top: 120px;
}
@media (max-width: 575px) {
  .sec--our-story--home-2 {
    padding-top: 90px;
  }
}

.sec--gallery--home-2 {
  padding-top: 120px;
  padding-bottom: 100px;
}

.sec--gallery--home-2 .buttons-section {
  padding-top: 18px;
}
.sec--gallery--home-2 .buttons-section .hun-button {
  text-transform: uppercase;
  padding: 0 36px;
}
@media (max-width: 575px) {
  .sec--gallery--home-2 {
    padding-top: 90px;
  }
}

.sec--feature--home-2 {
  padding-top: 190px;
  padding-bottom: 50px;
}
.sec--feature--home-2 .buttons-section {
  padding-top: 18px;
}
.sec--feature--home-2 .buttons-section .hun-button {
  text-transform: uppercase;
  padding: 0 36px;
}
@media (max-width: 575px) {
  .sec--feature--home-2 {
    padding-top: 90px;
  }
}

.sec--our-team--home-2 {
  padding-top: 80px;
  padding-bottom: 90px;
}
.sec--our-team--home-2 .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--our-team--home-2 {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .sec--our-team--home-2 .hun-element-heading {
    margin-bottom: 40px;
  }
}

/*\
 *
 * home-3
 *
\*/
.sec--our-service--home-3 {
  padding-top: 110px;
  padding-bottom: 20px;
}
.sec--our-service--home-3 .hun-element-heading {
  margin-bottom: 70px;
}
.sec--our-service--home-3 .hun-element-price-list {
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .sec--our-service--home-3 {
    padding-top: 80px;
  }
  .sec--our-service--home-3 .hun-element-heading {
    margin-bottom: 40px;
  }
  .sec--our-service--home-3 .hun-element-price-list {
    margin-bottom: 70px;
  }
}

.sec--pricing-table--home-3 {
  padding-top: 110px;
  padding-bottom: 90px;
}
.sec--pricing-table--home-3 .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--pricing-table--home-3 {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .sec--pricing-table--home-3 .hun-element-heading {
    margin-bottom: 40px;
  }
}

.sec--events--home-3 {
  padding-top: 110px;
  padding-bottom: 80px;
}
.sec--events--home-3 .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--events--home-3 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .sec--events--home-3 .hun-element-heading {
    margin-bottom: 40px;
  }
}

.sec--instagram--home-3 {
  padding-top: 5px;
  margin-bottom: -20px;
}

/*\
 *
 * home-4
 *
\*/
.sec--feature--home-4 {
  padding-top: 130px;
  padding-bottom: 100px;
}
.sec--feature--home-4 [class*="col-"] {
  padding-bottom: 30px;
}
.sec--feature--home-4 .hun-element-feature {
  max-width: 370px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 575px) {
  .sec--feature--home-4 {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

.sec--experience--home-4 {
  padding-top: 14.3%;
  padding-bottom: 11.7%;
  padding-left: 15%;
  padding-right: 15%;
  background-color: #e995b5;
  position: relative;
  z-index: 0;
}
.sec--experience--home-4 .bg-sec-top {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  top: -1px;
  left: 0;
  width: 100%;
}
.sec--experience--home-4 .bg-sec-bottom {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.sec--experience--home-4 .bg-sec-left {
  pointer-events: none;
  position: absolute;
  z-index: -3;
  bottom: 0;
  left: 0;
  max-height: 100%;
  max-width: 15%;
}
.sec--experience--home-4 .bg-sec-right {
  pointer-events: none;
  position: absolute;
  z-index: -3;
  bottom: 0;
  right: 0;
  max-height: 100%;
  max-width: 15%;
}
.sec--experience--home-4 .pic-sec {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.sec--experience--home-4 .hun-element-heading {
  margin-bottom: 70px;
}
.sec--experience--home-4 .hun-element-progress {
  margin-bottom: 44px;
}
.sec--experience--home-4 .hun-element-progress:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sec--experience--home-4 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .sec--experience--home-4 {
    padding-top: 110px;
    padding-bottom: 0px;
  }
  .sec--experience--home-4 .pic-sec {
    position: static;
    margin-top: 50px;
  }
  .sec--experience--home-4 .hun-element-heading {
    margin-bottom: 50px;
  }
}

.sec--our-class--home-4 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.sec--our-class--home-4 .hun-element-heading {
  margin-bottom: 65px;
}
.sec--our-class--home-4 .buttons-section {
  text-align: center;
  padding-top: 45px;
}
.sec--our-class--home-4 .buttons-section .hun-button {
  width: 158px;
  max-width: 100%;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .sec--our-class--home-4 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .sec--our-class--home-4 .hun-element-heading {
    margin-bottom: 35px;
  }
}

.sec--gifts-cards--home-4 {
  padding-top: 120px;
  padding-bottom: 75px;
}
.sec--gifts-cards--home-4 .hun-element-heading {
  margin-bottom: 43px;
}
@media (max-width: 575px) {
  .sec--gifts-cards--home-4 {
    padding-top: 90px;
    padding-bottom: 45px;
  }
  .sec--gifts-cards--home-4 .hun-element-heading {
    margin-bottom: 0px;
  }
}

.sec--brand--home-4 {
  padding-top: 8.3%;
  padding-bottom: 3.6%;
  position: relative;
  z-index: 0;
  background-color: #fff3f3;
}
.sec--brand--home-4 .bg-sec-top {
  pointer-events: none;
  position: absolute;
  z-index: -2;
  top: -1px;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .sec--brand--home-4 {
    padding-top: 12%;
    padding-bottom: 6%;
  }
}
@media (max-width: 480px) {
  .sec--brand--home-4 {
    padding-top: 16%;
    padding-bottom: 8%;
  }
}

/*\
 *
 * about-page
 *
\*/
.sec--our-story--about-page {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 575px) {
  .sec--our-story--about-page {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.sec--our-team--about-page {
  padding-top: 110px;
  padding-bottom: 90px;
}
.sec--our-team--about-page .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--our-team--about-page {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .sec--our-team--about-page .hun-element-heading {
    margin-bottom: 40px;
  }
}

/*\
 *
 * gallery-01-page
 *
\*/
.sec--gallery--gallery-01-page {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (max-width: 575px) {
  .sec--gallery--gallery-01-page {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

/*\
 *
 * gallery-03-page
 *
\*/
.sec--gallery--gallery-03-page {
  padding-bottom: 0px;
}

/*\
 *
 * comming-soon-page
 *
\*/
.sec--content--comming-soon-page {
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 15px;
  position: relative;
  z-index: 0;
}
.sec--content--comming-soon-page::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #30aee1;
  opacity: .7;
}
.sec--content--comming-soon-page .hun-element-countdown {
  width: 950px;
  max-width: 100%;
  margin-bottom: 48px;
}
.sec--content--comming-soon-page .subscribe-form-01 {
  width: 520px;
  max-width: 100%;
  margin-bottom: 35px;
}

/*\
 *
 * services-page
 *
\*/
.sec--content--services-page {
  padding-top: 170px;
  padding-bottom: 90px;
}
.sec--content--services-page .hun-element-heading {
  margin-bottom: 70px;
}
@media (max-width: 575px) {
  .sec--content--services-page {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .sec--content--services-page .hun-element-heading {
    margin-bottom: 40px;
  }
}

/*\
 *
 * what-we-do-page
 *
\*/
.sec--feature--what-we-do-page {
  padding-top: 120px;
  padding-bottom: 100px;
}
.sec--feature--what-we-do-page .buttons-section {
  padding-top: 18px;
}
.sec--feature--what-we-do-page .buttons-section .hun-button {
  text-transform: uppercase;
  padding: 0 36px;
}
@media (max-width: 575px) {
  .sec--feature--what-we-do-page {
    padding-top: 90px;
  }
}

.sec--experience--what-we-do-page {
  box-shadow: 0px 0px 10px 0px rgba(2, 0, 65, 0.1);
}
.sec--experience--what-we-do-page [class*="col-"]:nth-child(1) {
  padding-top: 110px;
  padding-bottom: 120px;
}
.sec--experience--what-we-do-page .hun-element-heading {
  margin-bottom: 70px;
}
.sec--experience--what-we-do-page .hun-element-progress {
  margin-bottom: 45px;
}
.sec--experience--what-we-do-page .hun-element-progress:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .sec--experience--what-we-do-page .container {
    max-width: 100%;
    padding: 0;
  }
  .sec--experience--what-we-do-page .container .row {
    margin-right: 0;
    margin-left: 0;
  }
  .sec--experience--what-we-do-page .container .row [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  .sec--experience--what-we-do-page .hun-element-heading,
  .sec--experience--what-we-do-page .hun-element-progress {
    width: 570px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .sec--experience--what-we-do-page [class*="col-"]:nth-child(1) {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .sec--experience--what-we-do-page .hun-element-heading {
    margin-bottom: 40px;
  }
}

.sec--newsletter--what-we-do-page {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 575px) {
  .sec--newsletter--what-we-do-page {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.sec-two{
    display: none;
}

/*\
 *
 * service-detail-page
 *
\*/
.sec--content--service-detail-page {
  padding-top: 120px;
}
@media (max-width: 575px) {
  .sec--content--service-detail-page {
    padding-top: 90px;
  }
}

.sec--price-list--service-detail-page {
  padding-top: 110px;
  padding-bottom: 120px;
}
@media (max-width: 575px) {
    .sec-one{
        display: none;
    }
    .sec-two{
        display: block;
    }
    .sec--price-list--service-detail-page {
        padding-top: 80px;
        padding-bottom: 90px;
    }
    .hun-element-feature.layout-1.align-left .text-element {
        width: calc(100% - 0px - 5px);
        align-self: center;
    }
}

/*\
 *
 * booking-page
 *
\*/
.sec--content--booking-page {
  padding-top: 120px;
  padding-bottom: 100px;
}
.sec--content--booking-page .hun-element-image {
  margin-right: 40px;
}
.sec--content--booking-page .book-service-form-02 {
  margin-top: -9px;
  margin-bottom: 66px;
}
@media (max-width: 575px) {
  .sec--content--booking-page {
    padding-top: 90px;
    padding-bottom: 70px;
  }
}

/*\
 *
 * contact-page
 *
\*/
.sec--content--contact-page {
  padding-top: 40px;
  padding-bottom: 120px;
}
.sec--content--contact-page .hun-element-map {
  margin-bottom: 80px;
}
.sec--content--contact-page .hun-element-info-contact {
  margin-top: -9px;
}
@media (max-width: 575px) {
  .sec--content--contact-page {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
