/*------------- 
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]
    
    [ Text and Background Color ]
        Main color 1:       #1c93e5     
        Main color 2:       #009688      
        Main color 3:       #9c27b0
        Main color 4:       #ff4081      
        Background 1:       #FFFFFF            
        Background 2:       #F6F6F6           
        Shadow color:       #000000;            

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:  
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/* @font-face { */
/* font-family: DFYK; */
/* src: url(font/dfyk.ttf) format("truetype"); */
/* 沒有指定萬國碼區間，預設涵蓋所有的範圍 */
/* } */

/* @font-face { */
/* font-family: DFYK; */
/* src: url(font/mf.ttf) format("truetype"); */
/* unicode-range: U+2000-2300, U+0061-U+007A, U+0030-0039; */
/* 英文字型 */
/* } */

/*
================
 VARIABLES
================
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
   * -------------------
   *  Defult CSS 
   * -------------------
   */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-style: none;
  line-height: 24px;
  font-weight: 500;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  color: #000;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
}

p {
  opacity: 0.9;
}

.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.nav li a:hover {
  background-color: transparent;
}

.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}

a {
  text-decoration: none !important;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #000;
  opacity: 0.9;
}

a:hover {
  background-color: transparent;
}

a:focus {
  background-color: transparent;
  outline: 0 !important;
}

.center {
  float: none;
  margin: 0 auto;
  text-align: center;
}

/**
   * ---------------------
   *  Defult Halping Class
   * ---------------------
   */

.relative {
  position: relative;
}

/**
   * ---------------------
   *   Defult Button Style
   * ---------------------
   */
.btn {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  outline: 0;
  padding: 10px 34px;
  font-weight: bold;
  border-radius: 30px;
  font-size: 14px;
  padding: 16px 34px;
  font-size: 18px;
  line-height: 30px;
  outline: 0;
}

.btn:last-child {
  margin-right: 0px !important;
}

.btn:hover,
.btn:focus {
  outline: 0;
}

.btn .icon {
  position: relative;
  top: 2px;
}

.btn .icon img {
  position: relative;
  top: -3px;
  width: 14px;
}

.btn.btn-fill {
  color: #fff;
  border: none;
  opacity: 1;
  outline: 0;
  border-radius: 31px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.4);
  background: #852426;
}

.btn.btn-fill:focus {
  background: rgb(49, 154, 184);
  -webkit-box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 32px 64px rgba(0, 0, 0, 0.4);
}

.btn.btn-fill:hover {
  background: rgb(49, 154, 184);
}

.btn.btn-fill.purple-bg {
  background: #643BDF;
}

