/*------------------- 1.1. Variable-------------------*/
:root {
  --theme-color: #07ccec;
  --theme-color2: #2cb624;
  --theme-color3: #27477d;
  --theme-color4: #07ccec;
  --theme-color5: #27467C;
  --title-color: #27477d;
  --title-color2: #000000;
  --body-color: #888c92;
  --body-color2: #555555;
  --secondary-color: #cdf8ff;
  --smoke-color: #f3f6f7;
  --light-color: #afafaf;
  --black-color: #000000;
  --dark-color: #060d0f;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(0, 0, 0, 0.10);
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --flaticon: "Flaticon";
  --ripple-ani-duration: 5s;
}

/*------------------- 1.2. Mixin -------------------*/
/*------------------- 1.3. Function -------------------*/
/*------------------- 1.4. Typography -------------------*/

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: 500;
}

td,
th {
  border-top: 1px solid var(--border-color);
  padding: 9px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}


/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.vs-menu-wrapper .mobile-logo {
  padding-bottom: 25px;
  padding-top: 25px;
  display: inline-block;
}

.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  background-color: #b8090e;
  border-radius: 50%;
}

.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--title-color);
  color: #fff;
}

.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid #e1cc8e;
  height: 100%;
  position: relative;
  left: -1000px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.vs-menu-wrapper .vs-menu-area:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  max-height: 122px;
  background-color: #c9b67e;
  opacity: 0.3;
  z-index: -1;
}

.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: 58vh;
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.vs-mobile-menu .new-label {
  margin-left: 5px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.vs-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: #212529;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vs-mobile-menu ul li a:before {
  content: "\f105";
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
}

.vs-mobile-menu ul li.vs-active>a {
  color: #b8090e;
}

.vs-mobile-menu ul li.vs-active>a:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}

.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.vs-mobile-menu ul .vs-item-has-children>a:after {
  content: "\f067";
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: #c9b67e;
  color: #b8090e;
  border-radius: 50%;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
}

.vs-mobile-menu ul .vs-item-has-children.vs-active>a:after {
  content: "\f068";
}

.vs-mobile-menu>ul {
  padding: 0 40px;
}

.vs-mobile-menu>ul>li:last-child {
  border-bottom: none;
}

.mobile-menu-form {
  width: 100%;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.mobile-menu-form input {
  height: 35px;
  border: none;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
  padding-left: 20px;
  padding-right: 40px;
}

.mobile-menu-form input:focus {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
}

.mobile-menu-form input::-moz-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input::-webkit-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input:-ms-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input::-ms-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form input::placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}

.mobile-menu-form button {
  border: none;
  background-color: transparent;
  color: var(--theme-color);
  position: absolute;
  right: 13px;
  top: 3px;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: #c9b67e;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  /* Large devices */
}

@media (max-width: 1199px) {
  .vs-menu-toggle {
    position: relative;
    right: 15px;
  }
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }

  .vs-mobile-menu>ul {
    padding: 0 20px;
  }
}

/*------------------- 2.6. Date & Time Picker -------------------*/
.xdsoft_datetimepicker {
  z-index: 1080;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 300px;
}

.xdsoft_datetimepicker .xdsoft_current {
  color: var(--theme-color);
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
  background-color: var(--smoke-color);
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}

.preloader .vs-btn {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 5px auto;
}

.beat-loader {
  stroke: var(--theme-color);
  stroke-dasharray: 175;
  stroke-dashoffset: 350;
  -webkit-animation: draw 1.4s linear;
  animation: draw 1.4s linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  position: relative;
  display: inline-block;
  border: none;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  padding: 19.5px 48px;
  border-radius: 9999px;
  --icon-shape: 40px;
  --icon-size: 30px;
}

.vs-btn i {
  display: inline-block;
}

.vs-btn:hover {
  background-color: var(--title-color);
  color: #fff;
}

