/*============== loader-ripple ==============*/
@keyframes loader-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
/*============== play-button-pulse ==============*/
@keyframes play-button-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/*== heartBeat ==*/
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cluster-animation {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

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

input:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

body {
  font-size: 14px;
  line-height: 24px;
  font-family: "Open Sans", Helvetica, sans-serif;
  color: #6a717b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*---------------- fonts ----------------*/
.font-size-30 {
  font-size: 30px !important;
}

.font-size-28 {
  font-size: 28px !important;
}

.font-size-27 {
  font-size: 27px !important;
}

.font-size-26 {
  font-size: 26px !important;
}

.font-size-25 {
  font-size: 25px !important;
}

.font-size-24 {
  font-size: 24px !important;
}

.font-size-23 {
  font-size: 23px !important;
}

.font-size-22 {
  font-size: 22px !important;
}

.font-size-21 {
  font-size: 21px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-19 {
  font-size: 19px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.fs-1_5em {
  font-size: 1.5em !important;
}

/*---------------- font-weight ----------------*/
.font-weight-thin {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

/*---------------- line-height ----------------*/
.line-height-30 {
  line-height: 30px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-25 {
  line-height: 25px !important;
}

.line-height-24 {
  line-height: 24px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.line-height-20 {
  line-height: 20px !important;
}

.line-height-18 {
  line-height: 18px !important;
}

/*---------------- container ----------------*/
.container {
  max-width: 1200px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .responsive-text-center {
    text-align: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .responsive-text-center {
    text-align: center !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .responsive-text-left {
    text-align: left !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .responsive-text-left {
    text-align: left !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .responsive-text-right {
    text-align: right !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .responsive-text-right {
    text-align: right !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .column-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.padding-area {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .padding-area {
    padding-top: 1rem;
  }
}

.cursor-pointer {
  cursor: pointer !important;
}

/*=== theme-btn ====*/
.theme-btn {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  line-height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #fe8900;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.theme-btn:hover {
  background-color: #d75420;
  color: #fff;
}

.theme-outline-btn {
  font-weight: 600;
  font-size: 13px;
  background-color: #fff;
  color: #fe8900;
  border: 1px solid #fe8900;
  line-height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.theme-outline-btn:hover {
  background-color: #d75420;
  color: #fff;
}

.download-btn {
  line-height: 55px;
  padding-left: 55px;
}
.download-btn .la {
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.download-btn:hover {
  background-color: #d75420;
  color: #fff;
  border-color: #fe8900;
}
.download-btn:nth-child(1) {
  background-color: #307CF3;
}
.download-btn:nth-child(2) {
  background-color: #40CC6F;
}

#showmore-button-1.theme-btn,
#showmore-button-2.theme-btn {
  cursor: pointer;
  background-color: #fff;
  color: #323438;
  border-radius: 30px;
  border: 1px solid #e4e4e4;
  margin-right: auto;
  text-align: center;
  width: 120px;
  padding: 0;
  margin-left: auto;
  line-height: 35px;
  display: block;
  font-size: 11px;
}
#showmore-button-1.theme-btn:hover,
#showmore-button-2.theme-btn:hover {
  background-color: #fe8900;
  color: #fff;
  border-color: #fe8900;
}

.video-play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  background-color: #fe8900;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  transition: all 0.3s;
}
.video-play-btn:hover {
  background-color: #d75420;
  color: #fff;
}

.float-btn {
  background-color: #fff;
  border-radius: 4px;
  color: #323438;
  display: inline-block;
  padding: 5px 10px;
  position: fixed;
  top: 20%;
  right: -68px;
  z-index: 1024;
  box-shadow: 0 4px 40px rgba(82, 85, 90, 0.2);
  transition: all 0.3s;
}
.float-btn:hover {
  right: 0;
  color: #fe8900;
}

.button-warning {
  background-color: #f9b851 !important;
}

.button-info {
  background-color: #1da1f2 !important;
}

.button-success {
  background-color: #40CC6F !important;
}

.button-danger {
  background-color: #f00125 !important;
}

.button-secondary {
  background-color: gray !important;
}

.theme-btn-2 {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  line-height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #6a717b;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
.theme-btn-2:hover {
  background-color: #6a717b;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.padding-right-85px {
  padding-right: 85px;
}

.padding-right-80px {
  padding-right: 80px;
}

.padding-right-70px {
  padding-right: 70px;
}

.padding-right-60px {
  padding-right: 60px;
}

.padding-right-55px {
  padding-right: 55px;
}

.padding-right-50px {
  padding-right: 50px;
}

.padding-right-45px {
  padding-right: 45px;
}

.padding-right-40px {
  padding-right: 40px;
}

.padding-right-30px {
  padding-right: 30px;
}

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

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

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

.padding-left-85px {
  padding-left: 85px;
}

.padding-left-80px {
  padding-left: 80px;
}

.padding-left-70px {
  padding-left: 70px;
}

.padding-left-60px {
  padding-left: 60px;
}

.padding-left-55px {
  padding-left: 55px;
}

.padding-left-50px {
  padding-left: 50px;
}

.padding-left-45px {
  padding-left: 45px;
}

.padding-left-40px {
  padding-left: 40px;
}

.padding-left-30px {
  padding-left: 30px;
}

/*===== margin ====*/
.margin-top-200px {
  margin-top: 200px;
}

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

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

.margin-top-160px {
  margin-top: 160px;
}

.margin-top-150px {
  margin-top: 150px;
}

.margin-top-140px {
  margin-top: 140px;
}

.margin-top-130px {
  margin-top: 130px;
}

.margin-top-120px {
  margin-top: 120px;
}

.margin-top-110px {
  margin-top: 110px;
}

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

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

.margin-top-90px {
  margin-top: 90px;
}

.margin-top-85px {
  margin-top: 85px;
}

.margin-top-80px {
  margin-top: 80px;
}

.margin-top-70px {
  margin-top: 70px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radius-round {
  border-radius: 4px !important;
}

.radius-rounded {
  border-radius: 30px !important;
}

.before-none:before {
  display: none !important;
}

.after-none:after {
  display: none !important;
}

.after-none:after,
.before-none:before {
  display: none !important;
}

.section-bg {
  background-color: #F5F7FC;
}

.section-bg-2 {
  background-color: #323438;
}

.section-block,
.section-block-2 {
  height: 1px;
}

.section-block {
  background-color: #F5F7FC;
}

.section-block-2 {
  background-color: #e4e4e4;
}

.color-text {
  color: #fe8900 !important;
}

.color-text-2 {
  color: #323438 !important;
}

.color-text-3 {
  color: #40CC6F !important;
}

.bg-img-transparent {
  background-image: none !important;
}

/*==== badge-closed ====*/
.badge-closed,
.section-bg-3 {
  background-color: #fe8900 !important;
}

.bg-1 {
  background-color: #ddd !important;
}

.bg-2 {
  background-color: #28d5a7 !important;
}

.bg-3 {
  background-color: #f9b851 !important;
}

.bg-4 {
  background-color: #CC08E9 !important;
}

.bg-5 {
  background-color: #2877B5 !important;
}

.bg-6 {
  background-color: #1da1f2 !important;
}

/*=== p-relative p-absolute ====*/
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/*========= preloader ==========*/
.loader-container {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 99999;
}
.loader-container .loader-ripple {
  position: relative;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-container .loader-ripple div {
  position: absolute;
  border: 4px solid #fe8900;
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader-container .loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

/*====================================================
    tooltips
 ====================================================*/
.new-page-badge {
  display: inline-block;
  padding: 0 6px;
  background-color: #40CC6F;
  color: #fff;
  font-size: 9px;
  border-radius: 3px;
  line-height: 22px;
  float: right;
  font-weight: 600;
}

.or-box span {
  color: #323438;
  font-size: 20px;
  font-weight: 600;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: rgba(255, 107, 107, 0.1);
  display: inline-block;
  border-radius: 50%;
}

/*====================================================
    section-heading
 ====================================================*/
.section-heading .sec__title {
  font-size: 30px;
  color: #323438;
  font-weight: 700;
  margin-bottom: 21px;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section-heading .sec__title {
    padding-top: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section-heading .sec__title {
    padding-top: 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section-heading .sec__title br {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section-heading .sec__title br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .section-heading .sec__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-heading .sec__title {
    font-size: 30px;
  }
}
@media (max-width: 425px) {
  .section-heading .sec__title {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .section-heading .sec__title {
    padding-top: 0;
  }
}
.section-heading .sec__desc {
  font-size: 16px;
  color: #6a717b;
  font-weight: 500;
  line-height: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-heading .sec__desc br {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section-heading .sec__desc br {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .section-heading .sec__desc br {
    display: none;
  }
}

.sec__list li {
  display: inline-block;
  margin-left: 4px;
}
.sec__list li:first-child {
  margin-left: 0;
}
.sec__list li a {
  display: block;
  color: #d75420;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 2px solid rgba(140, 67, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s;
}
.sec__list li a:hover {
  background-color: #d75420;
  color: #fff;
  border-color: #d75420;
}

/*====================================================
    custom-checkbox
 ====================================================*/
.custom-checkbox {
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 400px) {
  .custom-checkbox {
    margin-right: 0;
    display: block;
  }
}
.custom-checkbox label {
  color: #6a717b;
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  cursor: pointer;
}
.custom-checkbox label span {
  float: right;
  background-color: rgba(128, 137, 150, 0.1);
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 30px;
  font-size: 11px;
}
.custom-checkbox input[type=checkbox]:not(:checked),
.custom-checkbox input[type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}
.custom-checkbox input[type=checkbox]:not(:checked) + label,
.custom-checkbox input[type=checkbox]:checked + label {
  position: relative;
  padding-left: 26px;
}
.custom-checkbox input[type=checkbox]:not(:checked) + label:before,
.custom-checkbox input[type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 2px;
}
.custom-checkbox input[type=checkbox]:not(:checked) + label:after,
.custom-checkbox input[type=checkbox]:checked + label:after {
  content: "\f00c";
  position: absolute;
  top: 1px;
  left: 3px;
  font-size: 13px;
  color: #fff;
  transition: all 0.3s;
  font-family: "FontAwesome", sans-serif;
}
.custom-checkbox input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  visibility: hidden;
}
.custom-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.custom-checkbox input[type=checkbox]:checked + label:before {
  background-color: #fe8900;
  border-color: #fe8900;
}

.title-shape {
  width: 45px;
  height: 4px;
  border-radius: 30px;
  background-color: #fe8900;
  position: relative;
}
.title-shape:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 13px;
  width: 5px;
  height: 5px;
  background-color: #fff;
}

/*======= social-profile ========*/
.social-profile li {
  display: inline-block;
}
.social-profile li a {
  display: block;
  color: #323438;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: rgba(128, 137, 150, 0.1);
  transition: all 0.3s;
  border-radius: 50%;
}
.social-profile li a:hover {
  background-color: #fe8900;
  color: #fff;
}

/*======= info-list ========*/
.info-list li {
  display: block;
  font-size: 13px;
  color: #6a717b;
  font-weight: 400;
  margin-bottom: 6px;
}
.info-list li:last-child {
  margin-bottom: 0;
}
.info-list li a {
  color: #6a717b;
}
.info-list li .la, .info-list li .fa, .info-list li .fab, .info-list li .far, .info-list li .fas {
  color: #fe8900;
  margin-right: 2px;
  font-size: 14px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 107, 107, 0.1);
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.info-list li:hover a {
  color: #fe8900;
}
.info-list li:hover .la, .info-list li:hover .fa, .info-list li:hover .fab, .info-list li:hover .far {
  background-color: #fe8900;
  color: #fff;
}
.info-list li .info-list-icon svg {
  color: #fff;
  background: #fe8900;
  padding: 6px;
  border-radius: 50px;
  font-size: 28px;
  vertical-align: bottom;
}

/*======== img-boxes =========*/
.img-boxes img {
  width: 100%;
  border-radius: 12px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .img-boxes .img-box-item.mt-4 {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .img-boxes .img-box-item.mt-4 {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .img-boxes .img-box-item {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .img-boxes .img-box-item {
    margin-bottom: 20px;
  }
}

.mobile-img img {
  width: 100%;
}

/*======= list-items ========*/
.list-items li {
  margin-bottom: 7px;
  font-weight: 500;
  color: #6a717b;
  font-size: 13px;
}
.list-items li:last-child {
  margin-bottom: 0;
}
.list-items li a {
  color: #6a717b;
  transition: all 0.3s;
  position: relative;
}
.list-items li a:before {
  position: absolute;
  content: "";
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #fe8900;
  transition: all 0.3s;
}
.list-items li a:hover {
  color: #fe8900;
}
.list-items li a:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}
.list-items li span {
  font-size: 12px;
  width: 25px;
  height: 25px;
  background-color: rgba(128, 137, 150, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
}

/*======== input-number-group =========*/
.input-number-group p {
  color: #323438;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}
.input-number-group .input-group-button {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 26px;
  border-radius: 50%;
  color: #323438;
  background-color: rgba(51, 63, 87, 0.1);
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
.input-number-group .input-group-button:hover {
  color: #fff;
  background-color: #fe8900;
}
.input-number-group .input-group-button span {
  line-height: 0;
}
.input-number-group .input-number {
  border: 1px solid #ddd;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 30px;
  color: #323438;
  outline: none;
  height: 35px;
  padding-left: 12px;
}
@media (max-width: 425px) {
  .input-number-group .input-number {
    padding: 0;
    width: 80px;
  }
}

.tag-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(128, 137, 150, 0.1);
  font-size: 12px;
}

.tip {
  display: inline-block;
  cursor: help;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  width: 18px;
  height: 18px;
  text-align: center;
  background-color: #fe8900;
}

.tip-verified {
  background-color: #40CC6F;
}

/*====================================================
    pagination-wrapper
 ====================================================*/
.pagination-list li {
  display: inline-block;
}
@media (max-width: 375px) {
  .pagination-list li {
    margin-bottom: 10px;
  }
}
.pagination-list li:last-child {
  margin-bottom: 0;
}
.pagination-list li.pag__active a {
  background-color: #fe8900;
  color: #fff;
  border-color: #fe8900;
}
.pagination-list li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fe8900;
  background-color: rgba(255, 107, 107, 0.1);
  border-radius: 30px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
}
.pagination-list li a:hover {
  background-color: #fe8900;
  color: #fff;
  border-color: #fe8900;
}

/*======== generic-header =========*/
.generic-header {
  border: 1px solid rgba(128, 137, 150, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 20px 20px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-header {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-header {
    display: block;
  }
}
.generic-header .generic-nav {
  display: flex;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-header .generic-nav {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-header .generic-nav {
    margin-top: 20px;
  }
}
.generic-header .generic-nav li a {
  display: block;
  color: #fe8900;
  margin-right: 4px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 107, 0.1);
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.generic-header .generic-nav li a.active {
  background-color: #fe8900;
  color: #fff;
}
.generic-header .short-option {
  width: 200px;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .generic-header .short-option {
    margin-right: 0 !important;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .generic-header .short-option {
    margin-right: 0 !important;
    margin-top: 10px;
  }
}
.generic-header .showing__text {
  flex: 5;
  color: #6a717b;
}

/*======== top =========*/
#back-to-top {
  position: fixed;
  right: -150px;
  bottom: 40px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
  color: #323438;
  font-size: 18px;
  transition: all 0.4s;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
#back-to-top:hover {
  background-color: #d75420;
  color: #fff;
  border-color: #d75420;
}
#back-to-top.show-back-to-top {
  right: 30px;
  opacity: 1;
  visibility: visible;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.theme-bg-color {
  background-color: #323438 !important;
}

.theme-bg-color-2 {
  background-color: #fe8900 !important;
}

.theme-bg-color-3 {
  background-color: #d75420 !important;
}

.theme-color {
  color: #323438 !important;
}

.theme-color-2 {
  color: #fe8900 !important;
}

.theme-color-3 {
  color: #d75420 !important;
}

.icon-element {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #fe8900;
  border-radius: 50%;
  position: relative;
  font-size: 22px;
  transition: all 0.3s;
  color: #fff;
}
.icon-element:after {
  position: absolute;
  content: "";
  right: 1px;
  top: 1px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.icon-element-2 {
  display: inline-block;
  font-size: 30px;
  color: #323438;
  width: 80px;
  height: 80px;
  line-height: 77px;
  text-align: center;
  border: 2px solid #323438;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 425px) {
  .icon-element-2 {
    width: 70px;
    height: 70px;
    line-height: 67px;
  }
}
.icon-element-2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
.icon-element-2:hover {
  background-color: #fe8900;
  color: #fff;
  border-color: #fe8900;
}

.svg-icon {
  display: inline-block;
  font-size: inherit;
  width: 1em;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

/*====================================================
    contact-form-action
 ====================================================*/
.contact-form-action .form-group {
  position: relative;
}
.contact-form-action .form-group .form-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #6a717b;
  font-size: 16px;
}
.contact-form-action .form-group .submit-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 35px;
  padding-right: 15px;
  padding-left: 15px;
}
.contact-form-action .label-text {
  font-size: 13px;
  color: #323438;
  font-weight: 600;
  position: relative;
}
.contact-form-action .form-control {
  height: auto;
  line-height: inherit;
  padding: 12px 20px 12px 40px;
  font-size: 13px;
  color: #323438;
  border: 1px solid rgba(128, 137, 150, 0.3);
  resize: none;
  font-weight: 500;
  transition: all 0.3s;
}
.contact-form-action .form-control:focus {
  border-color: rgba(128, 137, 150, 0.6);
  box-shadow: 0 0 0 0;
}
.contact-form-action .form-control.form-control-no-icon {
  padding: 10px 15px 10px 15px;
}
.contact-form-action .message-control {
  height: 160px;
}

/*====================================================
    billing-form-item
 ====================================================*/
.billing-form-item {
  border: 1px solid rgba(128, 137, 150, 0.3);
  border-radius: 2px;
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.02);
}

.billing-title-wrap {
  padding: 30px;
  border-bottom: 1px solid rgba(128, 137, 150, 0.3);
}

.billing-content {
  padding: 30px;
}
.billing-content .contact-form-action form .form-group {
  margin-bottom: 20px;
}
.billing-content .contact-form-action form .form-group .label-text {
  font-weight: 600;
  margin-bottom: 7px;
}
.billing-content .contact-form-action form .form-group .form-control {
  box-shadow: 0 0 0 0;
  border-radius: 2px;
}
.billing-content .contact-form-action form .time-label-group {
  margin-bottom: 10px;
}
.billing-content .contact-form-action form .time-label-group .label-text {
  margin-bottom: 0;
}
.billing-content .custom-checkbox {
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 400px) {
  .billing-content .custom-checkbox {
    margin-right: 0;
    display: block;
  }
}

/*====================================================
    booking-area
 ====================================================*/
.payment-option .payment-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 600;
  color: #323438;
}
.payment-option .payment-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.payment-option .payment-radio input[type=radio]:checked ~ .checkmark {
  border-color: #fe8900;
}
.payment-option .payment-radio input[type=radio]:checked ~ .checkmark:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.payment-option .payment-radio input[type=radio]:checked ~ .payment-active {
  display: block;
}
.payment-option .payment-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  margin: 3px 0 0 0;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s;
}
.payment-option .payment-radio .checkmark:after {
  position: absolute;
  left: 3px;
  top: 3px;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #f66b5d;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.1);
  border-radius: 50%;
  transition: all 0.3s;
}
.payment-option .payment-active {
  display: none;
}
@media (max-width: 320px) {
  .payment-option .payment-content .contact-form-action .row {
    display: block;
  }
}

.booking-list li {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #323438;
  margin-bottom: 15px;
}
.booking-list li span {
  color: #6a717b;
  font-weight: 500;
  font-size: 13px;
}

.total-list li,
.total-list span {
  font-size: 16px;
}

@media (max-width: 1199px) {
  .coupon-widget .col-lg-8 {
    padding-right: 15px !important;
  }
}
@media (max-width: 1199px) {
  .coupon-widget .col-lg-8,
  .coupon-widget .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .coupon-widget .btn-box {
    margin-top: 15px;
  }
}

/*====================================================
   booking-confirm-area
 ====================================================*/
.booking-confirm-area {
  position: relative;
}
.booking-confirm-area:before, .booking-confirm-area:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: -45px;
  width: 16%;
  height: 29%;
  background-image: url("../images/dots.png");
  background-size: cover;
  background-position: center;
  transform: rotate(-20deg);
  opacity: 0.2;
}
.booking-confirm-area:after {
  left: auto;
  bottom: auto;
  top: 85px;
  right: -65px;
}

.booking-confirm-page span {
  font-size: 140px;
  line-height: 140px;
  color: #40CC6F;
}
@media (max-width: 320px) {
  .booking-confirm-page span {
    font-size: 100px;
    line-height: 100px;
  }
}

/*====================================================
    invoice-area
 ====================================================*/
.invoice-content {
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  padding: 40px 40px 32px 40px;
  border: 1px solid rgba(128, 137, 150, 0.3);
}
.invoice-content .widget-title {
  font-size: 22px;
}

@media (max-width: 320px) {
  .invoice-item .invoice-logo {
    margin-bottom: 40px;
  }
}
.invoice-item .invoice-title .widget-title {
  font-size: 28px;
}
.invoice-item .invoice-details {
  font-weight: 500;
}
.invoice-item .invoice-details strong {
  color: #323438;
}
@media (max-width: 425px) {
  .invoice-item .invoice-details.text-right {
    text-align: left !important;
  }
}
.invoice-item .invoice-info .widget-title {
  font-size: 16px;
}

.invoice-table table tr th {
  color: #323438;
  font-weight: 600;
  border-bottom-width: 1px;
}
.invoice-table table tr th,
.invoice-table table tr td {
  font-size: 14px;
  padding: 10px 20px;
}
.invoice-table table tr td {
  font-size: 13px;
  font-weight: 500;
}
.invoice-table .invoice-table-two {
  margin-bottom: 0;
}
.invoice-table .invoice-table-two tr th,
.invoice-table .invoice-table-two tr td {
  border-top: none;
  padding: 5px 0 5px 0;
}
.invoice-table .invoice-table-two tr td {
  text-align: right;
}

/*====================================================
    form-shared
 ====================================================*/
.account-assist .account__desc {
  position: relative;
  font-size: 28px;
}
.account-assist .account__desc:before, .account-assist .account__desc:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: rgba(128, 137, 150, 0.2);
  transform: translateY(-50%);
}
.account-assist .account__desc:after {
  left: auto;
  right: 0;
}

.form-shared .billing-form-item {
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  border-color: rgba(128, 137, 150, 0.2);
}

/*====================================================
    header
 ====================================================*/
.logo {
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .logo {
    text-align: center;
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
}
.logo img {
  max-width: 155px;
}
@media (max-width: 425px) {
  .logo img {
    max-width: 145px;
  }
}

/*======== main-menu-content =========*/
.main-menu-content {
  padding-top: 20px;
  margin-left: auto;
  text-align: right;
  padding-right: 28px;
}
@media (max-width: 1199px) {
  .main-menu-content {
    display: none;
  }
}
.main-menu-content nav ul li {
  display: inline-block;
  padding-top: 15px;
  padding-right: 23px;
  position: relative;
}
.main-menu-content nav ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: block;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  padding: 0 0 28px 0;
}
.main-menu-content nav ul li a .la-angle-down {
  font-size: 11px;
}
.main-menu-content nav ul li a:hover {
  color: #fe8900;
}
.main-menu-content nav ul li .dropdown-menu-item {
  text-align: left;
  position: absolute;
  top: 60px;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.2);
  transition: all 0.3s;
  transform: scale(0.9);
}
.main-menu-content nav ul li .dropdown-menu-item li {
  display: block;
  padding-top: 0;
  padding-right: 0;
}
.main-menu-content nav ul li .dropdown-menu-item li a {
  color: #6a717b;
  display: block;
  transition: all 0.3s;
  padding: 5px 25px;
  font-weight: 500;
  position: relative;
  font-size: 13px;
}
.main-menu-content nav ul li .dropdown-menu-item li a:hover {
  color: #fe8900;
  padding-left: 30px;
}
.main-menu-content nav ul li:hover .dropdown-menu-item {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.main-menu-content nav ul li:last-child {
  padding-right: 0;
}

/*======== logo-right-content =========*/
.logo-right-content {
  position: relative;
  padding-top: 20px;
  z-index: 1;
  padding-right: 55px;
}
@media (max-width: 1199px) {
  .logo-right-content {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .logo-right-content .author-access-list {
    display: none;
  }
}
.logo-right-content .author-access-list li {
  display: inline-block;
  padding-top: 2px;
  padding-right: 23px;
}
.logo-right-content .author-access-list li:last-child {
  padding-right: 0;
}
.logo-right-content .author-access-list li a {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}
.logo-right-content .author-access-list li a:hover {
  color: #fe8900;
}
.logo-right-content .author-access-list li a.theme-btn:hover {
  color: #fff;
}
.logo-right-content .author-access-list li .or-text {
  font-weight: 600;
  display: inline-block;
  padding: 0 4px;
  text-transform: lowercase;
}
.logo-right-content .side-menu-open {
  width: 50px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .logo-right-content .side-menu-open {
    display: block;
    right: auto;
    left: 0;
  }
}
.logo-right-content .side-menu-open .menu__bar {
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
}
.logo-right-content .side-menu-open .menu__bar:nth-child(1), .logo-right-content .side-menu-open .menu__bar:nth-child(2) {
  margin-bottom: 5px;
}
.logo-right-content .side-menu-open .menu__bar:nth-child(2) {
  margin-right: 5px;
}
.logo-right-content .side-menu-open:hover .menu__bar:nth-child(2) {
  margin-right: 0;
  margin-left: 5px;
}
.logo-right-content .side-user-menu-open {
  width: 45px;
  height: 46px;
  background-color: #fe8900;
  line-height: 46px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 23px;
}
@media (max-width: 1199px) {
  .logo-right-content .side-user-menu-open {
    display: block;
    top: -13px;
  }
}

.header-menu-wrapper.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}
@media (max-width: 1199px) {
  .header-menu-wrapper.header-fixed {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header-menu-wrapper.header-fixed:after {
  height: 100%;
}
.header-menu-wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #323438;
  z-index: -1;
  transition: all 0.5s;
}

.menu-full-width {
  display: flex;
  position: relative;
}

.side-nav-container,
.side-user-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background-color: #323438;
  overflow-x: hidden;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  transform: translateX(-100%);
}
.side-nav-container .logo_menu_open,
.side-user-panel .logo_menu_open {
  position: absolute;
  top: 25px;
  left: 25px;
  max-width: 150px;
}
.side-nav-container .humburger-menu-lines,
.side-user-panel .humburger-menu-lines {
  display: inline-block;
  text-align: right;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 18px;
  opacity: 0.5;
}
.side-nav-container .humburger-menu-lines:before, .side-nav-container .humburger-menu-lines:after,
.side-user-panel .humburger-menu-lines:before,
.side-user-panel .humburger-menu-lines:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  top: 10px;
  left: 0;
  background-color: #fff;
  transform: rotate(-43deg);
  transition: all 0.3s;
}
.side-nav-container .humburger-menu-lines:after,
.side-user-panel .humburger-menu-lines:after {
  transform: rotate(43deg);
}
.side-nav-container .humburger-menu-lines:hover:before, .side-nav-container .humburger-menu-lines:hover:after,
.side-user-panel .humburger-menu-lines:hover:before,
.side-user-panel .humburger-menu-lines:hover:after {
  transform: rotate(0);
}
.side-nav-container .side-menu-wrap,
.side-user-panel .side-menu-wrap {
  margin-top: 100px;
}
.side-nav-container .side-menu-ul li,
.side-user-panel .side-menu-ul li {
  position: relative;
  transition: all 0.3s;
}
.side-nav-container .side-menu-ul li:after,
.side-user-panel .side-menu-ul li:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
}
.side-nav-container .side-menu-ul li a,
.side-user-panel .side-menu-ul li a {
  font-size: 14px;
  color: #fff;
  display: block;
  font-weight: 500;
  padding: 14px 20px;
  transition: all 0.3s;
  position: relative;
}
.side-nav-container .side-menu-ul li a .la-angle-down,
.side-user-panel .side-menu-ul li a .la-angle-down {
  float: right;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: rgba(255, 255, 255, 0.12);
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 14px;
  transition: all 0.3s;
  border-radius: 50%;
}
.side-nav-container .side-menu-ul li a:hover .la-angle-down,
.side-user-panel .side-menu-ul li a:hover .la-angle-down {
  background-color: rgba(255, 255, 255, 0.3);
}
.side-nav-container .side-menu-ul li .dropdown-menu-item,
.side-user-panel .side-menu-ul li .dropdown-menu-item {
  display: none;
}
.side-nav-container .side-menu-ul li .dropdown-menu-item li:after,
.side-user-panel .side-menu-ul li .dropdown-menu-item li:after {
  display: none;
}
.side-nav-container .side-menu-ul li .dropdown-menu-item li:first-child,
.side-user-panel .side-menu-ul li .dropdown-menu-item li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}
.side-nav-container .side-menu-ul li .dropdown-menu-item li:last-child,
.side-user-panel .side-menu-ul li .dropdown-menu-item li:last-child {
  padding-bottom: 10px;
}
.side-nav-container .side-menu-ul li .dropdown-menu-item li a,
.side-user-panel .side-menu-ul li .dropdown-menu-item li a {
  padding-left: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  opacity: 0.8;
  font-size: 13px;
}
.side-nav-container .side-menu-ul li .dropdown-menu-item li a:hover,
.side-user-panel .side-menu-ul li .dropdown-menu-item li a:hover {
  opacity: 1;
  padding-left: 34px;
}
.side-nav-container .side-menu-ul li.active a .la-angle-down,
.side-user-panel .side-menu-ul li.active a .la-angle-down {
  background-color: #fff;
  color: #fe8900;
}
.side-nav-container .side-menu-ul li.active a .la-angle-down:before,
.side-user-panel .side-menu-ul li.active a .la-angle-down:before {
  content: "\f113";
}
.side-nav-container .side-nav-button,
.side-user-panel .side-nav-button {
  text-align: center;
  margin-top: 30px;
}
.side-nav-container .side-nav-button .theme-btn,
.side-user-panel .side-nav-button .theme-btn {
  background-color: rgba(255, 255, 255, 0.3);
}
.side-nav-container .side-nav-button .theme-btn:hover,
.side-user-panel .side-nav-button .theme-btn:hover {
  background-color: #fff;
  color: #fe8900;
}
.side-nav-container .side-nav-button .theme-btn:last-child,
.side-user-panel .side-nav-button .theme-btn:last-child {
  margin-left: 10px;
}
.side-nav-container.active,
.side-user-panel.active {
  transform: translateX(0);
}

.side-user-panel {
  left: auto;
  right: 0;
  background-color: #fff;
  transform: translateX(100%);
  padding: 30px;
  width: 280px;
}
.side-user-panel .humburger-menu-lines {
  right: auto;
  left: 20px;
}
.side-user-panel .humburger-menu-lines:before, .side-user-panel .humburger-menu-lines:after {
  background-color: #323438;
}
.side-user-panel .side-user-menu-wrap {
  margin-top: 50px;
}
.side-user-panel .side-user-img {
  text-align: center;
  position: relative;
}
.side-user-panel .side-user-img img {
  margin-bottom: 20px;
  max-width: 90px;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}
.side-user-panel .side-user-img .su__name {
  font-size: 16px;
  color: #323438;
  font-weight: 600;
  margin-bottom: 4px;
}
.side-user-panel .side-user-img .su__meta {
  color: #6a717b;
  font-size: 13px;
  font-weight: 500;
}
.side-user-panel .side-user-img .avatar-icon {
  position: absolute;
  left: 58%;
  top: 63px;
  width: 30px;
  height: 30px;
  background-color: #40CC6F;
  line-height: 25px;
  border-radius: 50%;
  font-size: 13px;
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  border: 3px solid #fff;
}
.side-user-panel .side-user-img .avatar-icon a {
  color: #fff;
}
.side-user-panel .side-user-img .avatar-icon .tooltip.top .tooltip-inner,
.side-user-panel .side-user-img .avatar-icon .tooltip.bottom .tooltip-inner {
  background-color: #323438;
  width: 120px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.side-user-panel .side-user-img .avatar-icon .tooltip.top .tooltip-arrow {
  border-top-color: #323438;
}
.side-user-panel .side-menu-ul {
  margin-top: 27px;
  margin-bottom: 30px;
  border-top: 1px solid #e4e4e4;
  padding-top: 25px;
}
.side-user-panel .side-menu-ul li:after {
  display: none;
}
.side-user-panel .side-menu-ul li a {
  color: #323438;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 4px;
}
.side-user-panel .side-menu-ul li a:hover {
  background-color: #fe8900;
  color: #fff;
}
.side-user-panel .side-menu-ul li a .user-icon {
  font-size: 14px;
}
.side-user-panel .side-menu-ul li .dropdown-divider {
  border-top: 1px solid #e4e4e4;
  margin-top: 12px;
  padding-bottom: 12px;
}
.side-user-panel .side-menu-ul li:last-child a .user-icon {
  color: #f00125;
}
.side-user-panel .side-user-search {
  text-align: center;
}
.side-user-panel .side-user-search .theme-btn {
  margin-top: 15px;
}
.side-user-panel.active {
  transform: translateX(0);
}

/*======= header-area ========*/
.header-area {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1010;
}
@media (max-width: 1199px) {
  .header-area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header-area:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.1;
}

/*====================================================
    header-area 2
 ====================================================*/
.header-area2 .header-menu-wrapper {
  padding-right: 45px;
  padding-left: 45px;
}
@media (max-width: 1024px) {
  .header-area2 .header-menu-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}

/*====================================================
    header-area 3
 ====================================================*/
.header-area3 .header-menu-wrapper {
  background-color: #fff;
}
@media (max-width: 1199px) {
  .header-area3 .header-menu-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header-area3 .main-menu-content nav ul li a {
  color: #323438;
}
.header-area3 .main-menu-content nav ul li a:hover {
  color: #fe8900;
}
.header-area3 .logo-right-content .author-access-list li a {
  color: #323438;
}
.header-area3 .logo-right-content .author-access-list li a.theme-btn {
  color: #fff;
}
.header-area3 .logo-right-content .side-menu-open {
  background-color: #323438;
}
.header-area3:after {
  display: none;
}

/*====================================================
    header-area 4
 ====================================================*/
.header-area4,
.header-area5 {
  background-color: #323438;
}

.header-shadow {
  border-bottom: 1px solid #e6e9ec;
  box-shadow: 0 5px 20px 0 rgba(13, 38, 59, 0.06);
}

.privacy .content h1, .privacy .content h2, .privacy .content h3, .privacy .content h4, .privacy .content h5, .privacy .content h6, .terms .content h1, .terms .content h2, .terms .content h3, .terms .content h4, .terms .content h5, .terms .content h6 {
  padding-bottom: 5px;
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 600;
}
.privacy .content p, .terms .content p {
  padding-bottom: 14px;
  line-height: 1.6;
}
.privacy .content ul, .privacy .content ol, .terms .content ul, .terms .content ol {
  list-style: disc;
  padding-left: 40px;
}

/*====================================================
    cta-area
 ====================================================*/
.symble-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.symble-img:nth-child(1) {
  left: 5%;
  top: 5%;
}
.symble-img:nth-child(2) {
  left: 10%;
  top: auto;
  bottom: 8%;
}
.symble-img:nth-child(3) {
  left: auto;
  right: 8%;
  top: 5%;
}
.symble-img:nth-child(4) {
  left: auto;
  right: 11%;
  top: auto;
  bottom: 2%;
}

.cta-area {
  position: relative;
}
.cta-area .section-heading .sec__title {
  margin-bottom: 10px;
}
.cta-area .btn-box {
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .btn-box {
    text-align: center;
    margin-top: 35px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-area .btn-box {
    text-align: center;
    margin-top: 35px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cta-area .btn-box {
    text-align: center;
    margin-top: 35px;
  }
}
.cta-area .btn-box .theme-btn:nth-child(2) {
  margin-left: 10px;
}
@media (max-width: 320px) {
  .cta-area .btn-box .theme-btn:nth-child(2) {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*====================================================
    cta-area2
 ====================================================*/
.cta-area2 {
  margin-bottom: -80px;
  z-index: 2;
}

.cta-box {
  background-color: #323438;
  border-radius: 8px;
  padding: 35px 20px 40px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.4);
  transition: all 0.3s;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-box {
    text-align: center;
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cta-box {
    text-align: center;
    display: block !important;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-box .contact-form-action {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .cta-box .contact-form-action {
    margin-top: 30px;
  }
}
.cta-box .contact-form-action form {
  position: relative;
}
.cta-box .contact-form-action form .form-control {
  border-color: #e4e4e4;
}
.cta-box .contact-form-action form .form-control:focus {
  box-shadow: 0 10px 40px rgba(82, 85, 90, 0.2);
}
.cta-box .contact-form-action form .theme-btn {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  line-height: 50px;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 320px) {
  .cta-box .contact-form-action form .theme-btn {
    position: inherit;
    border-radius: 4px;
    margin-top: 15px;
  }
}
.cta-box:before, .cta-box:after {
  position: absolute;
  top: 45px;
  left: 0;
  color: rgba(128, 137, 150, 0.2);
  font-family: "LineAwesome";
  font-size: 160px;
  transform: rotate(-45deg);
  z-index: -1;
}
.cta-box:before {
  content: "\f1c7";
}
.cta-box:after {
  content: "\f2b0";
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  transform: rotate(0);
}

.cta-text-box a {
  display: block;
  padding: 20px;
  border: 1px solid rgba(128, 137, 150, 0.3);
  color: #6a717b;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.1s;
}
.cta-text-box a i {
  margin-right: 10px;
  font-size: 26px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: rgba(128, 137, 150, 0.1);
  border-radius: 50%;
}
.cta-text-box a:hover {
  border-color: rgba(128, 137, 150, 0.6);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobile-app-content {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .mobile-app-content {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .mobile-app-content {
    margin-top: 50px;
  }
}
.mobile-app-content .info-list li {
  color: #323438;
  font-weight: 600;
}
.mobile-app-content .info-list li .la {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}

/*====================================================
    cta-area3
 ====================================================*/
.cta-area3 {
  position: relative;
  z-index: 2;
}
.cta-area3:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/*====================================================
    footer-area
 ====================================================*/
.footer-area {
  position: relative;
  z-index: 1;
}

.footer-item {
  color: #6a717b;
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-item {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .footer-item {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .footer-item {
    margin-bottom: 40px;
  }
}
.footer-item .logo {
  padding: 0;
  position: inherit;
  text-align: inherit;
  top: auto;
  left: auto;
  transform: translateX(0);
}
.footer-item .logo .footer__desc {
  margin-top: 25px;
  line-height: 27px;
}
.footer-item .logo .social-profile {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-item .logo .social-profile {
    margin-top: 10px;
  }
}
.footer-item .footer__desc {
  font-size: 13px;
  font-weight: 500;
}
.footer-item .footer__desc a {
  color: #323438;
  transition: all 0.3s;
}
.footer-item .footer__desc a:hover {
  color: #fe8900;
}
.footer-item .footer__title {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #323438;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.footer-item .footer__title:before, .footer-item .footer__title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 25px;
  height: 3px;
  border-radius: 30px;
  background-color: #fe8900;
}
.footer-item .footer__title:after {
  left: 28px;
  width: 12px;
}
.footer-item .contact-links {
  margin-top: 5px;
}
.footer-item .contact-links li {
  margin-bottom: 15px;
  position: relative;
  text-transform: inherit;
}

.copy-right {
  color: #6a717b;
  font-weight: 500;
  position: relative;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right {
    margin-top: 30px;
    padding-top: 30px;
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .copy-right {
    margin-top: 30px;
    padding-top: 30px;
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .copy-right {
    margin-top: 30px;
    padding-top: 30px;
    display: block;
    text-align: center;
  }
}
.copy-right:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #323438;
  opacity: 0.1;
}
.copy-right .la-heart-o {
  animation: heartBeat 1000ms infinite linear;
  font-size: 18px;
}
.copy-right .la-heart-o,
.copy-right a {
  color: #fe8900;
}
.copy-right .copy__desc {
  font-family: "Open Sans", Helvetica, sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right .list-items {
    text-align: center;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .copy-right .list-items {
    text-align: center;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .copy-right .list-items {
    text-align: center;
    margin-top: 5px;
  }
}
.copy-right .list-items li {
  border-right: 1px solid #ddd;
  padding-right: 10px;
  padding-left: 10px;
  line-height: 20px;
  display: inline-block;
}
.copy-right .list-items li:last-child {
  border-right: none;
  padding-right: 0;
  margin-bottom: 0;
}
.copy-right .select2.select2-container {
  width: 125px !important;
}
.copy-right .select2-container .select2-selection--single {
  padding: 5px 10px;
}