.btn.btn-fill.btn-white {
  background-color: #fff;
  color: rgba(21, 11, 48, 0.8);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn.btn-fill.btn-white:hover {
  border-color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background: #0e2cad;
}

.btn.btn-fill:hover {
  /* background: #e95839; */
  color: #fff;
  opacity: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.btn.btn-fill.no-hover:hover {
  background: #852426;
}

.btn.btn-fill:active {
  /* background: #643BDF; */
  color: #fff;
  opacity: 1;
  outline: 0;
}

.btn.left-icon .icon {
  margin-right: 15px;
}

.btn.right-icon .icon {
  margin-left: 15px;
}

.btn.btn-stroke {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.btn-stroke:hover {
  background-color: white;
}

.btn.white-btn-border {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn.white-btn-border:hover {
  background-color: #fff;
  color: #221645;
}

.btn.btn-round {
  padding: 15px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 24px;
  text-align: center;
}

.btn.btn-round .icon {
  top: 7px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}

/** 
   * -----------------
   * Social Icon Style
   * -----------------
   */
.social-icon {
  display: inline-block;
  float: right;
}

.social-icon li {
  list-style: none;
  float: left;
  margin-bottom: 0px;
  margin-right: 8px;
}

.social-icon li a {
  text-align: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 50%;
}

.social-icon li:last-child a {
  margin-right: 0px;
}

.social-icon li a i {
  border: 1px solid #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: white;
}

/**
   * -----------------------------------
   * Subscription and contact  "MESSAGE"
   * -----------------------------------
   */
.subscription-success,
.subscription-failed,
.email-success,
.email-failed,
.email-loading {
  font-size: 15px;
  display: none;
  text-align: center !important;
  padding: 10px !important;
}

.email-loading {
  color: #52B8FF;
}

.email-loading img {
  width: 15px;
  position: relative;
  top: -2px;
}

.subscription-failed,
.email-failed {
  color: #FF5252 !important;
}

.subscription-failed .icon,
.email-failed .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}

.subscription-success,
.email-success {
  color: #56CC35;
}

.subscription-failed .icon,
.email-failed .icon,
.subscription-success .icon,
.email-success .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}

/**
   * ------------------
   * list
   * ------------------
   */
ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

/**
   * =================
   * CONTAINER HALF CONTENT
   * =================
   */
.content-half {
  position: relative;
}

.container-half-left {
  left: 0;
  background-position: center right;
}

.container-half-right {
  right: 0;
  background-position: center left;
}

.vertical-middle-content {
  display: -moz-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

/**
   * ---------------------------------
   *  Section Background Size Property
   * ---------------------------------
   */
.bg-cover {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat;
}

.dark-bg {
  background-color: #202026;
}

.image-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mini-section-separator {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.bg-black {
  background-color: #000;
}

.form-control {
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 20px;
  height: 48px;
  line-height: 48px;
}

.form-control:focus {
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16), 0 0px 2px 0 rgba(0, 0, 0, 0.12);
  background-color: transparent;
}

.main-color {
  color: #1238DC;
}

.p-200 {
  padding: 0 200px;
}

.img-overlay {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.image-bg {
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
}

.home-2-img {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-one {
  background-image: url(../images/home-bg-img.jpg);
}

.featured-img-two {
  background-image: url(../images/extra-feature-bg.jpg);
}

.map-image {
  background-image: url(../images/map-color-overlay.png);
}

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

button {
  outline: 0;
}

button:hover {
  outline: 0;
}

button:focus {
  outline: 0;
}

.btn {
  outline: 0;
}

.btn:hover {
  outline: 0;
}

.btn:focus {
  outline: 0;
}

.round-image {
  border-radius: 50%;
}

.form-control {
  padding: 20px;
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.16);
}

.form-control:focus {
  -webkit-box-shadow: 0px 0px 3px 1px rgba(18, 56, 220, 0.5);
  box-shadow: 0px 0px 3px 1px rgba(18, 56, 220, 0.5);
  border-color: transparent;
}

.contact-message {
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.16);
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  outline: 0;
}

.contact-message:focus {
  -webkit-box-shadow: 0px 0px 3px 1px rgba(18, 56, 220, 0.5);
  box-shadow: 0px 0px 3px 1px rgba(18, 56, 220, 0.5);
  border-color: transparent;
}

.header-bg {
  background-color: #FFEFE9;
}

.purple-bg {
  background-color: #643BDF;
}

.blue-bg {
  background-color: #007C88;
}

.yellow-color {
  color: #FFD032;
}

.main-color {
  color: #1238DC;
}

.purple-color {
  color: #643BDF;
}

.blue-color {
  color: #007C88;
}

.bg-3 {
  color: #FAF9F7;
}

.bg-4 {
  color: #FAF9F7;
}

p {
  color: #585D6C;
}

.body-2 .btn {
  border-radius: 50px;
}

.body-2 .btn.btn-stroke {
  color: #fff;
}

/** 
   * -----------------
   * General CSS
   * -----------------
   */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

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

.zb-section-title h2 {
  font-size: 42px;
  line-height: 48px;
  font-weight: normal;
}

section {
  overflow: hidden;
}

/*
      ==============
         Navigation
      ============== 
  */
.mh-nav {
  width: 100%;
  padding: 15px 0;
}

.mh-header {
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mh-header.nav-strict {
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  /* background: #101A8E; */
  /* background: -webkit-gradient(linear, left top, right top, from(rgb(115, 215, 207)), to(rgb(49, 154, 184))); */
  background: -o-linear-gradient(left, rgb(115, 215, 207) 0%, rgb(49, 154, 184) 100%);
  /* background: linear-gradient(to right, rgb(115, 215, 207) 0%, rgb(49, 154, 184) 100%); */
  background: #852426;
}

.mh-header .navbar-nav li {
  margin: 6px 10px;
}

.mh-header .navbar-nav li.active a {
  border-bottom: 2px solid #e6e6e6;
}

.mh-header .navbar-nav li a {
  /* border-bottom: 1px solid transparent; */
  font-weight: bold;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  cursor: pointer;
  line-height: 30px;
}

.mh-header .navbar-nav li a.nav-link {
  padding-left: 0;
  padding-right: 0;
}

.mh-header .navbar-nav li a.nav-link.btn {
  padding: 6px 20px;
  opacity: 1;
  width: 110px;
}

.mh-header .navbar-nav li a.nav-link.btn:hover {
  color: #852426;
}

.mh-header-bg {
  background-color: #1238DC;
}

/*
      ==============
         home
      ==============
  */
.ev-home-padding {
  padding: 180px 0;
}

.ev-home-padding.ev-home-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ev-button .btn {
  margin: 0 4px;
  width: 150px;
  letter-spacing: 2px;
  font-size: 16px;
}

.single-form {
  padding: 20px;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 90px 115px -25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 90px 115px -25px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

.single-form h4 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  color: #221645;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}

.single-form .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: capitalize;
  opacity: 0.7;
  font-size: 14px;
  color: #221645;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .form-control:focus {
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .contact-message {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-transform: capitalize;
  opacity: 0.7;
  font-size: 14px;
  color: #221645;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .contact-message:focus {
  letter-spacing: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-form .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 10px;
}

.single-form .btn .fa {
  margin-left: 20px;
}

.navbar-toggler-icon {
  background-image: url(../icons/ti.svg);
  background-repeat: no-repeat;
}

.navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
  margin-right: 4px;
}

.ft-carousel .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.ft-carousel .owl-controls {
  width: 142px;
  position: absolute;
  right: 0;
  top: -150px;
}

.ft-carousel .owl-next {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 0px solid #1238DC;
  border-color: #83d7ac;
  top: 40%;
  height: 70px;
  -webkit-box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  width: 70px;
  right: 0%;
  text-align: center;
}

.ft-carousel .owl-next .fa {
  color: #2A2A2A;
  line-height: 70px;
  font-size: 40px;
  margin-left: 0px;
}

.ft-carousel .owl-prev {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 0px solid #1238DC;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.44);
  top: 40%;
  left: 0%;
  height: 70px;
  -webkit-box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  width: 70px;
}

.ft-carousel .owl-prev .fa {
  line-height: 70px;
  color: #2A2A2A;
  font-size: 40px;
  margin-left: 0px;
}

/**
   * ===================================
   *  Video post
   * ===================================
   */
.video-player {
  position: relative;
  line-height: 0;
}

.video-player video {
  width: 100%;
  border-radius: 10px;
}

.video-player .btn {
  width: 230px;
  height: 60px;
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: transparent;
}

.video-player.gobottom .btn {
  bottom: 10%;
}

.video-player .btn .icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.video-player .btn span {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.video-player .btn span.active {
  opacity: 1;
}

.video-features {
  padding: 35px;
  border-radius: 4px;
}

.video-features h4 {
  margin-top: 0;
  margin-bottom: 13px;
}

.video-features p {
  margin-bottom: 0;
}

.video-features .media-left {
  vertical-align: middle;
}

.video-features .icon svg {
  width: 40px;
  height: 40px;
  margin-top: -5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-inline {
  background: transparent;
  padding: 0;
}

.uv-accordinaton {
  width: 90%;
  margin: 0 auto;
  display: table;
  padding-bottom: 100px;
  padding-top: 30px;
}

.uv-accordinaton ul {
  padding: 0;
  margin: 20px 0;
  color: #555;
}

.uv-accordinaton ul li {
  list-style: none;
  border-top: 1px solid #ddd;
  display: block;
  padding: 15px;
  overflow: hidden;
}

.uv-accordinaton ul li:first-child {
  border-color: transparent;
}

.uv-accordinaton-list {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.uv-accordinaton-list:hover {
  color: #1238DC;
}

.uv-accordinaton-list h2 {
  font-size: 16px;
  line-height: 27px;
  margin-top: 0;
  margin-bottom: 0;
}

.uv-accordition-detail a {
  text-decoration: none;
  color: #C0392B;
  border: 1px solid #C0392B;
  padding: 6px 10px 5px;
  font-size: 14px;
}

.uv-accordition-detail {
  margin: 10px 0 10px 0px;
  display: none;
  line-height: 22px;
  text-align: center;
  padding-top: 20px;
}

.uv-accordition-detail img {
  margin: 0 auto;
  float: none;
  text-align: center;
  margin-bottom: -33px;
}

.uv-ac-details {
  text-align: left;
}

.uv-right-arrow {
  margin-top: 0;
  margin-left: 0;
  margin-right: 30px;
  width: 30px;
  border-radius: 50%;
  height: 30px;
  line-height: 28px;
  float: left;
  background: #fff;
  color: #040404;
  border: 1px solid #000;
  text-align: center;
  font-weight: normal;
  font-size: 20px;
}

.uv-right-arrow.color {
  border: 1px solid #1238DC;
  background: #1238DC;
  color: #fff;
}

.tab-pane.active .lseft {
  -webkit-animation: slide-left 1.5s ease-out;
  animation: slide-left 1.5s ease-out;
}

.tab-pane.active .rsight {
  -webkit-animation: slide-right 1.5s ease-out;
  animation: slide-right 1.5s ease-out;
}

.uv-accordinaton li.shadow-1 .lseft {
  -webkit-animation: slide-left 1.5s ease-out;
  animation: slide-left 1.5s ease-out;
}

.uv-accordinaton li.shadow-1 .rsight {
  -webkit-animation: slide-right 1.5s ease-out;
  animation: slide-right 1.5s ease-out;
}

@-webkit-keyframes slide-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.ev-home {
  position: relative;
  background: #101A8E;
  background: -webkit-gradient(left top, right top, color-stop(0%, #1238DC), color-stop(100%, #101A8E));
  background: -webkit-gradient(linear, left top, right top, from(#1238DC), to(#101A8E));
  background: linear-gradient(to right, #1238DC 0%, #101A8E 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$main-color-light', endColorstr='$main-color-light', GradientType=1);
  border-radius: 0px 0px 80px 80px;
}

.ev-home.ev-home-2 {
  border-radius: 0px 0px 0px 0px;
  background: inherit;
}

.ev-home .header-overlay-img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.ev-home .header-overlay-img.header-overlay-2 {
  bottom: 100px;
}

.ev-home .header-overlay-img.header-overlay-2 .img-2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.ev-home .header-content-inner h2 {
  color: #fff;
  font-size: 53px;
  line-height: 70px;
  font-family: Sriracha, datk8;
  font-weight: 100;
  margin-bottom: 25px;
}

.ev-home .header-content-inner p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
}

#polka-dot-background-png-copy {
  display: none !important;
}

.ev-content-title {
  padding-right: 10%;
  margin-bottom: 50px;
}

.ev-content-title span {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  letter-spacing: 3px;
  /* text-transform: uppercase; */
  color: #bf7e45;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

span.title-category {}

.ev-content-title h3 {
  font-size: 40px;
  line-height: 46px;
  color: #0B132B;
  font-weight: bold;
  margin: 20px 0;
  margin-top: 10px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.ev-content-title span,
.ev-content-title h3 {
  font-family: Sriracha, datk8;
  font-weight: 100;
}

.ev-content-title p {
  padding-right: 30%;
  font-size: 18px;
  line-height: 30px;
}

.ev-about-features-1.ev-about-features-1-2 .ev-content-title {
  padding-right: 0;
}

.ev-about-features-1.ev-about-features-1-2 .feature-item {
  text-align: center;
}

.ev-about-features-1.ev-about-features-1-2 .feature-item .item-icon {
  margin: 0 auto;
}

.ev-about-features-1 .ev-content-title {
  padding-right: 10%;
}

.ev-about-features-1 .feature-item {
  margin-bottom: 30px;
}

.ev-about-features-1 .feature-item .item-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
}

.ev-about-features-1 .feature-item .item-icon .fa {
  font-size: 30px;
  line-height: 80px;
  color: #fff;
}

.ev-about-features-1 .feature-item .item-icon img {
  width: 30px;
  height: 30px;
}

.ev-about-features-1 .feature-item h5 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.ev-about-features-1 .feature-item p {
  padding: 0 3%;
}

.ev-about-features-1 .feature-item.itme-color-2 .item-icon {
  background-color: rgba(23, 51, 195, 0.1);
}

.ev-about-features-1 .feature-item.itme-color-2 .item-icon .fa {
  color: #1733C3;
}

.ev-about-features-1 .feature-item.itme-color-3 .item-icon {
  background-color: rgba(255, 199, 85, 0.1);
}

.ev-about-features-1 .feature-item.itme-color-3 .item-icon .fa {
  color: #FFC755;
}

.ev-about-features-1 .feature-item.itme-color-4 .item-icon {
  background-color: rgba(243, 121, 86, 0.1);
}

.ev-about-features-1 .feature-item.itme-color-4 .item-icon .fa {
  color: #F37956;
}

.ev-about-features-1 .feature-item.itme-color-5 .item-icon {
  background-color: rgba(192, 105, 239, 0.1);
}

.ev-about-features-1 .feature-item.itme-color-5 .item-icon .fa {
  color: #C069EF;
}

.ev-about-features-1 .feature-item.purple-colorr .item-icon {
  background: #E0A6FF;
  background: -webkit-gradient(left top, right top, color-stop(0%, #BC61EC), color-stop(100%, #E0A6FF));
  background: -webkit-gradient(linear, left top, right top, from(#BC61EC), to(#E0A6FF));
  background: linear-gradient(to right, #BC61EC 0%, #E0A6FF 100%);
}

.ev-about-features-1 .feature-item.blue-colorr .item-icon {
  background: #5570E5;
  background: -webkit-gradient(left top, right top, color-stop(0%, #5570E5), color-stop(100%, #2430B7));
  background: -webkit-gradient(linear, left top, right top, from(#5570E5), to(#2430B7));
  background: linear-gradient(to right, #5570E5 0%, #2430B7 100%);
}

.ev-about-features-1 .feature-item.gold-colorr .item-icon {
  background: #FFC756;
  background: -webkit-gradient(left top, right top, color-stop(0%, #FFC756), color-stop(100%, #FFDC95));
  background: -webkit-gradient(linear, left top, right top, from(#FFC756), to(#FFDC95));
  background: linear-gradient(to right, #FFC756 0%, #FFDC95 100%);
}

.ev-about-features-1 .feature-item.red-colorr .item-icon {
  background: #FF9F72;
  background: -webkit-gradient(left top, right top, color-stop(0%, #FF9F72), color-stop(100%, #EA6042));
  background: -webkit-gradient(linear, left top, right top, from(#FF9F72), to(#EA6042));
  background: linear-gradient(to right, #FF9F72 0%, #EA6042 100%);
}

.circle-shape {
  position: absolute;
  top: -80px;
  left: 10%;
  display: none;
}

.taingle-shape {
  position: absolute;
  top: 0px;
  left: 0;
}

.why-choose-overlay-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  border-radius: 80px 0 0 80px;
  background: #101A8E;
  background: -webkit-gradient(left top, right top, color-stop(0%, #1238DC), color-stop(100%, #101A8E));
  background: -webkit-gradient(linear, left top, right top, from(#1238DC), to(#101A8E));
  background: linear-gradient(to right, #1238DC 0%, #101A8E 100%);
}

.why-choose-overlay-img .each-color {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.testimonial-overlay-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80%;
  border-radius: 0px 80px 80px 0px;
  background: #101A8E;
  background: -webkit-gradient(left top, right top, color-stop(0%, #1238DC), color-stop(100%, #101A8E));
  background: -webkit-gradient(linear, left top, right top, from(#1238DC), to(#101A8E));
  background: linear-gradient(to right, #1238DC 0%, #101A8E 100%);
}

.testimonial-overlay-img .each-color {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.footer-overlay-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, #6fd3ce 0%, #39a2bb 100%);
  background-image: url(../img/footer.png);
}

.footer-overlay-img .each-color {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.polka-shape {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
}

.polka-shape-3 {
  position: absolute;
  top: 10px;
  right: -70px;
}

.oval-shape {
  position: absolute;
  right: -150px;
  bottom: -60px;
  z-index: -1;
  width: 400px;
}

.pricing-shape {
  position: absolute;
  bottom: 0px;
  left: -150px;
  width: 300px;
}

.ev-featured-section-2 h3 {
  color: #fff;
}

.ev-featured-section-2 .each-content-inner ul li {
  margin-bottom: 20px;
}

.ev-featured-section-2 .each-content-inner ul li:last-child {
  margin-bottom: 0px;
}

.ev-featured-section-2 .each-content-inner ul li:last-child p {
  margin-bottom: 0px;
}

.ev-featured-section-2 .each-content-inner ul li h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.ev-featured-section-2 .each-content-inner ul li p {
  color: #fff;
  opacity: 0.9;
  padding-right: 30%;
}

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

.lo-discover .nav-tabs .nav-item {
  margin-bottom: -1px;
  margin: 0 auto;
  float: none;
  text-align: center;
}

.lo-discover .ev-content-title p {
  padding: 0 20%;
}

.lo-discover .lo-discover-content {
  padding: 0 30px;
  z-index: 99;
}

.lo-discover .lo-discover-content .tab-pane {
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
  -webkit-box-shadow: 0 4px 90px 0 rgba(199, 199, 199, 0.5);
  box-shadow: 0 4px 90px 0 rgba(199, 199, 199, 0.5);
  background-color: #fff;
}

.lo-discover .lo-discover-content .tab-pane img {
  width: 100%;
}

.lo-discover .lo-nav-tabs {
  width: 50%;
  float: none;
  margin: 0 auto;
  text-align: center;
  border: none;
}

.lo-discover .lo-nav-tabs .nav-link {
  padding: 16px 24px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  color: #182D38;
  letter-spacing: 0;
  line-height: 10px;
  border: 0;
  text-transform: uppercase;
}

.lo-discover .lo-nav-tabs .nav-link:hover {
  background: #fb834c;
  color: #fff;
  border: 0;
  -webkit-box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
}

.lo-discover .lo-nav-tabs .nav-link.active {
  background: #fb834c;
  color: #fff;
  border: 0;
  -webkit-box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
}

.ev-process .ev-content-title p {
  padding: 0 20%;
}

.ev-process .ev-process-arrow-one {
  position: absolute;
  right: -5px;
  width: 90px;
  top: 90px;
  /* z-index: -1; */
}

.ev-process .process-item {
  z-index: 999;
}

.ev-process .process-item .ev-img-inner {
  background: white;
  -webkit-box-shadow: 0 26px 54px 0 rgba(175, 175, 175, 0.2);
  box-shadow: 0 26px 54px 0 rgba(175, 175, 175, 0.2);
  padding: 50px;
  width: 80%;
  margin-bottom: 40px;
  border-radius: 10px;
  z-index: 999;
  text-align: center;
  position: relative;
}

.ev-process .process-item .ev-img-inner .process-number {
  position: absolute;
  height: 60px;
  width: 60px;
  background: #70d4ce;
  line-height: 60px;
  top: -10px;
  left: -30px;
  border-radius: 50%;
  font-size: 38px;
  color: #fff;
}

.ev-process .process-item img {
  margin: 0 auto;
  float: none;
  text-align: center;
}

.ev-process .process-item .ev-img-inner>img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.ev-process .process-item h4 {
  margin: 20px 0;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 31px;
  color: #0B132B;
}

.ev-process .process-item p {
  margin-right: 20%;
  font-size: 18px;
  line-height: 30px;
}

.ev-testimonial .ev-content-title h3 {
  color: #fff;
}

.ev-testimonial .polka-test {
  position: absolute;
  bottom: 20px;
  left: 10%;
  width: 300px;
}

.ev-testimonial .testimonial-inner {
  position: relative;
}

.ev-testimonial .testimonial-inner img {
  width: 386px;
  height: auto;
}

.ev-testimonial .testimonial-inner .owl-controls {
  width: 142px;
  position: absolute;
  right: 0;
  bottom: 100px;
}

.ev-testimonial .testimonial-inner .owl-next {
  position: absolute;
  background: #ea6042;
  background: -webkit-gradient(left top, right top, color-stop(0%, #fb834c), color-stop(100%, #ea6042));
  background: -webkit-gradient(linear, left top, right top, from(#fb834c), to(#ea6042));
  background: linear-gradient(to right, #fb834c 0%, #ea6042 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$main-color-2-light', endColorstr='$main-color-2-light', GradientType=1);
  border-radius: 10px;
  border: 0px solid #1238DC;
  border-color: #83d7ac;
  top: 40%;
  height: 70px;
  -webkit-box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  width: 70px;
  right: 0%;
  text-align: center;
}

.ev-testimonial .testimonial-inner .owl-next .fa {
  color: #fff;
  line-height: 70px;
  font-size: 40px;
  margin-left: 0px;
}

.ev-testimonial .testimonial-inner .owl-prev {
  display: none !important;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 0px solid #1238DC;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.44);
  top: 40%;
  left: 0%;
  height: 70px;
  -webkit-box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  box-shadow: 15px 10px 54px rgba(51, 51, 51, 0.1);
  width: 70px;
}

.ev-testimonial .testimonial-inner .owl-prev .fa {
  line-height: 70px;
  color: #2A2A2A;
  font-size: 40px;
  margin-left: 0px;
}

.ev-testimonial .testimonial-item .each-content img {
  margin-top: 40px;
  font-size: 30px;
  margin-bottom: 30px;
  opacity: 0.7;
  width: 60px;
  height: 60px;
}

.ev-testimonial .testimonial-item .each-content p {
  font-size: 23px;
  line-height: 35px;
  font-weight: bold;
  font-style: italic;
  color: white;
  margin-bottom: 80px;
}

.ev-testimonial .testimonial-item .each-content .author-name h6 {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0;
}

.ev-testimonial .testimonial-item .each-content .author-name p {
  font-size: 18px;
  line-height: 30px;
  color: white;
  opacity: 0.6;
}

.lo-pricing-plan .pricing-item {
  -webkit-box-shadow: 0 65px 75px rgba(112, 112, 112, 0.11);
  box-shadow: 0 65px 75px rgba(112, 112, 112, 0.11);
  text-align: center;
  padding: 30px 0px;
  border-top: 10px solid #E0A6FF;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

.lo-pricing-plan .pricing-item.pricing-item-2 {
  border-top: 0px solid transparent;
}

.lo-pricing-plan .pricing-item.pricing-item-2 .pricing-item-bottom p a {
  text-decoration: underline;
  color: #fff;
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg {
  background: #101A8E;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #101A8E), color-stop(100%, #1238DC));
  background: -webkit-gradient(linear, left top, left bottom, from(#101A8E), to(#1238DC));
  background: linear-gradient(to bottom, #101A8E 0%, #1238DC 100%);
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg .event-name {
  color: #fff;
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg h3 {
  color: #fff;
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg .pricing-offers {
  border: 1px solid rgba(216, 216, 216, 0.4);
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg .pricing-offers li {
  color: #d4d4d4;
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg .pricing-offers li:first-child {
  color: #fff;
}

.lo-pricing-plan .pricing-item.pricing-item-2.blue-bg .btn {
  background: #fff;
  color: #101A8E;
}

.lo-pricing-plan .pricing-item.sky-color {
  border-color: #E0A6FF;
}

.lo-pricing-plan .pricing-item.sky-color .pricing-item-top h3 {
  color: #182D38;
}

.lo-pricing-plan .pricing-item.sky-color .pricing-item-bottom .btn {
  background: #E0A6FF;
  background: -webkit-gradient(left top, right top, color-stop(0%, #BC61EC), color-stop(100%, #E0A6FF));
  background: -webkit-gradient(linear, left top, right top, from(#BC61EC), to(#E0A6FF));
  background: linear-gradient(to right, #BC61EC 0%, #E0A6FF 100%);
}

.lo-pricing-plan .pricing-item.yellow-color {
  border-color: #FFC756;
}

.lo-pricing-plan .pricing-item.yellow-color .pricing-item-top h3 {
  color: #182D38;
}

.lo-pricing-plan .pricing-item.yellow-color .pricing-item-bottom .btn {
  background: #FFC756;
  background: -webkit-gradient(left top, right top, color-stop(0%, #FFC756), color-stop(100%, #FFDC95));
  background: -webkit-gradient(linear, left top, right top, from(#FFC756), to(#FFDC95));
  background: linear-gradient(to right, #FFC756 0%, #FFDC95 100%);
}

.lo-pricing-plan .pricing-item.red-color {
  border-color: #EA6042;
}

.lo-pricing-plan .pricing-item.red-color .pricing-item-top h3 {
  color: #182D38;
}

.lo-pricing-plan .pricing-item.red-color .pricing-item-bottom .btn {
  background: #FF9F72;
  background: -webkit-gradient(left top, right top, color-stop(0%, #FF9F72), color-stop(100%, #EA6042));
  background: -webkit-gradient(linear, left top, right top, from(#FF9F72), to(#EA6042));
  background: linear-gradient(to right, #FF9F72 0%, #EA6042 100%);
}

.lo-pricing-plan .pricing-item .pricing-item-top {
  margin-bottom: 30px;
}

.lo-pricing-plan .pricing-item .pricing-item-top .event-name {
  color: #2A2A2A;
  font-size: 25px;
  line-height: 34px;
  text-transform: uppercase;
}

.lo-pricing-plan .pricing-item .pricing-item-top h3 {
  color: #643BDF;
  font-size: 50px;
  line-height: 55px;
  margin: 20px 0;
  margin-bottom: 10px;
}

.lo-pricing-plan .pricing-item .pricing-item-top .duration-month {
  font-size: 18px;
  line-height: 30px;
  color: #BFBFBF;
  font-weight: bold;
  letter-spacing: 2px;
}

.lo-pricing-plan .pricing-item .pricing-offers {
  border: 1px solid rgba(216, 216, 216, 0.4);
  border-right: 0;
  border-left: 0;
  padding: 30px 0;
}

.lo-pricing-plan .pricing-item .pricing-offers li {
  font-size: 18px;
  line-height: 30px;
  color: #AAAAAA;
  margin: 13px 0;
}

.lo-pricing-plan .pricing-item .pricing-offers li:first-child {
  color: #2A2A2A;
  font-size: 24px;
}

.lo-pricing-plan .pricing-item .pricing-item-bottom {
  margin-top: 30px;
}

.lo-pricing-plan .pricing-item .pricing-item-bottom .btn {
  margin-bottom: 20px;
  background-color: #643BDF;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 30px;
  padding: 7px 26px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lo-pricing-plan .pricing-item .pricing-item-bottom p {
  font-size: 18px;
  line-height: 30px;
  color: #AAAAAA;
}

.lo-pricing-plan .pricing-item .pricing-item-bottom p a {
  text-decoration: underline;
  color: #182D38;
  border-bottom: 1px solid;
}

.ev-footer-links {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}

.footer-img.footer-logo {
  padding: 0 0 40px 0;
  position: relative;
}

.ev-footer-links .footer-items {
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.ev-footer-links .footer-items a {
  color: white;
}

.ev-footer-links .footer-items h4 {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}

.ev-footer-links .footer-items ul li a {
  color: #fff;
  opacity: 0.8;
}

.ev-footer-links .footer-items ul li a:hover {
  color: #ea6042;
}

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

.ev-footer-bottom p {
  color: #fff;
  opacity: 0.8;
  margin: 0;
  text-align: left;
}

.ev-footer-bottom .footer-img {
  margin: 0 auto;
  float: none;
  text-align: center;
}

.ev-footer-bottom .footer-img.footer-logo {
  text-align: left;
}

.ev-footer-bottom .footer-img.footer-logo img {
  float: left;
}

.lo-about {
  margin: 80px 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 80px 0;
  padding-top: 100px;
}

.lo-about .container-half-left {
  left: 0;
  background-position: center right;
  width: 50%;
  background-size: cover;
}

.container-half-left.cover-bg {
  background-repeat: no-repeat;
  background-image: url(img/v2-tablet.png);
  margin-top: 0px;
}

.lo-about .container-half-right {
  right: 0;
  background-position: center center;
  width: 50%;
  background-repeat: no-repeat;
}

.container-half {
  position: absolute;
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 60%;
}

.cta .overlay-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  background: #1238DC;
  background: -webkit-gradient(left top, right top, color-stop(0%, #1238DC), color-stop(100%, #101A8E));
  background: -webkit-gradient(linear, left top, right top, from(#1238DC), to(#101A8E));
  background: linear-gradient(to right, #1238DC 0%, #101A8E 100%);
}

.cta .overlay-img .each-color {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.cta .cta-inner {
  padding: 0 5%;
}

.cta .cta-inner p {
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  font-weight: bold;
  padding-left: 30px;
}

.featured-section-3 .each-content-inner ul li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
}

.featured-section-3 .each-content-inner ul li span {
  position: absolute;
  left: 0;
  font-size: 40px;
  color: #000;
  opacity: 0.2;
  font-weight: bold;
}

.featured-section-4 .each-content-inner {
  margin-bottom: 100px;
}

.featured-section-4 .each-content-inner ul li {
  position: relative;
  margin-bottom: 30px;
  width: 49%;
  display: inline-block;
  padding-right: 10px;
  vertical-align: top;
}

input[name="demo"]+h5 {
  font-family: datk8;
  font-weight: 100;
}

input[name="demo"]+h5 svg {
  width: 25px;
  height: 25px;
  vertical-align: text-bottom;
  margin-right: 10px;
}

.featured-section-4 .each-content-inner ul li label {
  width: 100%;

}

.featured-section-4 .each-content-inner ul li label input {
  display: none;
}

.featured-section-4 .each-content-inner ul li .fa {
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  color: #bf7e45;
}

/* .featured-section-4 .each-content-inner ul li h5:hover .fa {
  color: #fff;
  background-color: #bf7e45;
} */

.featured-section-4 .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 10px;
}

.featured-section-reason .each-content-inner ul li {
  position: relative;
  margin-bottom: 30px;
  width: 49%;
  display: inline-block;
}

.featured-section-reason .each-content-inner ul li .fa {
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  color: #37c2cc;
}

.featured-section-reason .each-content-inner ul li .fa.fa-2 {
  color: #ffd032;
}

.featured-section-reason .solution-items {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 60%;
}

.featured-section-reason .ev-content-title .title-category {
  color: #bf7e45;
}

.featured-section-reason .feature-item {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 25px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 2px 22px 43px rgba(171, 171, 180, 0.18);
}

.featured-section-reason.no-shadow .feature-item {
  box-shadow: none;
  background: transparent;
}

.featured-section-reason .feature-item:hover {
  background: linear-gradient(to top, #bf7e45 0%, #f1ab57 100%);
}

.featured-section-reason .feature-item.itme-color:hover .item-icon {
  background-color: #ebb477;
  fill: #ebb477;
}

.featured-section-reason .feature-item:hover h5 {
  color: #fff;
}

.featured-section-reason .feature-item:hover p {
  color: #fff;
}

.featured-section-reason .feature-item.mt {
  margin-top: 20px;
}

.featured-section-reason .feature-item .item-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto;
}

.featured-section-reason .feature-item .item-icon svg {
  margin: auto;
  height: 100%;
}

.featured-section-reason .feature-item .item-icon i {
  font-size: 40px;
  line-height: 80px;
  color: #fff;
}

.featured-section-reason .feature-item .item-icon img {
  width: 30px;
  height: 30px;
}

.featured-section-reason .feature-item h5 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: datk8;
  font-weight: 100;
}

.featured-section-reason .feature-item p {

  margin-bottom: 0;
}

/* hover background-color: #70d4ce */
.featured-section-reason .feature-item.itme-color .item-icon {
  background-color: #bf7e45;
}

.featured-section-reason .feature-item.itme-color .item-icon .fa {
  color: #fff;
}

.featured-section-reason .feature-item.purple-colorr .item-icon {
  background: #e0a6ff;
  background: -moz-linear-gradient(left, #bc61ec 0%, #e0a6ff 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #bc61ec), color-stop(100%, #e0a6ff));
  background: -webkit-linear-gradient(left, #bc61ec 0%, #e0a6ff 100%);
  background: -o-linear-gradient(left, #bc61ec 0%, #e0a6ff 100%);
  background: -ms-linear-gradient(left, #bc61ec 0%, #e0a6ff 100%);
  background: linear-gradient(to right, #bc61ec 0%, #e0a6ff 100%);
}

.featured-section-reason .feature-item.blue-colorr .item-icon {
  background: #5570e5;
  background: -moz-linear-gradient(left, #5570e5 0%, #2430b7 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #5570e5), color-stop(100%, #2430b7));
  background: -webkit-linear-gradient(left, #5570e5 0%, #2430b7 100%);
  background: -o-linear-gradient(left, #5570e5 0%, #2430b7 100%);
  background: -ms-linear-gradient(left, #5570e5 0%, #2430b7 100%);
  background: linear-gradient(to right, #5570e5 0%, #2430b7 100%);
}

.featured-section-reason .feature-item.gold-colorr .item-icon {
  background: #ffc756;
  background: -moz-linear-gradient(left, #ffc756 0%, #ffdc95 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #ffc756), color-stop(100%, #ffdc95));
  background: -webkit-linear-gradient(left, #ffc756 0%, #ffdc95 100%);
  background: -o-linear-gradient(left, #ffc756 0%, #ffdc95 100%);
  background: -ms-linear-gradient(left, #ffc756 0%, #ffdc95 100%);
  background: linear-gradient(to right, #ffc756 0%, #ffdc95 100%);
}

.featured-section-reason .feature-item.red-colorr .item-icon {
  background: #ff9f72;
  background: -moz-linear-gradient(left, #ff9f72 0%, #ea6042 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #ff9f72), color-stop(100%, #ea6042));
  background: -webkit-linear-gradient(left, #ff9f72 0%, #ea6042 100%);
  background: -o-linear-gradient(left, #ff9f72 0%, #ea6042 100%);
  background: -ms-linear-gradient(left, #ff9f72 0%, #ea6042 100%);
  background: linear-gradient(to right, #ff9f72 0%, #ea6042 100%);
}

.featured-section-reason .each-content-inner ul li {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  display: inline-block;
}

.featured-section-reason .each-content-inner ul li .fa {
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  color: #182d38;
  background: inherit;
}

.featured-section-reason .each-content-inner ul li .fa.fa-2 {
  background: inherit !important;
}

.featured-section-reason .btn {
  box-shadow: none;
  margin-bottom: 10px;
}


.ev-blog-page {
  padding-top: 80px;
  padding-bottom: 0px;
  text-align: center;
  color: #fff;
}

.ev-blog-page .blog-header-inner h2 {
  margin-bottom: 20px;
}

.ev-blog-page .blog-header-inner p {
  padding: 0 30%;
  color: #fff;
}

.ev-blog-page .header-overlay-3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #1238DC;
}

.ev-blog-page .header-overlay-3 .img-2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.blog-content .blog-content-inner .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.blog-item img {
  margin-bottom: 20px;
}

.blog-item .blog-item-content {
  padding-right: 10%;
}

.blog-item span {
  color: #182D38;
  font-size: 14px;
  line-height: 22px;
  opacity: 0.6;
}

.blog-item h2 {
  font-size: 24px;
  line-height: 32px;
  color: #182D38;
  font-weight: normal;
  margin: 20px 0;
}

.blog-item h2:hover {
  color: #101A8E;
}

.blog-item .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lo-pricing-plan .ev-content-title p {
  padding-right: 0;
  padding: 0 15%;
}

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

.blog-sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog-sidebar .sidebar-item.popular-posts ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 90px;
}

.blog-sidebar .sidebar-item.popular-posts ul li img {
  width: 80px;
  position: absolute;
  left: 0;
  top: 6px;
}

.blog-sidebar .sidebar-item.popular-posts ul li span {
  float: left;
  opacity: 0.7;
}

.blog-sidebar .sidebar-item.popular-tags ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #bdbdbd;
}

.blog-sidebar .sidebar-item.popular-tags ul li a {
  padding: 4px 10px;
}

.blog-sidebar .sidebar-item h4 {
  font-size: 24px;
  line-height: 40px;
  color: #182D38;
  font-weight: normal;
  margin: 20px 0;
  border-bottom: 1px solid #bdbdbd;
}

.blog-sidebar .sidebar-item ul li {
  margin: 3px 0;
  overflow: hidden;
  display: block;
}

.blog-sidebar .sidebar-item ul li span {
  float: right;
}

.blog-sidebar .sidebar-item ul li h2 {
  font-size: 16px;
  line-height: 22px;
  opacity: 0.7;
  font-weight: normal;
  margin-bottom: 3px;
}

/*
  |===================
  | BLOG SINGLE
  |===================
  */
.blog-details-content .blog-inner {
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

.blog-content blockquote {
  margin: 20px 0;
  border-left: 0px solid transparent;
  font-size: 22px;
  line-height: 34px;
  padding: 0 60px;
  font-weight: 400;
  font-style: italic;
  color: #fb834c;
}

.blog-tags {
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  padding: 20px 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.blog-tags .tags a {
  font-weight: 500;
  color: #000;
}

.blog-tags .tags a:hover {
  color: #fb834c;
}

.blog-tags .social-share {
  text-align: right;
}

.blog-tags .social-share ul li {
  display: inline;
  margin-left: 20px;
}

.ch-comment-form {
  padding-top: 30px;
  padding-bottom: 30px;
}

.comment {
  margin: 20px 0;
  overflow: hidden;
}

.comment h5 {
  margin-top: 0px;
}

.comment h5 span {
  font-weight: 400;
  font-size: 16px;
  margin-left: 20px;
}

.comment a {
  font-weight: bold;
  color: #fb834c;
}

.loader {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  height: 500px;
  width: 100%;
  bottom: 0;
  z-index: 999;
  background-color: #000;
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.ch-comment-form h4 {
  margin-bottom: 30px;
}

.body-2 .btn.btn-stroke:hover {
  color: #2A2A2A;
}

.mh-header .navbar-nav li.active a.nav-link.btn {
  color: #fff;
}

.sp1 img {
  bottom: -80px;
  left: 10%;
  position: absolute;
  width: 150px;
}

.sp3 img {
  top: -120px;
  right: 10%;
  position: absolute;
  width: 220px;
}

.sp2 img {
  top: -80px;
  left: 10%;
  position: absolute;
  width: 220px;
}

.spt-2 img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10%;
}



.lo-testimonial {
  margin: 60px 0;
}

.lo-testimonial .lo-testimonial-item {
  text-align: center;
  padding: 0 100px;
}

.lo-testimonial .lo-testimonial-item img {
  margin: 0 auto;
  float: none;
  width: 110px;
  margin-bottom: 30px;
}

.lo-testimonial .lo-testimonial-item p {
  opacity: 0.5;
  font-size: 25px;
  color: #182d38;
  letter-spacing: 0;
  font-style: italic;
  text-align: center;
  line-height: 35px;
}

.lo-testimonial .lo-testimonial-item .tes-auth {
  text-align: center;
}

.lo-testimonial .lo-testimonial-item .tes-auth h4 {
  font-size: 25px;
  color: #182d38;
  letter-spacing: 0;
}

.lo-testimonial .lo-testimonial-item .tes-auth span {
  opacity: 0.6;
  font-size: 18px;
  color: #2a2a2a;
  letter-spacing: 0;
}

/**/
.sg-ts-item {
  margin: 20px 0;
}

.sg-ts-item .each-content {
  text-align: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08);
  padding: 30px 15px;
  border-radius: 10px;
  background-color: #fff;
}

.sg-ts-item .each-content .each-img {
  height: 80px;
  width: 80px;
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}

.sg-ts-item .each-content .each-img .ts-avatar {
  height: 80px;
  width: 80px;
  border-radius: 100%;
}

.sg-ts-item .each-content .each-img .ti-icons {
  height: 32px;
  width: 32px;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.sg-ts-item .each-content p {
  margin-bottom: 20px;
}

.sg-ts-item .each-content .ts-hr {
  width: 50px;
  margin: 0 auto;
  float: none;
  margin-bottom: 20px;
  margin-bottom: 20px;
  border-width: 2px;
}

.sg-ts-item .each-content .ts-hr.purple-c {
  border-color: #70d4ce;
}

.sg-ts-item .each-content .author-name h6 {
  color: #182d38;
}

/**/

.lo-prices .nav-tabs .nav-item {
  margin-bottom: -1px;
  margin: 0 20px;
  float: none;
  text-align: center;
}

.lo-prices .lo-discover-content {
  padding: 0 30px;
}

.lo-prices .lo-discover-content .tab-pane {
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 65px 94px 0 rgba(199, 199, 199, 0.50);
}

.lo-prices .lo-nav-tabs {
  display: flex;
  justify-content: center;
  float: none;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
  border: none;
}

.lo-prices .lo-nav-tabs .nav-link {
  padding: 16px 24px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  color: #182d38;
  letter-spacing: 0;
  line-height: 10px;
  text-transform: uppercase;
  border-color: transparent;
}

.lo-prices .lo-nav-tabs .nav-link:hover {
  background: #00a0b3;
  color: #fff;
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
}

.lo-prices .lo-nav-tabs .nav-link.active {
  background: #00a0b3;
  color: #fff;
  box-shadow: 0 17px 30px 0 rgba(0, 0, 0, 0.14);
}

/**/

.plan {
  padding: 20px 15px;
  transition: transform 0.2s linear;
}

.plan .plan:hover {
  transform: scale(1.05);
}

.plan .plan-inner {
  box-shadow: 0 0 15px lightgrey;
  /*text-align: center;*/
  padding: 45px 25px;
  min-height: 700px;
  position: relative;
  border-radius: 10px;
  background: white;
}

.plan.focus .plan-inner {
  color: white;
  overflow: hidden;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5fd6ce+0,00a0b4+100 */

  /* Old browsers */

  /* FF3.6-15 */

  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #bf7e45 0%, #f1ab57 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  /* IE6-9 */
}

.plan .plan-name {
  background-color: #BF7E45;
  width: 120px;
  /*margin: auto;*/
  text-align: center;
  color: white;
  border-radius: 20px;
  height: 33px;
  line-height: 33px;
}

.plan.focus .plan-name {
  background-color: white;
  color: #6e4302;
}

.plan .price {
  font-size: 1.5em;
  margin: 4rem 0;
  font-family: Montserrat, 'Ping Fang TC', 'Noto Sans TC', 'å¾®è»Ÿæ­£é»‘é«”', sans-serif;
  text-align: left;
}

.plan.custom .price {
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.plan .price>span {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3f3f3f;
}

.plan.recommended .price>span {
  color: white;
}

.plan .price>span {
  letter-spacing: 5px;
}

.plan .price>.currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: -9px;
  display: inline-block;
}

.plan .plan-subtitle {
  font-size: 0.9rem;
}

.plan.focus .plan-subtitle {
  color: white;
}

.plan .plan-feature {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 2em;
  margin-bottom: 2em;
}

.plan .plan-feature li {
  color: #000;
  line-height: 2em;
  font-weight: 300;
  font-size: 0.8rem;
  padding: 2px 0;
}

.plan.focus .plan-feature {
  border-color: white;
}

.plan.focus .plan-feature li {
  color: white;
  font-weight: 400;
}

.plan .action-link {
  position: absolute;
  bottom: 80px;
  text-align: center;
  width: calc(100% - 50px);
}

.plan .action-link>p {
  height: 2em;
  color: #c6c6c6;
  height: 2em;
  padding: 0;
  color: #c6c6c6;
  margin-top: 1rem;
  margin-bottom: 0;
}

.plan .action-link a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a0b4+0,5fd6ce+100 */

  /* Old browsers */

  /* FF3.6-15 */

  /* Chrome10-25,Safari5.1-6 */

  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  /* IE6-9 */
  color: white;
  height: 50px;
  line-height: 50px;
  padding: 0 50px;
  border-radius: 25px;
  font-size: 1rem;
  width: 100%;
  background: #bf7e45;
  letter-spacing: 4px;
}

.plan.focus .action-link a {
  background: none;
  border: 1px solid white;
}

.plan .plan-feature li:before {
  content: '\f00c';
  /*color: lightgrey;*/
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 1rem;
  margin-right: 1em;
}

.plan-inner .special {
  position: absolute;
  right: -45px;
  top: 35px;
  transform: rotate(45deg);
  background: white;
  color: #6E4302;
  width: 180px;
  font-size: 1.4em;
  font-weight: 900;
  height: 30px;
  line-height: 30px;
  letter-spacing: 3px;
  font-family: datk8;
  font-weight: 100;
}

.plan .price.original {
  font-size: .5em;
  margin-top: 2rem;
  margin-bottom: 0;
  position: relative;
}

.plan .price.original>span.currency {
  font-size: 2em;
}

.plan .price.original>span:not(.currency) {
  font-size: 3em;
}

.plan .price+.price {
  margin-top: 10px;
}

.plan .price.original:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 130px;
  background: black;
  left: -3px;
  bottom: 17px;
  transform: rotate(-10deg);
}

.plan.recommended .price.original:after {
  background: white;
}

.plan .discount {
  color: #817070;
  margin-top: -60px;
}

.plan.recommended .discount {
  color: white;
}

.plan .discount+.price {
  margin-bottom: 10px !important;
}

/**/
.service-shape {
  height: 100vh;
  width: 70vw;
  background: #f3f7f7;
  position: absolute;
  border-radius: 50%;
  right: -30vh;
  top: 50vh;
}

/**/
.mascot {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1111;
}

/**/
#myScrollspy {
  position: fixed;
  bottom: 0;
  right: -20%;
  z-index: 1000;
  margin-bottom: 20px;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53);
  transition-delay: 0s;
}

#myScrollspy.active {
  right: 0%;
}

#myScrollspy .navbar-nav .nav-item .nav-link {
  color: #817070;
  position: relative;
  text-align: right;
}

#myScrollspy .navbar-nav .nav-item .nav-link.active {
  color: #2C0202;
  position: relative;
}

#myScrollspy .navbar-nav {
  width: 140px;
  padding-right: 70px;
}

#myScrollspy .navbar-nav .nav-item .nav-link.active:after {
  width: 50px;
}

#myScrollspy .navbar-nav .nav-item .nav-link:after {
  content: '';
  position: absolute;
  right: -100%;
  width: 15px;
  border: 1px solid;
  border-top: none;
  bottom: 50%;
  transform: translateY(50%);
  transition: .2s;
}

footer#ev-footer {
  z-index: 1001;
}

.each-content-inner h5 {
  font-family: datk8;
  font-weight: 100;
}

@media screen and (min-width:768px) {
  #navbarSupportedContent .nav-item {
    display: none;
  }
}

@media screen and (max-width:768px) {
  #navbarSupportedContent .nav-item {
    display: inherit;
  }
}

/*# sourceMappingURL=styles.css.map */