.vs-btn:hover:before,
.vs-btn:hover i {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.vs-btn.style3, .vs-btn.style2 {
  margin-left: calc(var(--icon-shape) / 2);
}

.vs-btn.style3:before, .vs-btn.style2:before {
  content: "";
  position: absolute;
  left: calc(var(--icon-shape) / -2);
  top: 50%;
  width: var(--icon-shape);
  height: var(--icon-shape);
  margin-top: calc(var(--icon-shape) / -2);
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 5px 5px 0px rgba(7, 204, 236, 0.3);
  box-shadow: inset 0px 5px 5px 0px rgba(7, 204, 236, 0.3);
  -webkit-transition: inherit;
  transition: inherit;
}

.vs-btn.style3 i, .vs-btn.style2 i {
  position: absolute;
  left: calc(var(--icon-size) / -2);
  top: 50%;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  margin-top: calc(var(--icon-size) / -2);
  border-radius: 50%;
  background-color: var(--theme-color);
  font-size: 14px;
  -webkit-transition: inherit;
  transition: inherit;
}

.vs-btn.style2:hover, .vs-btn.style3 {
  background-color: var(--title-color);
}

.vs-btn.style2:hover:before, .vs-btn.style3:before {
  -webkit-box-shadow: inset 0px 5px 5px 0px rgba(39, 71, 125, 0.3);
  box-shadow: inset 0px 5px 5px 0px rgba(39, 71, 125, 0.3);
}

.vs-btn.style2:hover i, .vs-btn.style3 i {
  background-color: var(--title-color);
}

.vs-btn.style3:hover {
  background-color: var(--theme-color);
}

.vs-btn.style3:hover:before {
  -webkit-box-shadow: inset 0px 5px 5px 0px rgba(7, 204, 236, 0.3);
  box-shadow: inset 0px 5px 5px 0px rgba(7, 204, 236, 0.3);
}

.vs-btn.style3:hover i {
  background-color: var(--theme-color);
}

.vs-btn.style4 {
  background-color: #fff;
  -webkit-box-shadow: 0px 15px 42.75px 2.25px rgba(39, 71, 125, 0.07);
  box-shadow: 0px 15px 42.75px 2.25px rgba(39, 71, 125, 0.07);
  color: var(--body-color);
}

.vs-btn.style4.active, .vs-btn.style4:hover {
  background-color: var(--theme-color);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.vs-btn.hover-white:hover {
  background-color: #fff;
  color: var(--title-color);
}

.vs-btn.hover-white i {
  color: #fff;
}

.vs-btn.style5 {
  padding: 14.5px 29px;
}

.vs-btn.style6, .vs-btn.style5 {
  background-color: var(--theme-color2);
  color: #fff;
}

.vs-btn.style6:hover, .vs-btn.style5:hover {
  background-color: var(--theme-color4);
  color: #fff;
}

.vs-btn.style7 {
  background-color: var(--theme-color4);
}

.vs-btn.style7:hover {
  background-color: var(--theme-color2);
}

.vs-btn.style8 {
  background-color: var(--title-color);
}

.vs-btn.style8:hover {
  background-color: var(--theme-color2);
}

.vs-btn.style9 {
  background-color: transparent;
  border: 2px solid #fff;
  padding: 16.5px 48px;
}

.vs-btn.style9:hover {
  background-color: #fff;
  color: var(--title-color);
  border-color: transparent;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

.icon-btn {
  z-index: 1;
  display: inline-block;
  position: relative;
  -webkit-transition: 0s;
  transition: 0s;
}

.icon-btn i {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 2;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(39, 71, 125, 0.1);
  box-shadow: 0px 5px 10px 0px rgba(39, 71, 125, 0.1);
}

.icon-btn.has-badge {
  margin-right: 7px;
}

.icon-btn .badge {
  right: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.icon-btn:hover i {
  background-color: var(--theme-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.icon-btn:hover .badge {
  background-color: var(--title-color);
  color: #fff;
}

.icon-btn.style2 i {
  background-color: var(--theme-color);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.icon-btn.style2 i:hover {
  background-color: var(--title-color);
}

.icon-btn.style2:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  bottom: -8px;
  right: -8px;
  z-index: -1;
  border-radius: 50%;
  background-color: #fff;
}

.icon-btn.style3 i {
  background-color: rgba(7, 204, 236, 0.2);
  color: var(--title-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.icon-btn.style3.active i, .icon-btn.style3:hover i {
  background-color: var(--title-color);
  color: #fff;
}

.icon-btn.style4 i {
  background-color: var(--theme-color);
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
}

.icon-btn.style4 i:hover {
  background-color: var(--title-color);
  color: #fff;
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  --icon-size: 112px;
}

.play-btn>i {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  font-size: var(--icon-font-size, 2em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.play-btn:hover>i, .play-btn:hover::before, .play-btn:hover::after {
  background-color: var(--title-color);
  color: #fff;
}

.play-btn.style2:before, .play-btn.style2:after {
  border: 2px solid #fff;
  background-color: transparent;
  -webkit-animation-name: ripple-md;
  animation-name: ripple-md;
}

.play-btn.style3 {
  --icon-size: 64px;
}

.play-btn.style3:after, .play-btn.style3:before {
  background-color: #fff;
}

.play-btn.style3 i {
  background-color: #fff;
  color: var(--theme-color);
  font-size: 1.2em;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn.style3:hover i {
  background-color: var(--theme-color);
  color: #fff;
}

.play-btn.style4:before, .play-btn.style4:after,
.play-btn.style4 i {
  background-color: transparent;
  border: 2px solid #fff;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn.style4:hover:before, .play-btn.style4:hover:after {
  border-color: var(--theme-color);
}

.play-btn.style4:hover i {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.link-btn {
  font-weight: 500;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  letter-spacing: 0.03em;
}

.link-btn i {
  margin-left: 7px;
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.link-btn:hover {
  color: var(--theme-color);
}

.link-btn:hover::before {
  width: 100%;
}

.link-btn.style2::before {
  width: 100%;
}

.link-btn.style2:hover::before {
  width: 20%;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  background-color: var(--theme-color);
  color: #fff;
  visibility: hidden;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  /* Small devices */
}

.scroll-btn:focus, .scroll-btn:hover {
  background-color: var(--title-color);
  color: #fff;
}

.scroll-btn i {
  line-height: inherit;
}

.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .scroll-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 15px;
    bottom: 50px;
  }

  .scroll-btn.show {
    bottom: 15px;
  }
}

.ripple-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.ripple-icon:after, .ripple-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--theme-color);
  -webkit-animation: ripple-sm 4s infinite ease-in-out;
  animation: ripple-sm 4s infinite ease-in-out;
  z-index: -1;
  border-radius: 50%;
}

.ripple-icon:after {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.ripple-icon i {
  width: 70px;
  height: 70px;
  background-color: #fff;
  color: var(--theme-color);
  border: 4px solid rgba(7, 204, 236, 0.3);
  display: inline-block;
  text-align: center;
  line-height: 65px;
  font-size: 2em;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.ripple-icon:hover:not(.hover-default) i {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.ripple-icon.hover-style2:hover i {
  background-color: #fff;
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.ripple-icon.style2 i {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 22px;
}

.ripple-icon.style2:hover i {
  background-color: #fff;
  color: var(--theme-color);
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
  /* Medium devices */
}

@media (max-width: 992px) {
  .scrollToTop {
    right: 15px;
  }
}

.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

.scroll-bottom {
  display: inline-block;
}

.scroll-bottom i {
  width: 60px;
  height: 70px;
  background-color: #fff;
  color: var(--theme-color);
  line-height: 70px;
  text-align: center;
  right: 60px;
  bottom: 0;
  font-size: 1.2em;
  -webkit-box-shadow: 0 -5px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 50px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.scroll-bottom:hover i {
  background-color: var(--theme-color);
  color: #fff;
}

.scroll-bottom.show {
  bottom: 0;
}

.search-btn2 {
  border: none;
  padding: 0;
  background-color: transparent;
  color: var(--title-color);
  font-weight: 600;
  font-size: 14px;
}

.search-btn2 i {
  margin-right: 10px;
  font-size: 18px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.search-btn2:hover {
  color: var(--theme-color2);
}

.sec-bottom-btn {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 30px;
}

/* Medium devices */
@media (max-width: 992px) {
  .play-btn.style4 {
    --icon-size: 90px;
    --icon-font-size: 22px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn>i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.2em;
  }

  .scrollToTop {
    right: 20px;
  }

  .scrollToTop.show {
    bottom: 20px;
  }

  .scroll-bottom {
    right: 15px;
  }

  .scroll-bottom i {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .scroll-bottom.show {
    bottom: 15px;
  }
}


.btn-style8 {
  color: #b8090e;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  border-radius: 5px 50px 5px 5px;
  background: #e1cc8e;
  height: 56px;
  padding: 0 51px 0 37px;
  display: inline-block;
  border: 1px solid transparent;
}


.btn-style8:hover {
  background-color: #b8090e;
  border-color: #e1cc8e;
  color: #fff;
}

/*------------------- 3.3. Titles -------------------*/


.section-title .h1 {
  margin-top: -0.3em;
}

.section-title .sec-subtitle {
  margin-top: -0.2em;
}

.sec-subtitle {
  display: block;
  font-weight: 400;
}

.sec-icon {
  display: inline-block;
  position: relative;
  padding: 10px;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  --line-width: 48px;
  --line-height: 1px;
  margin-bottom: 30px;
}

.sec-icon:after, .sec-icon:before {
  content: "";
  position: absolute;
  left: calc(var(--line-width) / -1);
  top: 50%;
  height: var(--line-height);
  margin-top: calc(var(--line-height) / -2);
  width: var(--line-width);
  background-color: var(--theme-color);
}

.sec-icon:after {
  right: calc(var(--line-width) / -1);
  left: auto;
}

.sec-icon i {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--theme-color);
  -webkit-box-shadow: 0px 6px 37px 0px rgba(28, 53, 95, 0.1);
  box-shadow: 0px 6px 37px 0px rgba(28, 53, 95, 0.1);
}

.border-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  margin-top: -0.2em;
}

.border-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--theme-color);
}

.sec-title {
  color: var(--title-color2);
  margin: 0 0 10px 0;
}

.sec-title .inner-text {
  text-decoration: underline;
  text-decoration-color: var(--theme-color2);
}

.sec-text2,
.sec-text {
  color: var(--body-color2);
  margin: 0 0 23px 0;
}

.sec-text2 {
  font-size: 18px;
}

.sec-icon2 {
  padding-bottom: 5px;
}

.sec-subtitle2 {
  font-weight: 700;
  color: var(--theme-color4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3px;
  display: block;
  margin-top: -0.3em;
}

.sec-icon3 {
  margin-bottom: 13px;
}

.sec-subtitle5,
.sec-subtitle4,
.sec-subtitle3 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 2px;
}

.sec-title2 {
  font-size: 40px;
}

.sec-subtitle4 {
  position: relative;
  margin-bottom: 7px;
  margin-top: -0.4em;
}

.sec-subtitle4.text-white:before {
  background-color: currentColor;
}

.sec-line {
  width: 75px;
  height: 3px;
  background-color: var(--theme-color);
  margin-bottom: 10px;
  display: inline-block;
}

.sec-subtitle5 {
  margin-top: -0.4em;
  font-size: 16px;
}

.title-wrap2 {
  margin-bottom: 48px;
}

.title-area-two {
  margin-bottom: 49px;
}

.title-area-two.faqs-title h2 {
  max-width: 550px;
}

.title-area-two .sub-title6 {
  position: relative;
  color: var(--theme-color);
  font-weight: 700;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 7px;
}

.title-area-two .sub-title6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 2px;
  background-color: var(--theme-color);
}

.title-area-two h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 13px;
  /* Extra small devices */
}

@media (max-width: 416px) {
  .title-area-two h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.title-area-two p {
  line-height: 26px;
}

.light h2 {
  color: #fff;
}

.title-area-two.v1 .sub-title6::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.title-area-three {
  margin-bottom: 50px;
}

.title-area-three .sub-title7 {
  color: var(--theme-color);
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  margin-bottom: 10px;
}

.title-area-three h2 {
  color: var(--title-color);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
}

.title-area-three p {
  color: #666;
  line-height: 30px;
}

.title-area-three .text {
  margin-top: 29px;
}

.title-area-three.light h2 {
  color: #fff;
}

.title-area-four {
  margin-bottom: 49px;
}

.title-area-four .sub-title8 {
  position: relative;
  color: #444;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 61px;
}

.title-area-four .sub-title8::before {
  content: "";
  position: absolute;
  top: -61px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  width: 41px;
  height: 36px;
  background-image: url(../img/about/plus.svg);
}

.title-area-four .v1 {
  margin-top: 0;
}

.title-area-four .v1::before {
  display: none;
}

.title-area-four h2 {
  color: #15274E;
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
}

.title-area-four.light .sub-title8 {
  color: #fff;
}

.title-area-four.light h2 {
  color: #fff;
}

/* Medium devices */
@media (max-width: 992px) {
  .section-title {
    margin-bottom: 35px;
  }

  .sec-title2 {
    font-size: 36px;
  }

  .sec-bottom-btn {
    margin-top: 20px;
  }

  .sec-subtitle4 {
    letter-spacing: 0;
  }

  .sec-subtitle5 {
    letter-spacing: 0;
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sec-title2 {
    font-size: 30px;
  }
}

/*------------------- 3.4. Common -------------------*/
.image-scale-hover {
  overflow: hidden;
}

.image-scale-hover img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  transform: scale(1.001);
}

.image-scale-hover:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.sub-plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  font-size: 18px;
  color: #e4e4e4;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: #fff;
  padding: 0.35em 0.55em;
  border-radius: 50%;
}

.phone-box .box-icon {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  z-index: 1;
  margin-right: 20px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.phone-box .box-icon:after, .phone-box .box-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  border-radius: inherit;
  z-index: -1;
  -webkit-animation: ripple infinite 3s ease-in-out;
  animation: ripple infinite 3s ease-in-out;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.phone-box .box-icon:after {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.phone-box .box-icon:hover, .phone-box .box-icon:hover:after, .phone-box .box-icon:hover:before {
  background-color: var(--title-color);
}

.title-divider {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.title-divider:before, .title-divider:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--theme-color);
  border-radius: 4px;
}

.title-divider:after {
  width: 10px;
  left: 85px;
  background-color: var(--title-color);
}

.star-rating {
  overflow: hidden;
  position: relative;
  width: 90px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  color: var(--yellow-color);
  font-weight: 300;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--yellow-color);
  letter-spacing: 3px;
}

.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}

.parallax {
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  /* BG behaviour */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.vs-surface {
  position: relative;
  overflow: hidden;
}

.vs-surface:after, .vs-surface:before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.vs-surface:after {
  background: #fff;
  z-index: 2;
}

.vs-surface.animated:before {
  background: #ddd;
  -webkit-animation: vssurface 2s cubic-bezier(0.8, 0, 0.18, 1) both;
  animation: vssurface 2s cubic-bezier(0.8, 0, 0.18, 1) both;
  z-index: 2;
}

.vs-surface.animated:after {
  -webkit-animation: vssurfaceBack 2s cubic-bezier(0.8, 0, 0.18, 1) both;
  animation: vssurfaceBack 2s cubic-bezier(0.8, 0, 0.18, 1) both;
}

.has-new-label {
  position: relative;
}

.new-label {
  font-size: 12px;
  background-color: var(--error-color);
  color: #fff;
  line-height: 1;
  padding: 3px 5px 3px 5px;
  border-radius: 4px;
  text-transform: capitalize;
  position: relative;
  top: -1px;
  font-weight: 500;
  margin-left: 5px;
}

/* Large devices */
@media (max-width: 1199px) {
  .text-center.text-xl-start .title-divider:before, .text-center.text-xl-start .title-divider:after {
    left: 50%;
    margin-left: -45px;
  }

  .text-center.text-xl-start .title-divider:after {
    margin-left: 40px;
  }
}


.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

.fs-20 {
  font-size: 20px;
}

.fs-12 {
  font-size: 12px;
}

/* Large devices */
@media (max-width: 1199px) {
  .fs-20 {
    font-size: 18px;
  }
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.bg-light2 {
  background-color: #f5f7ff;
}

[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

.bg-top-right {
  background-position: top right;
  background-size: auto;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-box1 {
  --shape-size: 545px;
}

.bg-box-shape1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--shape-size);
  z-index: -1;
}

.bg-box-shape2 {
  z-index: -1;
  bottom: 0;
  right: 0;
  left: 0;
  background-size: 100% 100%;
  background-position: left bottom;
  height: calc(100% - var(--shape-size));
}

.bg-box-shape3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 685px;
}

.icon-shape1 {
  position: absolute;
  left: 0%;
  top: 62%;
}

.icon-shape2 {
  position: absolute;
  top: -220px;
  right: 80px;
}

.icon-shape3 {
  position: absolute;
  bottom: -150px;
  left: 100px;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .icon-shape3 {
    display: none;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .bg-box-shape2 {
    background-size: cover;
    background-position: right top;
  }
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

.text-reset:hover {
  color: var(--theme-color) !important;
}

.text-white-light {
  color: rgba(255, 255, 255, 0.8);
}

.hover-white:not(.vs-btn):hover {
  color: var(--white-color) !important;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
}

[data-overlay] [class^=col-],
[data-overlay] [class*=col-] {
  z-index: 1;
}

[data-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay=theme]:before {
  background-color: var(--theme-color);
}

[data-overlay=theme3]:before {
  background-color: var(--theme-color3);
}

[data-overlay=title]:before {
  background-color: var(--title-color);
}

[data-overlay=white]:before {
  background-color: #fff;
}

[data-overlay=dark]:before {
  background-color: var(--dark-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
  animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes ripple-md {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes ripple-md {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.6;
  }

  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}

@-webkit-keyframes ripple-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.2;
  }

  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes ripple-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.2;
  }

  100% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0;
  }
}

@-webkit-keyframes ripple-xs {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.1;
  }

  100% {
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes ripple-xs {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.1;
  }

  100% {
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
    opacity: 0;
  }
}

@-webkit-keyframes vssurface {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes vssurface {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes vssurfaceBack {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes vssurfaceBack {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*------------------- 3.11. Flaticon -------------------*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff2") format("woff2"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after,
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.flaticon-blood-pressure:before {
  content: "\f101";
}

.flaticon-computer-mouse:before {
  content: "\f102";
}

.flaticon-discuss:before {
  content: "\f103";
}

.flaticon-ecg:before {
  content: "\f104";
}

.flaticon-electrocardiogram:before {
  content: "\f105";
}

.flaticon-group:before {
  content: "\f106";
}

.flaticon-healthcare:before {
  content: "\f107";
}

.flaticon-injection:before {
  content: "\f108";
}

.flaticon-laboratory-equipment:before {
  content: "\f109";
}

.flaticon-medical-equipment:before {
  content: "\f10a";
}

.flaticon-medical-kit:before {
  content: "\f10b";
}

.flaticon-medical-mask:before {
  content: "\f10c";
}

.flaticon-medical-results:before {
  content: "\f10d";
}

.flaticon-medical-symbol:before {
  content: "\f10e";
}

.flaticon-quality-of-life:before {
  content: "\f10f";
}

.flaticon-quotation:before {
  content: "\f110";
}

.flaticon-quote:before {
  content: "\f111";
}

.flaticon-security:before {
  content: "\f112";
}

.flaticon-stethoscope-1:before {
  content: "\f113";
}

.flaticon-stethoscope:before {
  content: "\f114";
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}

.widget_nav_menu li>span,
.widget_meta li>span,
.widget_pages li>span,
.widget_archive li>span,
.widget_categories li>span {
  color: #fff;
  background-color: var(--theme-color);
  text-align: center;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  border-radius: 3px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  background-color: #fff;
  color: var(--title-color);
  padding: 17px 25px 17px 20px;
  margin-bottom: 10px;
  padding-right: 50px;
  line-height: 1;
  font-size: 15px;
  border-radius: 5px;
}

.widget_nav_menu a:before,
.widget_meta a:before,
.widget_pages a:before,
.widget_archive a:before,
.widget_categories a:before {
  content: "\f054";
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 12px;
  color: var(--theme-color);
  margin-right: 5px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
  top: -1px;
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  background-color: var(--theme-color);
  color: #fff;
  -webkit-box-shadow: 0px 15px 42.75px 2.25px rgba(7, 204, 236, 0.07);
  box-shadow: 0px 15px 42.75px 2.25px rgba(7, 204, 236, 0.07);
}

.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
  color: #fff;
}

.widget_nav_menu li:hover>span,
.widget_meta li:hover>span,
.widget_pages li:hover>span,
.widget_archive li:hover>span,
.widget_categories li:hover>span {
  background-color: #fff;
  color: var(--title-color);
}

.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.wp-block-archives a:not(:hover) {
  color: inherit;
}

.vs-blog ul.wp-block-archives li {
  margin: 5px 0;
}

.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}

.widget_shopping_cart ul li {
  list-style-type: none;
}

.widget_shopping_cart ul.woocommerce-mini-cart {
  margin-top: -20px;
}

.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 10px 30px 90px;
  border-bottom: 1px solid #e5eaee;
}

.widget_shopping_cart .mini_cart_item:last-child {
  border-bottom: none;
}

.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--body-color);
  font-size: 18px;
  font-weight: 500;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 3px;
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--body-color);
}

.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 20px;
}

.widget_shopping_cart .quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  color: var(--body-color);
}

.widget_shopping_cart .total {
  margin-top: 5px;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--title-color);
}

.widget_shopping_cart .amount {
  padding-left: 5px;
  font-weight: 600;
}

.widget_shopping_cart .vs-btn {
  margin-right: 20px;
}

.widget_shopping_cart .vs-btn:last-child {
  margin-right: 0;
}

.widget .search-form {
  position: relative;
}

.widget .search-form input {
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: none;
  color: var(--body-color);
  padding-left: 30px;
  padding-right: 50px;
  border-radius: 5px;
}

.widget .search-form input::-moz-placeholder {
  color: var(--body-color);
}

.widget .search-form input::-webkit-input-placeholder {
  color: var(--body-color);
}

.widget .search-form input:-ms-input-placeholder {
  color: var(--body-color);
}

.widget .search-form input::-ms-input-placeholder {
  color: var(--body-color);
}

.widget .search-form input::placeholder {
  color: var(--body-color);
}

.widget .search-form button {
  text-align: center;
  padding: 0;
  color: var(--theme-color);
  background-color: transparent;
  border: none;
  position: absolute;
  top: 18px;
  right: 30px;
}

.widget .search-form button:hover {
  border-color: var(--theme-color);
  background-color: #fff;
  color: var(--theme-color);
}

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: none;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 10.5px 21px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--smoke-color);
  border-radius: 9999px;
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}

.tagcloud {
  margin-right: -5px;
  margin-bottom: -10px;
}

.widget .tagcloud a:not(:hover) {
  background-color: #fff;
}

.widget .newsletter-form {
  position: relative;
}

.widget .newsletter-form .form-icon {
  position: absolute;
  left: 20px;
  top: 19px;
}

.widget .newsletter-form .form-control {
  padding-left: 50px;
  padding-right: 20px;
}

.newsletter-section {
  position: relative;
  z-index: 9;
  background-color: #27477D;
  /* Extra small devices */
}

@media (max-width: 576px) {
  .newsletter-section {
    padding: 83px 0 73px;
  }
}

.newsletter-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/testimonial/pattern3-1.png);
  z-index: -1;
}

.newsletter-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #27477D;
  z-index: -1;
}

