  /*=======================================================================
1. Typography 
=========================================================================*/
  @import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700,900);

  html {
      height: 100%;
      font-size: 62.5%;
  }

  @media only screen and (max-width: 1199px) {
      html {
          font-size: 60%;
      }
  }

  @media only screen and (max-width: 991px) {
      html {
          font-size: 55%;
      }
  }

  @media only screen and (max-width: 767px) {
      html {
          font-size: 50%;
      }
  }

  @media only screen and (max-width: 479px) {
      html {
          font-size: 45%;
      }
  }

  @media only screen and (max-width: 320px) {
      html {
          font-size: 40%;
      }
  }

  body {
      font-size: 16px;
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      height: 100%;
      line-height: 30px;
      vertical-align: baseline;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      color: #646464;
      background-color: #ffffff;
  }

  p {
      margin: 0 0 20px 0;
      color: #646464;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-weight: 400;
      font-family: 'Roboto', sans-serif;
      margin: 0 0 20px 0;
      color: #111111;
  }

  h1,
  h2 {
      line-height: 40px;
  }

  h3,
  h4,
  h5 {
      line-height: 30px;
  }

  h1 {
      font-size: 46px;
  }

  @media only screen and (max-width: 1199px) {
      h1 {
          font-size: 44px;
      }
  }

  @media only screen and (max-width: 991px) {
      h1 {
          font-size: 42px;
      }
  }

  @media only screen and (max-width: 767px) {
      h1 {
          font-size: 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      h1 {
          font-size: 36px;
      }
  }

  @media only screen and (max-width: 479px) {
      h1 {
          font-size: 30px;
      }
  }

  h2 {
      font-size: 36px;
  }

  @media only screen and (max-width: 1199px) {
      h2 {
          font-size: 34px;
      }
  }

  @media only screen and (max-width: 991px) {
      h2 {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 767px) {
      h2 {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 575px) {
      h2 {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 479px) {
      h2 {
          font-size: 26px;
      }
  }

  h3 {
      font-size: 22px;
  }

  @media only screen and (max-width: 767px) {
      h3 {
          font-size: 20px;
      }
  }

  h4 {
      font-size: 20px;
  }

  h5 {
      font-size: 18px;
  }

  h6 {
      font-size: 16px;
  }

  /*=======================================================================
2. Bootstrap Overwrite
=========================================================================*/
  /*------------------- 2.1 Form -------------------*/
  .form-group {
      position: relative;
  }

  .form-group label {
      font-size: 18px;
      font-weight: 500;
      color: #444444;
      margin-bottom: 12px;
  }

  .form-group .form-control {
      font-size: 16px;
      color: #646464;
      padding: 10px 20px;
      border: none;
  }

  .form-group .form-control:focus {
      outline: none;
      box-shadow: none;
  }

  .form-group input {
      height: 50px;
  }

  .form-group input.form-control::-webkit-input-placeholder,
  .form-group textarea.form-control::-webkit-input-placeholder {
      color: #bebebe;
  }

  .form-group.datetime-picker i {
      position: absolute;
      right: 30px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
  }

  /*------------------- 2.2 Grid -------------------*/
  @media only screen and (min-width: 1200px) {
      .container {
          max-width: 1200px;
      }
  }

  .row.no-gutters {
      margin-right: 0;
      margin-left: 0;
  }

  .row.no-gutters > [class^="col-"],
  .row.no-gutters > [class*=" col-"] {
      padding-right: 0;
      padding-left: 0;
  }

  .row.gutters-1 {
      padding-left: 14.5px;
      padding-right: 14.5px;
  }

  .row.gutters-1 > [class^="col-"] {
      padding-left: 0.5px;
      padding-right: 0.5px;
  }

  .row.gutters-2 {
      padding-left: 14px;
      padding-right: 14px;
  }

  .row.gutters-2 > [class^="col-"] {
      padding-left: 1px;
      padding-right: 1px;
  }

  .row.gutters-3 {
      padding-left: 13.5px;
      padding-right: 13.5px;
  }

  .row.gutters-3 > [class^="col-"] {
      padding-left: 1.5px;
      padding-right: 1.5px;
  }

  .row.gutters-4 {
      padding-left: 13px;
      padding-right: 13px;
  }

  .row.gutters-4 > [class^="col-"] {
      padding-left: 2px;
      padding-right: 2px;
  }

  .row.gutters-5 {
      padding-left: 12.5px;
      padding-right: 12.5px;
  }

  .row.gutters-5 > [class^="col-"] {
      padding-left: 2.5px;
      padding-right: 2.5px;
  }

  .row.gutters-6 {
      padding-left: 12px;
      padding-right: 12px;
  }

  .row.gutters-6 > [class^="col-"] {
      padding-left: 3px;
      padding-right: 3px;
  }

  .row.gutters-7 {
      padding-left: 11.5px;
      padding-right: 11.5px;
  }

  .row.gutters-7 > [class^="col-"] {
      padding-left: 3.5px;
      padding-right: 3.5px;
  }

  .row.gutters-8 {
      padding-left: 11px;
      padding-right: 11px;
  }

  .row.gutters-8 > [class^="col-"] {
      padding-left: 4px;
      padding-right: 4px;
  }

  .row.gutters-9 {
      padding-left: 10.5px;
      padding-right: 10.5px;
  }

  .row.gutters-9 > [class^="col-"] {
      padding-left: 4.5px;
      padding-right: 4.5px;
  }

  .row.gutters-10 {
      padding-left: 10px;
      padding-right: 10px;
  }

  .row.gutters-10 > [class^="col-"] {
      padding-left: 5px;
      padding-right: 5px;
  }

  .row.gutters-11 {
      padding-left: 9.5px;
      padding-right: 9.5px;
  }

  .row.gutters-11 > [class^="col-"] {
      padding-left: 5.5px;
      padding-right: 5.5px;
  }

  .row.gutters-12 {
      padding-left: 9px;
      padding-right: 9px;
  }

  .row.gutters-12 > [class^="col-"] {
      padding-left: 6px;
      padding-right: 6px;
  }

  .row.gutters-13 {
      padding-left: 8.5px;
      padding-right: 8.5px;
  }

  .row.gutters-13 > [class^="col-"] {
      padding-left: 6.5px;
      padding-right: 6.5px;
  }

  .row.gutters-14 {
      padding-left: 8px;
      padding-right: 8px;
  }

  .row.gutters-14 > [class^="col-"] {
      padding-left: 7px;
      padding-right: 7px;
  }

  .row.gutters-15 {
      padding-left: 7.5px;
      padding-right: 7.5px;
  }

  .row.gutters-15 > [class^="col-"] {
      padding-left: 7.5px;
      padding-right: 7.5px;
  }

  .row.gutters-20 {
      padding-left: 5px;
      padding-right: 5px;
  }

  .row.gutters-20 > [class^="col-"] {
      padding-left: 10px;
      padding-right: 10px;
  }

  .row.gutters-40 {
      margin-left: -20px;
      margin-right: -20px;
  }

  .row.gutters-40 > [class^="col-"] {
      padding-left: 20px;
      padding-right: 20px;
  }

  @media only screen and (max-width: 575px) {
      .row.gutters-40 {
          margin-left: 0;
          margin-right: 0;
      }

      .row.gutters-40 > [class^="col-"] {
          padding-left: 15px;
          padding-right: 15px;
      }
  }

  .row.gutters-50 {
      margin-left: -25px;
      margin-right: -25px;
  }

  .row.gutters-50 > [class^="col-"] {
      padding-left: 25px;
      padding-right: 25px;
  }

  @media only screen and (max-width: 575px) {
      .row.gutters-50 {
          margin-left: 0;
          margin-right: 0;
      }

      .row.gutters-50 > [class^="col-"] {
          padding-left: 15px;
          padding-right: 15px;
      }
  }

  /*------------------- 2.3 Media Object -------------------*/
  .media-body {
      margin-left: 3rem;
  }

  .media-body.mg-right {
      margin-left: 0;
      margin-right: 3rem;
  }

  .media-body.space-xl {
      margin-left: 50px;
  }

  .media-body.space-lg {
      margin-left: 40px;
  }

  .media-body.space-md {
      margin-left: 20px;
  }

  .media-body.space-sm {
      margin-left: 15px;
  }

  .media-body.space-xs {
      margin-left: 10px;
  }

  .media-body.media-body-box {
      padding: 20px 20px 20px 3rem;
      margin-left: 0;
  }

  .media-body.media-body-box p {
      margin-bottom: 0;
  }

  @media only screen and (max-width: 1199px) {
      .media-none--lg {
          display: block;
      }

      .media-none--lg > div {
          width: 100%;
      }

      .media-none--lg img {
          width: 100%;
      }

      .media-none--lg img.media-img-auto {
          width: auto;
      }

      .media-none--lg .media-body,
      .media-none--lg .media-body.space-xl,
      .media-none--lg .media-body.space-lg,
      .media-none--lg .media-body.space-md,
      .media-none--lg .media-body.space-sm,
      .media-none--lg .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none--lg .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media only screen and (max-width: 991px) {
      .media-none--md {
          display: block;
      }

      .media-none--md > div {
          width: 100%;
      }

      .media-none--md img {
          width: 100%;
      }

      .media-none--md img.media-img-auto {
          width: auto;
      }

      .media-none--md .media-body,
      .media-none--md .media-body.space-xl,
      .media-none--md .media-body.space-lg,
      .media-none--md .media-body.space-md,
      .media-none--md .media-body.space-sm,
      .media-none--md .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none--md .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media only screen and (max-width: 767px) {
      .media-none--sm {
          display: block;
      }

      .media-none--sm > div {
          width: 100%;
      }

      .media-none--sm img {
          width: 100%;
      }

      .media-none--sm img.media-img-auto {
          width: auto;
      }

      .media-none--sm .media-body,
      .media-none--sm .media-body.space-xl,
      .media-none--sm .media-body.space-lg,
      .media-none--sm .media-body.space-md,
      .media-none--sm .media-body.space-sm,
      .media-none--sm .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none--sm .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media only screen and (max-width: 575px) {
      .media-none--xs {
          display: block;
      }

      .media-none--xs > div {
          width: 100%;
      }

      .media-none--xs img {
          width: 100%;
      }

      .media-none--xs img.media-img-auto {
          width: auto;
      }

      .media-none--xs .media-body,
      .media-none--xs .media-body.space-xl,
      .media-none--xs .media-body.space-lg,
      .media-none--xs .media-body.space-md,
      .media-none--xs .media-body.space-sm,
      .media-none--xs .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none--xs .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media only screen and (max-width: 479px) {
      .media-none-mb {
          display: block;
      }

      .media-none-mb > div {
          width: 100%;
      }

      .media-none-mb img {
          width: 100%;
      }

      .media-none-mb img.media-img-auto {
          width: auto;
      }

      .media-none-mb .media-body,
      .media-none-mb .media-body.space-xl,
      .media-none-mb .media-body.space-lg,
      .media-none-mb .media-body.space-md,
      .media-none-mb .media-body.space-sm,
      .media-none-mb .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none-mb .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media (min-width: 992px) and (max-width: 1199px) {
      .media-none-lg {
          display: block;
      }

      .media-none-lg > div {
          width: 100%;
      }

      .media-none-lg img {
          width: 100%;
      }

      .media-none-lg img.media-img-auto {
          width: auto;
      }

      .media-none-lg .media-body,
      .media-none-lg .media-body.space-xl,
      .media-none-lg .media-body.space-lg,
      .media-none-lg .media-body.space-md,
      .media-none-lg .media-body.space-sm,
      .media-none-lg .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none-lg .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .media-none-md {
          display: block;
      }

      .media-none-md > div {
          width: 100%;
      }

      .media-none-md img {
          width: 100%;
      }

      .media-none-md img.media-img-auto {
          width: auto;
      }

      .media-none-md .media-body,
      .media-none-md .media-body.space-xl,
      .media-none-md .media-body.space-lg,
      .media-none-md .media-body.space-md,
      .media-none-md .media-body.space-sm,
      .media-none-md .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none-md .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media (min-width: 576px) and (max-width: 767px) {
      .media-none-sm {
          display: block;
      }

      .media-none-sm > div {
          width: 100%;
      }

      .media-none-sm img {
          width: 100%;
      }

      .media-none-sm img.media-img-auto {
          width: auto;
      }

      .media-none-sm .media-body,
      .media-none-sm .media-body.space-xl,
      .media-none-sm .media-body.space-lg,
      .media-none-sm .media-body.space-md,
      .media-none-sm .media-body.space-sm,
      .media-none-sm .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none-sm .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  @media (min-width: 480px) and (max-width: 575px) {
      .media-none-xs {
          display: block;
      }

      .media-none-xs > div {
          width: 100%;
      }

      .media-none-xs img {
          width: 100%;
      }

      .media-none-xs img.media-img-auto {
          width: auto;
      }

      .media-none-xs .media-body,
      .media-none-xs .media-body.space-xl,
      .media-none-xs .media-body.space-lg,
      .media-none-xs .media-body.space-md,
      .media-none-xs .media-body.space-sm,
      .media-none-xs .media-body.space-xs {
          margin-top: 20px;
          margin-left: 0;
      }

      .media-none-xs .media-body.media-body-box {
          margin-top: 0;
          margin-left: 0;
          padding: 3rem;
      }
  }

  /*=======================================================================
3. Vendor Custom Style
=========================================================================*/
  /*------------------- 3.1 Nivo Slider -------------------*/
  .slider-area {
      position: relative;
  }

  .slider-area .nivo-controlNav {
      display: none;
  }

  .slider-area .nivo-directionNav a {
      z-index: 6;
      top: 50%;
      transform: translateY(-50%);
  }

  @media only screen and (max-width: 767px) {
      .slider-area .nivo-directionNav a {
          visibility: hidden;
          opacity: 0;
      }
  }

  .slider-area .nivo-directionNav a.nivo-prevNav {
      left: 10%;
      width: 55px;
      height: 55px;
      line-height: 60px;
      border-radius: 50%;
      background-color: #ffffff;
      color: #e83a15;
      font-size: 0;
      transition: all 0.3s ease-out;
      -webkit-box-shadow: 0px 11px 24px 0px rgba(198, 198, 198, 0.75);
      box-shadow: 0px 11px 24px 0px rgba(198, 198, 198, 0.75);
  }

  @media only screen and (max-width: 1440px) {
      .slider-area .nivo-directionNav a.nivo-prevNav {
          left: 3%;
      }
  }

  .slider-area .nivo-directionNav a.nivo-prevNav:before {
      content: "\f053";
      font-family: "Font Awesome 5 Free";
      font-weight: 600;
      cursor: pointer;
      font-size: 16px;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      z-index: 9;
      left: 0;
      right: 0;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .slider-area .nivo-directionNav a.nivo-prevNav {
          width: 50px;
          height: 50px;
          line-height: 50px;
      }

      .slider-area .nivo-directionNav a.nivo-prevNav:before {
          font-size: 15px;
      }
  }

  @media only screen and (max-width: 767px) {
      .slider-area .nivo-directionNav a.nivo-prevNav {
          width: 45px;
          height: 45px;
          line-height: 45px;
      }
  }

  .slider-area .nivo-directionNav a.nivo-prevNav:hover {
      background-color: #e83a15;
  }

  .slider-area .nivo-directionNav a.nivo-prevNav:hover:before {
      color: #ffffff !important;
  }

  .slider-area .nivo-directionNav a.nivo-nextNav {
      right: 10%;
      width: 55px;
      height: 55px;
      line-height: 60px;
      border-radius: 50%;
      background-color: #ffffff;
      color: #e83a15;
      font-size: 0;
      -webkit-box-shadow: 0px 11px 24px 0px rgba(198, 198, 198, 0.75);
      box-shadow: 0px 11px 24px 0px rgba(198, 198, 198, 0.75);
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 1440px) {
      .slider-area .nivo-directionNav a.nivo-nextNav {
          right: 3%;
      }
  }

  .slider-area .nivo-directionNav a.nivo-nextNav:before {
      content: "\f054";
      font-family: "Font Awesome 5 Free";
      font-weight: 600;
      cursor: pointer;
      font-size: 16px;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      z-index: 9;
      left: 0;
      right: 0;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .slider-area .nivo-directionNav a.nivo-nextNav {
          width: 50px;
          height: 50px;
          line-height: 50px;
      }

      .slider-area .nivo-directionNav a.nivo-nextNav:before {
          font-size: 15px;
      }
  }

  @media only screen and (max-width: 767px) {
      .slider-area .nivo-directionNav a.nivo-nextNav {
          width: 45px;
          height: 45px;
          line-height: 45px;
      }
  }

  .slider-area .nivo-directionNav a.nivo-nextNav:hover {
      background-color: #e83a15;
  }

  .slider-area .nivo-directionNav a.nivo-nextNav:hover:before {
      color: #ffffff !important;
  }

  .slider-area:hover a {
      opacity: 1;
      visibility: visible;
  }

  .slider-area .nivo-caption {
      opacity: 1;
  }

  .slider-area .nivo-caption p {
      padding: 0;
  }

  .slider-area .slider-content h1.slider-big-text {
      font-size: 52px;
      font-weight: 900;
      color: #111111;
      margin-bottom: 15px;
      line-height: 48px;
  }

  .slider-area .slider-content h1.slider-big-text span {
      display: block;
  }

  @media only screen and (max-width: 1199px) {
      .slider-area .slider-content h1.slider-big-text {
          font-size: 40px;
          margin-bottom: 15px;
      }
  }

  @media only screen and (max-width: 991px) {
      .slider-area .slider-content h1.slider-big-text {
          font-size: 30px;
          margin-bottom: 5px;
      }
  }

  @media only screen and (max-width: 767px) {
      .slider-area .slider-content h1.slider-big-text {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 575px) {
      .slider-area .slider-content h1.slider-big-text {
          font-size: 26px;
          text-align: center;
      }
  }

  @media only screen and (max-width: 479px) {
      .slider-area .slider-content h1.slider-big-text {
          font-size: 22px;
      }
  }

  .slider-area .slider-content div.slider-big-text.text-light {
      color: #ffffff;
  }

  .slider-area .slider-content div.slider-sub-text {
      font-size: 24px;
      color: #e83a15;
      margin-bottom: 15px;
  }

  @media only screen and (max-width: 1199px) {
      .slider-area .slider-content div.slider-sub-text {
          margin-bottom: 15px;
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 991px) {
      .slider-area .slider-content div.slider-sub-text {
          font-size: 20px;
          margin-bottom: 5px;
      }
  }

  @media only screen and (max-width: 575px) {
      .slider-area .slider-content div.slider-sub-text {
          display: none;
      }
  }

  .slider-area .slider-content div.slider-sub-text.text-light {
      color: #ffffff;
  }

  .slider-area .slider-content div.slider-paragraph {
      color: #444444;
      margin-bottom: 20px;
      width: 40%;
      font-weight: 500;
  }

  @media only screen and (max-width: 1199px) {
      .slider-area .slider-content div.slider-paragraph {
          width: 50%;
      }
  }

  @media only screen and (max-width: 991px) {
      .slider-area .slider-content div.slider-paragraph {
          display: none;
      }
  }

  .slider-area .slider-content div.slider-paragraph.text-light {
      color: #ffffff;
  }

  .slider-area .slider-content .slider-big-text.padding-right,
  .slider-area .slider-content .slider-sub-text.padding-right,
  .slider-area .slider-content .slider-paragraph.padding-right {
      padding-right: 60%;
  }

  .slider-area .slider-content .slider-big-text.padding-left,
  .slider-area .slider-content .slider-sub-text.padding-left,
  .slider-area .slider-content .slider-paragraph.padding-left {
      padding-left: 60%;
  }

  .slider-area .slider-content .slider-btn-area {
      margin-top: 30px;
  }

  @media only screen and (max-width: 991px) {
      .slider-area .slider-content .slider-btn-area {
          margin-top: 20px;
      }
  }

  @media only screen and (max-width: 767px) {
      .slider-area .slider-content .slider-btn-area {
          display: none;
      }
  }

  .slider-area .slider-content .slider-btn-area a.item-btn-fill {
      padding: 12px 25px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      color: #FF8326;
      font-size: 15px;
      font-weight: 500;
      border-radius: 4px;
      position: relative;
      z-index: 2;
      -webkit-box-shadow: 0px 1px 0px 0px rgba(209, 209, 209, 0.75);
      box-shadow: 0px 1px 0px 0px rgba(209, 209, 209, 0.75);
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 1199px) {
      .slider-area .slider-content .slider-btn-area a.item-btn-fill {
          padding: 10px 25px;
      }
  }

  @media only screen and (max-width: 991px) {
      .slider-area .slider-content .slider-btn-area a.item-btn-fill {
          padding: 10px 20px;
      }
  }

  .slider-area .slider-content .slider-btn-area a.item-btn-fill i {
      font-size: 16px;
      margin-left: 8px;
      color: #e83a15;
      transition: all 0.3s ease-out;
  }

  .slider-area .slider-content .slider-btn-area a.item-btn-fill:hover {
      background-color: #e83a15;
      color: #ffffff;
  }

  .slider-area .slider-content .slider-btn-area a.item-btn-fill:hover i {
      color: #ffffff;
  }

  .slider-layout1 .slider-content h1.slider-big-text {
      animation: fadeInUp 1500ms ease-in-out;
  }

  .slider-layout1 .slider-content div.slider-sub-text {
      animation: fadeInUp 1000ms ease-in-out;
  }

  .slider-layout1 .slider-content div.slider-paragraph {
      animation: fadeInUp 2000ms ease-in-out;
  }

  .slider-layout1 .slider-content .slider-btn-area {
      animation: fadeInUp 2500ms ease-in-out;
  }

  .slider-layout2 .nivo-caption {
      top: -30px;
  }

  @media only screen and (max-width: 1199px) {
      .slider-layout2 .nivo-caption {
          top: 0;
      }
  }

  .slider-layout2 .slider-content h1.slider-big-text {
      animation: fadeInUp 1500ms ease-in-out;
  }

  .slider-layout2 .slider-content div.slider-sub-text {
      animation: fadeInUp 1000ms ease-in-out;
  }

  .slider-layout2 .slider-content div.slider-paragraph {
      animation: fadeInUp 2000ms ease-in-out;
  }

  .slider-layout2 .slider-content .slider-btn-area {
      animation: fadeInUp 2500ms ease-in-out;
  }

  .home-banner-wrap {
      position: relative;
      overflow: hidden;
  }

  .home-banner-wrap .home-banner-content {
      text-align: center;
      position: absolute;
      top: 15%;
      left: 0;
      right: 0;
  }

  @media only screen and (max-width: 1199px) {
      .home-banner-wrap .home-banner-content {
          top: 50%;
          transform: translateY(-50%);
      }
  }

  .home-banner-wrap .home-banner-content .item-title {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 10px;
  }

  @media only screen and (max-width: 1199px) {
      .home-banner-wrap .home-banner-content .item-title {
          font-size: 34px;
      }
  }

  @media only screen and (max-width: 991px) {
      .home-banner-wrap .home-banner-content .item-title {
          font-size: 32px;
          margin-bottom: 20px;
      }
  }

  @media only screen and (max-width: 767px) {
      .home-banner-wrap .home-banner-content .item-title {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 575px) {
      .home-banner-wrap .home-banner-content .item-title {
          font-size: 28px;
          margin-bottom: 0;
      }
  }

  @media only screen and (max-width: 479px) {
      .home-banner-wrap .home-banner-content .item-title {
          font-size: 26px;
      }
  }

  .home-banner-wrap .home-banner-content .item-subtitle {
      font-size: 20px;
      color: #444444;
      margin-bottom: 45px;
  }

  @media only screen and (max-width: 991px) {
      .home-banner-wrap .home-banner-content .item-subtitle {
          display: none;
      }
  }

  .home-banner-wrap .home-banner-content .item-number {
      border: 3px solid #ffffff;
      background-color: #e83a15;
      font-size: 22px;
      color: #ffffff;
      display: inline-block;
      padding: 12px 35px;
      border-radius: 40px;
      -webkit-box-shadow: 0px 5px 27px 0px rgba(232, 58, 21, 0.5);
      box-shadow: 0px 5px 27px 0px rgba(232, 58, 21, 0.5);
  }

  .home-banner-wrap .home-banner-content .item-number span {
      font-weight: 700;
  }

  .home-banner-wrap .home-banner-content .item-number i:before {
      margin-right: 12px;
  }

  @media only screen and (max-width: 575px) {
      .home-banner-wrap .home-banner-content .item-number {
          display: none;
      }
  }

  .home-banner-wrap .parallax-bg {
      text-align: center;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%) !important;
  }

  .home-banner-wrap #Clouds {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      height: 100%;
      overflow: hidden;
      animation: FadeIn 3s ease-out;
      user-select: none;
  }

  @keyframes FadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .home-banner-wrap .Cloud {
      position: absolute;
      width: 100%;
      background-repeat: no-repeat;
      background-size: auto 100%;
      height: 70px;
      animation-duration: 20s;
      animation-iteration-count: infinite;
      animation-fill-mode: forwards;
      animation-timing-function: linear;
      animation-name: Float, FadeFloat;
  }

  .home-banner-wrap .Cloud.Foreground {
      height: 100%;
      min-height: 20px;
  }

  .home-banner-wrap .Cloud.Background {
      background-repeat: no-repeat;
      height: 90.90909091%;
      min-height: 8px;
      animation-duration: 40s;
  }

  @keyframes Float {
      from {
          transform: translateX(100%) translateZ(0);
      }

      to {
          transform: translateX(-15%) translateZ(0);
      }
  }

  @keyframes FadeFloat {

      0%,
      100% {
          opacity: 0;
      }

      5%,
      90% {
          opacity: 1;
      }
  }

  .home-banner-wrap .Cloud:nth-child(10n) {
      animation-delay: -123.07692308s;
      top: 60px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(10n) {
      animation-duration: 40s;
      height: 125%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(10n) {
      animation-duration: 60s;
      animation-duration: 120s;
      height: 78.40909091%;
  }

  .home-banner-wrap .Cloud:nth-child(9n) {
      animation-delay: -110.76923077s;
      top: 54px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(9n) {
      animation-duration: 44s;
      height: 122.5%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(9n) {
      animation-duration: 64s;
      animation-duration: 122s;
      height: 79.65909091%;
  }

  .home-banner-wrap .Cloud:nth-child(8n) {
      animation-delay: -98.46153846s;
      top: 48px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(8n) {
      animation-duration: 48s;
      height: 120%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(8n) {
      animation-duration: 68s;
      animation-duration: 124s;
      height: 80.90909091%;
  }

  .home-banner-wrap .Cloud:nth-child(7n) {
      animation-delay: -86.15384615s;
      top: 42px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(7n) {
      animation-duration: 52s;
      height: 117.5%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(7n) {
      animation-duration: 72s;
      animation-duration: 126s;
      height: 82.15909091%;
  }

  .home-banner-wrap .Cloud:nth-child(6n) {
      animation-delay: -73.84615385s;
      top: 36px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(6n) {
      animation-duration: 56s;
      height: 115%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(6n) {
      animation-duration: 76s;
      animation-duration: 128s;
      height: 83.40909091%;
  }

  .home-banner-wrap .Cloud:nth-child(5n) {
      animation-delay: -61.53846154s;
      top: 30px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(5n) {
      animation-duration: 60s;
      height: 112.5%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(5n) {
      animation-duration: 80s;
      animation-duration: 130s;
      height: 84.65909091%;
  }

  .home-banner-wrap .Cloud:nth-child(4n) {
      animation-delay: -49.23076923s;
      top: 24px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(4n) {
      animation-duration: 64s;
      height: 110%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(4n) {
      animation-duration: 84s;
      animation-duration: 132s;
      height: 85.90909091%;
  }

  .home-banner-wrap .Cloud:nth-child(3n) {
      animation-delay: -36.92307692s;
      top: 18px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(3n) {
      animation-duration: 68s;
      height: 107.5%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(3n) {
      animation-duration: 88s;
      animation-duration: 134s;
      height: 87.15909091%;
  }

  .home-banner-wrap .Cloud:nth-child(2n) {
      animation-delay: -24.61538462s;
      top: 12px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(2n) {
      animation-duration: 72s;
      height: 105%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(2n) {
      animation-duration: 92s;
      animation-duration: 136s;
      height: 88.40909091%;
  }

  .home-banner-wrap .Cloud:nth-child(1n) {
      animation-delay: -12.30769231s;
      top: 6px;
  }

  .home-banner-wrap .Cloud.Foreground:nth-child(1n) {
      animation-duration: 76s;
      height: 102.5%;
  }

  .home-banner-wrap .Cloud.Background:nth-child(1n) {
      animation-duration: 96s;
      animation-duration: 138s;
      height: 89.65909091%;
  }

  .home-banner-wrap .Cloud.Foreground {
      background: url(img/figure/cloud.png);
      background-repeat: no-repeat;
  }

  .home-banner-wrap .Cloud.Background {
      background: url(img/figure/cloud2.png);
      background-repeat: no-repeat;
  }

  /*------------------- 3.2 Vegas Slider -------------------*/
  .vegas-slider {
      margin-top: -116px;
      min-height: 810px;
  }

  .vegas-slider .slider-content-wrap {
      display: flex;
      align-items: center;
      height: 100%;
      width: 100%;
  }

  .vegas-slider .slider-content-wrap .content-box {
      min-width: 100%;
      padding-top: 10rem;
  }

  .vegas-slider .slider-content-wrap .content-box .item-title {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      margin-bottom: 7rem;
  }

  @media only screen and (max-width: 1199px) {
      .vegas-slider .slider-content-wrap .content-box .item-title {
          font-size: 40px;
      }
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .item-title {
          font-size: 36px;
      }
  }

  @media only screen and (max-width: 767px) {
      .vegas-slider .slider-content-wrap .content-box .item-title {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 575px) {
      .vegas-slider .slider-content-wrap .content-box .item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 479px) {
      .vegas-slider .slider-content-wrap .content-box .item-title {
          font-size: 26px;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box {
      background-color: #ffffff;
      border-radius: 4px;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box {
          padding: 30px 50px 40px;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      align-items: center;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul {
          display: block;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li {
      position: relative;
      -ms-flex: 0 0 28%;
      flex: 0 0 28%;
      max-width: 28%;
      margin-bottom: 0;
      padding: 0 0 0 30px;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul li {
          flex: 100%;
          max-width: 100%;
          padding: 0;
          margin-bottom: 20px;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li:after {
      content: "";
      height: 100px;
      width: 1px;
      background-color: #cccccc;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul li:after {
          display: none;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li:nth-last-child(2):after {
      display: none;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li:last-child {
      margin-bottom: 0;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li:last-child:after {
      display: none;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li .form-icon {
      position: absolute;
      top: 10px;
      left: 25px;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul li .form-icon {
          left: -5px;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li .form-icon i {
      font-size: 15px;
      color: #a5a5a5;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li .form-control {
      color: #444444;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li input.form-control::-webkit-input-placeholder,
  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li textarea.form-control::-webkit-input-placeholder {
      color: #444444;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li input.form-control:-moz-placeholder,
  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li textarea.form-control:-moz-placeholder {
      color: #444444;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li input.form-control:-ms-input-placeholder,
  .vegas-slider .slider-content-wrap .content-box .search-form-box ul li textarea.form-control:-ms-input-placeholder {
      color: #444444;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn {
      -ms-flex: 0 0 16%;
      flex: 0 0 16%;
      max-width: 16%;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn {
          flex: 100%;
          max-width: 100%;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn .item-btn {
      background-color: #FF8326;
      border-radius: 0 4px 4px 0;
      color: #ffffff;
      border: none;
      height: 100%;
      width: 101%;
      padding: 35px 5px;
      font-size: 18px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn .item-btn {
          border-radius: 4px;
          width: 100%;
          padding: 15px 5px;
      }
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn .item-btn i {
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      color: #e83a15;
      margin-right: 12px;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn .item-btn:hover {
      background-color: #e83a15;
  }

  .vegas-slider .slider-content-wrap .content-box .search-form-box ul .submit-btn .item-btn:hover i {
      color: #ffffff;
  }

  /*------------------- 3.3 Owl Carousel Nav -------------------*/
  .nav-control-layout1 .owl-nav {
      margin-top: 0;
  }

  .nav-control-layout1 .owl-nav button {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin: 0;
      padding: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #ffffff !important;
      background: none !important;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 575px) {
      .nav-control-layout1 .owl-nav button {
          visibility: hidden;
          opacity: 0;
      }
  }

  .nav-control-layout1 .owl-nav button i {
      font-size: 34px;
      font-size: 42px;
      width: 50px;
      height: 50px;
      border-radius: 20px;
      color: #fff;
      background: #FF8326;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .nav-control-layout1 .owl-nav button i:before {
      font-size: 34px;
  }

  .nav-control-layout1 .owl-nav button:hover {
      color: #ffffff;
  }

  .nav-control-layout1 .owl-nav button:focus {
      outline: none;
  }

  .nav-control-layout1 .owl-nav .owl-prev {
      left: 0;
  }

  .nav-control-layout1 .owl-nav .owl-next {
      right: 0;
  }

  .nav-control-layout2 .owl-nav {
      margin-top: 0;
  }

  .nav-control-layout2 .owl-nav button {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin: 0;
      padding: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #111111 !important;
      background: #ffffff !important;
      height: 6rem;
      width: 6rem;
      border-radius: 50%;
      border: none;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .nav-control-layout2 .owl-nav button i {
      margin-top: 3px;
      font-size: 20px;
  }

  .nav-control-layout2 .owl-nav button i:before {
      font-size: 20px;
      font-weight: 600;
  }

  .nav-control-layout2 .owl-nav button:hover {
      background: #FF8326 !important;
      color: #ffffff !important;
  }

  .nav-control-layout2 .owl-nav button:focus {
      outline: none;
  }

  .nav-control-layout2 .owl-nav .owl-prev {
      left: 4rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout2 .owl-nav .owl-prev {
          left: 0;
      }
  }

  .nav-control-layout2 .owl-nav .owl-next {
      right: 4rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout2 .owl-nav .owl-next {
          right: 0;
      }
  }

  .nav-control-layout3 .owl-nav {
      margin-top: 0;
  }

  .nav-control-layout3 .owl-nav button {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin: 0;
      padding: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #111111 !important;
      background: #ffffff !important;
      height: 6rem;
      width: 6rem;
      border-radius: 50%;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .nav-control-layout3 .owl-nav button i {
      font-size: 20px;
  }

  .nav-control-layout3 .owl-nav button i:before {
      font-size: 20px;
      font-weight: 600;
  }

  .nav-control-layout3 .owl-nav button:hover {
      background: #FF8326 !important;
      color: #ffffff !important;
  }

  .nav-control-layout3 .owl-nav button:focus {
      outline: none;
  }

  .nav-control-layout3 .owl-nav .owl-prev {
      left: 7rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout3 .owl-nav .owl-prev {
          left: 0;
      }
  }

  .nav-control-layout3 .owl-nav .owl-next {
      right: 7rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout3 .owl-nav .owl-next {
          right: 0;
      }
  }

  .nav-control-layout4 .owl-nav {
      margin-top: 0;
  }

  .nav-control-layout4 .owl-nav button {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin: 0;
      padding: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #ffffff !important;
      background: #e83a15 !important;
      height: 5rem;
      width: 5rem;
      border-radius: 50%;
      border: none;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.5s ease-out;
      -moz-transition: all 0.5s ease-out;
      -ms-transition: all 0.5s ease-out;
      -o-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out;
  }

  .nav-control-layout4 .owl-nav button i {
      font-size: 20px;
  }

  .nav-control-layout4 .owl-nav button i:before {
      font-size: 20px;
      font-weight: 600;
  }

  .nav-control-layout4 .owl-nav button:hover {
      background: #FF8326 !important;
      color: #ffffff !important;
  }

  .nav-control-layout4 .owl-nav button:focus {
      outline: none;
  }

  .nav-control-layout4 .owl-nav .owl-prev {
      left: -8rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout4 .owl-nav .owl-prev {
          left: 0;
      }
  }

  .nav-control-layout4 .owl-nav .owl-next {
      right: -8rem;
  }

  @media only screen and (max-width: 1399px) {
      .nav-control-layout4 .owl-nav .owl-next {
          right: 0;
      }
  }

  .nav-control-layout4:hover .owl-nav button {
      visibility: visible;
      opacity: 1;
  }

  .dot-control-layout1 {
      position: relative;
  }

  .dot-control-layout1 .owl-dots {
      text-align: center;
      position: absolute;
      bottom: 40px;
      left: 0;
      right: 0;
  }

  .dot-control-layout1 .owl-dots button {
      position: relative;
      height: 20px;
      width: 20px;
      padding: 0;
      margin: 0 3px;
      border: 2px solid #acacac;
      border-radius: 50%;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .dot-control-layout1 .owl-dots button:after {
      content: "";
      height: 10px;
      width: 10px;
      background-color: #e83a15;
      border-radius: 50%;
      position: absolute;
      top: 3px;
      left: 3px;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .dot-control-layout1 .owl-dots button:focus {
      outline: none;
  }

  .dot-control-layout1 .owl-dots button.active:after {
      visibility: visible;
      opacity: 1;
  }

  .smart-nav-layout1 {
      position: relative;
      margin-top: 20px;
  }

  .smart-nav-layout1 span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border-radius: 4px;
      border: 1px solid #e1e1e1;
      color: #e83a15;
      margin-right: 6px;
      padding: 10px 14px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .smart-nav-layout1 span:last-child {
      margin-right: 0;
  }

  .smart-nav-layout1 span i {
      font-weight: 600;
      font-size: 18px;
  }

  .smart-nav-layout1 span:hover {
      background-color: #FF8326;
      color: #ffffff;
      border-color: #FF8326;
  }

  /*------------------- 3.4 Select 2 -------------------*/
  .select2-container--classic .select2-selection--single {
      background: #ffffff;
      border: 1px solid #ffffff;
      height: 50px;
  }

  .select2-container--classic .select2-selection--single .select2-selection__rendered {
      line-height: 50px;
      color: #adadad;
      padding-left: 20px;
      font-size: 16px;
  }

  .select2-container--classic .select2-selection--single:focus {
      border: 1px solid #f4f4f4;
  }

  .select2-container--classic .select2-selection--single .select2-selection__arrow {
      background: none;
      border-left: none;
      height: 50px;
      top: 0;
      width: 40px;
  }

  .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #e83a15 transparent transparent transparent;
  }

  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #e83a15 transparent;
  }

  .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
      background: #ffffff;
      border-color: #cccccc;
  }

  .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
      border-color: #cccccc;
      background: #ffffff;
      border-top: 1px solid #cccccc;
  }

  .select2-container--classic.select2-container--open .select2-dropdown {
      border-color: #cccccc;
      position: inherit !important;
      border-top: 1px solid #cccccc;
      border-bottom: 1px solid #cccccc;
  }

  .select2-container--classic .select2-results__option--highlighted[aria-selected] {
      background-color: #0529a4;
  }

  .select2-results__option {
      padding: 10px 20px;
  }

  /*=======================================================================
4. Template Layout Style
=========================================================================*/
  /*------------------- 4.1 Content -------------------*/
  .inner-page-banner {
      position: relative;
      padding: 9.5rem 0 8.3rem;
      position: relative;
      content: '';
      background: url(../img/figure/menu-bg.jpg);
      text-align: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      z-index: 1;
      background-attachment: fixed;
  }

  .inner-page-banner .breadcrumbs-area {
      text-align: center;
      position: relative;
      z-index: 1;
  }

  .inner-page-banner .breadcrumbs-area h1 {
      font-size: 46px;
      font-weight: 700;
      text-transform: capitalize;
      margin-bottom: 16px;
      color: #ffffff;
  }

  @media only screen and (max-width: 1199px) {
      .inner-page-banner .breadcrumbs-area h1 {
          font-size: 42px;
      }
  }

  @media only screen and (max-width: 991px) {
      .inner-page-banner .breadcrumbs-area h1 {
          font-size: 38px;
          margin-bottom: 5px;
          line-height: 1.5;
      }
  }

  @media only screen and (max-width: 767px) {
      .inner-page-banner .breadcrumbs-area h1 {
          font-size: 34px;
      }
  }

  @media only screen and (max-width: 575px) {
      .inner-page-banner .breadcrumbs-area h1 {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 479px) {
      .inner-page-banner .breadcrumbs-area h1 {
          font-size: 26px;
      }
  }

  .inner-page-banner .breadcrumbs-area ul li {
      display: inline-block;
      color: #ffffff;
      position: relative;
      margin-right: 20px;
      padding-right: 10px;
      margin-bottom: 10px;
  }

  .inner-page-banner .breadcrumbs-area ul li:before {
      content: "\f101";
      font-family: "Font Awesome 5 Free";
      font-size: 16px;
      font-weight: 600;
      position: absolute;
      right: -14px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 5;
      color: #cccccc;
  }

  .inner-page-banner .breadcrumbs-area ul li a {
      color: #cccccc;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .inner-page-banner .breadcrumbs-area ul li a:hover {
      color: #ffffff;
  }

  .inner-page-banner .breadcrumbs-area ul li:last-child {
      margin-right: 0;
      padding-right: 0;
  }

  .inner-page-banner .breadcrumbs-area ul li:last-child:before {
      display: none;
  }

  .inner-page-banner:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
  }

  .fw-btn-fill {
      width: 100%;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 1px;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .fw-btn-fill i {
      margin-left: 10px;
  }

  .fw-btn-fill:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .fw-btn-primary {
      width: 100%;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-weight: 500;
      font-size: 15px;
      color: #ffffff;
      background-color: #FF8326;
      letter-spacing: 1px;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .fw-btn-primary i {
      font-size: 16px;
      margin-left: 10px;
  }

  .fw-btn-primary:hover {
      background-color: #e83a15;
  }

  .fw-btn-ghost {
      width: 100%;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 1px;
      border: none;
      background-color: transparent;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .fw-btn-ghost i {
      margin-left: 10px;
  }

  .fw-btn-ghost:hover {
      background-color: #FF8326;
      color: #ffffff;
      border-color: #FF8326;
  }

  .btn-fill-lg {
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      padding: 12px 30px;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 0.5px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-lg i {
      font-size: 16px;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-lg:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .btn-fill-lg:hover i {
      color: #ffffff;
  }

  .btn-fill-lg-2 {
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      padding: 10px 28px;
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 0.5px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-lg-2 i {
      font-size: 16px;
      margin-left: 10px;
  }

  .btn-fill-lg-2:hover {
      background-color: #ffffff;
      color: #FF8326;
  }

  .btn-fill-md {
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      font-weight: 500;
      font-size: 15px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-md i {
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-md:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .btn-fill-md:hover i {
      color: #ffffff;
  }

  .btn-fill-md-2 {
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      font-weight: 700;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-md-2 i {
      font-size: 18px;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .btn-fill-md-2:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .btn-fill-md-2:hover i {
      color: #ffffff;
  }

  .ghost-btn-lg {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      font-weight: 500;
      border-radius: 4px;
      padding: 9px 35px;
      letter-spacing: 0.7px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .ghost-btn-lg i {
      font-size: 18px;
      margin-left: 10px;
  }

  .ghost-btn-lg:hover {
      background-color: #e83a15;
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .ghost-btn-lg {
          padding: 10px 30px;
      }
  }

  @media only screen and (max-width: 767px) {
      .ghost-btn-lg {
          padding: 8px 25px;
      }
  }

  .ghost-btn-lg-2 {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      font-weight: 500;
      border-radius: 4px;
      padding: 9px 25px;
      letter-spacing: 0.7px;
      border: 1px solid #ffffff;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .ghost-btn-lg-2 i {
      font-size: 18px;
      margin-left: 10px;
  }

  .ghost-btn-lg-2:hover {
      background-color: #FF8326;
      color: #ffffff;
      border-color: #FF8326;
  }

  @media only screen and (max-width: 991px) {
      .ghost-btn-lg-2 {
          padding: 10px 30px;
      }
  }

  @media only screen and (max-width: 767px) {
      .ghost-btn-lg-2 {
          padding: 8px 25px;
      }
  }

  .ghost-btn-md {
      display: inline-flex;
      align-items: center;
      border-radius: 4px;
      font-weight: 500;
      padding: 8px 26px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .ghost-btn-md i {
      font-size: 18px;
      margin-left: 10px;
  }

  .ghost-btn-md:hover {
      background-color: #e83a15;
      border-color: #e83a15;
      color: #ffffff;
  }

  .ghost-btn-md:hover i {
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .ghost-btn-md {
          font-size: 15px;
          padding: 8px 20px;
      }
  }

  .ghost-btn-md-2 {
      display: inline-flex;
      align-items: center;
      border-radius: 4px;
      font-weight: 700;
      padding: 10px 26px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .ghost-btn-md-2 i {
      font-size: 18px;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .ghost-btn-md-2:hover {
      background-color: #e83a15;
      border-color: #e83a15;
      color: #ffffff;
  }

  .ghost-btn-md-2:hover i {
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .ghost-btn-md-2 {
          font-size: 15px;
          padding: 8px 20px;
      }
  }

  .btn-hover-primary:hover {
      background-color: #FF8326;
      border-color: #FF8326 !important;
  }

  .btn-hover-accent:hover {
      background-color: #e83a15;
  }

  /*
  body .wrapper {
      display: none;
      opacity: 0;
  }

  body.pace-done .wrapper {
      display: block;
      opacity: 1;
      animation: fadeIn 0.2s;
  }
*/

  /*Loading*/
  .pace {
      -webkit-pointer-events: none;
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box;
      z-index: 2000;
      position: fixed;
      margin: auto;
      top: 12px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 250px;
      height: 120px;
      overflow: hidden;
  }

  .pace .pace-progress {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      -webkit-background-clip: padding-box;
      -moz-background-clip: padding;
      background-clip: padding-box;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      display: block;
      position: absolute;
      right: 100%;
      margin-right: -7px;
      width: 93%;
      bottom: 7px;
      height: 14px;
      font-size: 14px;
      background-image: -o-linear-gradient(45deg, #5b5d9c 25%, #FF8326 25%, #FF8326 50%, #5b5d9c 50%, #5b5d9c 75%, #FF8326 75%, #FF8326 100%);
      background-image: linear-gradient(45deg, #5b5d9c 25%, #FF8326 25%, #FF8326 50%, #5b5d9c 50%, #5b5d9c 75%, #FF8326 75%, #FF8326 100%);
      background-size: 14.14px 14.14px;
      color: #FF8326;
      line-height: 60px;
      font-weight: bold;
      font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
      -webkit-box-shadow: 120px 0 #fff, 240px 0 #fff;
      -ms-box-shadow: 120px 0 #fff, 240px 0 #fff;
      box-shadow: 120px 0 #fff, 240px 0 #fff;
      margin-bottom: 28px;
  }

  .pace .pace-progress:after {
      content: attr(data-progress-text);
      display: inline-block;
      position: fixed;
      width: 60px;
      text-align: right;
      right: 0;
      padding-right: 12px;
      top: 6px;
      font-size: 18px;
  }

  .pace:after {
      content: url('../img/main-logo.png');
      position: absolute;
      left: 37px;
  }

  .pace .pace-activity {
      position: absolute;
      bottom: 28px;
      width: 100%;
      height: 28px;
      z-index: 2001;
      box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 7px #fff;
      border-radius: 10px;
  }

  .pace.pace-inactive {
      display: none;
  }

  .pace .pace-progress[data-progress-text="0%"]:after {
      right: -200px;
  }

  .pace .pace-progress[data-progress-text="1%"]:after {
      right: -198.14px;
  }

  .pace .pace-progress[data-progress-text="2%"]:after {
      right: -196.28px;
  }

  .pace .pace-progress[data-progress-text="3%"]:after {
      right: -194.42px;
  }

  .pace .pace-progress[data-progress-text="4%"]:after {
      right: -192.56px;
  }

  .pace .pace-progress[data-progress-text="5%"]:after {
      right: -190.7px;
  }

  .pace .pace-progress[data-progress-text="6%"]:after {
      right: -188.84px;
  }

  .pace .pace-progress[data-progress-text="7%"]:after {
      right: -186.98px;
  }

  .pace .pace-progress[data-progress-text="8%"]:after {
      right: -185.12px;
  }

  .pace .pace-progress[data-progress-text="9%"]:after {
      right: -183.26px;
  }

  .pace .pace-progress[data-progress-text="10%"]:after {
      right: -181.4px;
  }

  .pace .pace-progress[data-progress-text="11%"]:after {
      right: -179.54px;
  }

  .pace .pace-progress[data-progress-text="12%"]:after {
      right: -177.68px;
  }

  .pace .pace-progress[data-progress-text="13%"]:after {
      right: -175.82px;
  }

  .pace .pace-progress[data-progress-text="14%"]:after {
      right: -173.96px;
  }

  .pace .pace-progress[data-progress-text="15%"]:after {
      right: -172.1px;
  }

  .pace .pace-progress[data-progress-text="16%"]:after {
      right: -170.24px;
  }

  .pace .pace-progress[data-progress-text="17%"]:after {
      right: -168.38px;
  }

  .pace .pace-progress[data-progress-text="18%"]:after {
      right: -166.52px;
  }

  .pace .pace-progress[data-progress-text="19%"]:after {
      right: -164.66px;
  }

  .pace .pace-progress[data-progress-text="20%"]:after {
      right: -162.8px;
  }

  .pace .pace-progress[data-progress-text="21%"]:after {
      right: -160.94px;
  }

  .pace .pace-progress[data-progress-text="22%"]:after {
      right: -159.08px;
  }

  .pace .pace-progress[data-progress-text="23%"]:after {
      right: -157.22px;
  }

  .pace .pace-progress[data-progress-text="24%"]:after {
      right: -155.36px;
  }

  .pace .pace-progress[data-progress-text="25%"]:after {
      right: -153.5px;
  }

  .pace .pace-progress[data-progress-text="26%"]:after {
      right: -151.64px;
  }

  .pace .pace-progress[data-progress-text="27%"]:after {
      right: -149.78px;
  }

  .pace .pace-progress[data-progress-text="28%"]:after {
      right: -147.92px;
  }

  .pace .pace-progress[data-progress-text="29%"]:after {
      right: -146.06px;
  }

  .pace .pace-progress[data-progress-text="30%"]:after {
      right: -144.2px;
  }

  .pace .pace-progress[data-progress-text="31%"]:after {
      right: -142.34px;
  }

  .pace .pace-progress[data-progress-text="32%"]:after {
      right: -140.48px;
  }

  .pace .pace-progress[data-progress-text="33%"]:after {
      right: -138.62px;
  }

  .pace .pace-progress[data-progress-text="34%"]:after {
      right: -136.76px;
  }

  .pace .pace-progress[data-progress-text="35%"]:after {
      right: -134.9px;
  }

  .pace .pace-progress[data-progress-text="36%"]:after {
      right: -133.04px;
  }

  .pace .pace-progress[data-progress-text="37%"]:after {
      right: -131.18px;
  }

  .pace .pace-progress[data-progress-text="38%"]:after {
      right: -129.32px;
  }

  .pace .pace-progress[data-progress-text="39%"]:after {
      right: -127.46px;
  }

  .pace .pace-progress[data-progress-text="40%"]:after {
      right: -125.6px;
  }

  .pace .pace-progress[data-progress-text="41%"]:after {
      right: -123.74px;
  }

  .pace .pace-progress[data-progress-text="42%"]:after {
      right: -121.88px;
  }

  .pace .pace-progress[data-progress-text="43%"]:after {
      right: -120.02px;
  }

  .pace .pace-progress[data-progress-text="44%"]:after {
      right: -118.16px;
  }

  .pace .pace-progress[data-progress-text="45%"]:after {
      right: -116.3px;
  }

  .pace .pace-progress[data-progress-text="46%"]:after {
      right: -114.44px;
  }

  .pace .pace-progress[data-progress-text="47%"]:after {
      right: -112.58px;
  }

  .pace .pace-progress[data-progress-text="48%"]:after {
      right: -110.72px;
  }

  .pace .pace-progress[data-progress-text="49%"]:after {
      right: -108.86px;
  }

  .pace .pace-progress[data-progress-text="50%"]:after {
      right: -107px;
  }

  .pace .pace-progress[data-progress-text="51%"]:after {
      right: -105.14px;
  }

  .pace .pace-progress[data-progress-text="52%"]:after {
      right: -103.28px;
  }

  .pace .pace-progress[data-progress-text="53%"]:after {
      right: -101.42px;
  }

  .pace .pace-progress[data-progress-text="54%"]:after {
      right: -99.56px;
  }

  .pace .pace-progress[data-progress-text="55%"]:after {
      right: -97.7px;
  }

  .pace .pace-progress[data-progress-text="56%"]:after {
      right: -95.84px;
  }

  .pace .pace-progress[data-progress-text="57%"]:after {
      right: -93.98px;
  }

  .pace .pace-progress[data-progress-text="58%"]:after {
      right: -92.12px;
  }

  .pace .pace-progress[data-progress-text="59%"]:after {
      right: -90.26px;
  }

  .pace .pace-progress[data-progress-text="60%"]:after {
      right: -88.4px;
  }

  .pace .pace-progress[data-progress-text="61%"]:after {
      right: -86.54px;
  }

  .pace .pace-progress[data-progress-text="62%"]:after {
      right: -84.68px;
  }

  .pace .pace-progress[data-progress-text="63%"]:after {
      right: -82.82px;
  }

  .pace .pace-progress[data-progress-text="64%"]:after {
      right: -80.96px;
  }

  .pace .pace-progress[data-progress-text="65%"]:after {
      right: -79.1px;
  }

  .pace .pace-progress[data-progress-text="66%"]:after {
      right: -77.24px;
  }

  .pace .pace-progress[data-progress-text="67%"]:after {
      right: -75.38px;
  }

  .pace .pace-progress[data-progress-text="68%"]:after {
      right: -73.52px;
  }

  .pace .pace-progress[data-progress-text="69%"]:after {
      right: -71.66px;
  }

  .pace .pace-progress[data-progress-text="70%"]:after {
      right: -69.8px;
  }

  .pace .pace-progress[data-progress-text="71%"]:after {
      right: -67.94px;
  }

  .pace .pace-progress[data-progress-text="72%"]:after {
      right: -66.08px;
  }

  .pace .pace-progress[data-progress-text="73%"]:after {
      right: -64.22px;
  }

  .pace .pace-progress[data-progress-text="74%"]:after {
      right: -62.36px;
  }

  .pace .pace-progress[data-progress-text="75%"]:after {
      right: -60.5px;
  }

  .pace .pace-progress[data-progress-text="76%"]:after {
      right: -58.64px;
  }

  .pace .pace-progress[data-progress-text="77%"]:after {
      right: -56.78px;
  }

  .pace .pace-progress[data-progress-text="78%"]:after {
      right: -54.92px;
  }

  .pace .pace-progress[data-progress-text="79%"]:after {
      right: -53.06px;
  }

  .pace .pace-progress[data-progress-text="80%"]:after {
      right: -51.2px;
  }

  .pace .pace-progress[data-progress-text="81%"]:after {
      right: -49.34px;
  }

  .pace .pace-progress[data-progress-text="82%"]:after {
      right: -47.48px;
  }

  .pace .pace-progress[data-progress-text="83%"]:after {
      right: -45.62px;
  }

  .pace .pace-progress[data-progress-text="84%"]:after {
      right: -43.76px;
  }

  .pace .pace-progress[data-progress-text="85%"]:after {
      right: -41.9px;
  }

  .pace .pace-progress[data-progress-text="86%"]:after {
      right: -40.04px;
  }

  .pace .pace-progress[data-progress-text="87%"]:after {
      right: -38.18px;
  }

  .pace .pace-progress[data-progress-text="88%"]:after {
      right: -36.32px;
  }

  .pace .pace-progress[data-progress-text="89%"]:after {
      right: -34.46px;
  }

  .pace .pace-progress[data-progress-text="90%"]:after {
      right: -32.6px;
  }

  .pace .pace-progress[data-progress-text="91%"]:after {
      right: -30.74px;
  }

  .pace .pace-progress[data-progress-text="92%"]:after {
      right: -28.88px;
  }

  .pace .pace-progress[data-progress-text="93%"]:after {
      right: -27.02px;
  }

  .pace .pace-progress[data-progress-text="94%"]:after {
      right: -25.16px;
  }

  .pace .pace-progress[data-progress-text="95%"]:after {
      right: -23.3px;
  }

  .pace .pace-progress[data-progress-text="96%"]:after {
      right: -21.44px;
  }

  .pace .pace-progress[data-progress-text="97%"]:after {
      right: -19.58px;
  }

  .pace .pace-progress[data-progress-text="98%"]:after {
      right: -17.72px;
  }

  .pace .pace-progress[data-progress-text="99%"]:after {
      right: -15.86px;
  }

  .pace .pace-progress[data-progress-text="100%"]:after {
      right: -14px;
  }

  /*Loadung End*/
  .scrollup {
      overflow: hidden;
      position: fixed;
      height: 40px;
      width: 40px;
      line-height: 40px;
      border-radius: 45px;
      bottom: -50px;
      right: 20px;
      text-align: center;
      z-index: 9999;
      background-color: rgba(17, 17, 17, 0.8);
      display: block;
      font-size: 16px;
      color: #ffffff;
      -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  }

  .scrollup i {
      display: inline-block;
      -webkit-transition: all 0.5s ease-out;
      -moz-transition: all 0.5s ease-out;
      -ms-transition: all 0.5s ease-out;
      -o-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out;
  }

  .scrollup:hover,
  .scrollup:focus {
      color: #ffffff;
  }

  .scrollup:hover i,
  .scrollup:focus i {
      -webkit-animation: toBottomFromTop20 0.5s forwards;
      animation: toBottomFromTop20 0.5s forwards;
  }

  .scrollup.back-top {
      bottom: 20px;
  }

  @-webkit-keyframes pulse {
      0% {
          -webkit-box-shadow: 0 0 0 0 #14287b;
          box-shadow: 0 0 0 0 #14287b;
      }

      40% {
          -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
      }

      70% {
          -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
      }

      100% {
          -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
      }
  }

  @keyframes pulse {
      0% {
          -webkit-box-shadow: 0 0 0 0 #14287b;
          box-shadow: 0 0 0 0 #14287b;
      }

      40% {
          -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
      }

      70% {
          -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
      }

      100% {
          -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
          box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
      }
  }

  @-webkit-keyframes animate-figure1 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-20px) translateX(10px);
          transform: translateY(-20px) translateX(10px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @keyframes animate-figure1 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-20px) translateX(10px);
          transform: translateY(-20px) translateX(10px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @-webkit-keyframes animate-figure2 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-20px) translateX(-10px);
          transform: translateY(-20px) translateX(-10px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @keyframes animate-figure2 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-20px) translateX(-10px);
          transform: translateY(-20px) translateX(-10px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @-webkit-keyframes animate-figure3 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-10px) translateX(-40px);
          transform: translateY(-10px) translateX(-40px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @keyframes animate-figure3 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-10px) translateX(-40px);
          transform: translateY(-10px) translateX(-40px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @-webkit-keyframes animate-figure4 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-10px) translateX(40px);
          transform: translateY(-10px) translateX(40px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  @keyframes animate-figure4 {
      0% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }

      50% {
          -webkit-transform: translateY(-10px) translateX(40px);
          transform: translateY(-10px) translateX(40px);
      }

      100% {
          -webkit-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
      }
  }

  /*------------------- 4.2 Footer -------------------*/
  .footer-top-wrap-layout1 {
      padding: 10rem 0 6rem;
  }

  .footer-bottom-wrap-layout1 {
      padding: 4rem 1rem;
      border-top: 1px solid #e1e1e1;
      text-align: center;
  }

  .footer-bottom-wrap-layout1 .copyright-light a {
      color: #FF8326;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-bottom-wrap-layout1 .copyright-light a:hover {
      color: #e83a15;
  }

  .footer-wrap-layout2 {
      padding: 10rem 0 0;
      background-color: #101242;
      background-image: url('img/figure/clip3.png');
      background-repeat: no-repeat;
      background-position: bottom right 25px;
  }

  .footer-box-layout1 {
      margin-bottom: 4rem;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout1 {
          text-align: center;
      }
  }

  .footer-box-layout1 .footer-logo {
      margin-bottom: 22px;
  }

  .footer-box-layout1 .footer-logo a {
      display: inline-block;
  }

  .footer-box-layout1 p {
      margin-bottom: 26px;
  }

  .footer-box-layout1 .footer-social li {
      display: inline-block;
      margin-right: 2px;
  }

  .footer-box-layout1 .footer-social li:last-child {
      margin-right: 0;
  }

  .footer-box-layout1 .footer-social li a {
      display: block;
      text-align: center;
      height: 42px;
      width: 47px;
      line-height: 42px;
      background-color: #FF8326;
      border-radius: 4px;
      color: #ffffff;
      font-size: 16px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout1 .footer-social li a:hover {
      background-color: #e83a15;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout1 .footer-social li a {
          height: 40px;
          width: 40px;
          line-height: 40px;
          font-size: 16px;
      }
  }

  .footer-box-layout1 .footer-title {
      margin-bottom: 20px;
      padding-bottom: 24px;
      position: relative;
  }

  .footer-box-layout1 .footer-title:after {
      content: "";
      height: 4px;
      width: 49px;
      background-color: #e83a15;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout1 .footer-title:after {
          margin: auto;
      }
  }

  .footer-box-layout1 .footer-title h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout1 .footer-title h3 {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .footer-box-layout1 .footer-title h3 {
          font-size: 20px;
      }
  }

  .footer-box-layout1 .footer-menu-box .footer-menu-list li {
      margin-bottom: 8px;
  }

  .footer-box-layout1 .footer-menu-box .footer-menu-list li:last-child {
      margin-bottom: 0;
  }

  .footer-box-layout1 .footer-menu-box .footer-menu-list li a {
      color: #646464;
      padding: 5px 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout1 .footer-menu-box .footer-menu-list li a:hover {
      color: #111111;
  }

  .footer-box-layout1 .footer-form-box p {
      margin-bottom: 15px;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group {
      margin-bottom: 5px;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group:last-child {
      margin-bottom: 0;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .footer-box-layout1 .footer-form-box .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #9b9c9c;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group .form-control {
      font-size: 16px;
      padding: 10px 20px;
      border: none;
      color: #111111;
      border-radius: 4px;
      background-color: #ededed;
  }

  @media only screen and (max-width: 991px) {
      .footer-box-layout1 .footer-form-box .contact-form-box .form-group .form-control {
          font-size: 14px;
      }
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group .form-control:focus {
      outline: none;
      box-shadow: none;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group input {
      height: 50px;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group .item-btn {
      background-color: #e83a15;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      padding: 10px 20px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group .item-btn i {
      font-size: 18px;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout1 .footer-form-box .contact-form-box .form-group .item-btn:hover {
      background-color: #FF8326;
  }

  .footer-box-layout2 {
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 991px) {
      .footer-box-layout2 {
          text-align: center;
      }
  }

  .footer-box-layout2 .footer-about .footer-logo {
      margin-bottom: 22px;
  }

  .footer-box-layout2 .footer-about .footer-logo a {
      display: inline-block;
  }

  .footer-box-layout2 .footer-about p {
      margin-bottom: 35px;
      color: #c0c1ce;
      width: 80%;
  }

  @media only screen and (max-width: 991px) {
      .footer-box-layout2 .footer-about p {
          margin: 0 auto 30px;
      }
  }

  .footer-box-layout2 .footer-about .contact-type ul li {
      color: #c7d6e3;
      margin-bottom: 10px;
  }

  .footer-box-layout2 .footer-about .contact-type ul li i {
      font-size: 20px;
      color: #e83a15;
      margin-right: 15px;
  }

  .footer-box-layout2 .footer-title {
      margin-bottom: 20px;
      padding-bottom: 24px;
      position: relative;
  }

  .footer-box-layout2 .footer-title:after {
      content: "";
      height: 4px;
      width: 49px;
      background-color: #e83a15;
      position: absolute;
      bottom: 0;
      left: 0;
  }

  @media only screen and (max-width: 991px) {
      .footer-box-layout2 .footer-title:after {
          right: 0;
          margin: auto;
      }
  }

  .footer-box-layout2 .footer-title h3 {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout2 .footer-title h3 {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .footer-box-layout2 .footer-title h3 {
          font-size: 20px;
      }
  }

  .footer-box-layout2 .footer-menu-box .footer-menu-list li {
      margin-bottom: 8px;
  }

  .footer-box-layout2 .footer-menu-box .footer-menu-list li:last-child {
      margin-bottom: 0;
  }

  .footer-box-layout2 .footer-menu-box .footer-menu-list li a {
      color: #c0c1ce;
      padding: 5px 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout2 .footer-menu-box .footer-menu-list li a:hover {
      color: #ffffff;
  }

  .footer-box-layout2 .footer-form-box p {
      color: #c0c1ce;
      margin-bottom: 15px;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box {
      margin-bottom: 40px;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group {
      margin-bottom: 5px;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group:last-child {
      margin-bottom: 0;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .footer-box-layout2 .footer-form-box .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #9b9c9c;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group .form-control {
      font-size: 16px;
      padding: 10px 20px;
      border: none;
      color: #111111;
      border-radius: 4px;
      background-color: #ededed;
  }

  @media only screen and (max-width: 991px) {
      .footer-box-layout2 .footer-form-box .contact-form-box .form-group .form-control {
          font-size: 14px;
      }
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group .form-control:focus {
      outline: none;
      box-shadow: none;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group input {
      height: 50px;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group .item-btn {
      background-color: #e83a15;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      padding: 10px 20px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group .item-btn i {
      font-size: 18px;
      margin-left: 10px;
  }

  .footer-box-layout2 .footer-form-box .contact-form-box .form-group .item-btn:hover {
      background-color: #ffffff;
      color: #FF8326;
  }

  .footer-box-layout2 .footer-social ul li {
      display: inline-block;
      margin-right: 2px;
  }

  .footer-box-layout2 .footer-social ul li:last-child {
      margin-right: 0;
  }

  .footer-box-layout2 .footer-social ul li a {
      display: block;
      text-align: center;
      height: 42px;
      width: 47px;
      line-height: 42px;
      background-color: #1c1f72;
      border-radius: 4px;
      color: #ffffff;
      font-size: 16px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .footer-box-layout2 .footer-social ul li a:hover {
      background-color: #e83a15;
  }

  @media only screen and (max-width: 767px) {
      .footer-box-layout2 .footer-social ul li a {
          height: 40px;
          width: 40px;
          line-height: 40px;
          font-size: 16px;
      }
  }

  .copyright {
      padding: 3rem 0 6rem;
      color: #c0c1ce;
  }

  @media only screen and (max-width: 991px) {
      .copyright {
          text-align: center;
      }
  }

  .copyright a {
      color: #e83a15;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .copyright a:hover {
      color: #ffffff;
  }

  /*------------------- 4.3 Global -------------------*/
  a {
      text-decoration: none;
      cursor: pointer;
  }

  a:active,
  a:hover,
  a:focus {
      text-decoration: none;
  }

  a:active,
  a:hover,
  a:focus {
      outline: 0 none;
  }

  img {
      max-width: 100%;
      height: auto;
  }

  ul {
      list-style: outside none none;
      margin: 0;
      padding: 0;
  }

  [class^="flaticon-"]:before,
  [class*=" flaticon-"]:before,
  [class^="flaticon-"]:after,
  [class*=" flaticon-"]:after {
      margin-left: 0;
  }

  .form-response .alert-danger,
  .form-response .alert.alert-info,
  .form-response .alert.alert-success {
      margin-top: 10px;
      margin-bottom: 0;
  }

  .form-response .alert-danger p,
  .form-response .alert.alert-info p,
  .form-response .alert.alert-success p {
      margin-bottom: 0;
  }

  /*------------------- 4.4 Header Menu -------------------*/
  header.header {
      position: relative;
      z-index: 15;
  }

  @media only screen and (max-width: 991px) {
      header.header {
          display: none;
      }
  }

  .logo-area a {
      display: block;
  }

  .header-menu {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 100;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .header-menu:after {
      clear: both;
      content: "";
      display: block;
  }

  .header-menu nav.template-main-menu > ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }

  .header-menu nav.template-main-menu > ul > li > a {
      transition: all 0.3s ease-out;
  }

  .header-menu nav.template-main-menu > ul > li > a:hover {
      color: #e83a15;
  }

  nav.template-main-menu > ul > li {
      position: relative;
  }

  nav.template-main-menu > ul > li > a {
      font-size: 15px;
      font-weight: 500;
      line-height: 1;
      display: block;
      color: #111111;
      text-transform: uppercase;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 {
      border-top: 1px solid #FF8326;
      background-color: #ffffff;
      width: 250px;
      visibility: hidden;
      opacity: 0;
      position: absolute;
      top: 100%;
      left: 0;
      border-radius: 0 0 4px 4px;
      -webkit-transform: translateY(15px);
      -moz-transform: translateY(15px);
      -ms-transform: translateY(15px);
      -o-transform: translateY(15px);
      transform: translateY(15px);
      -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li {
      position: relative;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
      position: relative;
      font-size: 15px;
      font-weight: 500;
      text-transform: capitalize;
      color: #111111;
      padding: 12px 20px;
      display: block;
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -ms-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:before {
      content: "\f30b";
      font-family: "Font Awesome 5 Free";
      font-weight: 600;
      font-size: 15px;
      color: #e83a15;
      position: absolute;
      top: 12px;
      left: 20px;
      transform: scale(0);
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -ms-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:hover {
      color: #e83a15;
      padding-left: 40px;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a:hover:before {
      transform: scale(1);
  }

  @media only screen and (max-width: 1199px) {
      nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li a {
          padding: 10px 15px;
      }
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li:after {
      content: "";
      position: absolute;
      top: 0;
      left: 20px;
      right: 20px;
      height: 100%;
      border-bottom: 1px solid #e9e9e9;
      z-index: -1;
  }

  @media only screen and (max-width: 1199px) {
      nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li:after {
          left: 15px;
          right: 15px;
      }
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-1 li:last-child:after {
      border-bottom: none;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-2 {
      display: flex;
      align-items: center;
      border-top: 1px solid #FF8326;
      background-color: #ffffff;
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      -webkit-transform: translateY(15px);
      -moz-transform: translateY(15px);
      -ms-transform: translateY(15px);
      -o-transform: translateY(15px);
      transform: translateY(15px);
      -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-2 li {
      min-width: 200px;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-2 li a {
      font-size: 15px;
      text-transform: capitalize;
      color: #111111;
      padding: 8px 15px;
      display: block;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-2 li a:hover {
      color: #ffffff;
      background-color: #FF8326;
  }

  nav.template-main-menu > ul > li ul.dropdown-menu-col-2 li a:last-child {
      padding-bottom: 15px;
  }

  nav.template-main-menu > ul > li .template-mega-menu {
      background-color: #ffffff;
      border-top: 1px solid #FF8326;
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      top: 100%;
      padding: 20px 0 0;
      transform: translateY(15px);
      -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.05);
      box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  nav.template-main-menu > ul > li .template-mega-menu .menu-ctg-title {
      font-size: 16px;
      font-weight: 500;
      color: #111111;
      margin-bottom: 15px;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu {
      margin-bottom: 20px;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li {
      margin-bottom: 5px;
      padding-bottom: 7px;
      border-bottom: 1px solid #ebebeb;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li:last-child {
      border-bottom: 0;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a {
      font-size: 15px;
      text-transform: capitalize;
      color: #111111;
      padding: 5px 15px 5px 30px;
      display: block;
      -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -moz-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -ms-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      -o-transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
      position: relative;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a i {
      color: #FF8326;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover {
      color: #e83a15;
      padding: 5px 15px 5px 35px;
  }

  nav.template-main-menu > ul > li .template-mega-menu ul.sub-menu li a:hover i {
      color: #e83a15;
      animation: toRightFromLeft10 0.5s;
  }

  nav.template-main-menu > ul > li:hover ul.dropdown-menu-col-1 {
      opacity: 1;
      visibility: visible;
      transform: translatey(0);
  }

  nav.template-main-menu > ul > li:hover ul.dropdown-menu-col-2 {
      opacity: 1;
      visibility: visible;
      transform: translatey(0);
  }

  nav.template-main-menu > ul > li:hover .template-mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translatey(0);
  }

  .header-menu.menu-layout1 {
      background-color: #ffffff;
  }

  .header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
      padding: 40px 20px;
  }

  @media only screen and (max-width: 1199px) {
      .header-menu.menu-layout1 nav.template-main-menu > ul > li > a {
          padding: 40px 15px;
      }
  }

  .header-menu.menu-layout2 {
      padding-top: 20px;
  }

  .header-menu.menu-layout2 nav.template-main-menu > ul > li > a {
      padding: 40px 20px;
      color: #ffffff;
  }

  @media only screen and (max-width: 1199px) {
      .header-menu.menu-layout2 nav.template-main-menu > ul > li > a {
          padding: 40px 15px;
      }
  }

  .header-menu.menu-layout2 .header-action-layout1 .header-action-number .item-icon i:before {
      color: #ffffff;
  }

  .header-menu.menu-layout2 .header-action-layout1 .header-action-number .item-content .item-text {
      color: #ffffff;
  }

  .header-menu.menu-layout2 .header-action-layout1 .header-action-number .item-content .item-number {
      color: #ffffff;
  }

  .rt-sticky {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      left: 0;
      right: 0;
      background-color: #ffffff;
  }

  .rt-sticky nav.template-main-menu > ul > li > a {
      padding: 28px 18px;
  }

  @media only screen and (max-width: 1199px) {
      .rt-sticky nav.template-main-menu > ul > li > a {
          padding: 28px 15px;
      }
  }

  .header-menu.menu-layout1.rt-sticky {
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  }

  .header-menu.menu-layout1.rt-sticky nav.template-main-menu > ul > li > a {
      padding: 28px 20px;
  }

  @media only screen and (max-width: 1199px) {
      .header-menu.menu-layout1.rt-sticky nav.template-main-menu > ul > li > a {
          padding: 28px 15px;
      }
  }

  .header-menu.menu-layout2.rt-sticky {
      padding-top: 0;
      background-color: #FF8326;
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  }

  .header-menu.menu-layout2.rt-sticky .header-action-layout1 ul li .item-btn:hover {
      background-color: #e83a15;
  }

  @media only screen and (min-width: 992px) {
      .hide-on-desktop-menu {
          display: none !important;
      }
  }

  @media only screen and (max-width: 991px) {
      .hide-on-mobile-menu {
          display: none;
      }
  }

  .header-action-layout1 ul {
      display: flex;
      align-items: center;
  }

  .header-action-layout1 ul li {
      display: inline-block;
      margin-right: 25px;
  }

  .header-action-layout1 ul li:last-child {
      margin-right: 0;
  }

  .header-action-layout1 ul .header-search-icon a i:before {
      font-size: 24px;
      color: #646464;
      font-weight: 900;
  }

  .header-action-layout1 ul .header-btn .item-btn {
      display: inline-flex;
      align-items: center;
      color: #ffffff;
      background-color: #e83a15;
      border-radius: 4px;
      padding: 10px 30px;
      font-size: 15px;
      font-weight: 500;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
  }

  .header-action-layout1 ul .header-btn .item-btn i {
      font-size: 16px;
      margin-left: 10px;
  }

  .header-action-layout1 ul .header-btn .item-btn:hover {
      background-color: #FF8326;
  }

  @media only screen and (max-width: 1199px) {
      .header-action-layout1 ul .header-btn .item-btn {
          padding: 10px 28px;
      }
  }

  .header-action-layout1 ul .header-action-number {
      display: flex;
      align-items: center;
      line-height: 1.4;
      margin-right: 50px;
  }

  @media only screen and (max-width: 1330px) {
      .header-action-layout1 ul .header-action-number {
          display: none;
      }
  }

  .header-action-layout1 ul .header-action-number .item-icon {
      margin-right: 10px;
      margin-top: 5px;
  }

  .header-action-layout1 ul .header-action-number .item-icon i:before {
      font-size: 28px;
      color: #e83a15;
  }

  .header-action-layout1 ul .header-action-number .item-content .item-text {
      font-size: 15px;
  }

  .header-action-layout1 ul .header-action-number .item-content .item-number {
      font-size: 22px;
      font-weight: 700;
      color: #FF8326;
  }

  .header-topbar-layout1 .header-top-left ul li {
      display: inline-flex;
      align-items: center;
      color: #c7d6e3;
      font-size: 15px;
      margin-right: 18px;
  }

  .header-topbar-layout1 .header-top-left ul li:last-child {
      margin-right: 0;
  }

  .header-topbar-layout1 .header-top-left ul li span {
      color: #ffffff;
      margin-right: 5px;
  }

  .header-topbar-layout1 .header-top-left ul li i {
      font-size: 18px;
      color: #ffffff;
      margin-right: 10px;
  }

  .header-topbar-layout1 .header-top-right ul {
      display: flex;
      align-items: center;
  }

  .header-topbar-layout1 .header-top-right ul > li {
      display: flex;
      align-items: center;
      margin-right: 8px;
      font-size: 15px;
      font-weight: 500;
      color: #ffffff;
  }

  .header-topbar-layout1 .header-top-right ul > li > i {
      font-size: 18px;
      margin-right: 10px;
  }

  .header-topbar-layout1 .header-top-right ul > li:last-child {
      margin-right: 0;
  }

  .header-topbar-layout1 .header-top-right ul .social-icon a {
      padding-right: 5px;
      margin-right: 12px;
      font-size: 16px;
      color: #c7d6e3;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .header-topbar-layout1 .header-top-right ul .social-icon a:last-child {
      padding-right: 0;
      margin-right: 0;
  }

  .header-topbar-layout1 .header-top-right ul .social-icon a:hover {
      color: #ffffff;
  }

 .header-search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background-color: rgb(0, 0, 0);
  transition: all 0.5s ease-in-out;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

  .header-search .header-search-form {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
  }

  .header-search .header-search-form input[type="search"] {
      width: 60%;
      color: #ffffff;
      font-size: 24px;
      text-align: left;
      border: none;
      margin: 0px auto;
      padding: 25px 10px 25px 30px;
      outline: none;
      background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent);
  }

  .header-search .header-search-form .search-btn {
      padding: 24px 10px;
      background-color: transparent;
      box-shadow: none;
      border: none;
      border-radius: 4px;
      cursor: pointer;
  }

  .header-search .header-search-form .search-btn i:before {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      margin-left: 0;
  }

  .header-search .header-search-form .search-btn:focus {
      box-shadow: none;
      outline: none;
  }

 .header-search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #FF8326;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  opacity: 1;
  visibility: visible;
  padding: 3px 15px 5px;
  font-size: 36px;
  font-weight: 300;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 1px 2px 0px rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

  .header-search .close:focus {
      box-shadow: none;
      border: none;
      outline: none;
  }

  .header-search .close:hover {
      background-color: #ffffff;
  }

  .header-search.open {
      transform: translate(0px, 0px) scale(1, 1);
      opacity: 1;
      visibility: visible;
  }

  .mean-container .mean-bar {
      background: #ffffff !important;
      float: none;
      padding: 0 !important;
      position: fixed !important;
      top: 0;
      z-index: 20;
  }

  .mean-container .mean-bar:after {
      content: "";
      clear: both;
      display: block;
  }

  .mean-container .mean-bar a.logo-mobile-menu {
      width: 100%;
      background-color: rgba(222, 222, 222, 0.95);
      box-sizing: border-box;
  }

  .mean-container .mean-bar .mobile-menu-nav-back {
      padding-left: 15px;
      border-bottom: 1px solid #b2b2b2;
      position: relative;
      text-align: center;
      height: 70px;
      display: flex;
      align-items: center;
  }

  .mean-container .mean-bar .mobile-menu-nav-back:before {
      position: absolute;
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(248, 248, 248, 0.95);
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
  }

  .mean-container .mean-nav {
      float: none !important;
      background: transparent !important;
  }

  .mean-container .mean-nav > ul {
      overflow-y: scroll;
      height: 100vh;
  }

  .mean-container .mean-nav > ul:after {
      content: '';
      display: block;
      clear: both;
  }

  .mean-container .mean-nav > ul > li > a {
      font-size: 14px;
      color: #111111;
      font-weight: 700;
      background-color: #ebebeb;
      transition: all 0.5s ease-out;
  }

  .mean-container .mean-nav > ul > li > a:hover {
      color: #FF8326;
  }

  .mean-container .mean-nav > ul > li:hover > a {
      color: #FF8326;
      background-color: #ffffff;
  }

  .mean-container .mean-nav > ul > li li a {
      color: #111111;
      opacity: 1;
      font-weight: 500;
      padding: 0.5em 10%;
      font-size: 14px;
  }

  .mean-container .mean-nav > ul > li li a:hover {
      background-color: #ffffff;
  }

  .mean-container .mean-nav > ul > li a.mean-expand {
      background-color: transparent;
      margin-top: 0;
      height: 20px;
      line-height: 27px;
      width: 100%;
      text-align: right;
      font-size: 14px;
      padding: 12px 20px 12px 12px !important;
  }

  .mean-container .mean-nav > ul > li a.mean-expand:hover {
      background-color: transparent;
  }

  .mean-container a.meanmenu-reveal {
      float: none !important;
      position: absolute;
      top: 0;
      transition: unset;
      padding: 16px 14px 12px;
  }

  .mean-container #wrapper {
      padding-top: 50px;
  }

  /*------------------- 4.5 Section Heading -------------------*/
  .heading-layout1 {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
  }

  .heading-layout1 .item-title {
      font-weight: 900;
      color: #111111;
  }

  .heading-layout1 p {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 8px;
      color: #e83a15;
  }

  @media only screen and (max-width: 991px) {
      .heading-layout1 p {
          margin-bottom: 0;
      }
  }

  .heading-layout1.heading-light .item-title {
      color: #ffffff;
  }

  .heading-layout1.heading-light p {
      color: #cccccc;
  }

  .heading-layout2 {
      text-align: center;
      margin-bottom: 5rem;
  }

  .heading-layout2 .item-title {
      font-weight: 900;
      width: 60%;
      margin: 0 auto 25px;
  }

  @media only screen and (max-width: 991px) {
      .heading-layout2 .item-title {
          width: 100%;
      }
  }

  .heading-layout2 p {
      width: 70%;
      margin: 0 auto;
  }

  @media only screen and (max-width: 991px) {
      .heading-layout2 p {
          width: 100%;
      }
  }

  .heading-layout3 {
      position: relative;
      margin-bottom: 24px;
  }

  .heading-layout3 .item-title {
      font-size: 20px;
      font-weight: 700;
      padding-bottom: 16px;
      margin-bottom: 0;
  }

  @media only screen and (max-width: 575px) {
      .heading-layout3 .item-title {
          font-size: 18px;
      }
  }

  .heading-layout3:after {
      content: "";
      height: 3px;
      width: 35px;
      background-color: #e83a15;
      position: absolute;
      bottom: 0;
      left: 0;
  }

  .heading-layout4 {
      margin-bottom: 30px;
  }

  .heading-layout4 .item-title {
      font-weight: 700;
      margin-bottom: 0;
  }

  .heading-layout4 p {
      margin: 0 0 15px 0;
      color: #e83a15;
      font-size: 18px;
      font-weight: 500;
  }

  @media only screen and (max-width: 479px) {
      .heading-layout4 p {
          margin-bottom: 0;
      }
  }

  /*------------------- 4.6 Pagination -------------------*/
  .pagination-layout1 ul li {
      display: inline-block;
      margin-right: 6px;
  }

  .pagination-layout1 ul li:last-child {
      margin-right: 0;
  }

  .pagination-layout1 ul li .nav-item {
      display: inline-block;
      border: 1px solid #c2c2c2;
      font-size: 22px;
      font-weight: 500;
      color: #FF8326;
      padding: 7px 16px;
      border-radius: 4px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .pagination-layout1 ul li .nav-item:hover {
      border-color: #e83a15;
      background-color: #e83a15;
      color: #ffffff;
  }

  .pagination-layout1 ul li .nav-item.active {
      background-color: #e83a15;
      border-color: #e83a15;
      color: #ffffff;
  }

  .pagination-layout2 {
      margin-bottom: 60px;
  }

  .pagination-layout2 .prev-btn {
      padding-right: 2rem;
  }

  .pagination-layout2 .prev-btn .media .item-img {
      margin-top: 6px;
  }

  .pagination-layout2 .prev-btn .media .item-img img {
      border-radius: 4px;
  }

  .pagination-layout2 .prev-btn .media .media-body .item-title {
      font-weight: 500;
      color: #111111;
      margin-bottom: 2px;
      line-height: 25px;
  }

  @media only screen and (max-width: 1199px) {
      .pagination-layout2 .prev-btn .media .media-body .item-title {
          display: none;
      }
  }

  .pagination-layout2 .prev-btn .media .media-body .item-date {
      margin-bottom: 10px;
      color: #e83a15;
      font-size: 15px;
  }

  .pagination-layout2 .prev-btn .media .media-body .item-date i {
      font-weight: 500;
      margin-right: 10px;
  }

  @media only screen and (max-width: 1199px) {
      .pagination-layout2 .prev-btn .media .media-body .item-date {
          display: none;
      }
  }

  .pagination-layout2 .prev-btn .media .media-body a {
      font-size: 16px;
      color: #646464;
  }

  .pagination-layout2 .prev-btn .media .media-body a i {
      font-size: 15px;
      color: #e83a15;
      margin-right: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .pagination-layout2 .prev-btn .media .media-body a:hover {
      color: #111111;
  }

  .pagination-layout2 .next-btn {
      padding-right: 2rem;
  }

  .pagination-layout2 .next-btn .media .item-img {
      margin-top: 6px;
  }

  .pagination-layout2 .next-btn .media .item-img img {
      border-radius: 4px;
  }

  @media only screen and (max-width: 1199px) {
      .pagination-layout2 .next-btn .media .item-img {
          text-align: right;
      }
  }

  .pagination-layout2 .next-btn .media .media-body .item-title {
      font-weight: 500;
      color: #111111;
      margin-bottom: 2px;
      line-height: 25px;
  }

  @media only screen and (max-width: 1199px) {
      .pagination-layout2 .next-btn .media .media-body .item-title {
          display: none;
      }
  }

  .pagination-layout2 .next-btn .media .media-body .item-date {
      margin-bottom: 10px;
      color: #e83a15;
      font-size: 15px;
  }

  .pagination-layout2 .next-btn .media .media-body .item-date i {
      font-weight: 500;
      margin-right: 10px;
  }

  @media only screen and (max-width: 1199px) {
      .pagination-layout2 .next-btn .media .media-body .item-date {
          display: none;
      }
  }

  .pagination-layout2 .next-btn .media .media-body a {
      font-size: 16px;
      color: #646464;
  }

  .pagination-layout2 .next-btn .media .media-body a i {
      font-size: 15px;
      color: #e83a15;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .pagination-layout2 .next-btn .media .media-body a:hover {
      color: #111111;
  }

  /*------------------- 4.7 Widget -------------------*/
  @media only screen and (max-width: 1199px) {
      .sidebar-break-lg {
          margin-top: 5rem;
      }
  }

  @media only screen and (max-width: 991px) {
      .sidebar-break-md {
          margin-top: 5rem;
      }
  }

  .sidebar-widget-area .widget {
      margin-bottom: 4rem;
  }

  .sidebar-widget-area .widget:last-child {
      margin-bottom: 0 !important;
  }

  .widget-search-box .stylish-input-group {
      height: 55px;
      border-radius: 4px;
      padding: 0;
  }

  .widget-search-box .stylish-input-group .form-control {
      border: 1px solid #dddddd;
      box-shadow: none;
      border-radius: 4px;
      background: transparent;
      color: #111111;
      height: 55px;
      margin-right: 8px;
      padding: 10px 20px;
  }

  .widget-search-box .stylish-input-group .input-group-addon {
      display: flex;
      padding: 0;
      border: none;
      border-radius: 4px;
      background: #FF8326 !important;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-search-box .stylish-input-group .input-group-addon button {
      cursor: pointer;
      background: transparent;
      border: 0;
      padding: 0 20px;
  }

  .widget-search-box .stylish-input-group .input-group-addon button span:before {
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
      margin-left: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-search-box .stylish-input-group .input-group-addon button:focus {
      outline: none;
  }

  .widget-search-box .stylish-input-group .input-group-addon:hover {
      background-color: #e83a15 !important;
  }

  .widget-search-box .stylish-input-group .input-group-addon:hover button span {
      color: #ffffff;
  }

  .widget-search-box .stylish-input-group input {
      font-size: 15px;
      color: #FF8326;
  }

  .widget-search-box .stylish-input-group input.form-control::-webkit-input-placeholder,
  .widget-search-box .stylish-input-group textarea.form-control::-webkit-input-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .widget-search-box .stylish-input-group input.form-control:-moz-placeholder,
  .widget-search-box .stylish-input-group textarea.form-control:-moz-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .widget-search-box .stylish-input-group input.form-control:-ms-input-placeholder,
  .widget-search-box .stylish-input-group textarea.form-control:-ms-input-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .widget-category {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 20px;
  }

  .widget-category .service-list ul li {
      border-bottom: 1px solid #dddddd;
  }

  .widget-category .service-list ul li:last-child {
      border-bottom: none;
  }

  .widget-category .service-list ul li a {
      position: relative;
      display: block;
      color: #444444;
      padding: 13px 0 13px 26px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-category .service-list ul li a i {
      color: #646464;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
  }

  .widget-category .service-list ul li a:hover {
      color: #e83a15;
      padding-left: 35px;
  }

  .widget-category .service-list ul li a:hover i {
      color: #FF8326;
  }

  .widget-recent-post {
      border: 1px solid #e1e1e1;
      padding: 40px 40px;
      border-radius: 4px;
  }

  @media only screen and (max-width: 575px) {
      .widget-recent-post {
          padding: 30px;
      }
  }

  .widget-recent-post .recent-post-list li {
      margin-bottom: 16px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e1e1e1;
  }

  .widget-recent-post .recent-post-list li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
  }

  .widget-recent-post .recent-post-list li .post-date {
      font-size: 14px;
      color: #FF8326;
      font-weight: 500;
      margin-bottom: 10px;
  }

  .widget-recent-post .recent-post-list li .post-date i {
      font-size: 14px;
      color: #e83a15;
      margin-right: 8px;
  }

  .widget-recent-post .recent-post-list li .item-title {
      line-height: 1.5;
      margin-bottom: 0;
  }

  .widget-recent-post .recent-post-list li .item-title a {
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-recent-post .recent-post-list li .item-title a:hover {
      color: #e83a15;
  }

  .widget-newsletter {
      background-color: #FF8326;
      padding: 40px 40px;
      border-radius: 4px;
      text-align: center;
  }

  .widget-newsletter .item-img {
      margin-bottom: 30px;
  }

  .widget-newsletter .item-img img {
      -webkit-box-shadow: 0px 9px 13px 0px rgba(13, 28, 93, 0.75);
      box-shadow: 0px 9px 13px 0px rgba(13, 28, 93, 0.75);
  }

  .widget-newsletter .item-content .item-title {
      font-size: 24px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 6px;
  }

  .widget-newsletter .item-content p {
      color: #b7bede;
  }

  .widget-newsletter .item-content .form-box .form-group {
      margin-bottom: 8px;
  }

  .widget-newsletter .item-content .form-box .form-group:last-child {
      margin-bottom: 0;
  }

  .widget-newsletter .item-content .form-box .form-group .form-control {
      text-align: center;
      border: none;
      background-color: #ffffff;
      padding: 10px;
  }

  .widget-newsletter .item-content .form-box .form-group input {
      height: 60px;
  }

  .widget-newsletter .item-content .form-box .form-group .item-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border: none;
      background-color: #e83a15;
      border-radius: 4px;
      font-weight: 500;
      color: #ffffff;
      padding: 15px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-newsletter .item-content .form-box .form-group .item-btn i {
      margin-left: 10px;
  }

  .widget-newsletter .item-content .form-box .form-group .item-btn:hover {
      background-color: #ffffff;
      color: #FF8326;
  }

  .widget-tag {
      border: 1px solid #e1e1e1;
      padding: 40px 40px;
      border-radius: 4px;
  }

  .widget-tag .tag-list li {
      display: inline-block;
      margin: 1px -1px;
  }

  .widget-tag .tag-list li a {
      font-size: 14px;
      display: block;
      background-color: #f0f0f0;
      color: #444444;
      padding: 6px 18px;
      border-radius: 4px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-tag .tag-list li a:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .widget-contact-form {
      border: 1px solid #e1e1e1;
      padding: 40px 40px;
      border-radius: 4px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-contact-form {
          padding: 30px;
      }
  }

  .widget-contact-form .contact-form-box .form-group {
      margin-bottom: 2px;
  }

  .widget-contact-form .contact-form-box .form-group .form-icon {
      position: absolute;
      top: 15px;
      left: 35px;
      color: #b3bcce;
  }

  .widget-contact-form .contact-form-box .form-group .form-control {
      font-size: 15px;
      color: #111111;
      padding-left: 50px;
      background-color: #eff2f8;
      border-radius: 0;
  }

  .widget-contact-form .contact-form-box .form-group .textarea.form-control {
      padding-top: 18px;
  }

  .widget-contact-form .contact-form-box .form-group input {
      height: 60px;
  }

  .widget-contact-form .contact-form-box .form-group .item-btn {
      margin-top: 6px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 500;
      width: 100%;
      background-color: #FF8326;
      border: none;
      color: #ffffff;
      padding: 12px 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-contact-form .contact-form-box .form-group .item-btn i {
      margin-left: 10px;
  }

  .widget-contact-form .contact-form-box .form-group .item-btn:focus {
      outline: none;
  }

  .widget-contact-form .contact-form-box .form-group .item-btn:hover {
      background-color: #e83a15;
  }

  .widget-contact-form .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .widget-contact-form .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #646464;
  }

  .widget-contact-form .contact-form-box .form-group input.form-control:-moz-placeholder,
  .widget-contact-form .contact-form-box .form-group textarea.form-control:-moz-placeholder {
      color: #646464;
  }

  .widget-contact-form .contact-form-box .form-group input.form-control:-ms-input-placeholder,
  .widget-contact-form .contact-form-box .form-group textarea.form-control:-ms-input-placeholder {
      color: #646464;
  }

  .widget-banner .item-img {
      background-color: #e83a15;
      border-radius: 4px;
      padding-top: 30px;
      text-align: center;
      position: relative;
      z-index: 2;
  }

  .widget-banner .item-img:after {
      content: url('img/figure/shape1.png');
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: -1;
  }

  .widget-banner .item-img .item-content {
      position: absolute;
      bottom: 50px;
      left: 0;
      right: 0;
      background-color: #ffffff;
      margin: 0 40px;
      padding: 20px 0;
      border-radius: 4px;
  }

  .widget-banner .item-img .item-content .item-number {
      font-size: 26px;
      font-weight: 700;
      color: #FF8326;
  }

  @media only screen and (max-width: 991px) {
      .widget-banner .item-img .item-content .item-number {
          font-size: 24px;
      }
  }

  @media only screen and (max-width: 767px) {
      .widget-banner .item-img .item-content .item-number {
          font-size: 22px;
      }
  }

  .widget-banner .item-img .item-content .item-number i:before {
      color: #e83a15;
      font-size: 24px;
      font-weight: 400;
  }

  @media only screen and (max-width: 991px) {
      .widget-banner .item-img .item-content .item-number i:before {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 767px) {
      .widget-banner .item-img .item-content .item-number i:before {
          font-size: 20px;
      }
  }

  .widget-banner .item-img .item-content p {
      margin-bottom: 0;
  }

  .widget-find-location {
      background-color: #f8f8f8;
      border-radius: 4px;
      padding-top: 45px;
      text-align: center;
  }

  .widget-find-location .item-title {
      font-weight: 700;
      font-size: 30px;
      line-height: 38px;
      margin-bottom: 30px;
  }

  .widget-find-location .item-title span {
      display: block;
  }

  @media only screen and (max-width: 1199px) {
      .widget-find-location .item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 991px) {
      .widget-find-location .item-title {
          font-size: 26px;
      }
  }

  @media only screen and (max-width: 767px) {
      .widget-find-location .item-title {
          font-size: 24px;
      }
  }

  .widget-find-location .location-search-box {
      margin: 0 40px;
  }

  .widget-find-location .location-search-box .stylish-input-group {
      height: 55px;
      border-radius: 4px;
      padding: 0;
      border: none;
      background-color: #ffffff;
      box-shadow: 0px 13px 18px 0px #dddddd;
  }

  .widget-find-location .location-search-box .stylish-input-group .form-control {
      border: none;
      box-shadow: none;
      border-radius: 4px;
      background: transparent;
      color: #111111;
      font-size: 16px;
      height: 55px;
      margin-right: 8px;
      padding: 10px 20px;
  }

  .widget-find-location .location-search-box .stylish-input-group .input-group-addon {
      display: flex;
      padding: 0;
      border: none;
      border-radius: 4px;
      background: none;
  }

  .widget-find-location .location-search-box .stylish-input-group .input-group-addon button {
      cursor: pointer;
      background: transparent;
      border: 0;
      padding: 0 20px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-find-location .location-search-box .stylish-input-group .input-group-addon button span {
      color: #bdbdbd;
      font-size: 22px;
      font-weight: 700;
      margin-left: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-find-location .location-search-box .stylish-input-group .input-group-addon button:focus {
      outline: none;
  }

  .widget-find-location .location-search-box .stylish-input-group .input-group-addon:hover button span {
      color: #e83a15;
  }

  .widget-find-location .location-search-box .stylish-input-group input {
      font-size: 16px;
      color: #FF8326;
  }

  .widget-find-location .location-search-box .stylish-input-group input.form-control::-webkit-input-placeholder,
  .widget-find-location .location-search-box .stylish-input-group textarea.form-control::-webkit-input-placeholder {
      color: #646464;
  }

  .widget-find-location .location-search-box .stylish-input-group input.form-control:-moz-placeholder,
  .widget-find-location .location-search-box .stylish-input-group textarea.form-control:-moz-placeholder {
      color: #646464;
  }

  .widget-find-location .location-search-box .stylish-input-group input.form-control:-ms-input-placeholder,
  .widget-find-location .location-search-box .stylish-input-group textarea.form-control:-ms-input-placeholder {
      color: #646464;
  }

  .widget-find-location .item-img img {
      border-radius: 0 0 4px 4px;
  }

  @media only screen and (max-width: 991px) {
      .widget-find-location .item-img img {
          width: 100%;
      }
  }

  .widget-testimonial .single-testimonial {
      text-align: center;
      background-color: #FF8326;
      position: relative;
      padding: 50px 35px 100px;
      border-radius: 4px;
      z-index: 2;
  }

  .widget-testimonial .single-testimonial:after {
      content: url('img/figure/shape2.png');
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: -1;
  }

  @media only screen and (max-width: 991px) {
      .widget-testimonial .single-testimonial:after {
          transform: scale(2);
      }
  }

  @media only screen and (max-width: 767px) {
      .widget-testimonial .single-testimonial:after {
          transform: scale(1.4);
      }
  }

  @media only screen and (max-width: 479px) {
      .widget-testimonial .single-testimonial:after {
          transform: scale(1);
      }
  }

  .widget-testimonial .single-testimonial .item-qoute {
      margin-bottom: 30px;
  }

  .widget-testimonial .single-testimonial .item-qoute img {
      display: inline-block;
      width: auto;
  }

  .widget-testimonial .single-testimonial p {
      color: #ffffff;
  }

  .widget-testimonial .single-testimonial .main-img {
      margin-bottom: 10px;
  }

  .widget-testimonial .single-testimonial .main-img img {
      display: inline-block;
      width: auto;
      border-radius: 50%;
  }

  .widget-testimonial .single-testimonial .item-rating {
      margin-bottom: 2px;
  }

  .widget-testimonial .single-testimonial .item-rating li {
      display: inline-block;
      color: #ffa000;
      margin-right: 2px;
  }

  .widget-testimonial .single-testimonial .item-rating li:last-child {
      margin-right: 0;
  }

  .widget-testimonial .single-testimonial .item-title {
      font-size: 18px;
      color: #ffffff;
      font-weight: 500;
  }

  .widget-service-info {
      border: 1px solid #e1e1e1;
      padding: 30px 40px 40px;
      border-radius: 4px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-service-info {
          padding: 30px 30px 40px;
      }
  }

  .widget-service-info .item-title {
      font-weight: 500;
      margin-bottom: 12px;
  }

  .widget-service-info .item-price {
      font-weight: 700;
      font-size: 40px;
      color: #FF8326;
      margin-bottom: 40px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-service-info .item-price {
          font-size: 38px;
      }
  }

  @media only screen and (max-width: 991px) {
      .widget-service-info .item-price {
          font-size: 36px;
      }
  }

  @media only screen and (max-width: 767px) {
      .widget-service-info .item-price {
          font-size: 34px;
      }
  }

  @media only screen and (max-width: 575px) {
      .widget-service-info .item-price {
          font-size: 30px;
      }
  }

  .widget-service-info .list-item ul li {
      font-weight: 500;
      color: #444444;
      background-color: #f0f0f0;
      border-radius: 4px;
      padding: 13px 20px;
      margin-bottom: 3px;
  }

  .widget-service-info .list-item ul li i {
      font-size: 18px;
      margin-right: 15px;
  }

  .widget-service-info .item-btn {
      background-color: #e83a15;
      color: #ffffff;
      border-radius: 4px;
      padding: 13px 20px;
      text-align: center;
      font-size: 15px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-service-info .item-btn i {
      margin-left: 14px;
      font-size: 18px;
  }

  @media only screen and (max-width: 575px) {
      .widget-service-info .item-btn {
          padding: 12px 15px;
      }
  }

  .widget-service-info .item-btn:hover {
      background-color: #FF8326;
  }

  .widget-archives {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 20px;
  }

  .widget-archives .archives-list ul li {
      border-bottom: 1px solid #dddddd;
  }

  .widget-archives .archives-list ul li:last-child {
      border-bottom: none;
  }

  .widget-archives .archives-list ul li a {
      position: relative;
      display: flex;
      justify-content: space-between;
      color: #444444;
      padding: 10px 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-archives .archives-list ul li a:hover {
      color: #e83a15;
      padding-left: 10px;
  }

  .widget-brand {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 30px;
  }

  .widget-brand .brand-list .form-check {
      position: relative;
      padding-left: 0;
      margin-bottom: 2px;
  }

  .widget-brand .brand-list .form-check label {
      display: inline-block;
      position: relative;
      padding-left: 28px;
      font-size: 16px;
  }

  .widget-brand .brand-list .form-check label:before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 17px;
      height: 17px;
      left: 0;
      top: 5px;
      border: 1px solid #efefef;
      border-radius: 4px;
      background-color: #efefef;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  }

  .widget-brand .brand-list .form-check label:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 4px;
      top: -1px;
      font-size: 10px;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"] {
      cursor: pointer;
      position: absolute;
      width: 20px;
      height: 20px;
      top: 1px;
      left: 12px;
      z-index: 1;
      opacity: 0;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"]:checked + label:after {
      font-family: 'Font Awesome 5 Free';
      content: "\f00c";
      font-weight: 600;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"]:disabled + label {
      opacity: 0.65;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"]:disabled + label:before {
      background-color: #eeeeee;
      cursor: not-allowed;
  }

  .widget-brand .brand-list .form-check label::before {
      border-radius: 4px;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"]:checked + label:before {
      border-color: #efefef;
  }

  .widget-brand .brand-list .form-check input[type="checkbox"]:checked + label:after {
      color: #FF8326;
  }

  .widget-price-filter {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 30px;
  }

  .widget-price-filter .price-range-wrapper {
      text-align: left;
      padding-top: 20px;
  }

  .widget-price-filter .price-range-wrapper:after {
      clear: both;
      display: block;
      content: "";
  }

  .widget-price-filter .price-range-wrapper .price-filter-wrap {
      margin-top: 15px;
  }

  .widget-price-filter .price-range-wrapper .price-filter-wrap .price-range-select {
      text-align: center;
  }

  .widget-price-filter .price-range-wrapper .price-filter-wrap .price-range-select:after {
      clear: both;
      display: block;
      content: "";
  }

  .widget-price-filter .price-range-wrapper .price-filter-wrap .price-range-select .price-range {
      display: inline-block;
      margin: 0;
      color: #646464;
      font-size: 16px;
      font-weight: 500;
      min-width: 50px;
      margin-right: 30px;
  }

  .widget-price-filter .price-range-wrapper .price-filter-wrap .price-range-select .price-range:last-child {
      margin-right: 0;
  }

  .widget-price-filter .price-range-wrapper .noUi-connect {
      background: linear-gradient(to right, #3f44ae, #FF8326);
      box-shadow: none;
  }

  .widget-price-filter .price-range-wrapper .noUi-horizontal {
      height: 12px;
  }

  .widget-price-filter .price-range-wrapper .noUi-target {
      border-radius: 30px;
      box-shadow: none;
      background-color: #efefef;
      border: 0;
      box-shadow: inset 0px 1px 2px 0px rgba(218, 218, 218, 0.75);
  }

  .widget-price-filter .price-range-wrapper .noUi-horizontal .noUi-handle {
      top: -5px;
      background: #e83a15;
      border: none;
      box-shadow: none;
      clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
      width: 18px;
      height: 25px;
  }

  .widget-price-filter .price-range-wrapper .noUi-handle::before {
      display: none;
  }

  .widget-price-filter .price-range-wrapper .noUi-handle::after {
      content: url('img/figure/clip13.png');
      position: absolute;
      top: 0;
      left: -8px;
      background: none;
  }

  .widget-best-sell {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 40px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-best-sell {
          padding: 35px 30px 40px;
      }
  }

  .widget-best-sell .product-list .media {
      margin-bottom: 20px;
  }

  .widget-best-sell .product-list .media:last-child {
      margin-bottom: 0;
  }

  .widget-best-sell .product-list .media .item-img {
      background-color: #eff2f8;
      padding: 8px 12px;
      border-radius: 4px;
      width: 50%;
  }

  .widget-best-sell .product-list .media .item-img img {
      transform: scale(1);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-best-sell .product-list .media .media-body .item-title {
      font-weight: 500;
      margin-bottom: 5px;
  }

  .widget-best-sell .product-list .media .media-body .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .widget-best-sell .product-list .media .media-body .item-title a:hover {
      color: #e83a15;
  }

  .widget-best-sell .product-list .media .media-body .item-rating li {
      display: inline-block;
      font-size: 12px;
      color: #ff8f00;
  }

  .widget-best-sell .product-list .media .media-body .item-rating .reviwe-title {
      font-size: 13px;
      color: #646464;
      margin-left: 5px;
  }

  .widget-best-sell .product-list .media .media-body .item-price {
      font-size: 18px;
      color: #e83a15;
  }

  .widget-best-sell .product-list .media:hover .item-img img {
      transform: scale(1.1);
  }

  .widget-product-calculate {
      border: 1px solid #e1e1e1;
      border-radius: 4px;
      padding: 35px 40px 40px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-product-calculate {
          padding: 35px 30px 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .widget-product-calculate {
          padding: 35px 25px 40px;
      }
  }

  .widget-product-calculate .list-item {
      margin-bottom: 35px;
  }

  .widget-product-calculate .list-item ul li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 15px;
      font-weight: 500;
      color: #444444;
      border-bottom: 1px solid #e1e1e1;
      padding-bottom: 20px;
      margin-bottom: 15px;
  }

  .widget-product-calculate .list-item ul li:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
  }

  .widget-product-calculate .list-item ul li span {
      font-weight: 400;
  }

  .widget-product-calculate .list-item ul li span .form-control {
      height: 65px;
      font-size: 13px;
      border: none;
      text-align: right;
  }

  .widget-product-calculate .list-item ul li span .form-control:focus {
      outline: none;
      box-shadow: none;
  }

  .widget-product-policy ul li {
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      background-color: #eff2f7;
      border-radius: 4px;
      padding: 30px;
  }

  .widget-product-policy ul li .item-sl {
      text-align: center;
      height: 60px;
      width: 60px;
      line-height: 60px;
      background-color: #ffffff;
      border-radius: 50%;
      font-size: 20px;
      font-weight: 700;
      color: #FF8326;
      margin-right: 20px;
  }

  @media only screen and (max-width: 1199px) {
      .widget-product-policy ul li .item-sl {
          height: 50px;
          width: 50px;
          line-height: 50px;
          font-size: 16px;
      }
  }

  .widget-product-policy ul li .item-paragraph {
      color: #444444;
      flex: 1;
      line-height: 26px;
  }

  .widget-product-policy ul li:last-child {
      margin-bottom: 0;
  }

  .widget-product-policy ul li.active {
      background-color: #FF8326;
  }

  .widget-product-policy ul li.active .item-paragraph {
      color: #ffffff;
  }

  /*=======================================================================
5. Template Page Style
=========================================================================*/
  /*------------------- 5.1 About Us -------------------*/
  .about-wrap-layout1 {
      padding: 40px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .about-wrap-layout1 {
          padding: 82px 0 114px;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-wrap-layout1 {
          padding: 72px 0 104px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-wrap-layout1 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-wrap-layout1 {
          padding: 52px 0 30px;
      }
  }

  .about-wrap-layout2 {
      padding: 100px 0 90px;
  }

  @media only screen and (max-width: 1199px) {
      .about-wrap-layout2 {
          padding: 90px 0 80px;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-wrap-layout2 {
          padding: 80px 0 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-wrap-layout2 {
          padding: 70px 0 60px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-wrap-layout2 {
          padding: 60px 0 50px;
      }
  }

  .about-wrap-layout4 {
      background-color: #f8f8f8;
      padding-bottom: 100px;
  }

  @media only screen and (max-width: 1199px) {
      .about-wrap-layout4 {
          padding-bottom: 90px;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-wrap-layout4 {
          padding-bottom: 80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-wrap-layout4 {
          padding-bottom: 70px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-wrap-layout4 {
          padding-bottom: 60px;
      }
  }

  .about-wrap-layout5 {
      padding: 92px 0 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
  }

  .about-wrap-layout5:before {
      content: url('img/figure/section-bg8.png');
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
  }

  .about-wrap-layout5:after {
      content: url('img/figure/section-bg7.png');
      position: absolute;
      bottom: 0;
      right: 0;
      line-height: 0;
      z-index: -1;
  }

  @media only screen and (max-width: 991px) {
      .about-wrap-layout5 {
          padding: 9.5rem 0 0;
      }
  }

  .about-wrap-layout6 {
      padding: 100px 0 70px;
  }

  .about-box-layout1 {
      padding-right: 50px;
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout1 {
          padding-right: 0;
          padding-top: 0;
          text-align: center;
          margin-bottom: 50px;
      }
  }

  .about-box-layout1 .item-subtitle {
      font-size: 18px;
      color: #e83a15;
      font-weight: 500;
      margin-bottom: 8px;
  }

  .about-box-layout1 .item-title {
      font-weight: 700;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout1 .item-title {
          width: 70%;
          margin-left: auto;
          margin-right: auto;
      }
  }

  .about-box-layout1 .action-area {
      margin-top: 30px;
      background-color: #f8f8f8;
      display: inline-block;
      padding: 16px 25px;
      border-radius: 60px;
  }

  .about-box-layout1 .action-area .media {
      align-items: center;
  }

  .about-box-layout1 .action-area .media .item-icon {
      text-align: center;
      height: 55px;
      width: 55px;
      line-height: 55px;
      background-color: #e83a15;
      border-radius: 50%;
      margin: 0 auto;
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout1 .action-area .media .item-icon {
          height: 40px;
          width: 40px;
          line-height: 40px;
      }
  }

  .about-box-layout1 .action-area .media .item-icon i:before {
      font-size: 24px;
      color: #ffffff;
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout1 .action-area .media .item-icon i:before {
          font-size: 20px;
      }
  }

  .about-box-layout1 .action-area .media .media-body .action-title {
      color: #444444;
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout1 .action-area .media .media-body .action-title {
          font-size: 14px;
      }
  }

  .about-box-layout1 .action-area .media .media-body .item-number {
      font-size: 24px;
      color: #FF8326;
      font-weight: 700;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout1 .action-area .media .media-body .item-number {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout1 .action-area .media .media-body .item-number {
          font-size: 26px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout1 .action-area .media .media-body .item-number {
          font-size: 24px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout1 .action-area .media .media-body .item-number {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout1 .action-area .media .media-body .item-number {
          font-size: 18px;
      }
  }

  .about-box-layout2 {
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout2 {
          text-align: center;
      }
  }

  .about-box-layout2 .item-img {
      position: relative;
      z-index: 1;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout2 .item-img {
          display: inline-block;
      }
  }

  .about-box-layout2 .item-img .main-img {
      position: relative;
      z-index: 1;
      text-align: right;
  }

  .about-box-layout2 .item-img .main-img img {
      border-radius: 4px;
      width: 100%;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout2 .item-img .main-img {
          right: -70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout2 .item-img .main-img {
          right: inherit;
      }
  }

  .about-box-layout2 .item-img .sub-img {
      position: absolute;
      z-index: 3;
      left: 0;
      bottom: -65px;
      border: 10px solid #ffffff;
      border-radius: 4px;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout2 .item-img .sub-img {
          left: -80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout2 .item-img .sub-img {
          display: none;
      }
  }

  .about-box-layout3 {
      padding-right: 50px;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout3 {
          padding-right: 0;
          margin-bottom: 40px;
      }
  }

  .about-box-layout3 .item-subtitle {
      font-size: 18px;
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 8px;
  }

  .about-box-layout3 .item-title {
      font-weight: 900;
      margin-bottom: 25px;
  }

  .about-box-layout3 .features-list {
      margin-top: 24px;
  }

  .about-box-layout3 .features-list ul li {
      position: relative;
      font-size: 17px;
      color: #444444;
      font-weight: 500;
      margin-bottom: 6px;
      padding-left: 34px;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout3 .features-list ul li {
          font-size: 16px;
      }
  }

  .about-box-layout3 .features-list ul li:last-child {
      margin-bottom: 0;
  }

  .about-box-layout3 .features-list ul li:after {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-size: 17px;
      font-weight: 600;
      color: #e83a15;
      position: absolute;
      left: 0;
      top: 0;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout4 {
          text-align: center;
      }
  }

  .about-box-layout4 .item-img {
      position: relative;
  }

  .about-box-layout4 .item-img img {
      border-radius: 4px;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout4 .item-img img {
          width: 100%;
      }
  }

  .about-box-layout4 .item-img .item-icon {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
  }

  .about-box-layout4 .item-img .item-icon .play-btn {
      display: inline-block;
      height: 80px;
      width: 80px;
      line-height: 80px;
      border-radius: 50%;
      background-color: #e83a15;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout4 .item-img .item-icon .play-btn {
          height: 70px;
          width: 70px;
          line-height: 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout4 .item-img .item-icon .play-btn {
          height: 60px;
          width: 60px;
          line-height: 60px;
      }
  }

  .about-box-layout4 .item-img .item-icon .play-btn i:before {
      font-size: 28px;
      color: #ffffff;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout4 .item-img .item-icon .play-btn i:before {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout4 .item-img .item-icon .play-btn i:before {
          font-size: 26px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout4 .item-img .item-icon .play-btn i:before {
          font-size: 22px;
      }
  }

  .about-box-layout4 .item-img .item-icon .play-btn:hover {
      background-color: #ffffff;
  }

  .about-box-layout4 .item-img .item-icon .play-btn:hover i:before {
      color: #FF8326;
  }

  .about-box-layout4 .item-img:before {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 4px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
  }

  .about-box-layout4 .item-img:after {
      content: url('img/figure/shape3.png');
      position: absolute;
      bottom: -50px;
      left: -50px;
      opacity: 0.5;
      z-index: -1;
  }

  .about-box-layout6 {
      padding-top: 92px;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout6 {
          padding-top: 82px;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout6 {
          margin-bottom: 30px;
          padding-top: 72px;
      }
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout6 {
          padding-top: 62px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout6 {
          padding-top: 52px;
      }
  }

  .about-box-layout6 .item-subtitle {
      font-size: 18px;
      color: #e83a15;
      font-weight: 500;
      margin-bottom: 8px;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout6 .item-subtitle {
          font-size: 18px;
      }
  }

  .about-box-layout6 .item-title {
      font-weight: 900;
      margin-bottom: 25px;
      width: 60%;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout6 .item-title {
          width: 80%;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout6 .item-title {
          width: 100%;
      }
  }

  .about-box-layout6 .item-certified {
      margin-top: 35px;
  }

  .about-box-layout6 .item-certified .certifed-title {
      color: #646464;
      margin-bottom: 15px;
  }

  .about-box-layout6 .item-certified .item-img ul {
      display: flex;
  }

  .about-box-layout6 .item-certified .item-img ul li {
      display: inline-block;
      margin-right: 25px;
  }

  .about-box-layout6 .item-certified .item-img ul li a {
      display: block;
      padding: 20px 20px;
      background-color: #ffffff;
      border-radius: 4px;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout6 .item-certified .item-img ul li a {
          padding: 15px 10px;
      }
  }

  .about-box-layout6 .item-certified .item-img ul li:last-child {
      margin-right: 0;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout6 .item-certified .item-img ul li {
          margin-right: 10px;
      }
  }

  .about-box-layout7 {
      transform: translateY(-90px);
      margin-bottom: -90px;
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout7 {
          transform: translateY(0);
          margin-bottom: 0;
      }
  }

  .about-box-layout7 .title-heading {
      display: flex;
      align-items: center;
      background-color: #e83a15;
      padding: 20px 35px;
      border-radius: 4px 4px 0 0;
  }

  .about-box-layout7 .title-heading .item-icon {
      position: relative;
      font-size: 36px;
      color: #ffffff;
      margin-right: 45px;
  }

  .about-box-layout7 .title-heading .item-icon:after {
      content: "";
      height: 30px;
      width: 2px;
      background-color: #ffffff;
      position: absolute;
      top: 50%;
      right: -23px;
      transform: translateY(-50%);
  }

  .about-box-layout7 .title-heading .item-content .item-subtitle {
      color: #cccccc;
      line-height: 20px;
  }

  .about-box-layout7 .title-heading .item-content .item-title {
      color: #ffffff;
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 0;
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout7 .title-heading .item-content .item-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout7 .title-heading .item-content .item-title {
          font-size: 20px;
      }
  }

  .about-box-layout7 .contact-form-box {
      background-color: #ffffff;
      box-shadow: 0px 1px 27px 0px rgba(0, 0, 0, 0.06);
      padding: 18px 40px 40px;
      border-radius: 0 0 4px 4px;
  }

  .about-box-layout7 .contact-form-box .form-group {
      margin-bottom: 0;
  }

  .about-box-layout7 .contact-form-box .form-group .form-control {
      background-color: transparent;
      border-bottom: 2px solid #eeeeee;
      font-size: 14px;
      padding: 10px 0;
  }

  .about-box-layout7 .contact-form-box .form-group input {
      height: 60px;
  }

  .about-box-layout7 .contact-form-box .form-group .item-btn {
      margin-top: 35px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      font-weight: 500;
      font-size: 15px;
      color: #ffffff;
      background-color: #e83a15;
      border: none;
      width: 100%;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .about-box-layout7 .contact-form-box .form-group .item-btn i {
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .about-box-layout7 .contact-form-box .form-group .item-btn:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .about-box-layout7 .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .about-box-layout7 .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #9a9a9a;
  }

  .about-box-layout7 .contact-form-box .form-group input.form-control:-moz-placeholder,
  .about-box-layout7 .contact-form-box .form-group textarea.form-control:-moz-placeholder {
      color: #9a9a9a;
  }

  .about-box-layout7 .contact-form-box .form-group input.form-control:-ms-input-placeholder,
  .about-box-layout7 .contact-form-box .form-group textarea.form-control:-ms-input-placeholder {
      color: #9a9a9a;
  }

  .about-box-layout7 .contact-form-box .datetime-picker i {
      color: #a5a5a5;
  }

  .about-box-layout8 {
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
  }

  .about-box-layout9 {
      padding: 0 50px 100px 40px;
  }

  @media only screen and (max-width: 1199px) {
      .about-box-layout9 {
          padding: 0;
      }
  }

  @media only screen and (max-width: 991px) {
      .about-box-layout9 {
          text-align: center;
          margin-bottom: 50px;
      }
  }

  .about-box-layout9 .item-subtitle {
      font-size: 18px;
      color: #e83a15;
      font-weight: 500;
      margin-bottom: 8px;
  }

  .about-box-layout9 .item-title {
      font-weight: 900;
  }

  .about-box-layout9 .action-area {
      margin-top: 30px;
      background-color: #f8f8f8;
      display: inline-block;
      padding: 16px 25px;
      border-radius: 60px;
  }

  .about-box-layout9 .action-area .media {
      align-items: center;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout9 .action-area .media {
          text-align: center;
      }
  }

  .about-box-layout9 .action-area .media .item-icon {
      text-align: center;
      height: 55px;
      width: 55px;
      line-height: 55px;
      background-color: #e83a15;
      border-radius: 50%;
      margin: 0 auto;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout9 .action-area .media .item-icon {
          height: 40px;
          width: 40px;
          line-height: 40px;
      }
  }

  .about-box-layout9 .action-area .media .item-icon i:before {
      font-size: 24px;
      color: #ffffff;
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout9 .action-area .media .item-icon i:before {
          font-size: 20px;
      }
  }

  .about-box-layout9 .action-area .media .media-body .action-title {
      color: #444444;
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout9 .action-area .media .media-body .action-title {
          font-size: 14px;
      }
  }

  .about-box-layout9 .action-area .media .media-body .item-number {
      font-size: 24px;
      color: #FF8326;
      font-weight: 700;
  }

  @media only screen and (max-width: 767px) {
      .about-box-layout9 .action-area .media .media-body .item-number {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .about-box-layout9 .action-area .media .media-body .item-number {
          font-size: 20px;
      }
  }

  @media only screen and (max-width: 479px) {
      .about-box-layout9 .action-area .media .media-body .item-number {
          font-size: 18px;
      }
  }

  /*------------------- 5.2 Blog -------------------*/
  .blog-wrap-layout1 {
      padding: 92px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .blog-wrap-layout1 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .blog-wrap-layout1 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .blog-wrap-layout1 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .blog-wrap-layout1 {
          padding: 52px 0 30px;
      }
  }

  .blog-box-layout1 {
      margin-bottom: 30px;
  }

  .blog-box-layout1 .post-img {
      position: relative;
      margin-bottom: 20px;
      border-radius: 4px;
      overflow: hidden;
  }

  .blog-box-layout1 .post-img a {
      display: block;
  }

  .blog-box-layout1 .post-img a img {
      border-radius: 4px;
      transform: scale(1);
      transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  }

  .blog-box-layout1 .post-img .post-date {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background-color: #e83a15;
      padding: 10px 10px 4px;
      border-radius: 4px;
      text-align: center;
  }

  .blog-box-layout1 .post-img .post-date .item-day {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      line-height: 20px;
  }

  .blog-box-layout1 .post-img .post-date .item-month {
      font-size: 15px;
      color: #ffffff;
  }

  .blog-box-layout1 .post-content .post-date {
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 10px;
  }

  .blog-box-layout1 .post-content .post-category {
      color: #e83a15;
      margin-bottom: 10px;
  }

  .blog-box-layout1 .post-content .post-title {
      font-weight: 700;
      margin-bottom: 12px;
      font-size: 24px;
  }

  @media only screen and (max-width: 991px) {
      .blog-box-layout1 .post-content .post-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .blog-box-layout1 .post-content .post-title {
          font-size: 20px;
      }
  }

  .blog-box-layout1 .post-content .post-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .blog-box-layout1 .post-content .post-title a:hover {
      color: #e83a15;
  }

  .blog-box-layout1 .post-content .entry-meta ul li {
      display: inline-block;
      font-size: 15px;
      margin-right: 30px;
      margin-bottom: 10px;
      font-weight: 500;
  }

  .blog-box-layout1 .post-content .entry-meta ul li:last-child {
      margin-right: 0;
  }

  .blog-box-layout1 .post-content .entry-meta ul li i {
      color: #e83a15;
      margin-right: 10px;
  }

  .blog-box-layout1 .post-content .entry-meta ul li a {
      font-weight: 400;
      color: #092d4c;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .blog-box-layout1 .post-content .entry-meta ul li a:hover {
      color: #e83a15;
  }

  .blog-box-layout1:hover .post-img a img {
      transform: scale(1.1);
  }

  .single-blog-box-layout1 .main-img {
      margin-bottom: 22px;
  }

  .single-blog-box-layout1 .main-img img {
      border-radius: 4px;
  }

  .single-blog-box-layout1 .item-details {
      margin-bottom: 35px;
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .item-details {
          text-align: center;
      }
  }

  .single-blog-box-layout1 .item-details .item-date {
      font-size: 15px;
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 10px;
  }

  .single-blog-box-layout1 .item-details .item-title {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 25px;
  }

  @media only screen and (max-width: 1199px) {
      .single-blog-box-layout1 .item-details .item-title {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 991px) {
      .single-blog-box-layout1 .item-details .item-title {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-blog-box-layout1 .item-details .item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .item-details .item-title {
          font-size: 26px;
          margin-bottom: 15px;
      }
  }

  .single-blog-box-layout1 .item-details .post-meta-info {
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e7e7e7;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .item-details .post-meta-info {
          display: block;
      }
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li {
      display: inline-block;
      margin-right: 50px;
      font-size: 15px;
      margin-bottom: 15px;
      position: relative;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li span {
      color: #444444;
      font-weight: 500;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li a {
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li i {
      color: #e83a15;
      margin-right: 10px;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li:last-child {
      margin-right: 0;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li:last-child:after {
      display: none;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta li:after {
      content: "/";
      font-size: 16px;
      color: #646464;
      position: absolute;
      top: 50%;
      right: -30px;
      transform: translateY(-50%);
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta .item-author img {
      border-radius: 50%;
      margin-right: 10px;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta .item-author a {
      color: #444444;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .entry-meta .item-author a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .item-social {
      margin-bottom: 15px;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .item-social li {
      display: inline-block;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .item-social li:last-child a {
      padding-right: 0;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .item-social li a {
      color: #a7a7a7;
      padding: 5px 6px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .item-details .post-meta-info .item-social li a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .item-details blockquote {
      position: relative;
      background-color: #f8f8f8;
      border-radius: 4px;
      padding: 40px 60px 45px;
      color: #092d4c;
      font-size: 22px;
      font-style: italic;
      line-height: 1.7;
      margin: 35px 40px;
      z-index: 2;
  }

  @media only screen and (max-width: 767px) {
      .single-blog-box-layout1 .item-details blockquote {
          font-size: 20px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .item-details blockquote {
          margin: 0 0 15px;
          padding: 30px;
          font-size: 18px;
      }
  }

  .single-blog-box-layout1 .item-details blockquote .post-author {
      font-size: 18px;
      font-weight: 500;
      color: #FF8326;
      font-style: normal;
      position: relative;
      padding-left: 34px;
      margin-top: 15px;
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .item-details blockquote .post-author {
          display: flex;
      }
  }

  .single-blog-box-layout1 .item-details blockquote .post-author:after {
      content: "";
      height: 2px;
      width: 23px;
      background-color: #3285f9;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
  }

  .single-blog-box-layout1 .item-details blockquote:after {
      content: "\f10d";
      font-family: "Font Awesome 5 Free";
      font-size: 100px;
      color: #efeeee;
      font-weight: 600;
      position: absolute;
      bottom: -5px;
      right: 40px;
      line-height: 1;
      z-index: -1;
  }

  .single-blog-box-layout1 .blog-social-area {
      margin-bottom: 45px;
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .blog-social-area {
          text-align: center;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .blog-social-area .single-post-tag {
          margin-bottom: 15px;
      }
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-title {
      font-weight: 600;
      margin-bottom: 10px;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li {
      display: inline-block;
      margin-right: 25px;
      position: relative;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li:after {
      content: "/";
      font-size: 16px;
      color: #646464;
      position: absolute;
      top: 50%;
      right: -18px;
      transform: translateY(-50%);
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li:last-child {
      margin-right: 0;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li:last-child:after {
      display: none;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li a {
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-tag .item-tag ul li a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social .item-title {
      font-weight: 600;
      margin-bottom: 4px;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social ul li {
      display: inline-block;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social ul li:first-child a {
      padding-left: 0;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social ul li:last-child a {
      padding-right: 0;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social ul li a {
      display: block;
      padding: 5px 7px;
      color: #a7a7a7;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .blog-social-area .single-post-social ul li a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .blog-author {
      background-color: #f8f8f8;
      padding: 50px 40px 22px 65px;
      border-radius: 4px;
      margin-bottom: 50px;
  }

  @media only screen and (max-width: 767px) {
      .single-blog-box-layout1 .blog-author {
          padding: 50px 20px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-blog-box-layout1 .blog-author .media {
          text-align: center;
      }
  }

  .single-blog-box-layout1 .blog-author .media .item-img img {
      border-radius: 50%;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-title {
      font-weight: 600;
      color: #111111;
      margin-bottom: 4px;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-subtitle {
      color: #e83a15;
      margin-bottom: 4px;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-social {
      margin-bottom: 10px;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-social li {
      display: inline-block;
      margin-right: 10px;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-social li a {
      text-align: center;
      display: block;
      color: #8e8e8e;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .blog-author .media .media-body .item-social li a:hover {
      color: #e83a15;
  }

  .single-blog-box-layout1 .blog-comment {
      margin-bottom: 40px;
      border: 1px solid #dddddd;
      border-radius: 4px;
      padding: 35px 40px 30px;
  }

  @media only screen and (max-width: 479px) {
      .single-blog-box-layout1 .blog-comment {
          padding: 20px;
      }
  }

  .single-blog-box-layout1 .blog-comment .media {
      position: relative;
      margin-bottom: 20px;
  }

  .single-blog-box-layout1 .blog-comment .media:last-child {
      margin-bottom: 0;
  }

  .single-blog-box-layout1 .blog-comment .media:nth-child(odd) {
      padding-left: 30px;
  }

  .single-blog-box-layout1 .blog-comment .media .item-img {
      margin-top: 6px;
  }

  .single-blog-box-layout1 .blog-comment .media .item-img img {
      border-radius: 50%;
  }

  .single-blog-box-layout1 .blog-comment .media .media-body .item-title {
      margin-bottom: 10px;
      font-weight: 600;
  }

  .single-blog-box-layout1 .blog-comment .media .media-body .item-date {
      font-size: 14px;
      color: #e83a15;
      font-weight: 500;
  }

  .single-blog-box-layout1 .blog-comment .media .media-body .item-btn {
      position: absolute;
      top: 0;
      right: 0;
      color: #646464;
      padding: 5px;
      display: flex;
      align-items: center;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .blog-comment .media .media-body .item-btn i {
      font-size: 14px;
      color: #e83a15;
      font-weight: 600;
      margin-left: 8px;
  }

  .single-blog-box-layout1 .blog-comment .media .media-body .item-btn:hover {
      color: #e83a15;
  }

  @media only screen and (max-width: 575px) {
      .single-blog-box-layout1 .blog-comment .media {
          text-align: center;
          margin-bottom: 30px;
      }

      .single-blog-box-layout1 .blog-comment .media:nth-child(odd) {
          padding-left: 0;
      }

      .single-blog-box-layout1 .blog-comment .media .media-body .item-btn {
          position: relative;
          display: inline-block;
      }
  }

  .single-blog-box-layout1 .blog-form {
      border: 1px solid #dddddd;
      border-radius: 4px;
      padding: 35px 40px 40px;
  }

  @media only screen and (max-width: 479px) {
      .single-blog-box-layout1 .blog-form {
          padding: 20px;
      }
  }

  .single-blog-box-layout1 .blog-form .blog-form-title h3 {
      font-weight: 600;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group {
      margin-bottom: 20px;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group:last-child {
      margin-bottom: 0;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .form-control {
      border: none;
      background-color: #f1f1f1;
      padding: 10px 22px;
      font-size: 16px;
      color: #111111;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .form-control:focus {
      box-shadow: none;
      border: none;
      outline: none;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group input {
      height: 50px;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .single-blog-box-layout1 .blog-form .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #646464;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group input.form-control:-moz-placeholder,
  .single-blog-box-layout1 .blog-form .contact-form-box .form-group textarea.form-control:-moz-placeholder {
      color: #646464;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group input.form-control:-ms-input-placeholder,
  .single-blog-box-layout1 .blog-form .contact-form-box .form-group textarea.form-control:-ms-input-placeholder {
      color: #646464;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .item-btn {
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      padding: 10px 30px;
      font-weight: 500;
      letter-spacing: 0.5px;
      background-color: #e83a15;
      color: #ffffff;
      border: none;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .item-btn i {
      margin-left: 10px;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .item-btn:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .single-blog-box-layout1 .blog-form .contact-form-box .form-group .item-btn:hover i {
      color: #ffffff;
  }

  .single-blog-box-layout1 .content-center-box {
      background-color: #ffffff;
      border-radius: 4px 4px 0 0;
      margin: 0 40px;
      padding: 60px 70px 0;
      transform: translateY(-70px);
      margin-bottom: -70px;
      position: relative;
      z-index: 2;
  }

  @media only screen and (max-width: 1199px) {
      .single-blog-box-layout1 .content-center-box {
          border-radius: 0;
          padding: 0;
          margin: 0;
          transform: translateY(0);
      }
  }

  .single-blog-box-layout1 .content-center-box:before {
      content: "";
      width: 0;
      height: 0;
      border-top: 80px solid #e1e1e1;
      border-left: 15px solid transparent;
      border-right: 0px solid transparent;
      position: absolute;
      top: 48px;
      left: -15px;
      z-index: -1;
  }

  @media only screen and (max-width: 1199px) {
      .single-blog-box-layout1 .content-center-box:before {
          display: none;
      }
  }

  .single-blog-box-layout1 .content-center-box:after {
      content: "";
      width: 0;
      height: 0;
      border-top: 80px solid #e1e1e1;
      border-left: 0px solid transparent;
      border-right: 15px solid transparent;
      position: absolute;
      top: 48px;
      right: -15px;
      z-index: -1;
  }

  @media only screen and (max-width: 1199px) {
      .single-blog-box-layout1 .content-center-box:after {
          display: none;
      }
  }

  @media only screen and (max-width: 991px) {
      .single-blog-box-layout1 .content-center-box .post-meta-info {
          display: block;
          text-align: center;
      }
  }

  .blog-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  /*------------------- 5.3 Brand -------------------*/
  @media only screen and (max-width: 991px) {
      .brand-wrap-layout1 {
          padding-top: 80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .brand-wrap-layout1 {
          padding-top: 70px;
      }
  }

  @media only screen and (max-width: 575px) {
      .brand-wrap-layout1 {
          padding-top: 60px;
      }
  }

  .brand-wrap-layout2 {
      padding-bottom: 100px;
  }

  @media only screen and (max-width: 1199px) {
      .brand-wrap-layout2 {
          padding-bottom: 90px;
      }
  }

  @media only screen and (max-width: 991px) {
      .brand-wrap-layout2 {
          padding-bottom: 80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .brand-wrap-layout2 {
          padding-bottom: 70px;
      }
  }

  @media only screen and (max-width: 575px) {
      .brand-wrap-layout2 {
          padding-bottom: 60px;
      }
  }

  .brand-wrap-layout3 {
      background-color: #f8f8f8;
      padding: 70px 0;
  }

  .brand-box-layout1 {
      text-align: center;
      background-color: #f8f8f8;
      border-radius: 4px;
      padding: 40px 10px;
      transform: translateY(-74px);
      margin-bottom: -74px;
  }

  @media only screen and (max-width: 991px) {
      .brand-box-layout1 {
          transform: translateY(0);
          margin-bottom: 0;
      }
  }

  .brand-box-layout1 .item-img img {
      filter: grayscale(0);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .brand-box-layout1:hover .item-img img {
      filter: grayscale(100%);
  }

  .brand-box-layout2 {
      text-align: center;
      background-color: #f8f8f8;
      border-radius: 4px;
      padding: 40px 10px;
      cursor: move;
  }

  .brand-box-layout2 .item-img img {
      display: inline-block;
      width: auto;
      filter: grayscale(0);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .brand-box-layout2:hover .item-img img {
      filter: grayscale(100%);
  }

  /*------------------- 5.4 Call To Action -------------------*/
  .action-wrap-layout1 {
      background-color: #FF8326;
      padding: 60px 0;
  }

  @media only screen and (max-width: 991px) {
      .action-wrap-layout1 {
          padding: 50px 0;
      }
  }

  .action-wrap-layout3 {
      background-color: #e83a15;
      padding: 65px 0;
  }

  @media only screen and (max-width: 991px) {
      .action-wrap-layout3 {
          padding: 55px 0;
      }
  }

  .action-box-layout1 {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout1 {
          flex-direction: column;
      }
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout1 {
          display: block;
      }
  }

  .action-box-layout1 .item-content {
      display: flex;
      align-items: center;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout1 .item-content {
          justify-content: center;
          margin-bottom: 30px;
      }
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout1 .item-content {
          display: block;
          text-align: center;
      }
  }

  .action-box-layout1 .item-content .item-icon {
      margin-right: 20px;
      text-align: center;
      height: 60px;
      width: 60px;
      line-height: 60px;
      background-color: #e83a15;
      border-radius: 50%;
  }

  .action-box-layout1 .item-content .item-icon i:before {
      font-size: 26px;
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout1 .item-content .item-icon {
          margin: 0 auto 20px;
      }
  }

  .action-box-layout1 .item-content .item-title {
      color: #ffffff;
      font-weight: 700;
      margin-bottom: 0;
      flex: 1;
  }

  .action-box-layout1 .item-content .item-title span {
      font-weight: 300;
  }

  @media only screen and (max-width: 767px) {
      .action-box-layout1 .item-content .item-title span {
          display: block;
      }
  }

  .action-box-layout1 .item-btn {
      margin-left: 40px;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout1 .item-btn {
          text-align: center;
          margin-left: 0;
      }
  }

  .action-box-layout2 {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout2 {
          flex-direction: column;
      }
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout2 {
          display: block;
      }
  }

  .action-box-layout2 .item-content {
      display: flex;
      align-items: center;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout2 .item-content {
          justify-content: center;
          margin-bottom: 30px;
      }
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout2 .item-content {
          display: block;
          text-align: center;
      }
  }

  .action-box-layout2 .item-content .item-icon {
      margin-right: 20px;
      text-align: center;
      height: 60px;
      width: 60px;
      line-height: 60px;
      background-color: #3d407e;
      border-radius: 50%;
  }

  .action-box-layout2 .item-content .item-icon i:before {
      font-size: 26px;
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .action-box-layout2 .item-content .item-icon {
          margin: 0 auto 20px;
      }
  }

  .action-box-layout2 .item-content .item-title {
      color: #ffffff;
      font-weight: 700;
      margin-bottom: 0;
      flex: 1;
  }

  .action-box-layout2 .item-content .item-title span {
      font-weight: 400;
  }

  @media only screen and (max-width: 767px) {
      .action-box-layout2 .item-content .item-title span {
          display: block;
      }
  }

  .action-box-layout2 .item-btn {
      margin-left: 40px;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout2 .item-btn {
          text-align: center;
          margin-left: 0;
      }
  }

  .action-box-layout3 {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout3 {
          display: block;
          text-align: center;
      }
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout3 .item-content {
          margin-bottom: 30px;
      }
  }

  .action-box-layout3 .item-content .item-title {
      color: #ffffff;
      font-weight: 500;
      margin-bottom: 0;
  }

  .action-box-layout3 .item-btn {
      margin-left: 40px;
  }

  @media only screen and (max-width: 1199px) {
      .action-box-layout3 .item-btn {
          margin-left: 0;
      }
  }

  /*------------------- 5.5 Coming Soon -------------------*/
  .comingsoon-page {
      text-align: center;
      width: 100%;
      height: 100%;
      position: fixed;
  }

  @media only screen and (max-width: 991px) {
      .comingsoon-page {
          overflow-y: scroll;
      }
  }

  .comingsoon-page .comingsoon-bg {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      z-index: -100;
  }

  .comingsoon-page .comingsoon-back-img {
      position: relative;
      height: 100%;
      width: 100%;
  }

  .comingsoon-page .comingsoon-back-img:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 4, 95, 0.9);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
  }

  .comingsoon-page .comingsoon-back-img img {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      position: fixed;
      z-index: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .comingsoon-page .comingsoon-content-wrap {
      height: 100%;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  @media only screen and (max-width: 991px) {
      .comingsoon-page .comingsoon-content-wrap {
          margin: 50px 0 100px;
          display: block;
      }
  }

  .comingsoon-page .comingsoon-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
      width: 100%;
  }

  .comingsoon-page .comingsoon-content .comingsoon-logo {
      margin-bottom: 100px;
  }

  @media only screen and (max-width: 1199px) {
      .comingsoon-page .comingsoon-content .comingsoon-logo {
          margin-bottom: 60px;
      }
  }

  .comingsoon-page .comingsoon-content .comingsoon-logo a {
      display: inline-block;
  }

  .comingsoon-page .comingsoon-content h1 {
      margin-bottom: 110px;
      font-weight: 500;
      font-size: 70px;
      text-transform: capitalize;
      color: #ffffff;
  }

  @media only screen and (max-width: 1199px) {
      .comingsoon-page .comingsoon-content h1 {
          margin-bottom: 60px;
          font-size: 60px;
      }
  }

  @media only screen and (max-width: 767px) {
      .comingsoon-page .comingsoon-content h1 {
          margin-bottom: 30px;
          font-size: 50px;
      }
  }

  @media only screen and (max-width: 575px) {
      .comingsoon-page .comingsoon-content h1 {
          font-size: 40px;
      }
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom {
      margin-bottom: 10px;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-social {
      text-align: center;
      margin-bottom: 30px;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-social ul li {
      display: inline-block;
      margin-right: 2px;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-social ul li:last-child {
      margin-right: 0;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-social ul li a {
      text-align: center;
      color: #ffffff;
      background-color: #20348b;
      border-radius: 4px;
      padding: 8px 10px;
      display: inline-block;
      height: 45px;
      width: 45px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-social ul li a:hover {
      background-color: #e83a15;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-copy-right {
      text-align: center;
  }

  .comingsoon-page .comingsoon-content .comingsoon-bottom .comingsoon-copy-right p {
      color: #9ea5c5;
      font-size: 16px;
  }

  .countdown-layout1 {
      text-align: center;
      margin-bottom: 35px;
  }

  .countdown-layout1 .countdown-section {
      text-align: center;
      height: 150px;
      width: 155px;
      background: -webkit-gradient(linear, left top, right top, from(#ff630e), to(#e83a15));
      background: -o-linear-gradient(left, #ff630e, #e83a15);
      background: linear-gradient(to right, #ff630e, #e83a15);
      border-radius: 4px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      position: relative;
      margin-bottom: 30px;
      margin-right: 2px;
      -webkit-box-shadow: 0px 10px 30px 0px rgba(27, 27, 27, 0.75);
      box-shadow: 0px 10px 30px 0px rgba(27, 27, 27, 0.75);
  }

  .countdown-layout1 .countdown-section:after {
      content: "";
      height: 18px;
      width: 18px;
      background-color: #FF8326;
      border-radius: 50%;
      position: absolute;
      top: 28px;
      right: -10px;
      z-index: 50;
  }

  .countdown-layout1 .countdown-section:before {
      content: "";
      height: 18px;
      width: 18px;
      background-color: #FF8326;
      border-radius: 50%;
      position: absolute;
      bottom: 28px;
      right: -10px;
      z-index: 50;
  }

  @media only screen and (max-width: 1199px) {
      .countdown-layout1 .countdown-section {
          height: 120px;
          width: 125px;
      }
  }

  @media only screen and (max-width: 767px) {
      .countdown-layout1 .countdown-section {
          padding: 10px 0;
      }
  }

  @media only screen and (max-width: 575px) {
      .countdown-layout1 .countdown-section {
          padding: 15px 0;
      }
  }

  .countdown-layout1 .countdown-section .countdown-number {
      font-size: 60px;
      line-height: 1.1;
      font-weight: 700;
      color: #ffffff;
  }

  @media only screen and (max-width: 1199px) {
      .countdown-layout1 .countdown-section .countdown-number {
          font-size: 56px;
      }
  }

  @media only screen and (max-width: 767px) {
      .countdown-layout1 .countdown-section .countdown-number {
          font-size: 48px;
      }
  }

  @media only screen and (max-width: 575px) {
      .countdown-layout1 .countdown-section .countdown-number {
          font-size: 40px;
      }
  }

  @media only screen and (max-width: 479px) {
      .countdown-layout1 .countdown-section .countdown-number {
          font-size: 30px;
      }
  }

  .countdown-layout1 .countdown-section .countdown-unit {
      color: #ffffff;
      text-transform: capitalize;
      font-size: 18px;
  }

  @media only screen and (max-width: 1199px) {
      .countdown-layout1 .countdown-section .countdown-unit {
          font-size: 16px;
      }
  }

  .countdown-layout1 .countdown-section:last-child:after {
      display: none;
  }

  .countdown-layout1 .countdown-section:last-child:before {
      display: none;
  }

  /*------------------- 5.6 Contact Page -------------------*/
  .contact-page-box-layout1 .contact-location {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 767px) {
      .contact-page-box-layout1 .contact-location {
          margin-bottom: 20px;
          display: block;
      }
  }

  .contact-page-box-layout1 .contact-location .location-address {
      position: relative;
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 767px) {
      .contact-page-box-layout1 .contact-location .location-address {
          text-align: center;
      }
  }

  .contact-page-box-layout1 .contact-location .location-address:after {
      content: "";
      height: 100%;
      width: 1px;
      background-color: #dedede;
      position: absolute;
      top: 50%;
      right: -50%;
      transform: translateY(-50%) translateX(-50%);
  }

  @media only screen and (max-width: 1199px) {
      .contact-page-box-layout1 .contact-location .location-address:after {
          right: -25%;
      }
  }

  @media only screen and (max-width: 991px) {
      .contact-page-box-layout1 .contact-location .location-address:after {
          right: -40%;
      }
  }

  @media only screen and (max-width: 767px) {
      .contact-page-box-layout1 .contact-location .location-address:after {
          display: none;
      }
  }

  .contact-page-box-layout1 .contact-location .location-address:last-child {
      margin-right: 0;
  }

  .contact-page-box-layout1 .contact-location .location-address:last-child:after {
      display: none;
  }

  .contact-page-box-layout1 .contact-location .location-address .item-title {
      font-size: 24px;
      color: #e83a15;
      font-weight: 700;
      margin-bottom: 15px;
  }

  @media only screen and (max-width: 991px) {
      .contact-page-box-layout1 .contact-location .location-address .item-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .contact-page-box-layout1 .contact-location .location-address .item-title {
          font-size: 20px;
      }
  }

  .contact-page-box-layout1 .contact-location .location-address ul li {
      font-size: 18px;
  }

  @media only screen and (max-width: 575px) {
      .contact-page-box-layout1 .contact-location .location-address ul li {
          font-size: 16px;
      }
  }

  /*------------------- 5.7 Error Page -------------------*/
  .error-page-wrap {
      padding: 15rem 0;
      position: relative;
      z-index: 2;
  }

  .error-page-wrap:after {
      content: url('img/figure/section-bg9.png');
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      line-height: 0;
      z-index: -1;
  }

  .error-page-box {
      text-align: center;
  }

  .error-page-box .error-logo {
      margin-bottom: 35px;
  }

  .error-page-box p {
      width: 50%;
      margin: 0 auto 30px;
  }

  @media only screen and (max-width: 767px) {
      .error-page-box p {
          width: 80%;
      }
  }

  @media only screen and (max-width: 575px) {
      .error-page-box p {
          width: 100%;
      }
  }

  .error-page-box .item-btn {
      display: inline-flex;
      align-items: center;
      font-size: 15px;
      color: #ffffff;
      background-color: #e83a15;
      border-radius: 4px;
      padding: 15px 45px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .error-page-box .item-btn {
          padding: 12px 30px;
      }
  }

  @media only screen and (max-width: 575px) {
      .error-page-box .item-btn {
          padding: 10px 25px;
      }
  }

  .error-page-box .item-btn i {
      font-size: 16px;
      margin-left: 10px;
  }

  .error-page-box .item-btn:hover {
      background-color: #FF8326;
  }

  /*------------------- 5.8 FAQ Page -------------------*/
  .faq-box-layout1 .faq-search-box {
      margin-bottom: 40px;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group {
      height: 55px;
      border-radius: 4px;
      padding: 0;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .form-control {
      border: 1px solid #e1e1e1;
      box-shadow: none;
      border-radius: 4px;
      background: transparent;
      color: #111111;
      height: 55px;
      margin-right: 8px;
      padding: 10px 20px;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon {
      display: flex;
      padding: 0;
      border: none;
      border-radius: 4px;
      background: #eff2f8 !important;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon button {
      cursor: pointer;
      background: transparent;
      border: 0;
      padding: 0 20px;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon button span:before {
      color: #e83a15;
      font-size: 22px;
      font-weight: 700;
      margin-left: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon button:focus {
      outline: none;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon:hover {
      background-color: #FF8326 !important;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group .input-group-addon:hover button span:before {
      color: #ffffff;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group input {
      font-size: 15px;
      color: #FF8326;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group input.form-control::-webkit-input-placeholder,
  .faq-box-layout1 .faq-search-box .stylish-input-group textarea.form-control::-webkit-input-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group input.form-control:-moz-placeholder,
  .faq-box-layout1 .faq-search-box .stylish-input-group textarea.form-control:-moz-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .faq-box-layout1 .faq-search-box .stylish-input-group input.form-control:-ms-input-placeholder,
  .faq-box-layout1 .faq-search-box .stylish-input-group textarea.form-control:-ms-input-placeholder {
      color: #9b9c9c;
      font-size: 15px;
  }

  .faq-box-layout1 .accordion .card {
      border: none !important;
      margin-bottom: 10px;
      border-radius: 4px !important;
  }

  .faq-box-layout1 .accordion .card .card-header {
      border: none;
      padding: 0;
      border-radius: 0;
      background-color: transparent;
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title {
      position: relative;
      cursor: pointer;
      border-radius: 4px;
      margin-bottom: 0;
      padding: 18px 70px 18px 60px;
      font-weight: 500;
      color: #ffffff;
      background-color: #FF8326;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .faq-box-layout1 .accordion .card .card-header .heading-title {
          font-size: 18px;
      }
  }

  @media only screen and (max-width: 575px) {
      .faq-box-layout1 .accordion .card .card-header .heading-title {
          font-size: 16px;
      }
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title span {
      position: absolute;
      left: 20px;
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title:before {
      content: "\f309";
      font-family: "Font Awesome 5 Free";
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      background-color: #e83a15;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      text-align: center;
      height: 100%;
      width: 66px;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title.collapsed {
      color: #FF8326;
      background-color: #eff2f8;
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title.collapsed span {
      color: #e83a15;
      margin-right: 5px;
  }

  .faq-box-layout1 .accordion .card .card-header .heading-title.collapsed:before {
      content: "\f30b";
      color: #FF8326;
      background-color: #e7eaf2;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .faq-box-layout1 .accordion .card .card-body {
      padding: 30px 30px 25px 60px;
      position: relative;
  }

  @media only screen and (max-width: 1199px) {
      .faq-box-layout1 .accordion .card .card-body {
          padding: 30px 0 25px 60px;
      }
  }

  .faq-box-layout1 .accordion .card .card-body:after {
      content: "";
      height: 70%;
      width: 4px;
      background-color: #eff2f8;
      border-radius: 4px;
      position: absolute;
      top: 50%;
      left: 30px;
      transform: translateY(-50%);
  }

  .faq-box-layout1 .accordion .card:last-child {
      margin-bottom: 0;
  }

  /*------------------- 5.9 Gallery -------------------*/
  .gallery-box-layout1 {
      margin-bottom: 30px;
  }

  .gallery-box-layout1 .item-img {
      position: relative;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1 .item-img img {
      border-radius: 4px;
  }

  .gallery-box-layout1 .item-img .popup-icon {
      position: absolute;
      bottom: 30px;
      right: 30px;
      z-index: 2;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1 .item-img .popup-icon .popup-btn {
      border: 2px solid #ffffff;
      border-radius: 4px;
      font-size: 22px;
      color: #ffffff;
      display: block;
      padding: 10px 15px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1 .item-img .popup-icon .popup-btn:hover {
      background-color: #ffffff;
      color: #e83a15;
  }

  .gallery-box-layout1 .item-img .item-title {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 2;
      margin-bottom: 0;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1 .item-img .item-title a {
      color: #ffffff;
      font-size: 24px;
      font-weight: 500;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1 .item-img .item-title a:hover {
      color: #FF8326;
  }

  .gallery-box-layout1 .item-img:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(232, 58, 21, 0.85);
      border-radius: 4px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      transform: scale(0);
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .gallery-box-layout1:hover .item-img {
      box-shadow: 0px 5px 27px 0px rgba(17, 17, 17, 0.4);
  }

  .gallery-box-layout1:hover .item-img .popup-icon {
      visibility: visible;
      opacity: 1;
  }

  .gallery-box-layout1:hover .item-img .item-title {
      visibility: visible;
      opacity: 1;
  }

  .gallery-box-layout1:hover .item-img:after {
      visibility: visible;
      opacity: 1;
      transform: scale(1);
  }

  /*------------------- 5.10 Project -------------------*/
  .project-wrap-layout1 {
      padding: 92px 0 68px;
  }

  @media only screen and (max-width: 1199px) {
      .project-wrap-layout1 {
          padding: 82px 0 58px;
      }
  }

  @media only screen and (max-width: 991px) {
      .project-wrap-layout1 {
          padding: 72px 0 48px;
      }
  }

  @media only screen and (max-width: 767px) {
      .project-wrap-layout1 {
          padding: 62px 0 38px;
      }
  }

  @media only screen and (max-width: 575px) {
      .project-wrap-layout1 {
          padding: 52px 0 28px;
      }
  }

  .project-wrap-layout2 {
      padding: 92px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .project-wrap-layout2 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .project-wrap-layout2 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .project-wrap-layout2 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .project-wrap-layout2 {
          padding: 52px 0 30px;
      }
  }

  .project-box-layout1 {
      margin-bottom: 30px;
  }

  .project-box-layout1 .item-img {
      overflow: hidden;
  }

  .project-box-layout1 .item-img img {
      border-radius: 4px 4px 0 0;
      transform: scale(1);
      transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  }

  .project-box-layout1 .item-content {
      border-radius: 0 0 4px 4px;
      background-color: #ffffff;
      padding: 22px 30px 5px;
      -webkit-box-shadow: 0px 2px 40px 0px rgba(68, 68, 68, 0.2);
      box-shadow: 0px 2px 40px 0px rgba(68, 68, 68, 0.2);
  }

  .project-box-layout1 .item-content .item-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
  }

  .project-box-layout1 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .project-box-layout1 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .project-box-layout1 .item-content .item-subtitle {
      color: #e83a15;
      margin-bottom: 5px;
  }

  .project-box-layout1:hover .item-img img {
      transform: scale(1.1);
  }

  .project-box-layout2 {
      position: relative;
      margin-bottom: 30px;
      background-color: #ffffff;
      border-radius: 4px;
      -webkit-box-shadow: 0px 3px 18px 0px rgba(198, 198, 198, 0.4);
      box-shadow: 0px 3px 18px 0px rgba(198, 198, 198, 0.4);
  }

  .project-box-layout2 .item-img {
      border-radius: 4px 4px 0 0;
      overflow: hidden;
  }

  .project-box-layout2 .item-img img {
      border-radius: 4px 4px 0 0;
      transform: scale(1);
      transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  }

  .project-box-layout2 .item-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 30px;
  }

  .project-box-layout2 .item-content .item-title {
      font-weight: 700;
      margin-bottom: 0;
  }

  .project-box-layout2 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .project-box-layout2 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .project-box-layout2 .item-content .btn-wrap .item-btn {
      font-size: 20px;
      color: #e83a15;
      display: inline-block;
      background-color: #ffffff;
      border-radius: 4px;
      border: 1px solid #d4d4d4;
      padding: 6px 16px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 575px) {
      .project-box-layout2 .item-content .btn-wrap .item-btn {
          padding: 8px 20px;
      }
  }

  .project-box-layout2 .item-content .btn-wrap .item-btn:hover {
      background-color: #e83a15;
      color: #ffffff;
      border-color: #e83a15;
  }

  .project-box-layout2:hover .item-img img {
      transform: scale(1.1);
  }

  /*------------------- 5.11 Schedule -------------------*/
  .schedule-wrap-layout1 {
      padding: 94px 0 90px;
  }

  @media only screen and (max-width: 1199px) {
      .schedule-wrap-layout1 {
          padding: 84px 0 80px;
      }
  }

  @media only screen and (max-width: 991px) {
      .schedule-wrap-layout1 {
          padding: 74px 0 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .schedule-wrap-layout1 {
          padding: 64px 0 60px;
      }
  }

  @media only screen and (max-width: 575px) {
      .schedule-wrap-layout1 {
          padding: 54px 0 50px;
      }
  }

  .schedule-wrap-layout2 {
      padding: 100px 0 0;
  }

  @media only screen and (max-width: 1199px) {
      .schedule-wrap-layout2 {
          padding: 90px 0 0;
      }
  }

  @media only screen and (max-width: 991px) {
      .schedule-wrap-layout2 {
          padding: 80px 0 0;
      }
  }

  @media only screen and (max-width: 767px) {
      .schedule-wrap-layout2 {
          padding: 70px 0 0;
      }
  }

  @media only screen and (max-width: 575px) {
      .schedule-wrap-layout2 {
          padding: 60px 0 0;
      }
  }

  .schedule-box-layout1 .item-title {
      font-weight: 700;
      margin-bottom: 40px;
  }

  .schedule-box-layout1 .contact-form-box .form-group label {
      font-size: 16px;
      color: #646464;
      font-weight: 400;
  }

  .schedule-box-layout2 {
      padding-bottom: 100px;
  }

  @media only screen and (max-width: 991px) {
      .schedule-box-layout2 {
          text-align: center;
          padding-bottom: 0;
      }
  }

  .schedule-box-layout2 .schedule-form-title {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      text-transform: uppercase;
      background-color: #FF8326;
      text-align: center;
      padding: 20px 0;
      border-radius: 4px 4px 0 0;
      margin-bottom: 0;
  }

  @media only screen and (max-width: 991px) {
      .schedule-box-layout2 .schedule-form-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 767px) {
      .schedule-box-layout2 .schedule-form-title {
          font-size: 20px;
      }
  }

  .schedule-box-layout2 .schedule-form {
      background-color: #ffffff;
      border-radius: 0 0 4px 4px;
      padding: 35px 40px 40px;
      -webkit-box-shadow: 0px 10px 29px 0px rgba(104, 104, 104, 0.16);
      box-shadow: 0px 10px 29px 0px rgba(104, 104, 104, 0.16);
  }

  @media only screen and (max-width: 991px) {
      .schedule-box-layout2 .schedule-form {
          margin-bottom: 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .schedule-box-layout2 .schedule-form {
          padding: 35px 30px 40px;
      }
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group .form-control {
      background-color: #f8f8f8;
      color: #111111;
      border-radius: 0;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group .item-btn {
      width: 100%;
      background-color: #e83a15;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      padding: 15px 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group .item-btn i {
      margin-left: 10px;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group .item-btn:focus {
      border: none;
      outline: none;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group .item-btn:hover {
      background-color: #FF8326;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group input.form-control::-webkit-input-placeholder,
  .schedule-box-layout2 .schedule-form .contact-form-box .form-group textarea.form-control::-webkit-input-placeholder {
      color: #9a9a9a;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group input.form-control:-moz-placeholder,
  .schedule-box-layout2 .schedule-form .contact-form-box .form-group textarea.form-control:-moz-placeholder {
      color: #9a9a9a;
  }

  .schedule-box-layout2 .schedule-form .contact-form-box .form-group input.form-control:-ms-input-placeholder,
  .schedule-box-layout2 .schedule-form .contact-form-box .form-group textarea.form-control:-ms-input-placeholder {
      color: #9a9a9a;
  }

  .schedule-box-layout3 {
      display: flex;
      align-items: flex-end;
      height: 100%;
      justify-content: center;
  }

  /*------------------- 5.12 Service -------------------*/
  @media only screen and (max-width: 1199px) {
      .service-wrap-layout1 {
          padding: 90px 0 60px;
          background-color: #f8f8f8;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-wrap-layout1 {
          padding: 80px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-wrap-layout1 {
          padding: 70px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-wrap-layout1 {
          padding: 60px 0 30px;
      }
  }

  .service-wrap-layout2 {
      position: relative;
      padding: 9.5rem 0 8.3rem;
      position: relative;
      content: '';
      background: url(../img/service/feature-bg_or7u35_yr8jfv.png);
      text-align: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      z-index: 1;
  }

  @media only screen and (max-width: 1199px) {
      .service-wrap-layout2 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-wrap-layout2 {
          padding: 72px 0 57px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-wrap-layout2 {
          padding: 62px 0 47px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-wrap-layout2 {
          padding: 52px 0 30px;
      }
  }

  .service-wrap-layout3 {
      padding: 94px 0 100px;
  }

  @media only screen and (max-width: 1199px) {
      .service-wrap-layout3 {
          padding: 84px 0 90px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-wrap-layout3 {
          padding: 74px 0 80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-wrap-layout3 {
          padding: 64px 0 70px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-wrap-layout3 {
          padding: 54px 0 60px;
      }
  }

  .service-wrap-layout4 {
      padding: 92px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .service-wrap-layout4 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-wrap-layout4 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-wrap-layout4 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-wrap-layout4 {
          padding: 52px 0 30px;
      }
  }

  .service-wrap-layout5 {
      padding: 92px 0 100px;
  }

  @media only screen and (max-width: 1199px) {
      .service-wrap-layout5 {
          padding: 82px 0 90px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-wrap-layout5 {
          padding: 72px 0 80px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-wrap-layout5 {
          padding: 62px 0 70px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-wrap-layout5 {
          padding: 52px 0 60px;
      }
  }

  .service-box-layout1 {
      position: relative;
      background-color: #ffffff;
      border-radius: 4px;
      transform: translateY(-60px);
      z-index: 10;
      -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  }

  @media only screen and (max-width: 1199px) {
      .service-box-layout1 {
          transform: translateY(0);
          margin-bottom: 30px;
      }
  }

  .service-box-layout1 .item-img {
      border-radius: 4px 4px 0 0;
      overflow: hidden;
  }

  .service-box-layout1 .item-img img {
      border-radius: 4px 4px 0 0;
      transform: scale(1);
      transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  }

  .service-box-layout1 .item-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      padding: 18px 30px;
      background: #FF8326;
  }

  .service-box-layout1 .item-content .item-title {
      font-weight: 700;
      margin-bottom: 0;
  }

  .service-box-layout1 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout1 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .service-box-layout1 .item-content .btn-wrap .item-btn {
      font-size: 20px;
      color: #e83a15;
      display: inline-block;
      background-color: #ffffff;
      border: 1px solid #d4d4d4;
      border-radius: 4px;
      padding: 6px 16px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 1199px) {
      .service-box-layout1 .item-content .btn-wrap .item-btn {
          padding: 8px 20px;
      }
  }

  .service-box-layout1 .item-content .btn-wrap .item-btn:hover {
      border-color: #e83a15;
      background-color: #e83a15;
      color: #ffffff;
  }

  .service-box-layout1:hover .item-img img {
      transform: scale(1.1);
  }

  .service-box-layout2 {
      background-color: #ffffff;
      text-align: center;
      padding: 40px 20px 14px;
      border-radius: 4px;
      margin-bottom: 30px;
      -webkit-box-shadow: 0px 1px 0px 0px rgba(208, 208, 208, 0.75);
      box-shadow: 0px 1px 0px 0px rgba(208, 208, 208, 0.75);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout2 .item-icon {
      margin-bottom: 24px;
  }

  .service-box-layout2 .item-icon i {
      display: block;
      line-height: 1;
  }

  .service-box-layout2 .item-icon i:before {
      color: #FF8326;
      font-size: 70px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout2 .item-content .item-title {
      font-size: 20px;
      font-weight: 700;
  }

  .service-box-layout2 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout2 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .service-box-layout2:hover {
      -webkit-box-shadow: 0px 8px 21px 0px rgba(208, 208, 208, 0.55);
      box-shadow: 0px 8px 21px 0px rgba(208, 208, 208, 0.55);
  }

  .service-box-layout2:hover .item-icon i:before {
      color: #e83a15;
  }

  .service-box-layout3 .tab-nav-list {
      border-bottom: 6px solid #ececec;
      justify-content: space-between;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list {
          justify-content: center;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item {
      text-align: center;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item {
          margin-right: 40px;
      }
  }

  @media only screen and (max-width: 479px) {
      .service-box-layout3 .tab-nav-list .nav-item {
          margin-right: 30px;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a {
      position: relative;
      padding: 0 50px 24px;
      display: block;
  }

  @media only screen and (max-width: 1199px) {
      .service-box-layout3 .tab-nav-list .nav-item a {
          padding: 0 20px 24px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-nav-list .nav-item a {
          padding: 0 0 24px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a {
          padding: 0 0 40px;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a .item-icon {
      margin-bottom: 22px;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a .item-icon {
          margin-bottom: 15px;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a .item-icon i {
      line-height: 1;
      display: inline-block;
  }

  .service-box-layout3 .tab-nav-list .nav-item a .item-icon i:before {
      font-size: 90px;
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-nav-list .nav-item a .item-icon i:before {
          font-size: 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a .item-icon i:before {
          font-size: 60px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-box-layout3 .tab-nav-list .nav-item a .item-icon i:before {
          font-size: 40px;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a .item-title {
      font-size: 18px;
      color: #646464;
      font-weight: 500;
      margin-bottom: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a .item-title {
          font-size: 16px;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a:before {
      content: "";
      height: 6px;
      width: 100%;
      background-color: #e83a15;
      position: absolute;
      bottom: -5px;
      left: 200px;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a:before {
          display: none;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item a:after {
      content: "";
      width: 0;
      height: 0;
      border-top: 10px solid #e83a15;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      position: absolute;
      bottom: -50px;
      left: 0;
      right: 0;
      margin: auto;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-nav-list .nav-item a:after {
          display: none;
      }
  }

  .service-box-layout3 .tab-nav-list .nav-item:hover a .item-icon i:before {
      color: #FF8326;
  }

  .service-box-layout3 .tab-nav-list .nav-item:hover a .item-title {
      color: #FF8326;
  }

  .service-box-layout3 .tab-nav-list .nav-item:hover a:before {
      visibility: visible;
      opacity: 1;
      left: 0;
  }

  .service-box-layout3 .tab-nav-list .nav-item a.active .item-icon i:before {
      color: #FF8326;
  }

  .service-box-layout3 .tab-nav-list .nav-item a.active .item-title {
      color: #FF8326;
  }

  .service-box-layout3 .tab-nav-list .nav-item a.active:before {
      visibility: visible;
      opacity: 1;
      left: 0;
  }

  .service-box-layout3 .tab-nav-list .nav-item a.active:after {
      visibility: visible;
      opacity: 1;
      bottom: -15px;
  }

  .service-box-layout3 .tab-content {
      padding-top: 60px;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content {
          padding-top: 40px;
      }
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-content .tab-pane .media {
          align-items: center;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content .tab-pane .media {
          text-align: center;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .item-icon {
      position: relative;
      text-align: center;
      height: 315px;
      width: 315px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e83a15;
      border: 8px solid #ffffff;
      border-radius: 50%;
      z-index: -1;
      -webkit-box-shadow: 0px 0px 27px 0px rgba(108, 108, 108, 0.4);
      box-shadow: 0px 0px 27px 0px rgba(108, 108, 108, 0.4);
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-content .tab-pane .media .item-icon {
          height: 200px;
          width: 200px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content .tab-pane .media .item-icon {
          margin: 0 auto;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .item-icon i {
      line-height: 1;
  }

  .service-box-layout3 .tab-content .tab-pane .media .item-icon i:before {
      font-size: 200px;
      color: #ffffff;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-content .tab-pane .media .item-icon i:before {
          font-size: 100px;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .item-icon:after {
      content: url('img/figure/shape.png');
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%) rotate(0);
      -webkit-transition: all 0.5s ease-out;
      -moz-transition: all 0.5s ease-out;
      -ms-transition: all 0.5s ease-out;
      -o-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out;
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body {
      margin-left: 80px;
      padding-top: 10px;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body {
          margin-left: 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body {
          margin-left: 0;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title {
          font-size: 24px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title {
          font-size: 20px;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-title a:hover {
      color: #e83a15;
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-btn {
      margin-top: 15px;
      display: inline-flex;
      align-items: center;
      color: #ffffff;
      font-weight: 500;
      background-color: #FF8326;
      border-radius: 4px;
      padding: 12px 22px;
      -webkit-box-shadow: 0px 1px 0px 0px rgba(203, 203, 203, 0.75);
      box-shadow: 0px 1px 0px 0px rgba(203, 203, 203, 0.75);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout3 .tab-content .tab-pane .media .media-body .item-btn {
          padding: 10px 20px;
      }
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-btn i {
      font-size: 16px;
      font-weight: 600;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout3 .tab-content .tab-pane .media .media-body .item-btn:hover {
      background-color: #e83a15;
  }

  .service-box-layout3 .tab-content .tab-pane .media:hover .item-icon:after {
      transform: translateY(-50%) translateX(-50%) rotate(90deg);
  }

  .service-box-layout4 {
      margin-bottom: 40px;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout4 .media {
          text-align: center;
      }
  }

  .service-box-layout4 .media .item-img {
      border-radius: 4px;
      overflow: hidden;
  }

  .service-box-layout4 .media .item-img img {
      border-radius: 4px;
      transform: scale(1);
      transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  }

  .service-box-layout4 .media .media-body .item-title {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 12px;
  }

  @media only screen and (max-width: 991px) {
      .service-box-layout4 .media .media-body .item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 767px) {
      .service-box-layout4 .media .media-body .item-title {
          font-size: 26px;
      }
  }

  @media only screen and (max-width: 575px) {
      .service-box-layout4 .media .media-body .item-title {
          font-size: 24px;
      }
  }

  .service-box-layout4 .media .media-body .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout4 .media .media-body .item-title a:hover {
      color: #e83a15;
  }

  .service-box-layout4 .media .media-body .ghost-btn-lg {
      margin-top: 20px;
  }

  .service-box-layout4 .media .media-body .ghost-btn-lg:hover {
      -webkit-box-shadow: 0px 10px 18px 0px #c6c6c6;
      box-shadow: 0px 10px 18px 0px #c6c6c6;
  }

  .service-box-layout4:hover .media .item-img img {
      transform: scale(1.1);
  }

  .service-box-layout5 {
      margin-bottom: -20px;
  }

  .service-box-layout5 .item-img {
      text-align: center;
      position: relative;
  }

  .service-box-layout5 .item-img img {
      border-radius: 4px;
  }

  .service-box-layout5 .item-img .hover-icon {
      position: absolute;
      top: 45%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 2;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout5 .item-img .hover-icon a {
      font-size: 34px;
      color: #ffffff;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout5 .item-img .hover-icon a:hover {
      color: #e83a15;
  }

  .service-box-layout5 .item-img:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 4, 95, 0.8);
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      border-radius: 4px;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout5 .item-content {
      text-align: center;
      transform: translateY(-50px);
      background-color: #ffffff;
      border-radius: 4px;
      padding: 35px 40px 36px;
      margin: 0 20px;
      box-shadow: 0px 1px 0px 0px rgba(212, 212, 212, 0.75);
      border: 1px solid #e6e6e6;
  }

  @media only screen and (max-width: 575px) {
      .service-box-layout5 .item-content {
          padding: 35px 10px 36px;
      }
  }

  .service-box-layout5 .item-content .item-title {
      font-weight: 700;
      margin-bottom: 15px;
  }

  .service-box-layout5 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .service-box-layout5 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .service-box-layout5 .item-content .ghost-btn-md {
      letter-spacing: 0.5px;
  }

  .service-box-layout5 .item-content .ghost-btn-md:hover {
      -webkit-box-shadow: 0px 10px 18px 0px #c6c6c6;
      box-shadow: 0px 10px 18px 0px #c6c6c6;
  }

  .service-box-layout5:hover .item-img:after {
      visibility: visible;
      opacity: 1;
  }

  .service-box-layout5:hover .item-img .hover-icon {
      visibility: visible;
      opacity: 1;
      top: 50%;
  }

  .service-box-layout6 {
      background-color: #ffffff;
      padding: 45px 60px 50px;
      height: 100%;
  }

  .service-box-layout6 .item-title {
      font-size: 24px;
      font-weight: 700;
  }

  @media only screen and (max-width: 1199px) {
      .service-box-layout6 p {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }
  }

  .single-service-box-layout1 .main-img {
      margin-bottom: 30px;
  }

  .single-service-box-layout1 .main-img img {
      border-radius: 4px;
  }

  .single-service-box-layout1 .item-content .item-title {
      font-weight: 700;
  }

  .single-service-box-layout1 .item-content h2.item-title {
      font-size: 36px;
  }

  @media only screen and (max-width: 991px) {
      .single-service-box-layout1 .item-content h2.item-title {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout1 .item-content h2.item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-service-box-layout1 .item-content h2.item-title {
          font-size: 26px;
      }
  }

  .single-service-box-layout1 .item-content h3.item-title {
      font-size: 24px;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout1 .item-content h3.item-title {
          font-size: 22px;
      }
  }

  .single-service-box-layout1 .item-content .feature-img {
      margin-bottom: 30px;
      margin-top: 5px;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout1 .item-content .feature-img {
          text-align: center;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout1 .item-content .feature-img img {
          width: 100%;
      }
  }

  .single-service-box-layout1 .item-content .popup-img {
      position: relative;
      margin-top: 5px;
  }

  @media only screen and (max-width: 575px) {
      .single-service-box-layout1 .item-content .popup-img {
          text-align: center;
          margin-bottom: 20px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-service-box-layout1 .item-content .popup-img img {
          width: 100%;
      }
  }

  .single-service-box-layout1 .item-content .popup-img .item-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
  }

  .single-service-box-layout1 .item-content .popup-img .item-icon .play-btn {
      text-align: center;
      display: inline-block;
      height: 70px;
      width: 70px;
      line-height: 70px;
      border-radius: 50%;
      background-color: rgba(232, 58, 21, 0.8);
      animation: pulse infinite 2s;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-service-box-layout1 .item-content .popup-img .item-icon .play-btn i:before {
      font-size: 26px;
      color: #ffffff;
      margin-left: 8px;
  }

  .single-service-box-layout1 .item-content .feature-list {
      margin-bottom: 25px;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout1 .item-content .feature-list {
          display: flex;
      }
  }

  .single-service-box-layout1 .item-content .feature-list ul li {
      color: #444444;
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
  }

  .single-service-box-layout1 .item-content .feature-list ul li:after {
      content: "\f058";
      font-family: "Font Awesome 5 Free";
      font-size: 20px;
      font-weight: 600;
      color: #e83a15;
      position: absolute;
      top: 0;
      left: 0;
  }

  .single-service-box-layout1 .item-content .feature-list ul li:last-child {
      margin-bottom: 0;
  }

  .single-service-box-layout2 .item-slider .single-slide img {
      border-radius: 4px;
  }

  @media only screen and (max-width: 991px) {
      .single-service-box-layout2 .item-slider .single-slide img {
          border-radius: 4px 4px 0 0;
      }
  }

  .single-service-box-layout2 .service-content-wrap {
      text-align: center;
      margin: 0 60px;
      padding: 70px 140px 110px;
      background-color: #ffffff;
      border: 1px solid #ededed;
      position: relative;
      transform: translateY(-40px);
      margin-bottom: -40px;
      z-index: 10;
  }

  @media only screen and (max-width: 991px) {
      .single-service-box-layout2 .service-content-wrap {
          margin: 0;
          transform: translateY(0);
          padding: 50px 30px 110px;
      }
  }

  .single-service-box-layout2 .service-content-wrap .item-title {
      font-weight: 700;
  }

  .single-service-box-layout2 .service-content-wrap h2.item-title {
      font-size: 36px;
  }

  @media only screen and (max-width: 991px) {
      .single-service-box-layout2 .service-content-wrap h2.item-title {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout2 .service-content-wrap h2.item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-service-box-layout2 .service-content-wrap h2.item-title {
          font-size: 26px;
      }
  }

  .single-service-box-layout2 .service-content-wrap h3.item-title {
      font-size: 24px;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout2 .service-content-wrap h3.item-title {
          font-size: 22px;
      }
  }

  .single-service-box-layout2 .service-content-wrap .item-feature {
      text-align: left;
      display: flex;
      justify-content: center;
      margin: 25px 0;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout2 .service-content-wrap .item-feature {
          display: inline-block;
          margin: 25px 0;
      }
  }

  .single-service-box-layout2 .service-content-wrap .item-feature ul {
      margin-right: 70px;
  }

  @media only screen and (max-width: 767px) {
      .single-service-box-layout2 .service-content-wrap .item-feature ul {
          margin: 0 0 15px 0;
      }
  }

  .single-service-box-layout2 .service-content-wrap .item-feature ul:last-child {
      margin-right: 0;
  }

  .single-service-box-layout2 .service-content-wrap .item-feature ul li {
      color: #444444;
      margin-bottom: 15px;
      padding-left: 30px;
      position: relative;
  }

  .single-service-box-layout2 .service-content-wrap .item-feature ul li:after {
      content: "\f058";
      font-family: "Font Awesome 5 Free";
      font-size: 20px;
      font-weight: 600;
      color: #e83a15;
      position: absolute;
      top: 0;
      left: 0;
  }

  .single-service-box-layout2 .service-content-wrap .item-feature ul li:last-child {
      margin-bottom: 0;
  }

  /*------------------- 5.13 Shop -------------------*/
  .shop-page-box-layout1 .item-filter-bar {
      margin-bottom: 30px;
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      padding: 5px 20px;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul {
      display: flex;
      align-items: center;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul li {
      margin-right: 10px;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul li:last-child {
      margin-right: 0;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul li a {
      color: #aeaeae;
      display: inline-block;
      padding: 10px 0 5px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul li a i {
      font-size: 20px;
  }

  .shop-page-box-layout1 .item-filter-bar .layout-switcher ul li.active a {
      color: #e83a15;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group {
      display: flex;
      align-items: center;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group label {
      margin-bottom: 0;
      font-size: 16px;
      color: #646464;
      margin-right: 12px;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group .select2 {
      flex: 1;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group .select2-container--classic .select2-selection--single {
      background: #eff2f8;
      height: 40px;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group .select2-container--classic .select2-selection--single .select2-selection__rendered {
      line-height: 40px;
      color: #646464;
      font-size: 14px;
  }

  .shop-page-box-layout1 .item-filter-bar .form-group .select2-container--classic .select2-selection--single .select2-selection__arrow {
      height: 40px;
  }

  .product-box-layout1 .product-grid-view {
      margin-bottom: 30px;
      text-align: center;
  }

  .product-box-layout1 .product-grid-view .item-img {
      text-align: center;
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      margin-bottom: 15px;
      position: relative;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-img:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 4px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 2;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li {
      display: inline-block;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li a {
      display: inline-block;
      font-size: 16px;
      color: #ffffff;
      background-color: #FF8326;
      border-radius: 4px;
      padding: 8px 15px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li a:hover {
      background-color: #e83a15;
      color: #ffffff;
      box-shadow: 0px 8px 16px 0px rgba(205, 49, 16, 0.75);
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li:nth-child(1n) {
      transform: translateX(-100%);
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li:nth-child(2n) {
      transform: translateY(-100%);
  }

  .product-box-layout1 .product-grid-view .item-img .action-btn-area ul li:nth-child(3n) {
      transform: translateX(100%);
  }

  .product-box-layout1 .product-grid-view .item-content .item-rating li {
      display: inline-block;
      color: #ff9100;
      font-size: 12px;
  }

  .product-box-layout1 .product-grid-view .item-content .item-rating li:last-child {
      margin-right: 0;
  }

  .product-box-layout1 .product-grid-view .item-content .item-title {
      font-weight: 600;
      margin-bottom: 0;
  }

  .product-box-layout1 .product-grid-view .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-grid-view .item-content .item-title a:hover {
      color: #e83a15;
  }

  .product-box-layout1 .product-grid-view .item-content .item-price {
      font-size: 18px;
      color: #e83a15;
  }

  .product-box-layout1 .product-grid-view:hover .item-img:after {
      visibility: visible;
      opacity: 1;
  }

  .product-box-layout1 .product-grid-view:hover .item-img .action-btn-area {
      visibility: visible;
      opacity: 1;
  }

  .product-box-layout1 .product-grid-view:hover .item-img .action-btn-area ul li:nth-child(1n) {
      transform: translateX(0);
      transition-delay: 0.2s;
  }

  .product-box-layout1 .product-grid-view:hover .item-img .action-btn-area ul li:nth-child(2n) {
      transform: translateY(0);
      transition-delay: 0.5s;
  }

  .product-box-layout1 .product-grid-view:hover .item-img .action-btn-area ul li:nth-child(3n) {
      transform: translateX(0);
      transition-delay: 0.2s;
  }

  .product-box-layout1 .product-list-view {
      margin-bottom: 30px;
      display: flex;
  }

  @media only screen and (max-width: 991px) {
      .product-box-layout1 .product-list-view {
          display: block;
          text-align: center;
      }
  }

  .product-box-layout1 .product-list-view .item-img {
      width: 30%;
      margin-right: 30px;
      background-color: #f3f6f9;
      border-radius: 4px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .product-box-layout1 .product-list-view .item-img {
          width: 100%;
          margin-bottom: 20px;
          margin-right: 0;
      }
  }

  .product-box-layout1 .product-list-view .item-content {
      width: 65%;
  }

  @media only screen and (max-width: 991px) {
      .product-box-layout1 .product-list-view .item-content {
          width: 100%;
      }
  }

  .product-box-layout1 .product-list-view .item-content .item-title {
      font-weight: 600;
      margin-bottom: 10px;
  }

  .product-box-layout1 .product-list-view .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-list-view .item-content .item-title a:hover {
      color: #e83a15;
  }

  .product-box-layout1 .product-list-view .item-content .item-rating {
      margin-bottom: 6px;
  }

  .product-box-layout1 .product-list-view .item-content .item-rating li {
      margin-right: 5px;
      display: inline-block;
      color: #ff9100;
  }

  .product-box-layout1 .product-list-view .item-content .item-rating li:last-child {
      margin-right: 0;
  }

  .product-box-layout1 .product-list-view .item-content .item-price {
      font-size: 20px;
      color: #e83a15;
      margin-bottom: 25px;
  }

  .product-box-layout1 .product-list-view .item-content .action-btn-area ul li {
      display: inline-block;
      margin-right: 5px;
  }

  .product-box-layout1 .product-list-view .item-content .action-btn-area ul li:last-child {
      margin-right: 0;
  }

  .product-box-layout1 .product-list-view .item-content .action-btn-area ul li a {
      display: inline-block;
      font-size: 20px;
      color: #FF8326;
      background-color: #f3f6f9;
      border-radius: 4px;
      padding: 10px 15px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .product-box-layout1 .product-list-view .item-content .action-btn-area ul li a:hover {
      background-color: #e83a15;
      color: #ffffff;
      box-shadow: 0px 8px 16px 0px rgba(205, 49, 16, 0.75);
  }

  .product-box-layout1 .product-list-view:hover .item-img .action-btn-area {
      display: none;
  }

  .product-box-grid .product-box-layout1 .product-list-view {
      display: none;
  }

  .product-box-list .row > [class^="col-"] {
      max-width: 100% !important;
      -webkit-box-flex: 100%;
      -ms-flex: 100%;
      flex: 100%;
  }

  .product-box-list .product-box-layout1 .product-grid-view {
      display: none;
  }

  .single-product-box-layout1 .product-gallery .tab-content {
      position: relative;
      border: none;
      overflow: hidden;
  }

  .single-product-box-layout1 .product-gallery .tab-content a {
      cursor: move;
      display: block;
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      text-align: center;
      margin-bottom: 10px;
  }

  .single-product-box-layout1 .product-gallery .tab-content a img {
      border-radius: 4px;
  }

  .single-product-box-layout1 .product-gallery .nav-tabs {
      margin-left: -5px;
      margin-right: -5px;
      border-bottom: none;
  }

  @media only screen and (max-width: 1199px) {
      .single-product-box-layout1 .product-gallery .nav-tabs {
          margin-bottom: 35px;
      }
  }

  .single-product-box-layout1 .product-gallery .nav-tabs .nav-item {
      padding-left: 5px;
      padding-right: 5px;
      flex: 0 0 25%;
      max-width: 25%;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-product-box-layout1 .product-gallery .nav-tabs .nav-item a {
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      display: block;
  }

  .single-product-box-layout1 .product-gallery .nav-tabs .nav-item a img {
      width: 100%;
      border-radius: 4px;
  }

  .single-product-box-layout1 .product-gallery .nav-tabs .nav-item a.active {
      background-color: #eff2f8;
      border-color: #eff2f8;
  }

  .single-product-box-layout1 .product-info .item-title {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1;
  }

  @media only screen and (max-width: 1199px) {
      .single-product-box-layout1 .product-info .item-title {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 991px) {
      .single-product-box-layout1 .product-info .item-title {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-product-box-layout1 .product-info .item-title {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-product-box-layout1 .product-info .item-title {
          font-size: 26px;
      }
  }

  .single-product-box-layout1 .product-info .item-rating {
      margin-bottom: 15px;
  }

  .single-product-box-layout1 .product-info .item-rating li {
      display: inline-block;
      color: #ff8f00;
      font-size: 14px;
  }

  .single-product-box-layout1 .product-info .item-rating .item-review {
      font-size: 16px;
      color: #646464;
      margin-left: 5px;
  }

  .single-product-box-layout1 .product-info .entry-meta {
      border-top: 1px solid #e1e1e0;
      padding-top: 18px;
  }

  .single-product-box-layout1 .product-info .entry-meta > li {
      display: inline-block;
      color: #444444;
      font-weight: 500;
      margin-bottom: 6px;
      margin-right: 30px;
      font-size: 15px;
      position: relative;
  }

  .single-product-box-layout1 .product-info .entry-meta > li:last-child {
      margin-right: 0;
      margin-bottom: 0;
  }

  .single-product-box-layout1 .product-info .entry-meta > li span {
      color: #646464;
      font-weight: 400;
  }

  .single-product-box-layout1 .product-info .entry-meta > li a {
      color: #646464;
      font-weight: 400;
      transition: 0.3s ease-in-out;
  }

  .single-product-box-layout1 .product-info .entry-meta > li a:hover {
      color: #FF8326;
  }

  .single-product-box-layout1 .product-info .entry-meta li.item-social {
      display: inline-flex;
  }

  .single-product-box-layout1 .product-info .entry-meta li.item-social ul li {
      display: inline-block;
  }

  .single-product-box-layout1 .product-info .entry-meta li.item-social ul li a {
      padding: 6px;
      color: #646464;
      transition: 0.3s ease-in-out;
  }

  .single-product-box-layout1 .product-info .entry-meta li.item-social ul li a:hover {
      color: #e83a15;
  }

  .single-product-box-layout1 .product-info .item-color {
      display: flex;
      align-items: center;
      margin-top: 5px;
      margin-bottom: 20px;
  }

  .single-product-box-layout1 .product-info .item-color .color-title {
      font-size: 15px;
      color: #444444;
      font-weight: 500;
      margin-right: 12px;
  }

  .single-product-box-layout1 .product-info .item-color .color-list {
      line-height: 0;
  }

  .single-product-box-layout1 .product-info .item-color .color-list a {
      margin-right: 12px;
      display: inline-block;
      padding: 8px;
      border-radius: 3px;
      position: relative;
  }

  .single-product-box-layout1 .product-info .item-color .color-list a:after {
      content: "";
      height: 22px;
      width: 22px;
      border: 2px solid #ebebeb;
      border-radius: 3px;
      position: absolute;
      top: -3px;
      left: -3px;
  }

  .single-product-box-layout1 .product-info .item-color .color-list a:last-child {
      margin-right: 0;
  }

  .single-product-box-layout1 .product-info .item-size .form-group {
      display: flex;
      align-items: center;
  }

  .single-product-box-layout1 .product-info .item-size .form-group label {
      margin-bottom: 0;
      margin-right: 11px;
      font-size: 15px;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container {
      width: 40% !important;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container--classic .select2-selection--single {
      border: 1px solid #d7d7d7;
      height: 40px;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container--classic .select2-selection--single .select2-selection__rendered {
      font-size: 15px;
      color: #444444;
      line-height: 40px;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #444444 transparent transparent transparent;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #444444 transparent;
  }

  .single-product-box-layout1 .product-info .item-size .form-group .select2-container--classic .select2-selection--single .select2-selection__arrow {
      height: 40px;
  }

  .single-product-box-layout1 .product-info .item-price {
      font-size: 24px;
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 14px;
  }

  @media only screen and (max-width: 767px) {
      .single-product-box-layout1 .product-info .item-price {
          font-size: 22px;
      }
  }

  .single-product-box-layout1 .product-info .action-area {
      margin-top: 43px;
      display: flex;
  }

  @media only screen and (max-width: 479px) {
      .single-product-box-layout1 .product-info .action-area {
          display: block;
          text-align: center;
      }
  }

  .single-product-box-layout1 .product-info .action-area li {
      display: inline-block;
      margin-right: 8px;
  }

  @media only screen and (max-width: 479px) {
      .single-product-box-layout1 .product-info .action-area li {
          display: block;
          margin-right: 0;
          margin-bottom: 10px;
      }
  }

  .single-product-box-layout1 .product-info .action-area li:last-child {
      margin-right: 0;
  }

  .single-product-box-layout1 .product-info .action-area li .input-group {
      width: auto;
  }

  .single-product-box-layout1 .product-info .action-area li .input-group .form-control {
      text-align: center;
      height: 46px;
      width: 46px;
      display: block;
      outline: none;
      font-size: 22px;
      border: none;
      border-radius: 4px;
      border: 1px solid #e3e6ea;
  }

  .single-product-box-layout1 .product-info .action-area li .input-group .form-control:focus {
      box-shadow: none;
  }

  .single-product-box-layout1 .product-info .action-area li .input-group .input-group-btn {
      display: inline-grid;
  }

  .single-product-box-layout1 .product-info .action-area li .input-group .input-group-btn .quantity-btn {
      padding: 5px 12px;
      margin-bottom: 4px;
      font-size: 14px;
      line-height: 1;
      color: #000000;
      background-color: #dddddd;
      background-image: none;
      border-radius: 4px;
      outline: none;
      border: none;
      cursor: pointer;
  }

  .single-product-box-layout1 .product-info .action-area li .cart-btn {
      display: flex;
      align-items: center;
      border: 2px solid #e83a15;
      background-color: #e83a15;
      border-radius: 4px;
      padding: 6px 25px;
      color: #ffffff;
      font-size: 15px;
      transition: 0.3s ease-in-out;
  }

  .single-product-box-layout1 .product-info .action-area li .cart-btn i {
      margin-right: 12px;
      font-size: 18px;
  }

  .single-product-box-layout1 .product-info .action-area li .cart-btn:focus {
      outline: none;
  }

  .single-product-box-layout1 .product-info .action-area li .cart-btn:hover {
      background-color: #FF8326;
      border: 2px solid #FF8326;
      color: #ffffff;
  }

  .single-product-box-layout1 .product-info .action-area li .react-btn {
      background-color: #eff2f8;
      border-radius: 4px;
      padding: 8px 15px;
      display: block;
      color: #111111;
      font-size: 16px;
      transition: 0.3s ease-in-out;
  }

  .single-product-box-layout1 .product-info .action-area li .react-btn:hover {
      background-color: #FF8326;
      color: #ffffff;
  }

  .single-product-box-layout1 .product-more-info {
      margin-top: 60px;
      margin-bottom: 55px;
      overflow: hidden;
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list {
      border-bottom: 1px solid #cccccc;
  }

  @media only screen and (max-width: 575px) {
      .single-product-box-layout1 .product-more-info .tab-nav-list {
          display: block;
          text-align: center;
      }
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li {
      position: relative;
      margin-left: 8px;
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li:first-child {
      margin-left: 15px;
  }

  @media only screen and (max-width: 575px) {
      .single-product-box-layout1 .product-more-info .tab-nav-list li {
          display: block;
      }
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li a {
      display: inline-block;
      color: #444444;
      transition: 0.3s ease-in-out;
      border: 1px solid #cccccc;
      background-color: #f9f9f9;
      border-radius: 4px 4px 0 0;
      padding: 15px 30px;
  }

  @media only screen and (max-width: 767px) {
      .single-product-box-layout1 .product-more-info .tab-nav-list li a {
          padding: 15px 25px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-product-box-layout1 .product-more-info .tab-nav-list li a {
          border: none;
          background-color: transparent;
      }
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li a:after {
      content: "";
      height: 4px;
      width: 100%;
      background-color: #FF8326;
      border-radius: 10px 10px 0 0;
      top: -1px;
      left: 200px;
      position: absolute;
      z-index: 1;
      transition: 0.3s ease-in-out;
      visibility: hidden;
      opacity: 0;
  }

  @media only screen and (max-width: 575px) {
      .single-product-box-layout1 .product-more-info .tab-nav-list li a:after {
          display: none;
      }
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li a.active {
      color: #FF8326;
      background-color: transparent;
  }

  .single-product-box-layout1 .product-more-info .tab-nav-list li a.active:after {
      visibility: visible;
      opacity: 1;
      left: 0;
  }

  .single-product-box-layout1 .product-more-info .tab-content {
      padding-top: 25px;
  }

  .cart-page-box-layout1 .item-header {
      border: 1px solid #e1e1e0;
      padding: 15px 25px;
      border-radius: 4px;
      margin-bottom: 30px;
  }

  .cart-page-box-layout1 .item-header .item-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0;
  }

  .cart-page-box-layout1 .item-header .item-title span {
      position: relative;
      display: inline-block;
      font-size: 18px;
      color: #e83a15;
      margin: 0 22px;
  }

  .cart-page-box-layout1 .item-header .item-title span:before {
      content: "(";
      font-size: 24px;
      color: #dbdbdb;
      position: absolute;
      top: 50%;
      left: -15px;
      transform: translateY(-50%);
  }

  .cart-page-box-layout1 .item-header .item-title span:after {
      content: ")";
      font-size: 24px;
      color: #dbdbdb;
      position: absolute;
      top: 50%;
      right: -15px;
      transform: translateY(-50%);
  }

  @media only screen and (max-width: 767px) {
      .cart-page-box-layout1 .item-header .item-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 575px) {
      .cart-page-box-layout1 .item-header .item-title {
          font-size: 20px;
      }
  }

  .cart-page-box-layout1 .product-list .media {
      border-bottom: 1px solid #e1e1e1;
      padding-bottom: 30px;
      margin-bottom: 30px;
  }

  .cart-page-box-layout1 .product-list .media:last-child {
      margin-bottom: 0;
  }

  .cart-page-box-layout1 .product-list .media .item-img {
      margin-top: 5px;
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      padding: 5px 0;
      text-align: center;
  }

  .cart-page-box-layout1 .product-list .media .media-body {
      position: relative;
  }

  @media only screen and (max-width: 575px) {
      .cart-page-box-layout1 .product-list .media .media-body {
          text-align: center;
      }
  }

  .cart-page-box-layout1 .product-list .media .media-body .item-title {
      margin-bottom: 0;
      font-size: 18px;
  }

  .cart-page-box-layout1 .product-list .media .media-body .item-price {
      font-size: 18px;
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 8px;
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta {
      margin-bottom: 22px;
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta ul li {
      display: inline-block;
      color: #444444;
      font-weight: 500;
      margin-right: 35px;
      position: relative;
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta ul li:after {
      content: "/";
      font-size: 16px;
      position: absolute;
      top: 50%;
      right: -22px;
      transform: translateY(-50%);
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta ul li:last-child {
      margin-right: 0;
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta ul li:last-child:after {
      display: none;
  }

  .cart-page-box-layout1 .product-list .media .media-body .product-meta ul li span {
      color: #646464;
      font-weight: 400;
      margin-left: 15px;
  }

  @media only screen and (max-width: 575px) {
      .cart-page-box-layout1 .product-list .media .media-body .quantity-area {
          margin-bottom: 20px;
      }
  }

  @media only screen and (max-width: 575px) {
      .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group {
          justify-content: center;
      }
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn {
      display: flex;
      align-items: center;
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn .quantity-btn {
      background-color: transparent;
      border: #e1e1e0 1px solid;
      border-radius: 4px;
      padding: 4px 16px;
      font-size: 18px;
      color: #e83a15;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn .quantity-btn:hover {
      background-color: #e83a15;
      color: #ffffff;
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn .quantity-btn:focus {
      box-shadow: none;
      outline: none;
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn .form-control {
      margin: 0 6px;
      text-align: center;
      height: 40px;
      width: 45px;
      font-size: 18px;
      font-weight: 500;
      color: #FF8326;
  }

  .cart-page-box-layout1 .product-list .media .media-body .quantity-area .input-group .input-group-btn .form-control:focus {
      box-shadow: none;
      outline: none;
      border-color: #e1e1e0;
  }

  .cart-page-box-layout1 .product-list .media .media-body .delete-btn {
      position: absolute;
      top: 15px;
      right: 0;
  }

  .cart-page-box-layout1 .product-list .media .media-body .delete-btn a {
      color: #646464;
      font-size: 16px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .cart-page-box-layout1 .product-list .media .media-body .delete-btn a:hover {
      color: #e83a15;
  }

  @media only screen and (max-width: 575px) {
      .cart-page-box-layout1 .product-list .media .media-body .delete-btn {
          position: relative;
          top: 0;
      }
  }

  .checkout-box-layout1 .accordion .card {
      margin-bottom: 8px;
      border: 1px solid #e1e1e0;
      border-bottom: 1px solid #e1e1e0 !important;
      border-radius: 4px;
  }

  .checkout-box-layout1 .accordion .card:last-child {
      margin-bottom: 0;
  }

  .checkout-box-layout1 .accordion .card .card-header {
      cursor: pointer;
      padding: 0;
      border: none;
      background-color: transparent;
  }

  .checkout-box-layout1 .accordion .card .card-header .heading-title {
      margin-bottom: 0;
      padding: 35px 40px 15px;
      font-weight: 500;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 479px) {
      .checkout-box-layout1 .accordion .card .card-header .heading-title {
          padding: 35px 20px 15px;
      }
  }

  .checkout-box-layout1 .accordion .card .card-header .heading-title span {
      color: #e83a15;
  }

  .checkout-box-layout1 .accordion .card .card-header .heading-title.collapsed {
      padding: 15px 40px;
  }

  @media only screen and (max-width: 479px) {
      .checkout-box-layout1 .accordion .card .card-header .heading-title.collapsed {
          padding: 15px 20px;
      }
  }

  .checkout-box-layout1 .accordion .card .card-body {
      padding: 5px 40px 50px;
  }

  @media only screen and (max-width: 479px) {
      .checkout-box-layout1 .accordion .card .card-body {
          padding: 5px 20px 50px;
      }
  }

  .checkout-box-layout1 .accordion .card .address-info .item-title {
      color: #111111;
      font-weight: 500;
      margin-bottom: 25px;
  }

  .checkout-box-layout1 .accordion .card .address-info .item-title a {
      color: #e83a15;
      margin-left: 35px;
      position: relative;
      display: inline-block;
  }

  .checkout-box-layout1 .accordion .card .address-info .item-title a:after {
      content: "/";
      font-size: 16px;
      font-weight: 500;
      color: #646464;
      position: absolute;
      top: 50%;
      left: -22px;
      transform: translateY(-50%);
  }

  .checkout-box-layout1 .accordion .card .address-info .optional-text {
      margin-left: 120px;
      margin-top: 22px;
  }

  @media only screen and (max-width: 575px) {
      .checkout-box-layout1 .accordion .card .address-info .optional-text {
          margin-left: 0;
      }
  }

  .checkout-box-layout1 .accordion .card .address-info .optional-text .title-text {
      font-size: 18px;
      font-weight: 500;
  }

  .checkout-box-layout1 .accordion .card .address-info .optional-text .title-text a {
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .checkout-box-layout1 .accordion .card .address-info .optional-text .title-text a:hover {
      color: #e83a15;
  }

  .checkout-box-layout1 .accordion .card .address-info .optional-text .title-text span {
      font-weight: 400;
      font-size: 16px;
      font-style: italic;
  }

  .checkout-box-layout1 .accordion .card .address-info form {
      margin-right: 180px;
  }

  @media only screen and (max-width: 1199px) {
      .checkout-box-layout1 .accordion .card .address-info form {
          margin-right: 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .checkout-box-layout1 .accordion .card .address-info form {
          margin-right: 0;
      }
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  @media only screen and (max-width: 575px) {
      .checkout-box-layout1 .accordion .card .address-info form > .form-group {
          display: block;
      }
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group:last-child {
      margin-bottom: 0;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-control {
      height: 40px;
      background-color: #eff2f7;
      color: #111111;
      flex: 1;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .input-group {
      flex: 1;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .input-group .input-group-addon button {
      border: none;
      background-color: #FF8326;
      color: #ffffff;
      font-size: 14px;
      border-radius: 0 4px 4px 0;
      padding: 5px 30px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .input-group .input-group-addon button:focus {
      outline: none;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .input-group .input-group-addon button:hover {
      background-color: #e83a15;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .item-btn {
      display: flex;
      align-items: center;
      border: none;
      background-color: #e83a15;
      color: #ffffff;
      padding: 10px 50px;
      border-radius: 4px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .item-btn i {
      margin-left: 10px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .item-btn:hover {
      background-color: #FF8326;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group > label {
      width: 120px;
      color: #646464;
      font-weight: 400;
      margin-bottom: 0;
      font-size: 16px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check {
      position: relative;
      padding-left: 0;
      margin-bottom: 0;
      margin-right: 18px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check:last-child {
      margin-right: 0;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check label {
      display: inline-block;
      position: relative;
      padding-left: 32px;
      font-size: 16px;
      color: #646464;
      font-weight: 400;
      margin-bottom: 5px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check label:before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 22px;
      height: 21px;
      left: 0;
      top: 5px;
      border: 1px solid #cccccc;
      border-radius: 4px;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check label:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 6px;
      top: 1px;
      font-size: 12px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"] {
      cursor: pointer;
      position: absolute;
      width: 22px;
      height: 21px;
      top: 1px;
      left: 12px;
      z-index: 1;
      opacity: 0;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"]:checked + label:after {
      font-family: 'Font Awesome 5 Free';
      content: "\f00c";
      font-weight: 600;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"]:disabled + label {
      opacity: 0.65;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"]:disabled + label:before {
      background-color: #eeeeee;
      cursor: not-allowed;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check label::before {
      border-radius: 4px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"]:checked + label:before {
      border-color: #FF8326;
      background-color: #FF8326;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .form-check input[type="radio"]:checked + label:after {
      color: #ffffff;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .select2 {
      flex: 1;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .select2-container--classic .select2-selection--single {
      background: #eff2f7;
      border: none;
      height: 40px;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .select2-container--classic .select2-selection--single .select2-selection__rendered {
      line-height: 40px;
      font-size: 14px;
      color: #646464;
      font-weight: 500;
  }

  .checkout-box-layout1 .accordion .card .address-info form > .form-group .select2-container--classic .select2-selection--single .select2-selection__arrow {
      height: 40px;
  }

  .checkout-box-layout1 .accordion .card .shipping-method .item-title {
      color: #444444;
      font-weight: 500;
  }

  .modal .modal-dialog {
      max-width: 970px;
  }

  .modal .modal-dialog .modal-content {
      background-color: #ffffff;
      border-radius: 4px;
      padding: 45px 50px 40px;
  }

  @media only screen and (max-width: 767px) {
      .modal .modal-dialog .modal-content {
          padding: 45px 45px 40px;
      }
  }

  @media only screen and (max-width: 767px) {
      .modal .modal-dialog .modal-content {
          padding: 45px 28px 40px;
      }
  }

  .modal .modal-dialog .modal-content .modal-header {
      align-items: center;
      background-color: #FF8326;
      border-radius: 4px;
      border-bottom: none;
      margin-bottom: 40px;
  }

  .modal .modal-dialog .modal-content .modal-header .modal-title {
      font-size: 18px;
      color: #ffffff;
      font-weight: 500;
      padding: 5px 10px;
  }

  @media only screen and (max-width: 767px) {
      .modal .modal-dialog .modal-content .modal-header .modal-title {
          font-size: 14px;
      }
  }

  .modal .modal-dialog .modal-content .modal-header .modal-title i {
      margin-right: 12px;
  }

  .modal .modal-dialog .modal-content .modal-header .close {
      opacity: 1;
      padding: 16px 24px;
  }

  .modal .modal-dialog .modal-content .modal-header .close span {
      font-size: 25px;
      color: #ffffff;
  }

  .modal .modal-dialog .modal-content .modal-body {
      padding: 0;
  }

  .modal .modal-dialog .modal-content .modal-body .media {
      border-bottom: 1px solid #e5e5e5;
      padding-bottom: 35px;
      margin-bottom: 35px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .item-img {
      border: 1px solid #e1e1e0;
      border-radius: 4px;
      text-align: center;
  }

  @media only screen and (max-width: 575px) {
      .modal .modal-dialog .modal-content .modal-body .media .media-body {
          text-align: center;
      }
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-title {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 2px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-rating {
      margin-bottom: 6px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-rating li {
      display: inline-block;
      color: #ff8f00;
      font-size: 14px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-rating .item-review {
      font-size: 16px;
      color: #646464;
      margin-left: 5px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-price {
      font-size: 20px;
      font-weight: 500;
      color: #e83a15;
      margin-bottom: 16px;
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-info .table {
      width: 22%;
  }

  @media only screen and (max-width: 575px) {
      .modal .modal-dialog .modal-content .modal-body .media .media-body .item-info .table {
          margin: 0 auto;
          width: 40%;
      }
  }

  .modal .modal-dialog .modal-content .modal-body .media .media-body .item-info .table tbody tr td {
      color: #646464;
      border: none;
      padding: 0 2px 0 0;
  }

  .modal .modal-dialog .modal-content .modal-body .item-more-info {
      margin-bottom: 25px;
  }

  @media only screen and (max-width: 575px) {
      .modal .modal-dialog .modal-content .modal-body .item-more-info {
          display: none;
      }
  }

  .modal .modal-dialog .modal-content .modal-body .item-more-info .item-title {
      font-size: 20px;
      color: #444444;
      margin-bottom: 15px;
  }

  .modal .modal-dialog .modal-content .modal-body .item-more-info .price-calculation .table tbody tr td {
      border: none;
      padding: 4px 5px 4px 0px;
  }

  .modal .modal-dialog .modal-content .modal-body .item-more-info .price-calculation .table tbody tr .title-text {
      width: 120px;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area {
      display: flex;
      align-items: center;
  }

  @media only screen and (max-width: 575px) {
      .modal .modal-dialog .modal-content .modal-body .btn-area {
          display: block;
          text-align: center;
      }
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn {
      margin-right: 10px;
      display: inline-flex;
      align-items: center;
      color: #ffffff;
      padding: 10px 28px;
      border-radius: 4px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      margin-bottom: 15px;
  }

  @media only screen and (max-width: 575px) {
      .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn {
          font-size: 14px;
      }
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn i {
      font-size: 20px;
      margin-right: 10px;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn:last-child {
      margin-right: 0;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn.primary-btn {
      background-color: #FF8326;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn.primary-btn:hover {
      background-color: #e83a15;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn.accent-btn {
      background-color: #e83a15;
  }

  .modal .modal-dialog .modal-content .modal-body .btn-area .item-btn.accent-btn:hover {
      background-color: #FF8326;
  }

  /*------------------- 5.14 Team -------------------*/
  .team-wrap-layout1 {
      padding: 92px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .team-wrap-layout1 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .team-wrap-layout1 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .team-wrap-layout1 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .team-wrap-layout1 {
          padding: 52px 0 30px;
      }
  }

  .team-wrap-layout2 {
      padding: 92px 0 64px;
  }

  @media only screen and (max-width: 1199px) {
      .team-wrap-layout2 {
          padding: 82px 0 54px;
      }
  }

  @media only screen and (max-width: 991px) {
      .team-wrap-layout2 {
          padding: 72px 0 44px;
      }
  }

  @media only screen and (max-width: 767px) {
      .team-wrap-layout2 {
          padding: 62px 0 34px;
      }
  }

  @media only screen and (max-width: 575px) {
      .team-wrap-layout2 {
          padding: 52px 0 24px;
      }
  }

  .team-wrap-layout3 {
      padding: 92px 0 70px;
      background-color: #f8f8f8;
      z-index: 2;
  }

  @media only screen and (max-width: 1199px) {
      .team-wrap-layout3 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .team-wrap-layout3 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .team-wrap-layout3 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .team-wrap-layout3 {
          padding: 52px 0 30px;
      }
  }

  .team-wrap-layout4 {
      padding: 92px 0 70px;
  }

  @media only screen and (max-width: 1199px) {
      .team-wrap-layout4 {
          padding: 82px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .team-wrap-layout4 {
          padding: 72px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .team-wrap-layout4 {
          padding: 62px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .team-wrap-layout4 {
          padding: 52px 0 30px;
      }
  }

  .single-team-wrap-layout1 {
      padding-top: 100px;
      position: relative;
  }

  .single-team-wrap-layout1:after {
      content: url('img/figure/clip7.png');
      position: absolute;
      bottom: 0;
      left: -50px;
      line-height: 0;
      opacity: 0.5;
  }

  .team-box-layout1 {
      margin-bottom: 21px;
  }

  .team-box-layout1 .item-img {
      overflow: hidden;
      text-align: center;
      margin-bottom: 24px;
      background-color: #c7d3e2;
      border-radius: 4px;
      -webkit-box-shadow: 0px 11px 24px 0px #d3d3d3;
      box-shadow: 0px 11px 24px 0px #d3d3d3;
      z-index: 2;
  }

  .team-box-layout1 .item-content {
      position: relative;
  }

  .team-box-layout1 .item-content .item-title {
      font-weight: 700;
      margin-bottom: 5px;
  }

  .team-box-layout1 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout1 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .team-box-layout2 {
      position: relative;
      text-align: center;
      z-index: 1;
      margin-bottom: 22px;
  }

  .team-box-layout2 .item-img {
      background-color: #c7d3e2;
      border-radius: 50%;
      height: 250px;
      width: 250px;
      margin: 0 auto 22px;
      -webkit-box-shadow: 0px 5px 16px 0px rgba(188, 188, 188, 0.75);
      box-shadow: 0px 5px 16px 0px rgba(188, 188, 188, 0.75);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout2 .item-img img {
      border-radius: 50%;
  }

  .team-box-layout2 .item-content .item-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 5px;
  }

  @media only screen and (max-width: 991px) {
      .team-box-layout2 .item-content .item-title {
          font-size: 22px;
      }
  }

  @media only screen and (max-width: 767px) {
      .team-box-layout2 .item-content .item-title {
          font-size: 20px;
      }
  }

  .team-box-layout2 .item-content .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout2 .item-content .item-title a:hover {
      color: #e83a15;
  }

  .team-box-layout2 .item-content .item-subtitle {
      margin-bottom: 20px;
  }

  .team-box-layout2 .item-content .item-social ul li {
      display: inline-block;
  }

  .team-box-layout2 .item-content .item-social ul li a {
      padding: 5px 8px;
      font-size: 20px;
      color: #646464;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout2 .item-content .item-social ul li a:hover {
      color: #e83a15;
  }

  @media only screen and (max-width: 767px) {
      .team-box-layout2 .item-content .item-social ul li a {
          font-size: 18px;
      }
  }

  .team-box-layout2:hover .item-img {
      background-color: #FF8326;
  }

  .team-box-layout3 {
      text-align: center;
      padding: 35px 20px;
      margin-bottom: 30px;
      background-color: #ffffff;
      border-radius: 4px;
      -webkit-box-shadow: 0px 11px 24px 0px #dddddd;
      box-shadow: 0px 11px 24px 0px #dddddd;
  }

  .team-box-layout3 .item-img {
      background-color: #FF8326;
      border-radius: 50%;
      margin: 0 auto 20px;
      height: 205px;
      width: 205px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout3 .item-img img {
      border-radius: 50%;
  }

  .team-box-layout3 .item-content .item-heading {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 18px;
  }

  .team-box-layout3 .item-content .item-heading:after {
      content: "";
      height: 4px;
      width: 45px;
      background-color: #e83a15;
      border-radius: 3px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
  }

  .team-box-layout3 .item-content .item-heading .item-title {
      font-weight: 700;
      margin-bottom: 4px;
  }

  .team-box-layout3 .item-content .item-heading .item-title a {
      color: #111111;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout3 .item-content .item-heading .item-title a:hover {
      color: #e83a15;
  }

  .team-box-layout3 .item-content .item-social ul li {
      display: inline-block;
  }

  .team-box-layout3 .item-content .item-social ul li a {
      padding: 5px 8px;
      font-size: 20px;
      color: #9f9f9f;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .team-box-layout3 .item-content .item-social ul li a:hover {
      color: #e83a15;
  }

  .team-box-layout3:hover .item-img {
      background-color: #e83a15;
  }

  .single-team-box-layout1 {
      padding-bottom: 92px;
  }

  .single-team-box-layout1 .item-content .item-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 5px;
  }

  @media only screen and (max-width: 1199px) {
      .single-team-box-layout1 .item-content .item-title {
          font-size: 34px;
      }
  }

  @media only screen and (max-width: 991px) {
      .single-team-box-layout1 .item-content .item-title {
          font-size: 32px;
      }
  }

  @media only screen and (max-width: 767px) {
      .single-team-box-layout1 .item-content .item-title {
          font-size: 30px;
      }
  }

  @media only screen and (max-width: 575px) {
      .single-team-box-layout1 .item-content .item-title {
          font-size: 28px;
      }
  }

  .single-team-box-layout1 .item-content .item-subtitle {
      margin-bottom: 30px;
  }

  .single-team-box-layout1 .item-content .list-item {
      margin-bottom: 35px;
  }

  .single-team-box-layout1 .item-content .list-item > ul > li {
      color: #444444;
      display: flex;
      align-items: center;
      margin-bottom: 18px;
  }

  .single-team-box-layout1 .item-content .list-item > ul > li:last-child {
      margin-bottom: 0;
  }

  .single-team-box-layout1 .item-content .list-item > ul > li span {
      font-weight: 500;
      margin-right: 8px;
  }

  .single-team-box-layout1 .item-content .list-item > ul > li > i {
      font-size: 22px;
      color: #e83a15;
      margin-right: 20px;
  }

  .single-team-box-layout1 .item-content .list-item > ul .item-social ul li {
      display: inline-block;
  }

  .single-team-box-layout1 .item-content .list-item > ul .item-social ul li a {
      font-size: 18px;
      color: #646464;
      padding: 5px 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  .single-team-box-layout1 .item-content .list-item > ul .item-social ul li a:hover {
      color: #FF8326;
  }

  .single-team-box-layout1 .item-content .list-item > ul .item-social ul li:first-child a {
      padding-left: 0;
  }

  .single-team-box-layout2 {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
  }

  /*------------------- 5.15 Testimonial -------------------*/
  .testimonial-wrap-layout1 {
      padding: 98px 0 164px;
      background-color: rgba(0, 4, 95, 0.9);
      background-image: url('img/figure/figure2.png');
      background-repeat: no-repeat;
      background-position-x: center;
      background-position-y: -80px;
  }

  @media only screen and (max-width: 1199px) {
      .testimonial-wrap-layout1 {
          padding: 88px 0 154px;
      }
  }

  @media only screen and (max-width: 991px) {
      .testimonial-wrap-layout1 {
          padding: 78px 0 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .testimonial-wrap-layout1 {
          padding: 68px 0 60px;
      }
  }

  @media only screen and (max-width: 575px) {
      .testimonial-wrap-layout1 {
          padding: 58px 0 50px;
      }
  }

  .testimonial-wrap-layout2 {
      padding: 98px 0 92px;
      background-image: url('img/figure/section-bg10.jpg');
      position: relative;
  }

  @media only screen and (max-width: 1199px) {
      .testimonial-wrap-layout2 {
          padding: 88px 0 82px;
      }
  }

  @media only screen and (max-width: 991px) {
      .testimonial-wrap-layout2 {
          padding: 78px 0 72px;
      }
  }

  @media only screen and (max-width: 767px) {
      .testimonial-wrap-layout2 {
          padding: 68px 0 62px;
      }
  }

  @media only screen and (max-width: 575px) {
      .testimonial-wrap-layout2 {
          padding: 58px 0 52px;
      }
  }

  .testimonial-wrap-layout2:after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: rgba(0, 4, 95, 0.9);
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
  }

  .testimonial-box-layout1 {
      text-align: center;
      color: #ffffff;
  }

  .testimonial-box-layout1 .item-quote {
      font-size: 40px;
      margin-bottom: 30px;
  }

  .testimonial-box-layout1 .item-rating {
      margin-bottom: 20px;
  }

  .testimonial-box-layout1 .item-rating li {
      color: #ff9317;
      display: inline-block;
      font-size: 20px;
      margin-right: 5px;
  }

  .testimonial-box-layout1 p {
      font-weight: 500;
      color: #f6f6f6;
      width: 60%;
      margin: 0 auto 22px;
  }

  @media only screen and (max-width: 767px) {
      .testimonial-box-layout1 p {
          width: 80%;
      }
  }

  @media only screen and (max-width: 575px) {
      .testimonial-box-layout1 p {
          width: 100%;
      }
  }

  .testimonial-box-layout1 .item-title {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
  }

  .testimonial-box-layout1 .item-subtitle {
      color: #f6f6f8;
  }

  .testimonial-box-layout2 {
      border: 1px solid #e7eaee;
      border-radius: 4px;
      padding: 40px 40px;
      text-align: center;
      margin-bottom: 30px;
  }

  @media only screen and (max-width: 575px) {
      .testimonial-box-layout2 {
          padding: 30px;
      }
  }

  .testimonial-box-layout2 .item-quote {
      margin-bottom: 22px;
  }

  .testimonial-box-layout2 .item-img {
      margin: 16px 0;
  }

  .testimonial-box-layout2 .item-img img {
      border-radius: 50%;
      -webkit-box-shadow: 0px 10px 20px 0px rgba(142, 149, 163, 0.75);
      box-shadow: 0px 10px 20px 0px rgba(142, 149, 163, 0.75);
  }

  .testimonial-box-layout2 .item-rating {
      margin-bottom: 10px;
  }

  .testimonial-box-layout2 .item-rating ul li {
      display: inline-block;
      font-size: 15px;
      color: #ffa000;
      margin-right: 2px;
  }

  .testimonial-box-layout2 .item-rating ul li:last-child {
      margin-right: 0;
  }

  .testimonial-box-layout2 .item-title {
      font-size: 20px;
      font-weight: 700;
      color: #111111;
      margin-bottom: 0;
  }

  /*------------------- 5.16 Why Choose Us -------------------*/
  .why-choose-wrap-layout1 {
      padding: 170px 0 100px;
      background-color: #f8f8f8;
      background-image: url('img/figure/figure8.png');
      background-repeat: no-repeat;
      background-position: bottom left;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-wrap-layout1 {
          padding: 120px 0 90px;
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-wrap-layout1 {
          padding: 80px 0;
          background-image: none;
      }
  }

  @media only screen and (max-width: 767px) {
      .why-choose-wrap-layout1 {
          padding: 70px 0;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-wrap-layout1 {
          padding: 60px 0;
      }
  }

  .why-choose-wrap-layout2 {
      background-color: #f8f8f8;
      padding: 100px 0 70px;
  }

  .why-choose-wrap-layout3 {
      padding: 94px 0 92px;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-wrap-layout3 {
          padding: 84px 0 82px;
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-wrap-layout3 {
          padding: 74px 0 72px;
      }
  }

  @media only screen and (max-width: 767px) {
      .why-choose-wrap-layout3 {
          padding: 64px 0 62px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-wrap-layout3 {
          padding: 54px 0 52px;
      }
  }

  .why-choose-wrap-layout4 {
      padding: 100px 0 70px;
      position: relative;
      z-index: 2;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-wrap-layout4 {
          padding: 90px 0 60px;
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-wrap-layout4 {
          padding: 74px 0 50px;
      }
  }

  @media only screen and (max-width: 767px) {
      .why-choose-wrap-layout4 {
          padding: 64px 0 40px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-wrap-layout4 {
          padding: 54px 0 30px;
      }
  }

  .why-choose-wrap-layout4:after {
      content: url('img/figure/clip12.png');
      position: absolute;
      bottom: 0;
      right: 10%;
      line-height: 0;
      z-index: -1;
  }

  .why-choose-box-layout1 {
      background-color: #ffffff;
      padding: 95px 80px;
      border-radius: 4px;
      position: relative;
      -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-box-layout1 {
          padding: 60px 10px 60px 80px;
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout1 {
          padding: 60px 30px 60px 30px;
          margin-bottom: 30px;
      }
  }

  .why-choose-box-layout1:after {
      content: "";
      height: 100%;
      width: 30%;
      background-color: #ffffff;
      position: absolute;
      top: 0;
      right: -17rem;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-box-layout1:after {
          right: -14rem;
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout1:after {
          display: none;
      }
  }

  .why-choose-box-layout1 .item-title {
      font-weight: 900;
      margin-bottom: 10px;
  }

  .why-choose-box-layout1 .features-list {
      margin-top: 24px;
  }

  .why-choose-box-layout1 .features-list ul li {
      position: relative;
      font-size: 17px;
      color: #444444;
      font-weight: 500;
      margin-bottom: 10px;
      padding-left: 34px;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout1 .features-list ul li {
          font-size: 16px;
      }
  }

  .why-choose-box-layout1 .features-list ul li:last-child {
      margin-bottom: 0;
  }

  .why-choose-box-layout1 .features-list ul li:after {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-size: 17px;
      font-weight: 600;
      color: #e83a15;
      position: absolute;
      left: 0;
      top: 0;
  }

  .why-choose-box-layout2 {
      transform: translateY(-70px);
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-box-layout2 {
          transform: translateY(-30px);
      }
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout2 {
          transform: translateY(0);
      }
  }

  .why-choose-box-layout2 .item-img {
      text-align: right;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout2 .item-img {
          text-align: center;
      }
  }

  .why-choose-box-layout2 .item-img img {
      border-radius: 4px;
      box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
      width: 100%;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout2 .item-img img {
          width: 100%;
      }
  }

  .why-choose-box-layout3 {
      margin-bottom: 30px;
  }

  .why-choose-box-layout3 .item-img {
      position: relative;
      overflow: hidden;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout3 .item-img {
          margin-bottom: 30px;
          text-align: center;
      }
  }

  .why-choose-box-layout3 .item-img img {
      border-radius: 4px;
      width: 100%;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout3 .item-img img {
          width: 100%;
      }
  }

  .why-choose-box-layout3 .item-img .item-icon {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
  }

  .why-choose-box-layout3 .item-img .item-icon .play-btn {
      display: inline-block;
      height: 80px;
      width: 80px;
      line-height: 80px;
      border-radius: 50%;
      background-color: rgba(232, 58, 21, 0.8);
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout3 .item-img .item-icon .play-btn {
          height: 70px;
          width: 70px;
          line-height: 70px;
      }
  }

  @media only screen and (max-width: 767px) {
      .why-choose-box-layout3 .item-img .item-icon .play-btn {
          height: 60px;
          width: 60px;
          line-height: 60px;
      }
  }

  .why-choose-box-layout3 .item-img .item-icon .play-btn i:before {
      font-size: 28px;
      color: #ffffff;
      margin-left: 10px;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout3 .item-img .item-icon .play-btn i:before {
          font-size: 28px;
      }
  }

  @media only screen and (max-width: 767px) {
      .why-choose-box-layout3 .item-img .item-icon .play-btn i:before {
          font-size: 26px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-box-layout3 .item-img .item-icon .play-btn i:before {
          font-size: 22px;
      }
  }

  .why-choose-box-layout3 .item-img .item-icon .play-btn:hover {
      background-color: #ffffff;
  }

  .why-choose-box-layout3 .item-img .item-icon .play-btn:hover i:before {
      color: #FF8326;
  }

  .why-choose-box-layout3 .item-img .experience-text {
      position: absolute;
      bottom: -3px;
      right: -3px;
      background-color: #FF8326;
      border: 8px solid #ffffff;
      border-radius: 4px;
      display: flex;
      align-items: center;
      padding: 30px;
  }

  @media only screen and (max-width: 479px) {
      .why-choose-box-layout3 .item-img .experience-text {
          display: none;
      }
  }

  .why-choose-box-layout3 .item-img .experience-text .years {
      font-weight: 900;
      font-size: 60px;
      color: #ffffff;
      margin-right: 6px;
  }

  .why-choose-box-layout3 .item-img .experience-text .text span {
      display: block;
      font-size: 18px;
      color: #ffffff;
      line-height: 25px;
  }

  .why-choose-box-layout3 .item-content .item-title {
      font-weight: 700;
      margin-bottom: 25px;
  }

  .why-choose-box-layout3 .item-content .item-brand {
      display: flex;
      margin-top: 50px;
  }

  .why-choose-box-layout3 .item-content .item-brand a {
      margin-right: 30px;
      display: inline-block;
      background-color: #ffffff;
      padding: 30px;
  }

  .why-choose-box-layout3 .item-content .item-brand a:last-child {
      margin-right: 0;
  }

  .why-choose-box-layout4 {
      padding-right: 100px;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-box-layout4 {
          padding-right: 0;
      }
  }

  .why-choose-box-layout4 .item-title {
      font-weight: 900;
      margin-bottom: 24px;
      color: #ffffff;
  }

  .why-choose-box-layout4 .item-title span {
      display: block;
      font-weight: 400;
  }

  .why-choose-box-layout4 p {
      color: #ffffff;
  }

  .why-choose-box-layout4 .service-list {
      margin-top: 20px;
  }

  .why-choose-box-layout4 .service-list ul li {
      position: relative;
      color: #ffffff;
      font-weight: 500;
      margin-bottom: 12px;
      padding-left: 35px;
  }

  .why-choose-box-layout4 .service-list ul li:last-child {
      margin-bottom: 0;
  }

  .why-choose-box-layout4 .service-list ul li:after {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      position: absolute;
      left: 0;
      top: 0;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout5 {
          display: none;
      }
  }

  .why-choose-box-layout5 .item-icon {
      position: relative;
  }

  .why-choose-box-layout5 .item-icon:before {
      content: "";
      height: 136px;
      width: 136px;
      background-color: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      position: absolute;
      top: -28px;
      left: -28px;
      animation: pulse infinite 3s;
  }

  .why-choose-box-layout5 .item-icon:after {
      content: "";
      height: 110px;
      width: 110px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      position: absolute;
      top: -15px;
      left: -15px;
      animation: pulse infinite 3.1s;
  }

  .why-choose-box-layout5 .item-icon .play-btn {
      text-align: center;
      display: inline-block;
      height: 80px;
      width: 80px;
      line-height: 80px;
      border-radius: 50%;
      background-color: #ffffff;
      animation: pulse infinite 3.2s;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      position: relative;
      z-index: 1;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout5 .item-icon .play-btn {
          height: 60px;
          width: 60px;
          line-height: 60px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-box-layout5 .item-icon .play-btn {
          height: 50px;
          width: 50px;
          line-height: 50px;
      }
  }

  .why-choose-box-layout5 .item-icon .play-btn i:before {
      font-size: 26px;
      color: #e83a15;
      margin-left: 8px;
  }

  @media only screen and (max-width: 991px) {
      .why-choose-box-layout5 .item-icon .play-btn i:before {
          font-size: 24px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-box-layout5 .item-icon .play-btn i:before {
          font-size: 20px;
      }
  }

  .why-choose-box-layout6 {
      padding-right: 100px;
      margin-bottom: 22px;
  }

  @media only screen and (max-width: 1199px) {
      .why-choose-box-layout6 {
          padding-right: 50px;
      }
  }

  @media only screen and (max-width: 575px) {
      .why-choose-box-layout6 {
          padding-right: 0;
      }
  }

  .why-choose-box-layout6 .item-title {
      font-weight: 900;
      color: #ffffff;
  }

  .why-choose-box-layout6 p {
      color: #cdceda;
  }

  .why-choose-box-layout6 .service-list {
      margin-top: 30px;
  }

  .why-choose-box-layout6 .service-list ul li {
      position: relative;
      color: #cdceda;
      font-weight: 500;
      margin-bottom: 12px;
      padding-left: 35px;
  }

  .why-choose-box-layout6 .service-list ul li:last-child {
      margin-bottom: 0;
  }

  .why-choose-box-layout6 .service-list ul li:after {
      content: "\f00c";
      font-family: "Font Awesome 5 Free";
      font-size: 18px;
      font-weight: 600;
      color: #f9f9f9;
      position: absolute;
      left: 0;
      top: 0;
  }

  .why-choose-box-layout7 {
      text-align: center;
      margin-bottom: 30px;
  }

  /*=======================================================================
6. Helper Classes
=========================================================================*/
  /*------------------- 6.1 Background -------------------*/
  .bg-Primary {
      background-color: #FF8326;
  }

  .bg-accent {
      background-color: #e83a15;
  }

  .bg-textprimary {
      background-color: #ffffff;
  }

  .bg-aash {
      background-color: #f8f8f8;
  }

  .bg-aash-2 {
      background-color: #b7b7b7;
  }

  .dark-pink {
      background-color: #ad1457;
  }

  .blue {
      background-color: #304ffe;
  }

  .dark-yellow {
      background-color: #ffab00;
  }

  /*------------------- 6.2 Border -------------------*/
  .border-none {
      border: none;
  }

  .border-radius-4 {
      border-radius: 4px;
  }

  .border-accent {
      border: 1px solid #e83a15;
  }

  .border-accent-2 {
      border: 2px solid #e83a15;
  }

  .border-aash {
      border: 1px solid #d7d7d7;
  }

  .border-white {
      border: 1px solid #ffffff;
  }

  .border-top-aash {
      position: relative;
  }

  .border-top-aash:after {
      content: "";
      width: 165px;
      height: 1px;
      background-color: #dbdbdb;
      position: absolute;
      top: 5px;
      right: 0;
  }

  /*------------------- 6.3 Margin -------------------*/
  @media only screen and (min-width: 768px) {
      .mg-t-md-42 {
          margin-top: 42px;
      }
  }

  @media only screen and (max-width: 767px) {
      .mg-t-sm-15 {
          margin-top: 15px;
      }
  }

  .mg-t-40 {
      margin-top: 4rem;
  }

  .mg-b-10 {
      margin-bottom: 10px;
  }

  .mg-b-50 {
      margin-bottom: 5rem;
  }

  .mg-t-50 {
      margin-top: 5rem;
  }

  .mg-l-120 {
      margin-left: 120px;
  }

  @media only screen and (max-width: 575px) {
      .mg-l-120 {
          margin-left: 0;
      }
  }

  /*------------------- 6.4 Misc -------------------*/
  .section-shape1 {
      position: relative;
      z-index: 2;
  }

  .section-shape1:before {
      content: url('img/figure/clip1.png');
      position: absolute;
      top: 35%;
      left: -25px;
  }

  .section-shape1:after {
      content: url('img/figure/clip2.png');
      position: absolute;
      bottom: 120px;
      right: 100px;
      z-index: -1;
  }

  .section-shape2 {
      position: relative;
  }

  .section-shape2:before {
      content: url('img/figure/clip5.png');
      position: absolute;
      bottom: 30%;
      left: -9rem;
      z-index: -1;
  }

  .section-shape2:after {
      content: url('img/figure/clip6.png');
      position: absolute;
      bottom: 3rem;
      right: -10rem;
      z-index: -1;
  }

  .section-shape5 {
      position: relative;
      z-index: 2;
  }

  .section-shape5:before {
      content: url('img/figure/clip9.png');
      position: absolute;
      top: 20%;
      left: 0;
      opacity: 0.5;
      z-index: -1;
  }

  .section-shape5:after {
      content: url('img/figure/clip8.png');
      position: absolute;
      bottom: 0;
      right: 0;
      line-height: 1;
      opacity: 0.5;
      z-index: -1;
  }

  .section-shape6 {
      position: relative;
      z-index: 10;
  }

  .section-shape6:before {
      content: url('img/figure/clip10.png');
      position: absolute;
      top: 0;
      left: 20px;
      z-index: -1;
  }

  .section-shape6:after {
      content: url('img/figure/clip11.png');
      position: absolute;
      bottom: 0;
      right: 50px;
      line-height: 0;
      z-index: -1;
  }

  .bg-common {
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  /*------------------- 6.5 Padding -------------------*/
  @media only screen and (min-width: 992px) {
      .pd-lg-t-15 {
          padding-top: 15px;
      }

      .pd-lg-l-60 {
          padding-left: 6rem;
      }
  }

  .pd-y-80 {
      padding: 8rem 0;
  }

  .pd-x-35 {
      padding: 0 35px;
  }

  @media only screen and (max-width: 1199px) {
      .pd-x-35 {
          padding: 0;
      }
  }

  .pd-t-18 {
      padding-top: 18px !important;
  }

  .inner-page-padding {
      padding: 100px 0;
  }

  .inner-page-padding2 {
      padding: 100px 0 70px;
  }

  .inner-page-padding3 {
      padding: 100px 0 62px;
  }

  /*------------------- 6.6 Text -------------------*/
  .text-primarytext {
      color: #111111 !important;
  }

  .text-mediumdark {
      color: #444444;
  }

  .text-Primary {
      color: #FF8326;
  }

  .text-light-primary {
      color: #287ff9;
  }

  .text-textprimary {
      color: #ffffff;
  }

  .text-accent {
      color: #e83a15;
  }

  .text-aash {
      color: #989898;
  }

  .body-text {
      color: #646464;
  }

  .text-24 {
      font-size: 24px !important;
  }

  .text-medium {
      font-weight: 500;
  }

  .letter-specing-0 {
      letter-spacing: 0;
  }

  .temp-logo img {
      max-height: 70px;
  }



  /*form styles*/
  #msform {
      text-align: center;
      position: relative;
      padding-top: 30px;
      background: #FF8326;
  }

  #msform .form-group label {
      font-size: 18px;
      font-weight: 500;
      color: #444444;
      margin-bottom: 0px;
  }

  #msform fieldset {
      background: white;
      border: 0 none;
      border-radius: 3px;
      padding: 10px 10px;
      box-sizing: border-box;
      width: 320px;
      margin: 0 auto;
      position: relative;
  }

  /*Hide all except first fieldset*/
  #msform fieldset:not(:first-of-type) {
      display: none;
  }

  /*inputs*/
  #msform input,
  #msform textarea {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 3px;
      margin-bottom: 10px;
      width: 100%;
      box-sizing: border-box;
      font-family: montserrat;
      color: #2C3E50;
      font-size: 13px;
  }

  /*buttons*/
  #msform .action-button {
      width: 100px;
      background: #FF8326;
      font-weight: bold;
      color: white;
      border: 0 none;
      border-radius: 1px;
      cursor: pointer;
      padding: 10px 5px;
      margin: 10px 5px;
  }

  #msform .action-button:hover,
  #msform .action-button:focus {
      box-shadow: 0 0 0 2px white, 0 0 0 3px #FF8326;
  }

  #msform .form-group {
      text-align: left;
      margin-bottom: 15px;
  }

  /*headings*/
  .fs-title {
      font-size: 15px;
      text-transform: uppercase;
      color: #2C3E50;
      margin-bottom: 10px;
  }

  .fs-subtitle {
      font-weight: normal;
      font-size: 13px;
      color: #666;
      margin-bottom: 20px;
  }

  /*progressbar*/
  #progressbar {
      margin-bottom: 30px;
      overflow: hidden;
      /*CSS counters to number the steps*/
      counter-reset: step;
  }

  #progressbar li {
      list-style-type: none;
      color: #000;
      text-transform: uppercase;
      font-size: 9px;
      width: 33.33%;
      float: left;
      position: relative;
  }

  #progressbar li:before {
      content: counter(step);
      counter-increment: step;
      width: 20px;
      line-height: 20px;
      display: block;
      font-size: 10px;
      color: #333;
      background: white;
      border-radius: 3px;
      margin: 0 auto 5px auto;
  }

  /*progressbar connectors*/
  #progressbar li:after {
      content: '';
      width: 100%;
      height: 2px;
      background: white;
      position: absolute;
      left: -50%;
      top: 9px;
      z-index: -1;
      /*put it behind the numbers*/
  }

  #progressbar li:first-child:after {
      /*connector not needed before the first step*/
      content: none;
  }

  #progressbar li.active:before,
  #progressbar li.active:after {
      background: #e83a15;
      color: white;
  }

  .tail-select,
  .tail-select *,
  .tail-select *:before,
  .tail-select *:after {
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
  }

  .tail-select,
  .tail-select * {
      outline: none;
      user-select: none;
      -o-user-select: none;
      -ms-user-select: none;
      -moz-user-select: none;
      -webkit-user-select: none;
  }

  .tail-select {
      width: 220px;
      margin: 0;
      padding: 0;
      display: inline-block;
      position: relative;
      font-size: 1rem;
      line-height: 1.5;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }

  /*Making this fucker responsive*/

  @media only screen and (min-width: 767px) {

      .tail-select {
          margin: 0;
          padding: 0;
          display: inline-block;
          position: relative;
          font-size: 1rem;
          line-height: 1.5;
          font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      }


  }


  .tail-select mark {
      color: white;
      background-color: #28A745;
  }

  .tail-select button {
      outline: none;
  }

  .tail-select button.tail-all,
  .tail-select button.tail-none {
      height: auto;
      margin: 0 2px;
      padding: 2px 6px;
      display: inline-block;
      font-size: 10px;
      line-height: 14px;
      text-shadow: none;
      letter-spacing: 0;
      text-transform: none;
      vertical-align: top;
      border-width: 1px;
      border-style: solid;
      border-color: transparent;
      border-radius: 3px;
      box-shadow: none;
      -webkit-box-shadow: none;
      transition: color 142ms linear, border 142ms linear, background 142ms linear;
      -webkit-transition: color 142ms linear, border 142ms linear, background 142ms linear;
  }

  .tail-select button.tail-all {
      color: #AAAAAA;
      border-color: #CCCCCC;
      background-color: transparent;
  }

  .tail-select button.tail-all:hover {
      color: #62C462;
      border-color: #62C462;
      background-color: transparent;
  }

  .tail-select button.tail-none {
      color: #AAAAAA;
      border-color: #CCCCCC;
      background-color: transparent;
  }

  .tail-select button.tail-none:hover {
      color: #EE5F5B;
      border-color: #EE5F5B;
      background-color: transparent;
  }

  .tail-select.disabled button.tail-all {
      color: #CCCCCC;
      border-color: #CCCCCC;
      background-color: #F0F0F0;
  }

  .tail-select.disabled button.tail-none {
      color: #CCCCCC;
      border-color: #CCCCCC;
      background-color: #F0F0F0;
  }

  .tail-select input[type="text"] {
      color: #343a40;
      width: 100%;
      height: 30px;
      margin: 0;
      padding: 0.25rem 0.5rem;
      display: inline-block;
      font-size: 0.875rem;
      line-height: 1.5;
      vertical-align: middle;
      background-color: transparent;
      border-width: 1px;
      border-style: solid;
      border-color: transparent;
      border-radius: 0.2rem;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      transition: border 142ms linear, box-shadow 142ms linear;
      -webkit-transition: border 142ms linear, box-shadow 142ms linear;
  }

  .tail-select input[type="text"]:hover {
      color: #343a40;
      border-color: rgba(0, 0, 0, 0);
      background-color: transparent;
  }

  .tail-select input[type="text"]:focus {
      color: #28A745;
      border-color: #28A745;
      background-color: transparent;
  }

  .tail-select.disabled input[type="text"] {
      color: rgba(26, 26, 26, 0);
      border-color: transparent;
      background-color: rgba(26, 26, 26, 0);
  }

  .tail-select-container {
      margin: 0;
      padding: 3px;
      text-align: left;
      border-radius: 3px;
  }

  .tail-select-container .select-handle {
      width: auto;
      color: white;
      cursor: pointer;
      margin: 1px;
      padding: 0.2em 0.6em 0.3em;
      display: inline-block;
      position: relative;
      font-size: 11.844px;
      text-align: left;
      font-weight: bold;
      line-height: 16px;
      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
      vertical-align: top;
      background-color: #28A745;
      border-width: 0;
      border-style: solid;
      border-color: transparent;
      border-radius: 3px;
      transition: background 142ms linear;
      -webkit-transition: background 142ms linear;
  }

  .tail-select-container .select-handle:hover {
      color: white;
      background-color: #19692b;
  }

  .tail-select-container.select-label .select-handle {
      margin: 5px 3px;
  }

  /* @end GENERAL */

  /* @start LABEL */
  .tail-select .select-label {
      cursor: pointer;
      color: black;
      width: 100%;
      margin: 0;
      padding: 0 30px 0 0;
      display: block;
      position: relative;
      text-align: left;
      background-color: #28a74600;
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A//www.w3.org/2000/svg'%20viewBox%3D'0%200%204%205'%3E%3Cpath%20fill%3D'black'%20d%3D'M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center right 0.75rem;
      background-size: 8px 10px;
      border-width: 1px;
      border-style: solid;
      border-color: #CED4DA;
      border-radius: 3px;
      transition: border 142ms linear, background 142ms linear, box-shadow 142ms linear;
      -webkit-transition: border 142ms linear, background 142ms linear, box-shadow 142ms linear;
  }

  .tail-select .select-label:hover {
      color: white;
      border-color: transparent;
      background-color: #218838;
  }

  .tail-select .select-label .label-count,
  .tail-select .select-label .label-inner {
      width: auto;
      margin: 0;
      display: inline-block;
      text-align: left;
      vertical-align: top;
  }

  .tail-select .select-label .label-count {
      float: left;
      /* color: #28A745; */
      color: white;
      margin: 10px -3px 0 9px;
      padding: 0.25em 0.4em;
      display: inline-block;
      font-size: 75%;
      font-weight: 700;
      line-height: 1;
      text-shadow: none;
      white-space: nowrap;
      border-radius: 0.25rem;
      background-color: #2A3D4D;
  }

  .tail-select .select-label .label-inner {
      margin: 0;
      padding: 0.375rem 0.75rem;
      display: block;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
  }

  .tail-select.active .select-label {
      color: white;
      border-color: transparent;
      background-color: #19692b;
      box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.35);
      -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.35);
  }

  /* @end LABEL */

  /* @start DROPDOWN */
  .tail-select .select-dropdown {
      top: 100%;
      left: 0;
      color: #343a40;
      width: 100%;
      margin: 0.125rem 0 0;
      padding: 0;
      z-index: 27;
      display: none;
      position: absolute;
      background-color: white;
      border-width: 1px;
      border-style: solid;
      border-color: rgba(0, 0, 0, 0.15);
      border-radius: 0.25rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
      -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  }

  .tail-select .select-dropdown .dropdown-search {
      width: 100%;
      margin: 0;
      padding: 10px;
      display: block;
      border-width: 0 0 1px 0;
      border-style: solid;
      border-color: #e6e6e6;
  }

  .tail-select .select-dropdown .dropdown-inner {
      width: 100%;
      margin: 0;
      padding: 1px 0;
      display: block;
      overflow-x: hidden;
      overflow-y: auto;
  }

  .tail-select .select-dropdown .dropdown-empty {
      margin: 0;
      padding: 1.25rem 1.75rem;
      display: block;
      font-size: 0.875rem;
      text-align: center;
      font-weight: 400;
      line-height: 1.2;
  }

  .tail-select .select-dropdown .dropdown-action {
      top: 8px;
      right: 15px;
      width: auto;
      margin: 0;
      padding: 7px 0;
      z-index: 35;
      display: inline-block;
      position: absolute;
      text-align: center;
  }

  .tail-select .select-dropdown ul,
  .tail-select .select-dropdown ul li {
      width: 100%;
      margin: 0;
      padding: 0;
      display: block;
      position: relative;
      list-style: none;
      vertical-align: top;
  }

  .tail-select .select-dropdown ul li {
      color: #343a40;
      padding: 0.25rem 1.75rem;
      text-align: left;
      font-weight: normal;
  }

  .tail-select .select-dropdown ul li:first-of-type {
      margin-top: 0.5rem;
  }

  .tail-select .select-dropdown ul li:last-of-type {
      margin-bottom: 0.5rem;
  }

  .tail-select .select-dropdown ul li.optgroup-title {
      color: rgba(52, 58, 64, 0.7);
      cursor: default;
      margin: 0;
      padding: 0.5rem 1.5rem;
      font-size: 11px;
      font-weight: bold;
      line-height: 20px;
      text-shadow: none;
      letter-spacing: 1px;
      text-transform: uppercase;
  }

  .tail-select .select-dropdown ul li.optgroup-title b {
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.2;
      text-shadow: none;
      letter-spacing: 0;
      text-transform: none;
  }

  .tail-select .select-dropdown ul li.optgroup-title button {
      float: right;
      opacity: 0;
  }

  .tail-select .select-dropdown ul:hover li button {
      opacity: 1;
  }

  .tail-select .select-dropdown ul li.dropdown-option {
      cursor: pointer;
      color: #343a40;
  }

  .tail-select .select-dropdown ul li.dropdown-option:before {
      top: 0;
      left: 0;
      width: 30px;
      height: 33px;
      margin: 0;
      padding: 0;
      z-index: 21;
      display: inline-block;
      content: "";
      position: absolute;
      vertical-align: top;
      background-repeat: no-repeat;
      background-position: center center;
  }

  .tail-select .select-dropdown ul li.dropdown-option .option-description {
      color: rgba(52, 58, 64, 0.7);
      width: auto;
      margin: 0;
      padding: 0;
      display: block;
      font-size: 10px;
      text-align: left;
      line-height: 14px;
      vertical-align: top;
  }

  .tail-select.hide-selected .select-dropdown ul li.selected,
  .tail-select.hide-disabled .select-dropdown ul li.disabled {
      display: none;
  }

  /* Selected */
  .tail-select .select-dropdown ul li.dropdown-option.selected {
      color: #28A745;
      background-color: transparent;
  }

  .tail-select .select-dropdown ul li.dropdown-option.selected:before {
      background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC\
                9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBkPSJNMTIgNWwtOCA4LTQtN\
                CAxLjUtMS41TDQgMTBsNi41LTYuNUwxMiA1eiIvPjwvc3ZnPg==");
  }

  .tail-select .select-dropdown ul li.dropdown-option.selected .option-description {
      color: rgba(52, 58, 64, 0.7);
  }

  /* Unselect */
  .tail-select.deselect .select-dropdown ul li.dropdown-option.selected:hover:before,
  .tail-select.multiple .select-dropdown ul li.dropdown-option.selected:hover:before,
  .tail-select.deselect .select-dropdown ul li.dropdown-option.selected.hover:before,
  .tail-select.multiple .select-dropdown ul li.dropdown-option.selected.hover:before {
      background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC\
                                9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij48cGF0aCBkPSJNNy40OCA4bDMuNzUgM\
                                y43NS0xLjQ4IDEuNDhMNiA5LjQ4bC0zLjc1IDMuNzUtMS40OC0xLjQ4TDQuNTIgOCAuNzcgNC4yNWwxLjQ4LTEuNDhMNiA2\
                                LjUybDMuNzUtMy43NSAxLjQ4IDEuNDhMNy40OCA4eiIvPjwvc3ZnPg==");
  }

  /* Hover */
  .tail-select .select-dropdown ul li.dropdown-option {
      transition: all 0.3s ease-in;
  }

  .tail-select .select-dropdown ul li.dropdown-option:hover,
  .tail-select .select-dropdown ul li.dropdown-option.hover {
      transition: all 0.4s ease;
      color: #343a40;
      background-color: #f4fbf6;
  }

  .tail-select .select-dropdown ul li.dropdown-option:hover .option-description,
  .tail-select .select-dropdown ul li.dropdown-option.hover .option-description {
      color: rgba(52, 58, 64, 0.7);
  }

  /* Disabled */
  .tail-select.disabled .select-dropdown ul li.dropdown-option,
  .tail-select .select-dropdown ul li.dropdown-option.disabled {
      cursor: not-allowed;
      color: rgba(52, 58, 64, 0.35);
      text-shadow: 0px 1px 0px rgba(122, 135, 147, 0.1), 0px -1px 0px rgba(0, 0, 0, 0.1);
      background-color: rgba(52, 58, 64, 0.02);
  }

  .tail-select.disabled .select-dropdown ul li.dropdown-option .option-description,
  .tail-select .select-dropdown ul li.dropdown-option.disabled .option-description {
      text-shadow: 0px 1px 0px rgba(63, 71, 78, 0.05), 0px -1px 0px rgba(41, 45, 50, 0.05);
  }

  .tail-select.disabled .select-dropdown ul li.dropdown-option .option-description,
  .tail-select .select-dropdown ul li.dropdown-option.disabled .option-description,
  .tail-select.disabled .select-dropdown ul li.dropdown-option:hover .option-description,
  .tail-select .select-dropdown ul li.dropdown-option.disabled:hover .option-description,
  .tail-select.disabled .select-dropdown ul li.dropdown-option.hover .option-description,
  .tail-select .select-dropdown ul li.dropdown-option.disabled.hover .option-description {
      color: rgba(52, 58, 64, 0.7);
  }

  /* @end DROPDOWN */

  /*# sourceMappingURL=tail.select-success.map */
  #ensign-nivoslider-4 {
      position: relative;
  }

  #ensign-nivoslider-4::before {
      position: absolute;
      width: 100%;
      height: 100%;
      content: '';
      z-index: 1;
      background: #000;
      opacity: 0.7;
  }


  .overlay {
      position: absolute;
      width: 100%;
      height: 71%;
      top: 0px;
      left: 0px;
  }

  .overlay:after,
  .overlay:before {
      -webkit-border-radius: 30px;
      -khtml-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      border-radius: 30px;
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      -webkit-transition: all ease-in-out 0.3s;
      -khtml-transition: all ease-in-out 0.3s;
      -moz-transition: all ease-in-out 0.3s;
      -ms-transition: all ease-in-out 0.3s;
      -o-transition: all ease-in-out 0.3s;
      transition: all ease-in-out 0.3s;
      opacity: 0;
  }

  .overlay:before {
      background: linear-gradient(to top, #03264a, #FF8326);
  }

  .overlay:after {
      background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 60%);
  }

  .services-item:hover .overlay::before {
      opacity: 0.9;
      z-index: 999;
  }

  .service-box-layout2 .item-icon {
      max-width: 100px;
      margin: 0 auto;
  }

  .service-box-layout2 .item-content .item-title a {
      clear: both;
      line-height: 1.1;
      margin-bottom: 30px;
      font-weight: 700;
      text-transform: capitalize;
      position: relative;
      font-family: 'AktivGrotesk-Light';
      color: #FF8326;
      font-size: 23px;
  }

  .service-box-layout2 .item-content h4 {}

  .item-icon {
      position: relative;
  }

  .item-icon img {
      position: relative;
      z-index: 9;
  }

  .service-box-layout2 .item-icon::after {
      content: '';
      width: 100px;
      height: 100px;
      background: linear-gradient(to top, #fcfcfc 20%, #FF8326);
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      position: absolute;
      left: 0px;
      bottom: 0;
      z-index: 1;
  }

  #msform .form-group .form-control {
      padding: 0;
      border: 1px solid #2C3E50;
  }

  .fs-subtitle {
      font-weight: normal;
      font-size: 13px;
      color: #666;
      margin-bottom: 20px;
  }

  .fs-title {
      font-size: 15px;
      text-transform: uppercase;
      color: #2C3E50;
      margin-bottom: 10px;
  }

  .logo-mobile {
      max-width: 115px;
  }

  @media only screen and (max-width: 767.99px) {
      .hero-content {
          width: 100%;
      }

      #msform {
          width: 100%;
          margin: 0 auto;
          text-align: center;
          position: relative;
      }
  }

  #svg-top,
  #svg-bottom {
      position: absolute;
      z-index: 0;
  }

  #svg-bottom {
      bottom: 0px;
      right: 0px;
      z-index: -1;
  }

  #svg-top {
      top: 0px;
      left: 0px;
      z-index: -1;
  }




  /*Banner Key*/
  .hero-content.right img {
      -webkit-animation: jump 5s linear 0s infinite normal forwards;
      animation: jump 5s linear 0s infinite normal forwards;
  }

  @keyframes jump {
      0% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }

      20% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }

      41% {
          -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
      }

      50% {
          -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
      }

      50% {
          -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
      }

      80% {
          -webkit-transform: translateY(0px);
          transform: translateY(0px);
      }

      100% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }
  }

  @-webkit-keyframes jump {
      0% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }

      20% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }

      41% {
          -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
      }

      50% {
          -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
      }

      50% {
          -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
      }

      80% {
          -webkit-transform: translateY(0px);
          transform: translateY(0px);
      }

      100% {
          -webkit-transform: translateY(0);
          transform: translateY(0);
      }
  }

  /*Phone Css*/
  .phone {
  width: 360px;
  height: 708px;
  border: 3px solid #bdc3c7;
  border-radius: 15px;
  box-sizing: border-box;
  position: relative;
  background-color: rgba(11, 11, 11, 0.94);
  margin: 0 auto;
}

  .phone .home-btn {
      width: 40px;
      height: 40px;
      border: 2px solid #bdc3c7;
      position: absolute;
      bottom: 15px;
      left: 160px;
      border-radius: 50%;
  }

  .phone .camera {
      width: 10px;
      height: 10px;
      position: absolute;
      top: 25px;
      left: 150px;
      background-color: #555555;
      border-radius: 50%;
  }

  .phone .speaker {
      width: 50px;
      height: 10px;
      position: absolute;
      top: 25px;
      left: 165px;
      background-color: #555555;
      border-radius: 10px;
  }

  .phone .screen {
      width: 320px;
      height: 568px;
      background-color: #fff;
      position: absolute;
      top: 60px;
      left: 20px;
      border-radius: 3px;
      border: 2px solid #555555;
      box-sizing: border-box;
      cursor: pointer;
      overflow: hidden;
  }

  .phone .screen .inner {
      width: 335px;
      height: 100%;
      position: absolute;
      top: 0;
      overflow-y: scroll;
      overflow-x: hidden;
  }

  /* Position */


  /*@group MultiSelect */
  /*Selectbox*/
  .ui.selection {
      width: 350px;
  }

  /*Border graydark*/
  .ui.selection.dropdown,
  .ui.selection.dropdown .menu,
  .ui.selection.dropdown:focus,
  .ui.selection.dropdown:hover,
  .ui.selection.dropdown:hover .menu {
      border: 1px solid #4b636e;
  }

  /*Color text default graylight*/
  .ui.default.dropdown:not(.button) > .text,
  .ui.dropdown:not(.button) > .default.text,
  .ui.dropdown .menu > .message:not(.ui) {
      color: #000;
  }

  /* Multiselect selected*/
.ui.visible.selection.dropdown > .label, .ui.selection.dropdown .label {
  background-color: rgba(187, 124, 77, 0.76);
  color: #fff;
  box-shadow: 0 0 0 1px #4b636e inset;
  float: left;
  width: auto;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
  font-weight: normal;
}
  /* Dropdown-Icon*/
  .ui.selection.dropdown > .dropdown.icon {
      color: #4b636e;
      /*default*/
  }

  .ui.selection.dropdown > .dropdown.icon:hover {
      color: #6b9b37;
      /*hover*/
  }

  /* @end */

  /* @group Active*/
  /*Border - greendark*/
  .ui.selection.active.dropdown,
  .ui.selection.active.dropdown:hover,
  .ui.selection.active.dropdown .menu,
  .ui.selection.active.dropdown:hover .menu {
      border-color: #6b9b37;
      box-shadow: 0 2px 3px 0 rgba(34, 36, 38, .15);
  }

  /*fa-caret-up from fontawesome*/
  .ui.active.selection.dropdown > .dropdown.icon,
  .ui.visible.selection.dropdown > .dropdown.icon::before {
      content: '\f0d8';
      color: #4b636e;
  }

  /*Multiselect hover Values*/
 .ui.dropdown .menu > .item:hover, .ui.selection.dropdown .menu.item:hover, .ui.dropdown .menu .selected.item:hover, .ui.dropdown.selected:hover {
  font-size: 20px;
  color: #fff;
  background-color: #fda593;
}

  .ui.dropdown .menu .selected.item,
  .ui.dropdown.selected {
      background: #fff;
      color: #4b636e;
  }

  /* Textcolor and Font-Size Multiselect*/
  .ui.dropdown .menu > .item,
  .ui.selection.dropdown .menu.item {
      font-size: 13px;
      color: #4b636e;
  }

  /* @end */

  /* Icons und Items */
  /*Delete-Icon selected values hover*/
  .ui.label > .delete.icon:hover {
      color: red;
  }

  .ui.selection.dropdown {
      width: 100%;
  }

  a.ui.labels .active.label:hover,
  a.ui.active.label:hover {
      background-color: #646464;
      border-color: #e83a15;
      background-image: none;
      color: rgba(0, 0, 0, 0.95);
  }

  .ui.label > .close.icon,
  .ui.label > .delete.icon {
      cursor: pointer;
      margin-right: 0em;
      margin-left: 0.5em;
      font-size: 0.92857143em;
      opacity: 0.5;
      -webkit-transition: background 0.1s ease;
      transition: background 0.1s ease;
      position: absolute;
      right: 6px;
      font-size: 14px;
      top: 50%;
      transform: translateY(-50%);
  }
.ui.selection.dropdown .menu > .item {
  border-top: 1px solid #fafafa;
  font-size: 18px;
    transition: all linear 0.2s;
}
a.ui.labels .active.label:hover, a.ui.active.label:hover {
  background-color: #ecbcbc;
  border-color: #e83a15;
  background-image: none;
  color: rgba(0, 0, 0, 0.95);
}
/*video Css*/
.video-main {
    margin: 0 auto;
}

#all {
    text-align: center;
    position: relative;
}

#play-video {
    border: 4px solid;
    border-radius: 50%;
    padding: 6px 11px;
    background: transparent;
    font-size: 24px;
    color: #ae2f3b;
    border-color: #ae2f3b;
    height: 56px;
    width: 56px;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    line-height: 1.5;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

#play-video:hover {
    -o-transform: scale(1.05);
}

#play-video i {
    transition: all 0s ease !important;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -o-transition: all 0s ease;
    line-height: 0;
}

#play-video:hover {
    background-color: #ae2f3b;
    color: #ffffff;
}

#close-video {
    border: 4px solid;
    border-radius: 50%;
    background: transparent;
    font-size: 26px;
    color: #8D908A;
    height: 56px;
    width: 56px;
    text-align: center;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1000px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#all img {
    width: ;
}