.title-area-two.light {
  position: relative;
  margin-bottom: 0;
  margin-right: -10px;
  z-index: 99;
  /* Large devices */
}

@media (max-width: 1199px) {
  .title-area-two.light {
    text-align: center;
    margin-right: 0;
  }
}

.title-area-two.light .sub-title6 {
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .title-area-two.light .sub-title6::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .title-area-two.light .sub-title6 {
    margin-bottom: 10px;
  }
}

.title-area-two.light h2 {
  margin-bottom: 0;
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .title-area-two.light h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 576px) {
  .title-area-two.light h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 416px) {
  .title-area-two.light h2 {
    font-size: 27px;
    line-height: 37px;
  }
}

.newsletter-form {
  text-align: right;
  margin-top: 39px;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .newsletter-form {
    text-align: center;
  }
}

.newsletter-form .form-group {
  position: relative;
  display: inline-block;
  /* Extra small devices */
}

@media (max-width: 576px) {
  .newsletter-form .form-group {
    width: 100%;
  }
}

.newsletter-form .form-group input {
  height: 75px;
  width: 521px;
  border: 0;
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 576px) {
  .newsletter-form .form-group input {
    width: 100%;
  }
}

@media (max-width: 416px) {
  .newsletter-form .form-group input {
    height: 60px;
  }
}

.newsletter-form .form-group .btn-style {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  /* Extra small devices */
}

.newsletter-form .form-group .btn-style i {
  margin-left: 3px;
}

@media (max-width: 416px) {
  .newsletter-form .form-group .btn-style {
    position: static;
    margin-top: 20px;
  }
}

.news-letter-section-two {
  position: relative;
  margin-top: -130px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .news-letter-section-two {
    margin-top: 0;
  }
}

.news-letter-box-two {
  position: relative;
  padding: 95px 0;
}

.news-letter-box-two::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: #084c7d;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .news-letter-box-two::before {
    right: 99%;
  }
}

.news-content7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Medium devices */
}

@media (max-width: 992px) {
  .news-content7 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.news-content7 img {
  position: relative;
  z-index: 999;
  /* Medium devices */
}

@media (max-width: 992px) {
  .news-content7 img {
    margin-bottom: 30px;
  }
}

.letter-btn-box {
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .letter-btn-box {
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .letter-btn-box {
    text-align: center;
  }
}


.news-letter-title {
  margin-left: 70px;
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 992px) {
  .news-letter-title {
    margin-left: 0;
  }
}

@media (max-width: 416px) {
  .news-letter-title {
    margin-left: -15px;
  }
}

.news-letter-title .sub-title7 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  margin-bottom: 15px;
}

.news-letter-title h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 576px) {
  .news-letter-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 416px) {
  .news-letter-title h2 {
    font-size: 25px;
  }
}

.thumb-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e5eaee;
}

.thumb-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.thumb-post .post-date {
  display: inline-block;
  font-size: 12px;
  color: var(--title-color);
}

.thumb-post .post-date i {
  position: relative;
  top: -1px;
  margin-right: 7px;
}

.thumb-post .post-date:hover {
  color: var(--theme-color);
}

.thumb-post .post-title {
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 700;
}

.thumb-post .post-title a {
  color: inherit;
}

.thumb-post .post-title a:hover {
  color: var(--theme-color);
}

.thumb-post .media-img {
  margin-right: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.thumb-post .media-img img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  transform: scale(1.001);
}

.thumb-post:hover .media-img img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.widget {
  padding: 40px;
  margin-bottom: 30px;
  background-color: var(--smoke-color);
  border-radius: 5px;
}

.widget_title {
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 20px;
  margin-top: -0.07em;
}

.sidebar-area .widget_title {
  position: relative;
  padding: 0 0 20px 0;
  margin: 0 0 25px 0;
}

.sidebar-area .widget_title:after, .sidebar-area .widget_title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--theme-color);
}

.sidebar-area .widget_title:after {
  left: 55px;
  width: 7px;
  background-color: var(--title-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .sidebar-area.pl-30 {
    padding-left: 0;
  }

  .widget {
    padding: 30px;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .widget {
    padding: 30px 20px;
  }
}

.address-line {
  padding-left: 30px;
  position: relative;
}

.address-line i {
  position: absolute;
  left: 0;
  top: 6px;
}

.address-line a {
  text-decoration: underline;
}


/*------------------- 4.2. Header  -------------------*/
.header-wrapper {
  position: relative;
  z-index: 9999;
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: #fff;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}

.will-sticky .sticky-active.active {
  top: 0;
}

.will-sticky .menu-style1>ul>li>a {
  padding: 41px 0;
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 700;
  color: #000;
  font-size: 18px;
  letter-spacing: 1px;
}

@media (max-width: 1199px) {
  .main-menu a {
    font-size: 14px;
  }
}

.main-menu a:hover {
  color: #e1cc8e;
}

.main-menu>ul>li {
  margin: 0 15px;
}

.main-menu>ul>li>a .new-label {
  position: absolute;
  top: -15px;
  right: -16px;
  font-size: 11px;
  border-radius: 3px;
  background-color: var(--error-color);
}

.main-menu>ul>li>a .has-new-lable {
  position: relative;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\f107";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 2px;
  font-size: 0.8rem;
  left: 4px;
}

.main-menu ul li:last-child {
  margin-right: 0;
}

.main-menu ul li:first-child {
  margin-left: 0;
}

.main-menu ul li:hover .menu-pages,
.main-menu ul li:hover>ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid #e1cc8e;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}

.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}

.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\f105";
  float: right;
  top: 3px;
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
}

.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 2.5em;
  left: 0;
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: #b8090e;
  font-weight: 700;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 2px 4px 0px rgba(7, 204, 236, 0.4);
  box-shadow: inset 0px 2px 4px 0px rgb(184 9 14);
}

.main-menu ul.sub-menu li a:hover {
  color: #b8090e;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: 1250px;
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 4px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
}

.main-menu ul.mega-menu>li>a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after, .main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu>li>a:hover {
  padding-left: 0;
}

.main-menu .menu-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: var(--main-container, 1295px);
  background-color: #fff;
  padding: 20px 10px 0 10px;
  margin-top: 70px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
}

.main-menu .menu-pages>li {
  width: 100%;
  padding: 0 10px 20px 10px;
}

.main-menu .menu-pages img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-menu .menu-pages a {
  text-align: center;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0 0 10px 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  background-color: var(--title-color);
  color: #fff;
}

.main-menu .menu-pages a img {
  display: block;
  margin: 0 0 8px 0;
}

.main-menu .menu-pages a:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.menu-style1>ul>li>a {
  padding: 46px 0;
}

.menu-style2>ul>li>a {
  padding: 44px 0;
}

.menu-style3>ul>li {
  margin: 0 28px;
}

.menu-style3>ul>li>a {
  padding: 16.5px 0;
  color: #fff;
}

.menu-style3>ul>li>a:hover {
  color: var(--theme-color);
}

.menu-style4 ul.sub-menu li a:before {
  -webkit-box-shadow: inset 0px 2px 4px 0px rgba(242, 0, 0, 0.4);
  box-shadow: inset 0px 2px 4px 0px rgba(242, 0, 0, 0.4);
}

.menu-style4>ul>li {
  margin: 0;
}

.menu-style4>ul>li>a {
  padding: 27px 30px;
  font-weight: 500;
  color: #fff;
  position: relative;
  font-size: 16px;
}

.menu-style4>ul>li>a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #ff7676;
  height: 16px;
  width: 1px;
  margin: -8px 0 0 0;
}

.menu-style4>ul>li>a:hover {
  color: var(--title-color);
}

.menu-style4>ul>li>a .new-label {
  color: var(--title-color);
  background-color: #fff;
}

.menu-style4>ul>li:first-child>a {
  padding-left: 0;
}

.menu-style4>ul>li:last-child>a {
  padding-right: 0;
}

.menu-style4>ul>li:last-child>a::before {
  display: none;
}

.header-top-info li {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-right: 38px;
}

.header-top-info li:last-child {
  margin-right: 0;
}

.header-top-info li i {
  color: var(--theme-color);
  margin-right: 10px;
  font-size: 16px;
  vertical-align: middle;
}

.head-top-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.head-top-links a {
  color: #fff;
  font-size: 14px;
}

.head-top-links a:hover {
  color: var(--theme-color);
}

.head-top-links>li {
  display: inline-block;
  margin-right: 28px;
  position: relative;
  padding-right: 31px;
}

.head-top-links>li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background-color: #6f87af;
}

.head-top-links>li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.head-top-links>li:last-child:before {
  display: none;
}

.head-top-links .dropdown-toggle i {
  font-size: 12px;
  margin-right: 5px;
}

.head-top-links .dropdown-toggle:after {
  content: "\f107";
  margin: 0;
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 5px;
}

.head-top-links .dropdown-menu {
  padding: 10px 15px;
  border: none;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  margin: 0;
  margin-left: 0 !important;
  margin-top: 15px !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  position: relative;
  z-index: 3;
  border: 1px solid #ededed;
}

.head-top-links .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 30px;
  top: -7px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}

.head-top-links .dropdown-menu a {
  color: var(--title-color);
}

.head-top-links .dropdown-menu a:hover {
  color: var(--theme-color);
}

.head-top-links .dropdown-menu li {
  margin-bottom: 5px;
}

.head-top-links .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.header-social {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-social li {
  display: inline-block;
  margin-right: 13px;
}

.header-social li:last-child {
  margin-right: 0;
}

.header-social a {
  font-size: 16px;
}

.header-search-btn {
  color: #698fd0;
  font-size: 12px;
  background-color: transparent;
  border: none;
  display: inline-block;
  padding: 3px 3px 3px 15px;
  border-radius: 3px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.header-search-btn i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-left: 10px;
  font-size: 10px;
  border: none;
  color: #fff;
  background-color: #698fd0;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.header-search-btn:hover {
  background-color: var(--theme-color);
  color: #fff;
}

.header-search-btn:hover i {
  background-color: #fff;
  color: var(--theme-color);
}

.header-btn,
.header-call.phone-box {
  padding-left: 42px;
  margin-left: 40px;
  position: relative;
}

.header-btn:before,
.header-call.phone-box:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: var(--theme-color);
  left: 0;
  top: 50%;
  margin-top: -15px;
}

.header-btn.style2,
.header-call.phone-box.style2 {
  padding-left: 30px;
  margin-left: 0;
}

.header-btn {
  position: relative;
  margin-left: calc(43px - var(--bs-gutter-x));
}

.header-btn:before {
  content: "";
  position: absolute;
}

.header-btn .vs-btn {
  margin-left: 30px;
}

.header-btn .icon-btn {
  margin-left: 10px;
}

.header-btn .icon-btn:first-child {
  margin-left: 0;
}

.header2-btn .vs-btn {
  margin-left: 25px;
}

.header2-btn .icon-btn {
  margin-right: 10px;
}

.header2-btn .icon-btn:first-child {
  margin-left: 0;
}

.header-note {
  position: relative;
  border-top: 3px solid var(--title-color);
}

.header-note .note-inner {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
}

.header-note .note-text {
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  margin: -1px 0 0 auto;
  font-size: 14px;
  color: #fff;
  padding: 13.2px 0 13.2px 225px;
}

.header-note .note-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 99999px;
  height: 100%;
  background-color: var(--title-color);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
}

.header-notice {
  height: 3px;
  position: relative;
  z-index: 1;
}

.header-notice .notice-text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0 5px;
}

.header-notice .shape {
  position: absolute;
  height: 50px;
  width: 100%;
  max-width: 950px;
  z-index: -1;
  right: 0;
  top: 0;
}

.header-notice .shape:before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
}

.header-notice p {
  display: inline-block;
}

.header-top-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-top-links li {
  display: inline-block;
  color: var(--body-color);
  font-size: 14px;
  line-height: 20px;
}

.header-top-links li:not(:last-child) {
  padding-right: 20px;
  margin-right: 17px;
  border-right: 1px solid #5c84da;
}

.header-top-links a {
  color: inherit;
}

.header-top-links a:hover {
  color: var(--theme-color2);
}

.social-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
}

.header-social2 {
  display: inline-block;
  margin-left: 20px;
}

.header-social2 a {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: var(--theme-color2);
  color: #fff;
  margin-right: 3px;
  border: none;
}

.header-social2 a:last-child {
  margin-right: 0;
}

.header-social2 a:hover {
  background-color: var(--theme-color4);
  color: #fff;
}

.header-help {
  margin-left: 17px;
  padding-left: 40px;
  border-left: 1px solid #adb3c2;
  padding: 6px 0 6px 39px;
}

.header-help__title {
  color: var(--title-color);
  font-size: 14px;
  font-weight: 600;
  margin-right: 18px;
  display: inline-block;
}

.header-list1 ul {
  margin: 0 0 0 0;
}

.header-list1 li {
  display: inline-block;
  margin-right: 40px;
}

.header-list1 li:last-child {
  margin-right: 0;
}

.header-list1 a {
  color: var(--title-color);
  font-weight: 600;
  display: block;
}

.header-list1 a i {
  color: #686868;
  font-size: 28px;
  vertical-align: middle;
  margin: -2px 10px 0 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.header-list1 a:hover,
.header-list1 a:hover i {
  color: var(--theme-color);
}

.header-link1 {
  color: var(--title-color);
  margin-right: 20px;
}

.header-link1:hover {
  color: var(--theme-color);
}

.header-link2 {
  padding: 12px 27px;
}

.header-link3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.header-link3 i {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.header-link3:hover {
  text-decoration: underline;
  color: #fff;
}

.header-link3:hover i {
  background-color: #fff;
  color: var(--theme-color);
}

.header-layout5 .header-top {
  padding: 20px 0 30px 0;
}

.header-layout5 .vs-menu-toggle {
  background-color: #fff;
  color: var(--theme-color);
  border-radius: 0;
  margin: 15px 0;
}

.header-layout5 .menu-area {
  position: relative;
  z-index: 31;
}

.header-layout5 .header-shape1 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  max-width: 1675px;
}

.header-layout5 .header-shape1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%);
}

.header-layout5 .header-shape1:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 40px solid #dc0000;
  border-right: 23px solid transparent;
  border-left: 23px solid transparent;
  margin-left: -22px;
}

.header-layout5 .will-sticky .header-shape1 {
  max-width: 100%;
}

.header-layout5 .will-sticky .header-shape1:after {
  opacity: 0;
  visibility: hidden;
}

.header-layout5 .will-sticky .header-shape1::before {
  -webkit-clip-path: none;
  clip-path: none;
}

.header-layout6 {
  position: relative;
}

.header-top-six {
  margin-bottom: 15px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-top-six {
    padding: 15px 0;
  }
}

.header-top-info.v6 li {
  position: relative;
}

.header-top-info.v6 li:first-child::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -20px;
  width: 1px;
  height: 20px;
  background: #6F87AF;
}

.header-top-info.v6 li a {
  text-decoration: underline;
}

.header-top-info.v6 li a:hover {
  color: unset;
}

.head-top-links.v6>li {
  padding-right: 21px;
  margin-right: 17px;
}

.head-top-links.v6>li:nth-child(2) {
  margin-right: 0;
  padding-right: 17px;
}

.head-top-links.v6>li:nth-child(2)::before {
  display: none;
}

.head-top-links.v6>li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.header-btn.v6 {
  font-weight: 700;
  color: #fff;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  background-color: #07CCEC;
  display: inline-block;
  margin-left: 0;
}

.header-btn.v6:before {
  display: none;
}

.header-btn.v6:hover {
  background-color: #000;
  color: #fff;
}

.icon-btn-two {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.icon-btn-two:last-child {
  margin-right: 0;
}

.icon-btn-two i {
  background: #27477D;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon-btn-two i:hover {
  background: #07CCEC;
}

.icon-btn-two span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  background-color: #07CCEC;
  border-radius: 10px;
  text-transform: uppercase;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
}


@media (max-width: 767px) {
  .header-main6 {
    padding-top: 15px;
  }
}

@media (max-width: 1199px) {
  .header-main6 {
    padding-bottom: 15px;
  }
}

.header-main6 .vs-menu-toggle {
  right: 15px;
  position: relative;
}

.header-lower-six {
  background-color: var(--title-color) !important;
  margin-top: 15px;
  /* Medium devices */
}

@media (max-width: 992px) {
  .header-lower-six {
    display: none;
  }
}

.header-lower-six .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-lower-six .outer-box .main-menu>ul>li>a {
  color: #fff;
  padding: 16px 0 16px;
}

.btn-box-six {
  position: relative;
}

.btn-box-six .contact-btn {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  background: #07CCEC;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.btn-box-six .contact-btn i {
  margin-right: 11px;
}

.header-lower-seven {
  margin-top: 12px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-lower-seven {
    display: none;
  }
}

.header-lower-seven .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 30px;
  background: var(--theme-color4);
  padding-left: 23px;
  border-radius: 50px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-lower-seven .social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-menu.seven>ul>li {
  margin: 0 18px;
}

.menu-style7.seven>ul>li>a::after {
  color: #fff;
  margin-left: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-style7>ul>li>a {
  padding: 0;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
}

.menu-style7>ul>li>a:hover {
  color: var(--title-color);
}

.menu-style7>ul>li>a:hover:after {
  color: var(--title-color);
}

.header-main7 {
  margin-top: 6px;
}

.social-icons-seven {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  margin-right: 50px;
}

.social-icons-seven li {
  margin-right: 22px;
}

.social-icons-seven li:last-child {
  margin-right: 0;
}

.social-icons-seven li a {
  font-size: 18px;
  color: #fff;
}

.social-icons-seven li a:hover {
  color: var(--title-color);
}

.icon-btn-three {
  position: relative;
  display: inline-block;
  margin-right: 29px;
}

.icon-btn-three:last-child {
  margin-right: 0;
}

.icon-btn-three i {
  background: #fff;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.icon-btn-three i::before {
  font-size: 12px;
  color: var(--theme-color);
}

.icon-btn-three span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  background-color: #07CCEC;
  border-radius: 10px;
  text-transform: uppercase;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
}

.btn-box-seven {
  position: relative;
}

.main-menu .menu-pages.v7 {
  max-width: var(--main-container, 1140px);
}

.header-layout8 {
  position: relative;
  background: #000;
}

.header-top-eight {
  padding: 15px 0 15px;
  border-bottom: 1px solid #e3d9bc;
}

.login-btn-eight .register-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.login-btn-eight .register-btn i {
  margin-right: 10px;
  margin-top: -5px;
  color: #e1cc8e;
  font-size: 18px;
}

.login-btn-eight .register-btn:hover {
  color: #e1cc8e;
}

.head-top-links-eight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-right: 30px;
}

.header-social-eight {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

.header-social-eight li {
  position: relative;
  padding-right: 21px;
  padding-left: 19px;
}

.header-social-eight li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 20px;
  background: #888;
  margin-top: -1px;
}

.header-social-eight li:first-child {
  padding-left: 0;
}

.header-social-eight li:first-child::before {
  display: none;
}

.header-social-eight li:last-child {
  padding-right: 0;
}

.header-social-eight li a {
  font-size: 21px;
  color: #fff;
}

.header-social-eight li a:hover {
  color: var(--theme-color);
}

.header-top-info-eight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 72px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-top-info-eight {
    display: none;
  }
}

.header-top-info-eight li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 55px;
}

.header-top-info-eight li i {
  font-size: 18px;
  color: #e1cc8e;
  margin-right: 8px;
}

.header8-logo {
  position: relative;
  background-color: #fff;
  padding: 10px 78px 10px 0;
  border-radius: 0px 80px 0px 0px;
}

@media (max-width: 576px) {
  .header8-logo {
    padding-right: 55px;
  }
}

@media (max-width: 416px) {
  .header8-logo {
    padding-right: 24px;
    border-radius: 0;
  }
}

.header8-logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 109%;
  height: 100%;
  background-color: #fff;
}

@media (max-width: 1399px) {
  .menu-style8 {
    text-align: right;
  }
}

.menu-style8>ul>li>a {
  padding: 20px 0;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.menu-style8>ul>li {
  margin: 0 16px;
}

.will-sticky {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.will-sticky .menu-style8>ul>li>a {
  color: #fff;
}

.header-btn-eight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .header-btn-eight {
    display: none;
  }
}

.header-contact-btn {
  position: relative;
  padding-left: 62px;
}

.header-contact-btn:hover .icon-box {
  background-color: var(--theme-color4);
  border-color: transparent;
}

.header-contact-btn:hover .nmbr a {
  color: var(--theme-color4);
}

.header-contact-btn .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 54px;
  line-height: 59px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-contact-btn .icon-box i {
  font-size: 28px;
  color: #fff;
}

.header-contact-btn .sub-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: -3px;
  display: inline-block;
}

.header-contact-btn .nmbr {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.header-contact-btn .nmbr a {
  color: #fff;
}

.btn-style8.book {
  margin-left: 18px;
}

.vs-menu-toggle.eight {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Hight Resoulation devices */
@media (min-width: 1921px) {
  .header-layout5 .header-shape1 {
    max-width: 85%;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .header-layout5 .menu-area {
    margin-bottom: 0;
  }

  .header-layout5 .header-shape1 {
    max-width: 100%;
  }

  .header-layout5 .header-shape1:before {
    -webkit-clip-path: none;
    clip-path: none;
  }

  .header-layout5 .header-shape1:after {
    display: none;
  }

  .header-note .note-text {
    padding: 13.2px 0 13.2px 100px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-btn {
    padding-left: 30px;
  }

  .header-btn:before {
    display: none;
  }

  .header-btn .vs-btn {
    margin-left: 0;
  }

  .header2-btn .vs-btn {
    margin-left: 25px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .menu-style1>ul>li>a {
    padding: 39px 0;
  }

  .menu-style3>ul>li {
    margin: 0 20px;
  }

  .menu-style3>ul>li>a {
    color: var(--title-color);
  }

  .header-help {
    margin-left: 0;
    padding-left: 40px;
    padding: 6px 0 6px 25px;
  }

  .header-help__title {
    display: none;
  }

  .header-list1 li {
    margin-right: 25px;
  }

  .header-list1 a {
    font-size: 14px;
  }

  .header-list1 a i {
    font-size: 20px;
  }
}

/* Medium devices */
@media (max-width: 992px) {
  .header-help {
    border-left: none;
    padding: 0;
  }

  .header-social2 {
    margin-left: 0;
  }

  .header-social2 a {
    width: 45px;
    height: 55px;
    line-height: 55px;
  }

  .header-layout5 .header-list1 {
    display: none;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .header-top-links {
    text-align: center;
  }

  .header-top-links li:not(:last-child) {
    padding-right: 0;
    margin-right: 17px;
    border-right: none;
  }

  .header-link2 {
    padding: 10px 13px;
    font-size: 10px;
  }

  .header-layout5 .header-link1 {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .header-link3 {
    font-size: 16px;
  }

  .header-link3 i {
    width: 30px;
    height: 30px;
    line-height: 32px;
    font-size: 13px;
    margin-right: 10px;
  }
}


@media (max-width: 992px) {
  .widget-area.v6 {
    margin-bottom: 0;
  }

  .widget-area.v6 .row .col-md-12 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .widget-area.v6 .row .col-md-6 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 767px) {
  .widget-area.v6 {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .widget-area.v6 .menu-all-pages-container {
    display: block;
  }
}

.subscribe-form1.v6 .form-group {
  position: relative;
}

.subscribe-form1.v6 .form-group input {
  width: 100%;
  height: 60px;
  color: var(--body-color);
  padding: 0 30px;
  margin-right: 0;
  /* Extra small devices */
  /* Medium devices */
}

.subscribe-form1.v6 .form-group input::-webkit-input-placeholder {
  color: var(--body-color);
}

.subscribe-form1.v6 .form-group input::-moz-placeholder {
  color: var(--body-color);
}

.subscribe-form1.v6 .form-group input:-ms-input-placeholder {
  color: var(--body-color);
}

.subscribe-form1.v6 .form-group input::-ms-input-placeholder {
  color: var(--body-color);
}

.subscribe-form1.v6 .form-group input::placeholder {
  color: var(--body-color);
}

@media (max-width: 576px) {
  .subscribe-form1.v6 .form-group input {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .subscribe-form1.v6 .form-group input {
    width: 100%;
  }
}

.subscribe-form1.v6 .form-group .btn-style {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  background-color: var(--theme-color);
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
}

.footer-uper-box.v6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--theme-color);
  margin-bottom: 80px;
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 992px) {
  .footer-uper-box.v6 {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .footer-uper-box.v6 {
    padding: 70px 0 50px;
    margin-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .footer-uper-box.v6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.footer-uper-box.v6 .logo-box {
  /* Extra small devices */
}

@media (max-width: 576px) {
  .footer-uper-box.v6 .logo-box {
    margin-bottom: 30px;
  }
}

.menu-all-pages-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-all-pages-container .menu-six li {
  margin-bottom: 7px;
}

.menu-all-pages-container .menu-six li a {
  color: #fff;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 0;
}

.menu-all-pages-container .menu-six li a::before {
  content: "\f105";
  font-size: 16px;
  color: #fff;
  margin-right: 6px;
}

.menu-all-pages-container .menu-six li a:hover {
  color: var(--theme-color);
}

.menu-all-pages-container .menu-six li a:hover::before {
  color: var(--theme-color);
}

.menu-all-pages-container .menu-six.one {
  margin-right: 74px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .menu-all-pages-container .menu-six.one {
    margin-right: 28px;
  }
}


.widget-area.v7 {
  padding: 100px 0 12px;
  /* Medium devices */
}

@media (max-width: 992px) {
  .widget-area.v7 {
    padding-bottom: 45px;
    padding-top: 80px;
  }
}

@media (max-width: 992px) {
  .widget-area.v7 .footer-widget {
    margin-bottom: 30px;
  }
}

.widget_title-seven {
  position: relative;
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.widget_title-seven::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 141px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#D9D9D9), color-stop(81.77%, rgba(217, 217, 217, 0)));
  background: linear-gradient(90deg, #D9D9D9 0%, rgba(217, 217, 217, 0) 81.77%);
}

.vs-widget-about-seven {
  padding-right: 50px;
}

.vs-widget-about-seven .footer-logo {
  margin-bottom: 29px;
}

.vs-widget-about-seven .footer-text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 39px;
  /* Extra small devices */
}

@media (max-width: 416px) {
  .vs-widget-about-seven .footer-text {
    margin-bottom: 20px;
  }
}


.widget-area.v8 {
  padding: 210px 0 40px;
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .widget-area.v8 {
    padding-bottom: 0;
  }
}

@media (max-width: 992px) {
  .widget-area.v8 {
    padding-top: 182px;
    margin-bottom: -13px;
  }
}

@media (max-width: 767px) {
  .widget-area.v8 {
    padding-bottom: 0;
  }
}

@media (max-width: 576px) {
  .widget-area.v8 {
    padding: 176px 0 0;
  }
}

.widget_title-eight {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 10px;
  margin-bottom: 38px;
}

.widget_title-eight::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67px;
  height: 3px;
  background: #07ccec;
}

.vs-widget-about-eight {
  padding-right: 60px;
  /* Extra small devices */
}

@media (max-width: 416px) {
  .vs-widget-about-eight {
    padding-right: 0;
  }
}

.menu-all-pages-container-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Extra small devices */
}

@media (max-width: 416px) {
  .menu-all-pages-container-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.menu-eight {
  list-style: none;
  padding-left: 0;
}

.menu-eight li {
  margin-bottom: 14px;
}

.menu-eight li a {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  margin-left: 18px;
}

.menu-eight li a:hover::after {
  width: 100%;
}

.menu-eight li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-eight li a::before {
  content: "\f105";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -18px;
  position: absolute;
  font-size: 14px;
  font-weight: 400;
  color: #07ccec;
}

.menu-eight.v1 {
  margin-right: 68px;
}

@media (max-width: 1399px) {
  .menu-eight.v1 {
    margin-right: 45px;
  }
}

@media (max-width: 992px) {
  .menu-eight.v1 {
    margin-right: 38px;
  }
}

@media (max-width: 416px) {
  .menu-eight.v1 {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.widget_nav_menu-eight {
  margin-left: 29px;
}

@media (max-width: 1199px) {
  .widget_nav_menu-eight {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .widget_nav_menu-eight {
    margin-left: 0;
  }
}

/*------------------- 4.6. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid var(--border-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: transparent;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: #fff;
  width: 450px;
  margin-left: auto;
  padding: 30px 35px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.sidemenu-wrapper .widget {
  padding: 0;
  margin-bottom: 40px;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper .widget .widget_title {
  position: relative;
  padding-bottom: 20px;
  font-size: 24px;
  margin-bottom: 30px;
}

.sidemenu-wrapper .widget .widget_title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--theme-color);
  border-radius: 3px;
}

.sidemenu-wrapper .footer-logo {
  margin-bottom: 20px;
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.header-main-eight {
  background-color: #b8090e;
}