@charset "UTF-8";
/*==============================================================================
[Table of CSS components]
==============================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&amp;family=Raleway:wght@700&amp;display=swap");
h1, .h1 {
  font-size: 40px;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 34px;
  }
}

h2, .h2 {
  font-size: 36px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 28px;
  }
}

h3, .h3 {
  font-size: 30px;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 22px;
  }
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 15px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
  margin: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Raleway", sans-serif;
}

h1, .h1, h2, .h2, h3 {
  font-weight: 700;
  line-height: 1.39;
}

h5, .h5, h6, .h6 {
  font-weight: 600;
}

a:focus,
button:focus {
  outline: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #ffaa19;
}

ol {
  list-style-position: inside;
}

ul, li {
  padding: 0;
  margin: 0;
}

body {
  color: #7d7d7d;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.loaded {
  overflow-y: scroll;
}

::-webkit-selection {
  color: #35382f;
  background-color: rgba(255, 170, 25, 0.7);
  text-shadow: none;
}

::-moz-selection {
  color: #35382f;
  background-color: rgba(255, 170, 25, 0.7);
  text-shadow: none;
}

::selection {
  color: #35382f;
  background-color: rgba(255, 170, 25, 0.7);
  text-shadow: none;
}

:focus {
  outline: 0;
}

/*=== UTILITIES CLASSES ===*/
.font-primary {
  font-family: "Raleway", sans-serif;
}

.font-secondery {
  font-family: "Poppins", sans-serif;
}

.font-w-400 {
  font-weight: 400 !important;
}

.font-w-600 {
  font-weight: 600 !important;
}

.font-w-700 {
  font-weight: 700 !important;
}

small, .small {
  font-size: 18px !important;
}

.line-h-1-5 {
  line-height: 1.5;
}

.line-h-1-6 {
  line-height: 1.6;
}

.line-h-1-7 {
  line-height: 1.7;
}

.line-h-1-8 {
  line-height: 1.8;
}

.lead {
  font-size: 18px !important;
  line-height: 30px;
}
@media (max-width: 767px) {
  .lead {
    font-size: 16px !important;
  }
}

.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-heading {
  margin-top: -9px;
}

.overlay,
.overlay-dark,
.overlay-light {
  position: relative;
  z-index: 1;
}
.overlay::after,
.overlay-dark::after,
.overlay-light::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.35;
}

.overlay-dark::after {
  background-color: #18305d;
  opacity: 0.9;
}

.overlay-light::after {
  background-color: #ffffff;
  opacity: 0.5;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .btn {
    padding: 14px 30px;
  }
}
.btn.btn-sm {
  font-size: 15px;
  padding: 14px 30px;
}
@media (max-width: 767px) {
  .btn.btn-sm {
    font-size: 14px;
    padding: 14px 26px;
  }
}
.btn:active, .btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.btn::after {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.btn:hover::after {
  height: 100%;
  bottom: 100%;
  -webkit-transition: height 0.3s, bottom 0.7s;
  transition: height 0.3s, bottom 0.7s;
}

.btn-primary {
    color: #fff;
    background-color: #ffaa19;
    border-radius: 5px;

}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  color: #35382f;
  background-color: #ffaa19;
}
.btn-primary::after {
  background-color: #ffffff;
}

.btn-light {
  color: #35382f;
  background-color: #ffffff;
}
.btn-light:hover, .btn-light:active, .btn-light:focus {
  color: #35382f;
  background-color: #ffffff;
}
.btn-light::after {
  background-color: #ffaa19;
}

.btn-primary-outline {
  color: #35382f;
  background-color: #ffffff;
  border: 1px solid #ffaa19;
  padding: 16px 35px;
}
.btn-primary-outline.btn-sm {
  padding: 13px 30px;
}
@media (max-width: 767px) {
  .btn-primary-outline.btn-sm {
    padding: 13px 26px;
  }
}
.btn-primary-outline:hover, .btn-primary-outline:active, .btn-primary-outline:focus {
  color: #35382f;
  background-color: #ffffff;
}
.btn-primary-outline::after {
  background-color: #ffaa19;
}

.owl-nav button {
  height: 30px;
  width: 30px;
  line-height: 30px !important;
  background: #babbb9 !important;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 12px !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: calc(50% - 30px);
}
.owl-nav button.disabled {
  background: rgba(255, 170, 25, 0.5) !important;
}
.owl-nav button.disabled:hover {
  cursor: default;
  background: rgba(255, 170, 25, 0.5) !important;
}
.owl-nav button:hover {
  background: #333333 !important;
}
.owl-nav .owl-prev {
  left: -15px !important;
}
.owl-nav .owl-next {
  right: -15px !important;
}

.owl-dots {
  margin-top: 25px;
  text-align: center;
  line-height: 0;
}
.owl-dots button.owl-dot {
  width: 50px;
  height: 12px;
  border-radius: 15px;
  background: #cecece !important;
  margin: 0 5px;
  margin-top: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.owl-dots button.owl-dot.active {
  background-color: #ffaa19 !important;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section.pt-80 {
  padding-top: 80px !important;
}
@media (max-width: 767px) {
  .section.pt-80 {
    padding-top: 50px;
  }
}
.section.pt-60 {
  padding-top: 60px !important;
}
@media (max-width: 767px) {
  .section.pt-60 {
    padding-top: 10px;
  }
}

.cm-page-header {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .cm-page-header {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.cm-page-header.overlay-dark::after {
  background-color: #18305d;
  opacity: 0.45;
}

.pagination {
  margin-top: 30px;
}
.pagination li {
  margin: 0 5px;
}
.pagination a {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 33px;
  border: 1px solid #dbdbdb;
  color: #7d7d7d;
  text-align: center;
}
.pagination a.active, .pagination a:hover {
  text-decoration: none;
  color: #35382f;
  border-color: #ffaa19;
  background-color: #ffaa19;
}

.check-list {
  list-style: none;
}
.check-list li {
  position: relative;
  margin-top: 15px;
}
.check-list li:first-child {
  margin-bottom: 0;
}
.check-list li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  margin-right: 10px;
  font-size: 80%;
  color: #ffaa19;
}

.number-input {
  border: 1px solid #dbdbdb;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.number-input input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  max-width: 60px;
  border: 0;
  font-size: 16px;
  height: 40px;
  font-weight: bold;
  padding: 0 15px;
}
.number-input input[type=number]::-webkit-inner-spin-button,
.number-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.number-input button {
  outline: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 12px;
  display: block;
  margin-right: 7px;
}

.text-primary {
  color: #ffaa19 !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: #ffaa19 !important;
  opacity: 0.7;
}

.bg-primary {
  background-color: #ffaa19 !important;
}

.text-dark {
  color: #35382f !important;
}

a.text-dark:hover, .text-dark a:hover {
  color: #ffaa19 !important;
}

.bg-dark {
  background-color: #35382f !important;
}

.text-blue {
  color: #18305d !important;
}

.bg-blue {
  background-color: #18305d !important;
}

.text-gray {
  color: #cecece !important;
}

.bg-gray {
  background-color: #cecece !important;
}

.bg-light-gray {
  background-color: #f3f3f5 !important;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.text-black-100 {
  color: #111111;
}

.bg-black-100 {
  background-color: #111111;
}

.bg-black-200 {
  background-color: #222222;
}

.text-black-200 {
  color: #222222;
}

.bg-black-300 {
  background-color: #333333;
}

.text-black-300 {
  color: #333333;
}

.text-black-400 {
  color: #444444;
}

.bg-black-400 {
  background-color: #444444;
}

.bg-black-500 {
  background-color: #555555;
}

.text-black-500 {
  color: #555555;
}

.text-black-600 {
  color: #666666;
}

.bg-black-600 {
  background-color: #666666;
}

.bg-black-700 {
  background-color: #777777;
}

.text-black-700 {
  color: #777777;
}

.text-black-800 {
  color: #888888;
}

.bg-black-800 {
  background-color: #888888;
}

.bg-black-900 {
  background-color: #999999;
}

.text-black-900 {
  color: #999999;
}

.home-4 .text-dark-2 {
  color: #000C22 !important;
}
.home-4 .btn {
  padding: 18px 25px;
  text-transform: capitalize;
  border-radius: 5px;
}
.home-4 .btn.btn-light {
  color: #ffaa19;
}
.home-4 .btn.btn-primary {
  color: #fff;
}
.home-4 .social-area a {
  padding: 0;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  color: #fff;
  margin-left: 10px;
}
.home-4 .social-area a:hover {
  border: 1px solid #ffaa19;
  color: #ffaa19;
}
.home-4 .social-area a.social-links-four-active {
  border: 1px solid #ffaa19;
  color: #ffaa19;
}
.home-4 .section-subtitle {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #ffaa19;
  margin-bottom: 30px;
}
.home-4 .section-subtitle:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ffaa19;
  bottom: -12px;
  left: 50%;
  margin-left: -10px;
}
.home-4 .section-subtitle:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ffaa19;
  bottom: -12px;
  left: 50%;
  margin-left: 0px;
  z-index: 11;
}
.home-4 .section-subtitle span {
  position: absolute;
  width: 100%;
  background: #ffaa19;
  height: 1px;
  bottom: -8px;
  left: 0px;
}
.home-4 .about-media {
  margin-top: 30px;
  margin-bottom: 20px;
}
.home-4 .about-media .thumb {
  margin-right: 11px;
}
.home-4 .about-media h6 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}
.home-4 .product-filter-buttons button, .home-4 .product-filter-buttons-2 button {
  border: 1px solid transparent;
  border-bottom: 1px solid #ffaa19;
  color: #000612;
  padding: 7px 25px;
}
.home-4 .product-filter-buttons button:hover, .home-4 .product-filter-buttons button.active, .home-4 .product-filter-buttons-2 button:hover, .home-4 .product-filter-buttons-2 button.active {
  background-color: transparent;
  border: 1px solid #ffaa19;
  border-radius: 5px !important;
  color: #ffaa19;
}
.home-4 .fluid-carousel .product-item .card-img-top {
  padding: 10px;
}
.home-4 .owl-dots button.owl-dot {
  height: 10px;
  width: 10px;
}
.home-4 .product-item {
  position: relative;
  overflow: hidden;
}
.home-4 .product-item:hover .social-links {
  opacity: 1;
  right: 5px;
}
.home-4 .product-item .social-links {
  display: inline-block;
  position: absolute;
  right: -5px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-4 .product-item .social-links li {
  display: block;
  margin-bottom: 5px;
}
.home-4 .product-item .social-links li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  background: #000C22;
}
.home-4 .product-item .card-body {
  text-align: center;
  padding: 17px 20px 30px;
}
.home-4 .product-item .card-body h5 {
  font-weight: 700;
}
.home-4 .product-item .card-body .rating {
  margin-bottom: 15px;
}
.home-4 .product-item .card-body .btn {
  margin-top: 18px;
  padding: 8px 14px;
  background: #000C22;
}
.home-4 .product-item .card-body .btn:hover {
  background: #ffaa19;
}
.home-4 .cm-cta:after {
  background-color: #000C22;
  opacity: 0.85;
}
.home-4 .team-item {
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 50px rgba(0, 6, 18, 0.08);
          box-shadow: 0px 10px 50px rgba(0, 6, 18, 0.08);
  padding-bottom: 12px;
}
.home-4 .team-item:hover .thumb:after {
  opacity: 1;
  top: 0;
}
.home-4 .team-item:hover .thumb .social-links {
  opacity: 1;
  left: 20px;
}
.home-4 .team-item .thumb {
  position: relative;
  overflow: hidden;
}
.home-4 .team-item .thumb:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 10px;
  left: 0;
  background: rgba(0, 12, 34, 0.7);
  opacity: 0;
}
.home-4 .team-item .thumb .social-links {
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 15px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-4 .team-item .thumb .social-links li {
  display: block;
  margin: 5px 0 0;
}
.home-4 .team-item .thumb .social-links li a {
  height: 36px;
  width: 36px;
  line-height: 36px;
  border-color: #ffaa19;
  color: #fff;
}
.home-4 .team-item h4 {
  font-weight: 700;
  margin-top: 12px;
}
.home-4 .cm-testimonials {
  background-position: center;
  background-size: cover;
}
.home-4 .testimonial-slider {
  margin-top: 30px;
  margin-bottom: 80px;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  width: 100%;
  padding: 22px 30px;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap .media {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap p {
  color: #fff;
  margin-bottom: 15px;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap h4 {
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap span {
  color: #ffaa19;
}
.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap i {
  font-size: 24px;
  color: #ffaa19;
}
.home-4 .testimonial-slider .owl-nav button {
  background: transparent !important;
  font-size: 25px !important;
  left: -35px !important;
}
.home-4 .testimonial-slider .owl-nav button:hover {
  color: #ffaa19 !important;
}
.home-4 .testimonial-slider .owl-nav button.owl-prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.home-4 .testimonial-slider .owl-nav button.owl-next {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: calc(50% - 10px);
}
.home-4 .blog-item {
  -webkit-box-shadow: 0px 10px 50px rgba(0, 6, 18, 0.08);
          box-shadow: 0px 10px 50px rgba(0, 6, 18, 0.08);
  background: #fff;
}
.home-4 .blog-item .thumb {
  position: relative;
}
.home-4 .blog-item .blog-meta-overlap {
  width: auto;
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  padding: 0;
  background: transparent;
  color: #ffaa19;
  z-index: 0;
  padding: 19px 47px 5px 30px;
}
.home-4 .blog-item .blog-meta-overlap i {
  margin-right: 10px;
}
.home-4 .blog-item .blog-meta-overlap:after {
  content: "";
  position: absolute;
  left: -19px;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  -webkit-transform: skewX(37deg);
          transform: skewX(37deg);
}
.home-4 .blog-item .comment {
  display: inline-block;
  margin-left: auto;
  font-size: 16px;
  color: #4F576D;
  text-decoration: none;
}
.home-4 .blog-item .comment i {
  color: #ffaa19;
  margin-right: 5px;
}
.home-4 .brand-carousel img {
  width: auto;
  -webkit-filter: contrast(0.01);
          filter: contrast(0.01);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: auto;
}
.home-4 .brand-carousel img:hover {
  -webkit-filter: contrast(1);
          filter: contrast(1);
}
.home-4 .footer-bottom {
  padding: 20px 10px;
  color: #ffffff;
  background: #000C22;
}
.home-4 .footer-bottom.overlay:after {
  background: rgba(255, 255, 255, 0.2);
}
.home-4 .footer-bottom .footer-link {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.home-4 .footer-bottom .footer-link li {
  display: inline-block;
  border-left: 1px solid #fff;
  padding-left: 10px;
  margin-left: 10px;
}
.home-4 .footer-bottom .footer-link li a {
  color: #fff;
}
.home-4 .footer-bottom .footer-link li:first-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.cm-header.header-four .header-top {
  background-color: #000612;
  padding: 10px 0;
}
.cm-header.header-four .block {
  border-right: 1px solid #fff;
  padding-right: 18px;
  margin-right: 15px;
}
.cm-header.header-four .block .icon {
  border: 1px solid #ffaa19;
  padding: 0;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
}
.cm-header.header-four .header {
  background: #042C71;
}
.cm-header.header-four .header .navbar-brand {
  position: absolute;
  height: 100%;
  top: 0;
  width: auto;
  line-height: 7;
  left: 0;
  padding: 0 120px;
  z-index: 7;
}
.cm-header.header-four .header .navbar-brand:after {
  content: "";
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  height: 100%;
  left: -125px;
  top: 0;
  -webkit-transform: skew(40deg);
  transform: skew(40deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: 108%;
}
.cm-header.header-four .header .nav-link {
  font-size: 16px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
}
.cm-header.header-four .header .nav-link:hover {
  color: #ffaa19;
}
.cm-header.header-four .header .navbar-right-part {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 50px;
}
.cm-header.header-four .header .navbar-right-part .icon {
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
.cm-header.header-four .header .navbar-right-part .icon .notification {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ffaa19;
  color: #fff;
  position: absolute;
  display: inline-block;
  line-height: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  right: -9px;
  top: -2px;
}
.cm-header.header-four .header .navbar-right-part .btn {
  margin-left: 30px;
}

/****banner-area****/
.cm-banner-04 {
  padding: 170px 0 310px;
}

.banner-inner {
  background: rgba(0, 12, 34, 0.5);
  padding: 54px 40px 60px;
}
.banner-inner h4 {
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
}
.banner-inner h1 {
  color: #fff;
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 0;
}
.banner-inner p {
  margin-top: 20px;
  color: #fff;
}
.banner-inner .btn-area {
  margin-top: 50px;
}
.banner-inner .btn-area .btn {
  margin-right: 26px;
}

/****feature-area****/
.cm-features-area {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-bottom: -128px;
}

.single-features-wrap {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
  text-align: center;
  padding: 40px 40px 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-features-wrap.single-features-wrap-active {
  background: #ffaa19;
}
.single-features-wrap.single-features-wrap-active .icon {
  background: rgba(255, 255, 255, 0.2);
}
.single-features-wrap.single-features-wrap-active .icon img {
  -webkit-filter: brightness(222);
          filter: brightness(222);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.single-features-wrap.single-features-wrap-active p,
.single-features-wrap.single-features-wrap-active h4 {
  color: #fff;
}
.single-features-wrap .icon {
  background: rgba(255, 170, 25, 0.1);
  display: inline-block;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  line-height: 70px;
  margin-bottom: 20px;
}
.single-features-wrap h4 {
  color: #000C22;
  margin-bottom: 0;
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
}
.single-features-wrap p {
  color: #4F576D;
  margin-top: 10px;
  margin-bottom: 0;
}

.cm-fact-area {
  margin-top: 100px;
}

.single-fact-wrap {
  text-align: center;
}
.single-fact-wrap .wrap-details h2 {
  font-family: Raleway;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  color: #000C22;
  margin-bottom: 4px;
}
.single-fact-wrap .wrap-details p {
  color: #4F576D;
}

.service-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #ffaa19;
  background: transparent !important;
}

.single-service-wrap {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 25px rgba(0, 6, 18, 0.05);
          box-shadow: 0px 10px 25px rgba(0, 6, 18, 0.05);
  margin-bottom: 30px;
}
.single-service-wrap:hover .thumb span {
  background: #ffaa19;
}
.single-service-wrap:hover .thumb span img {
  -webkit-filter: brightness(9);
          filter: brightness(9);
}
.single-service-wrap:hover .more-btn {
  opacity: 1;
}
.single-service-wrap .thumb {
  position: relative;
}
.single-service-wrap .thumb img {
  width: 100%;
}
.single-service-wrap .thumb span {
  position: absolute;
  left: 50%;
  bottom: 6px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
          box-shadow: 0px 2px 5px rgba(0, 6, 18, 0.1);
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  line-height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-service-wrap .thumb span img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: auto;
  display: inline-block;
}
.single-service-wrap .details {
  padding: 0 18px;
}
.single-service-wrap h4 {
  font-family: Raleway;
  color: #000C22;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 11px;
}
.single-service-wrap p {
  color: #4F576D;
  margin-bottom: 0px;
}
.single-service-wrap .more-btn {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #ffaa19;
  color: #fff;
  -webkit-transform: translate(0px, 20px);
          transform: translate(0px, 20px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.cm-wcu-area {
  position: relative;
}
.cm-wcu-area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 12, 34, 0.8);
  z-index: 0;
}

.wcu-single-wrap {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  display: inline-block;
  padding: 15px 16px;
  margin-top: 30px;
  margin-right: 5px;
  margin-bottom: 20px;
}
.wcu-single-wrap .thumb {
  margin-bottom: 15px;
}
.wcu-single-wrap h6 {
  font-size: 18px;
  font-weight: 700;
}

.single-wcu-wrap {
  text-align: center;
  background: #042C71;
  padding: 30px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-wcu-wrap:hover {
  background: #ffaa19 !important;
}
.single-wcu-wrap:hover .thumb img {
  -webkit-filter: brightness(9);
          filter: brightness(9);
}
.single-wcu-wrap:hover h4 {
  color: #fff !important;
}
.single-wcu-wrap:hover p {
  color: #fff !important;
}
.single-wcu-wrap .thumb {
  margin-bottom: 20px;
}
.single-wcu-wrap .thumb img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-wcu-wrap h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-wcu-wrap p {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-contact-info {
  margin-bottom: 20px;
}
.single-contact-info .thumb {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #042C71;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-right: 20px;
}
.single-contact-info .media-body p,
.single-contact-info .media-body h4 {
  color: #000612;
  margin-bottom: 10px;
}

.contact-g-map {
  margin-bottom: -11px;
}
.contact-g-map iframe {
  line-height: 1 !important;
  border: 0;
  width: 100%;
  height: 470px;
}

.accordion-inner-wrap .card {
  border: 0;
  background: #F5F6F6;
  margin-bottom: 20px;
  border-radius: 6px;
}
.accordion-inner-wrap .card .card-header {
  border: 0;
  border-radius: 0;
  background: none;
  padding: 13px 20px 13px 13px;
}
.accordion-inner-wrap .card .card-header button {
  border: 0;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #000C22;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  background: transparent;
}
.accordion-inner-wrap .card .card-header button.collapsed:before {
  opacity: 1;
}
.accordion-inner-wrap .card .card-header button span {
  height: 50px;
  width: 50px;
  background: #ffaa19;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
  color: #000C22;
}
.accordion-inner-wrap .card .card-header button:after {
  position: absolute;
  content: "";
  right: 0;
  top: 24px;
  background: #ffaa19;
  height: 2px;
  width: 14px;
}
.accordion-inner-wrap .card .card-header button:before {
  position: absolute;
  content: "";
  right: 6px;
  top: 18px;
  background: #ffaa19;
  width: 2px;
  height: 14px;
  opacity: 0;
}
.accordion-inner-wrap .card .card-body {
  padding: 0 40px 35px 85px;
}

.login-area .default-form-wrap {
  padding: 61px 70px;
  background: #f6f8fb;
  border-radius: 10px;
}
.login-area .default-form-wrap .btn {
  -webkit-box-shadow: 7px 12.124px 30px 0px rgba(107, 126, 145, 0.06);
          box-shadow: 7px 12.124px 30px 0px rgba(107, 126, 145, 0.06);
  font-size: 18px;
  margin-top: 22px;
}
.login-area .default-form-wrap p {
  text-align: center;
  margin: 40px 0 0 0;
}
.login-area .default-form-wrap a {
  color: #ffaa19;
  margin-left: 5px;
}
.login-area .single-input-wrap label {
  font-size: 18px;
  font-weight: 700;
  color: #000C22;
  margin-bottom: 16px;
}
.login-area .single-input-wrap input {
  border: 2px solid #fff;
  padding: 0 30px;
  background: transparent;
  -webkit-box-shadow: 7px 12.124px 30px 0px rgba(107, 126, 145, 0.06);
          box-shadow: 7px 12.124px 30px 0px rgba(107, 126, 145, 0.06);
  height: 70px;
  border-radius: 5px;
  width: 100%;
  color: #747e8c;
  font-size: 15px;
  position: relative;
}

/*===  PRELOADER CSS  ===*/
.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #ffaa19;
  z-index: 9999999;
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.preloader-inner .spinner-border {
  border-width: 0.15em;
  position: absolute;
  top: -30%;
  color: #555555;
  left: calc(50% - 1rem);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.preloader-inner .spinner-border span {
  display: block;
}

.preloader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: sk-chase 2.5s infinite linear both;
          animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
          animation: sk-chase-dot 2s infinite ease-in-out both;
}
.sk-chase-dot::before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #35382f;
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
          animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 991px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    width: 220px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 15px;
    border-radius: 0;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    -webkit-box-shadow: 0 10px 30px rgba(22, 28, 45, 0.1);
            box-shadow: 0 10px 30px rgba(22, 28, 45, 0.1);
  }
}
.dropdown-menu {
  border: 0;
  padding: 10px 0;
}

.dropdown-item {
  font-size: 16px;
  padding: 8px 20px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  color: #ffffff;
  background-color: #ffaa19;
}

.navbar-toggler {
  border: 0;
}
.navbar-toggler span {
  color: #35382f;
}

.dropdown-toggle::after {
  display: none;
}

@media (max-width: 991px) {
  .dropdown-menu {
    border: 0;
    padding: 0;
    text-align: left !important;
    background: #f2faff;
    border-radius: 0px;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
    width: 250px;
    max-width: 100%;
    margin-right: auto;
    -webkit-box-align: initial !important;
        -ms-flex-align: initial !important;
            align-items: initial !important;
  }
  .navbar .nav-item {
    display: block;
    text-align: left;
  }
  .navbar .nav-link {
    padding: 8px 4px !important;
  }
  .navbar .dropdown-menu li:first-child {
    padding-top: 10px;
  }
  .navbar .dropdown-menu li:last-child {
    padding-bottom: 10px;
  }
}
.cm-header {
  position: relative;
}
.cm-header .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 15px !important;
}
.cm-header .navbar-light .nav-link {
  color: #35382f !important;
}
.cm-header .navbar-light .nav-link:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .cm-header .navbar-light .nav-link {
    text-align: center;
  }
}
.cm-header .nav-item.active .nav-link {
  color: #ffaa19 !important;
}
@media (max-width: 991px) {
  .cm-header .header-top {
    padding: 7px 0;
  }
}
.cm-header .block .icon {
  display: inline-block;
  border: 1px solid #46597d;
  border-top: 0;
  border-bottom: 0;
  padding: 15px 16px;
}
@media (max-width: 991px) {
  .cm-header .block .icon {
    padding: 0;
    border: 0 !important;
    margin-right: 5px;
  }
  .cm-header .block .icon:first-child {
    padding-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .cm-header .block {
    font-size: 15px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0 !important;
  }
  .cm-header .block.mr-35 {
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
  .cm-header .block {
    font-size: 13px;
  }
  .cm-header .block.mr-35 {
    margin-right: 0;
  }
}
.cm-header .header {
  padding: 12px 0;
  -webkit-box-shadow: 0 0 30px -15px #cecece;
          box-shadow: 0 0 30px -15px #cecece;
}
@media (max-width: 991px) {
  .cm-header .header {
    padding: 8px 0;
  }
  .cm-header .header .navbar-brand img {
    width: 230px;
  }
  .cm-header .header .dropdown-item {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cm-header .header {
    padding: 4px 0;
  }
}
.cm-header .header .block {
  margin-left: 15px;
}
.cm-header .header .block .icon {
  padding: 5px 20px;
  position: relative;
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cm-header .header .block .icon:hover {
  color: #ffaa19 !important;
}
.cm-header .header .block .icon::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(206, 206, 206, 0.5);
  left: 0;
  top: 0;
}
.cm-header .header .block .icon:first-child::after {
  display: none;
}
.cm-header.cm-header-2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 15;
}
.cm-header.cm-header-2 .header {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cm-header.cm-header-2 .header .navbar-light .nav-link {
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cm-header.cm-header-2 .header .navbar-light .nav-link {
    color: #35382f !important;
  }
  .cm-header.cm-header-2 .header .navbar-collapse {
    background: #fff;
  }
}
.cm-header.cm-header-2 .header .nav-item.active .nav-link {
  color: #ffaa19 !important;
}
.cm-header.cm-header-2 .header .navbar-toggler {
  background-color: #fff;
  border-radius: 0;
  padding: 7px !important;
}
.cm-header.cm-header-2 .header .navbar-toggler span {
  font-size: 15px;
}
.cm-header.cm-header-2 .header .block {
  margin-left: 0;
}
@media (max-width: 991px) {
  .cm-header.cm-header-2 .header .block {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.cm-header.cm-header-2 .header .block .icon {
  padding: 5px;
  margin-right: 25px;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cm-header.cm-header-2 .header .block .icon {
    color: #35382f !important;
  }
}
.cm-header.cm-header-2 .header .block .icon:hover {
  color: #ffaa19 !important;
}
.cm-header.cm-header-2 .header .block .icon::after {
  display: none;
}

.search-wrapper {
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 9995;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: rgba(0, 0, 0, 0.8);
}
.search-wrapper .form-control {
  height: 60px;
  width: 350px;
  max-width: 100%;
  padding-left: 30px;
}
.search-wrapper .form-control:focus {
  border-color: #555555;
}
@media (max-width: 480px) {
  .search-wrapper .form-control {
    width: 250px;
  }
}
.search-wrapper .form-group {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.search-wrapper button {
  height: 60px;
  width: 70px;
}
@media (max-width: 480px) {
  .search-wrapper button {
    width: 55px;
  }
}
.search-wrapper .search-close-btn {
  height: 45px;
  width: 45px;
  line-height: 45px;
  margin: 0 auto;
  margin-top: 50px;
  background-color: #ffaa19;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.search-wrapper .search-close-btn:hover {
  opacity: 0.8;
}
.search-wrapper .search-close-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.showSearch {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.showSearch .search-close-btn {
  bottom: 70px;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.showSearch .form-group {
  top: 70px;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.cm-banner {
  padding-top: 200px;
  padding-bottom: 250px;
}
@media (max-width: 1369px) {
  .cm-banner {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
.cm-banner .block h3 {
  margin-top: -4px;
}
@media (max-width: 767px) {
  .cm-banner .block .display-3 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cm-banner .block .display-3 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .cm-banner .block .lead {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

.banner-carousel .overlay::after {
  background-color: #000;
  opacity: 0.3;
}
.banner-carousel .cm-banner {
  padding-top: 300px;
}
@media (max-width: 1369px) {
  .banner-carousel .cm-banner {
    padding-top: 250px;
  }
}
@media (max-width: 991px) {
  .banner-carousel .cm-banner {
    padding-top: 210px;
    padding-bottom: 150px;
  }
}
@media (max-width: 575px) {
  .banner-carousel .cm-banner {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
.banner-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  line-height: 50px !important;
}
.banner-carousel .owl-nav .owl-prev {
  left: 25px !important;
}
.banner-carousel .owl-nav .owl-next {
  right: 25px !important;
}
@media (max-width: 991px) {
  .banner-carousel .owl-nav button {
    height: 40px;
    width: 40px;
    line-height: 40px !important;

  }
}

.cm-banner-03 {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .cm-banner-03 {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .cm-banner-03 .display-4 {
    font-size: 56px;
  }
}
@media (max-width: 575px) {
  .cm-banner-03 .display-4 {
    font-size: 38px;
  }
}
.cm-banner-03.overlay-dark::after {
  opacity: 0.5;
}

.banner-form {
  border: 1px solid #ffaa19;
}
.banner-form .form-control {
  height: 45px;
}
.banner-form .form-control:focus {
  border-color: #888888;
}
.banner-form textarea.form-control {
  height: 90px;
}
.banner-form .nice-select {
  height: 45px;
  line-height: 43px;
  background-color: #f3f3f5;
}
.banner-form .nice-select::after {
  height: 6px;
  right: 18px;
  width: 6px;
}
.banner-form .nice-select .list {
  width: 100%;
}

.cm-features {
  margin-top: -80px;
  position: relative;
  z-index: 3;
}
.cm-features .block {
  margin-top: 30px;
  padding: 30px 35px;
  -webkit-box-shadow: 0 5px 25px -5px #eee;
          box-shadow: 0 5px 25px -5px #eee;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cm-features .block {
    padding: 30px 25px;
  }
  .cm-features .block h4 {
    font-size: 18px;
  }
}
.cm-features .block .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  margin-right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cm-features .block .icon img {
  width: 22px;
}
.cm-features .block:hover .icon {
  border-radius: 17px;
}
.cm-features .block:hover .icon img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.cm-how-can-help .block {
  padding: 30px 25px;
  background-color: #ffffff;
  border: 1px solid #ffaa19;
  position: relative;
  z-index: 1;
}
.cm-how-can-help .block .icon {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  margin-bottom: 25px;
  background-color: #ffaa19;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cm-how-can-help .block .icon img {
  height: 30px;
  width: 30px;
}
.cm-how-can-help .block:hover .icon {
  border-radius: 17px;
}
.cm-how-can-help .block:hover .icon img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}
.cm-how-can-help .block::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  top: 0;
  left: 0;
  z-index: -1;
}
.cm-how-can-help .block.active, .cm-how-can-help .block:hover {
  color: #ffffff;
  border-color: transparent;
}
.cm-how-can-help .block.active::after, .cm-how-can-help .block:hover::after {
  opacity: 0.7;
  background-color: #18305d;
}
.cm-how-can-help .block.active .text-dark, .cm-how-can-help .block:hover .text-dark {
  color: #ffffff !important;
}
.cm-how-can-help.cm-how-can-help-2 .block {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cm-how-can-help.cm-how-can-help-2 .block .context img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.cm-how-can-help.cm-how-can-help-2 .block::after {
  display: none;
}
.cm-how-can-help.cm-how-can-help-2 .block:hover {
  color: #7d7d7d;
  border-color: transparent;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 5px 0 20px -5px #eee;
          box-shadow: 5px 0 20px -5px #eee;
}
.cm-how-can-help.cm-how-can-help-2 .block:hover .text-dark {
  color: #35382f !important;
}
.cm-how-can-help.cm-how-can-help-2 .block:hover .context img {
  -webkit-transform: scale(0.9) rotateY(360deg);
          transform: scale(0.9) rotateY(360deg);
}

.cm-services .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 35px;
  color: #cecece !important;
  text-transform: uppercase;
  font-weight: 600;
}
.cm-services .nav-link:last-child {
  border-bottom: 0;
}
.cm-services .nav-link:hover, .cm-services .nav-link.active {
  background-color: #ffaa19;
  color: #35382f !important;
}
.cm-services.cm-services-02 .nav-link {
  border-bottom: 1px solid rgba(53, 56, 47, 0.1);
  background-color: rgba(53, 56, 47, 0.05);
  padding: 20px 35px;
  color: #35382f !important;
  text-transform: uppercase;
  font-weight: 600;
}
.cm-services.cm-services-02 .nav-link:last-child {
  border-bottom: 0;
}
.cm-services.cm-services-02 .nav-link:hover, .cm-services.cm-services-02 .nav-link.active {
  background-color: #ffaa19;
  color: #35382f !important;
}

.pricing-item h4 {
  padding: 25px 10px;
  background-color: gray;
}
.pricing-item .list-unstyled li {
  padding: 12px 15px;
}
.pricing-item .list-unstyled li:nth-child(odd) {
  background-color: #f3f3f5;
}
.pricing-item .pricing-footer {
  background-color: #f3f3f5;
  padding: 30px 0;
}

.why-choose-us .block {
  padding: 40px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.02);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.02);
}
.why-choose-us .block:hover {
  -webkit-box-shadow: 3px 0 20px rgba(0, 0, 0, 0.07);
          box-shadow: 3px 0 20px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.why-choose-us .block .icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #ffaa19;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.why-choose-us .block .icon img {
  height: 30px;
  width: 30px;
}
.why-choose-us .bg-shape-image {
  padding: 70px 50px;
  background-image: url(../images/why-choose-us/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 575px) {
  .why-choose-us .bg-shape-image {
    padding: 60px 30px;
  }
}
@media (max-width: 480px) {
  .why-choose-us .bg-shape-image {
    padding: 60px 15px;
  }
}
.why-choose-us .bg-shape-image .icon img {
  height: auto;
  margin: auto;
  padding-top: 15px;
}
.why-choose-us .bg-shape-image .block:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.why-choose-us .bg-shape-image .block:hover .icon {
  border-radius: 17px;
}
.why-choose-us .bg-shape-image .owl-dots {
  text-align: left;
  margin-left: -3px;
}
.why-choose-us .bg-shape-image .owl-dots button.owl-dot {
  width: 12px;
  height: 12px;
}
.why-choose-us .bg-shape-image .owl-dots button.owl-dot.active {
  width: 20px;
}

.cm-first-time .block {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cm-first-time .block.active, .cm-first-time .block:hover {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 15px #ddd;
          box-shadow: 0 0 15px #ddd;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.product-filter-buttons button,
.product-filter-buttons-2 button {
  border: 1px solid #bbbbbb;
  color: #35382f;
}
.product-filter-buttons button:hover, .product-filter-buttons button.active,
.product-filter-buttons-2 button:hover,
.product-filter-buttons-2 button.active {
  background-color: #ffaa19;
  border-color: #ffaa19;
}
@media (max-width: 991px) {
  .product-filter-buttons button,
.product-filter-buttons-2 button {
    padding: 15px 25px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .product-filter-buttons button,
.product-filter-buttons-2 button {
    border: 0;
  }
}
@media (max-width: 767px) {
  .product-filter-buttons,
.product-filter-buttons-2 {
    display: block;
  }
}

.carousel-fluid {
  width: 1310px;
  margin: auto;
  max-width: 100%;
  padding: 0 20px;
}

.fluid-carousel .product-item .card-img-top {
  border-color: rgba(255, 170, 25, 0.2) !important;
}

.product-img-style {
  border: 1px solid #dbdbdb;
  position: relative;
}
.product-img-style::after, .product-img-style::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 70%;
  background-color: #ffffff;
  left: 15%;
}
.product-img-style::after {
  bottom: -1px;
}
.product-img-style::before {
  top: -1px;
}

.border-bottom-tab .nav-tabs {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 10px;
}
.border-bottom-tab .nav-tabs .nav-item {
  margin-bottom: 0;
}
.border-bottom-tab .nav-tabs .nav-link {
  border: 0;
  font-size: 18px;
  font-weight: bold;
}
.border-bottom-tab .nav-tabs .nav-link.active {
  color: #35382f !important;
}

.product-item {
  overflow: hidden;
  border-radius: 0;
}
.product-item .card-img-top {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-item .show-on-hover {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-item .show-on-hover .btn {
  font-size: 12px;
  padding: 13px 22px;
}
.product-item .card-body {
  position: relative;
}
.product-item:hover .card-img-top {
  -webkit-filter: saturate(0) blur(1px);
          filter: saturate(0) blur(1px);
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}
.product-item:hover .show-on-hover {
  top: -60px;
  opacity: 1;
}

.cm-cta.overlay-light::after {
  display: none;
}
@media (max-width: 767px) {
  .cm-cta.overlay-light::after {
    display: block;
  }
}

.cm-cta-02 {
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .cm-cta-02 .cta-img {
    display: none;
  }
}

@media (max-width: 575px) {
  .cm-team {
    padding-bottom: 110px;
  }
}
@media (max-width: 575px) {
  .cm-team .team-img {
    width: 250px !important;
  }
}
.cm-team .owl-nav .owl-prev {
  left: auto !important;
  right: 45px !important;
  top: -80px;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (max-width: 575px) {
  .cm-team .owl-nav .owl-prev {
    top: auto;
    bottom: -80px;
    right: calc(50% + 10px) !important;
  }
}
.cm-team .owl-nav .owl-next {
  right: 0px !important;
  top: -80px;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media (max-width: 575px) {
  .cm-team .owl-nav .owl-next {
    top: auto;
    bottom: -80px;
    right: calc(50% - 30px) !important;
  }
}
.cm-team .barWrapper {
  margin-top: 25px;
}
.cm-team .barWrapper .progress-text {
  font-weight: 600;
  color: #35382f;
  display: inline-block;
  margin-bottom: 5px;
}
.cm-team .progress {
  overflow: visible;
  height: 7px;
  border-radius: 15px;
  position: relative;
}
.cm-team .progress .progress-bar {
  background: #ffaa19;
  border-radius: 15px;
  overflow: visible;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 1.5s ease-in-out;
  transition: opacity 0.3s, width 1.5s ease-in-out;
}
.cm-team .progress .progress-bar .skill-percent {
  position: absolute;
  color: #ffffff;
  right: 0;
  height: 26px;
  width: 30px;
  line-height: 26px;
  background-color: #35382f;
  border-radius: 4px;
  bottom: 14px;
}
.cm-team .progress .progress-bar .skill-percent::after {
  position: absolute;
  content: "";
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #35382f;
  border-top: 5px solid #35382f;
  bottom: -7px;
  right: 0;
}

.testimonial-item {
  padding: 30px;
  background-color: #ffffff;
  border-left: 5px solid #ffaa19;
  -webkit-box-shadow: 0 10px 25px #eee;
          box-shadow: 0 10px 25px #eee;
}

.blog-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.blog-item .card-img-top {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-item:hover .card-img-top {
  -webkit-filter: sepia(0.4);
          filter: sepia(0.4);
}
.blog-item .blog-meta-overlap {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  background-color: #ffaa19;
  height: 50px;
  width: 50px;
  text-align: center;
  padding-top: 8px;
  line-height: 1;
}
.blog-item .blog-meta-overlap span {
  display: block;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
}

.quote-info {
  position: relative;
}
.quote-info::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(../images/quote-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.quote-text {
  line-height: 1.9;
}

.cm-brands {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .cm-brands {
    padding-top: 30px;
  }
}

.divider {
  border-top: 1px solid #ddd;
}

.work-gallery .work-item {
  position: relative;
  padding-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.work-gallery .work-item::after {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  background-color: #18305d;
  top: 0;
  left: 0;
}
.work-gallery .work-item .img-fluid {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.work-gallery .work-item .btn {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 70%;
}
.work-gallery .work-item:hover .btn {
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  background-color: #ffaa19;
}
.work-gallery .work-item:hover .img-fluid {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.work-gallery .work-item:hover::after {
  height: 100%;
  opacity: 0.2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.work-gallery .owl-nav button {
  top: calc(50% - 44px);
}

.widget {
  margin-top: 30px;
}
.widget .widget-heading {
  padding: 15px 10px;
  color: #35382f;
  background-color: #ffaa19;
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.widget.widget-search form {
  background: #f2f2f3;
  border: 1px solid #dbdbdb;
  padding: 7px;
  padding-right: 10px;
}
.widget.widget-search button {
  color: #7d7d7d;
}

.footer-links a {
  position: relative;
  color: #cecece;
  margin-top: 20px;
}
.footer-links a:hover {
  text-decoration: none;
  color: #ffaa19;
}
.footer-links a::before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
}

.footer-bottom {
  padding: 20px 10px;
  background-color: #18305d;
  color: #ffffff;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}
.social-links li:last-child {
  margin-right: 0;
}
.social-links li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #728199;
  color: #ffaa19;
  border-radius: 50px;
}
.social-links li a:hover {
  background-color: #ffaa19;
  color: #ffffff;
  border-color: transparent;
}

.input-group-primary {
  height: 45px;
  border: 1px solid #7988a1;
  border-radius: 50px;
  max-width: 250px;
}
.input-group-primary .form-control {
  height: 44px;
}
.input-group-primary .form-control::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.input-group-primary .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.input-group-primary .form-control:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.input-group-primary .form-control::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.input-group-primary .form-control::placeholder {
  color: #ffffff;
  opacity: 0.7;
}
.input-group-primary .btn {
  color: #ffffff !important;
  padding: 0;
  line-height: 39px;
  height: 39px;
  width: 39px;
  font-size: 13px;
  margin-top: 2px;
  margin-right: 2px;
}

a.scroll-to-top {
  position: fixed;
  bottom: 0;
  right: 30px;
  height: 40px;
  width: 40px;
  background: #ffaa19;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 995;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  a.scroll-to-top {
    right: 10px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}
a.scroll-to-top.show {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
a.scroll-to-top.show:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 767px) {
  a.scroll-to-top.show {
    bottom: 10px;
  }
}


.pagination {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination {
    margin-top: 40px;
  }
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  background-color: transparent;
  color: #81848A;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 8px 15px;
  font-weight: 400;
}

.pagination .page-item:first-child .page-link:hover, .pagination .page-item:last-child .page-link:hover {
  color: #B69149;
  background-color: transparent;
}

.pagination .page-item .page-link {
  margin: 0 5px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  background-color: #F0E9DA;
  color: #B69149;
  border: none;
}

@media (max-width: 575px) {
  .pagination .page-item .page-link {
    margin: 0 3px;
    height: 40px;
    width: 40px;
  }
}

.pagination .page-item .page-link.active {
  background-color: #B69149;
  color: #fff;
}

.pagination .page-item .page-link:hover {
  background-color: #B69149;
  color: #fff;
}

.pagination .page-item .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}





/*星星評價*/

@font-face {
    font-family: 'font-awesome-stars';
    src: url(https://productreviews.shopifycdn.com/assets/font-awesome-stars/font-awesome-stars-911003a601bdba3638357048b4273cc43c8958b4ea8d8e8b57d2a1b0c6620eeb.eot?38446773);
    src: url(https://productreviews.shopifycdn.com/assets/font-awesome-stars/font-awesome-stars-911003a601bdba3638357048b4273cc43c8958b4ea8d8e8b57d2a1b0c6620eeb.eot?38446773#iefix) format("embedded-opentype"),url(https://productreviews.shopifycdn.com/assets/font-awesome-stars/font-awesome-stars-9db9f5907ce1cfed8edd001b2c6f89efd1d4b1847972f4432679de8a760c60e0.svg?38446773#font-awesome-stars) format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'font-awesome-stars';
    src: url("data:application/octet-stream;base64,d09GRgABAAAAAAtYAA4AAAAAE1QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPclI2mNtYXAAAAGIAAAAOgAAAUrQFBm3Y3Z0IAAAAcQAAAAUAAAAHAa1/8RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAAGtAAACclq+oyVoZWFkAAAIjAAAADUAAAA2/5GU62hoZWEAAAjEAAAAIAAAACQHVwNQaG10eAAACOQAAAATAAAAFBC8AABsb2NhAAAI+AAAAAwAAAAMATAB621heHAAAAkEAAAAIAAAACAAywnVbmFtZQAACSQAAAGcAAADRT5lefFwb3N0AAAKwAAAAD4AAABcM6St93ByZXAAAAsAAAAAVgAAAFaSoZr/eJxjYGSOZJzAwMrAwVTFtIeBgaEHQjM+YDBkZGJgYGJgZWbACgLSXFMYHF4wvGBmDvqfxRDF7MhgDhRmBMkBANqQCyF4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w//8PUvCCAURLMELVAwEjG8OIBwBnHgaxAAB4nGNgQANGDEbMjv9PgjAAE2AEfXicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icddC7TttQHMfx//8cX5Ljk/oWX0JDEjs4UZJKiUqDJcTgQl+iC3OZ2BmYGCt1YwYJsWQC8QypShZExTNUUR4hF3PiAgIEg89k6ff5fwHTNL2mp/Qr1OBT0rIMjUpAcVtCSoBQ+AGEsB1EAA2+AYi/auWiL1sdLOpou05RCbuoKmGjH9vNRv9LHMUbn6souw491Uc95K42nXKXY2/0oYr+oVbTDtGv4pjrw8VYUrmhHh2pBtfQG+rckVsLz1u0ZEdMAUkXwnYibHlow2YSU4EqrziFfE5VZBQiSt6GMsbarB2t+Z5tynoH4y7q6KmxZz+o6++pycFgsrc3GbT+3s6Wfk972x+e1+/u6ueT/X28fDil/N4lWWO8EXeY8DHxcwqCBIjb4mM7kIHLNjE7aL4irePNi22DJnPn1UbWaZb+oWc0AQZNWEuCFZuznCiUAyJWnnUJA88xDZoVoWYVuxiptqs0sxr1sLGc3niMUUFy/Ot3ZH4PLgIVS6Me5YV8YToVD6e9kcVKTz1KDLd+rirB1fyfuTuMBqKH5eKyR9EWVKsi/a8hVeAe4gt3jAAAAHicY2BkYGAA4iudNUfi+W2+MnAzvwCKMJzLdJkHoXni/v/5f5J5CbMjkMvBwAQSBQB/7Q2nAAAAeJxjYGRgYA76n8UQxfyCgeH/D+YVDEARFMAKAIv5Ba14nGN+wcDAvACCGb9AaAAqvAPKAAAAAAAATgCyAOIBOQABAAAABQArAAIAAAAAAAIACgAXAG4AAABLCZEAAAAAeJyNkMFKI0EQhv+JUVkDe1jBcx1ElCWTZEAETy4Bc9uDh1z2sm3szEyYTIfujpKDjyD7LF59gT3tK/gCvsT+02lENixkhun+/r+qeroKwBe8IsH6Oee35oT+eeQW9jGKvEP/e+Q2+WfkXXRgI+/Rf4x8gK/4FbmDQ7zwhKT9iWqGP5ETHCcXkVv4nPyIvEO/jNwmP0XexVHyHHmP/u/IBxgnb5E7OGl9G5rFypZ54eV0eCZZf5DJ7UoMrbJWlailL4x1ciVTU3tdVSadmHnDXfWgnZnrrvPKuhudLytlNwObzlhbV5paBml/MzjStbbK67vmFu4+z7yfytSauVzH/8vCmpme+LTwfnHZ6328F4YwWGDFMZfIUcBDcEr3jHuGPgZcBbfMEGaus0rUUKjoKCxZUYSIo77iN6Wq6WpmVOQUE67zd7/LqgdGXXA1taOrwgk31DnPrILepmKbnDF1s5chV9hTys62qRxR16FahY7u3mfhcM+bZnQ9T2q6tqFecP1P/8L5NrEZnQn9NEzZ071Ej+9/5vUXXlOlpHicY2BigAAuBuyAlYGBkZmRhZGVkY01syQ114CluCSxiAtE6KbmFpRUcoKZGYk5abxwlm5iTgkDAwCe8RByAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA") format("woff"),url("data:application/octet-stream;base64,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PSstsEsssgEAPSstsEwssgEBPSstsE0ssgAAOSstsE4ssgABOSstsE8ssgEAOSstsFAssgEBOSstsFEssgAAOystsFIssgABOystsFMssgEAOystsFQssgEBOystsFUssgAAPistsFYssgABPistsFcssgEAPistsFgssgEBPistsFkssgAAOistsFossgABOistsFsssgEAOistsFwssgEBOistsF0ssDIrLrEmARQrLbBeLLAyK7A2Ky2wXyywMiuwNystsGAssAAWsDIrsDgrLbBhLLAzKy6xJgEUKy2wYiywMyuwNistsGMssDMrsDcrLbBkLLAzK7A4Ky2wZSywNCsusSYBFCstsGYssDQrsDYrLbBnLLA0K7A3Ky2waCywNCuwOCstsGkssDUrLrEmARQrLbBqLLA1K7A2Ky2wayywNSuwNystsGwssDUrsDgrLbBtLCuwCGWwAyRQeLABFTAtAAAAS7gAyFJYsQEBjlm5CAAIAGMgsAEjRLADI3CyBCgJRVJEsgoCByqxBgFEsSQBiFFYsECIWLEGA0SxJgGIUVi4BACIWLEGAURZWVlZuAH/hbAEjbEFAEQAAA==") format("truetype")
}

[class^="spr-icon-"]:before,[class*=" spr-icon-"]:before {
    font-family: "font-awesome-stars";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    font-size: 120%
}

.spr-icon-star:before {
    content: '\e800'
}

.spr-icon-star-hover:before {
    content: '\e800'
}

.spr-icon-star-empty:before {
    content: '\e801'
}

.spr-icon-star-empty.spr-icon-star-hover:before {
    content: '\e800'
}

.spr-icon-star-half:before {
    content: '\e802'
}

.spr-icon-star-half-alt:before {
    content: '\e803'
}

#shopify-product-reviews {
    *zoom:1;display: block;
    clear: both;
    overflow: hidden;
    margin: 1em 0
}

#shopify-product-reviews:before,#shopify-product-reviews:after {
    content: " ";
    display: table
}

#shopify-product-reviews:after {
    clear: both
}

.spr-loading {
    *zoom:1;display: block;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 24px;
    text-align: center
}

.spr-loading:before,.spr-loading:after {
    content: " ";
    display: table
}

.spr-loading:after {
    clear: both
}

.spr-container {
    *zoom:1;border: 1px solid #DFDFDF;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 2em
}

.spr-container:before,.spr-container:after {
    content: " ";
    display: table
}

.spr-container:after {
    clear: both
}

.spr-header {
    *zoom:1}

.spr-header:before,.spr-header:after {
    content: " ";
    display: table
}

.spr-header:after {
    clear: both
}

.spr-header-title {
    *zoom:1;font-size: 24px;
    margin: 0 0 12px 0
}

.spr-header-title:before,.spr-header-title:after {
    content: " ";
    display: table
}

.spr-header-title:after {
    clear: both
}

.spr-starratings {
    font-size: 13px;
    margin: 0 0 8px 0
}

.spr-icon {
    font-size: 120%;
    position: relative;
    top: 1px;
    width: 1.3em;
    height: 1.3em
}

.spr-icon.spr-icon-star-empty {
    opacity: 0.6
}

.spr-badge {
    *zoom:1;min-height: auto;
    min-width: auto;
    display: block
}

.spr-badge:before,.spr-badge:after {
    content: " ";
    display: table
}

.spr-badge:after {
    clear: both
}

.spr-badge-starrating {
    margin: 0 3px 0 0
}

.spr-badge-starrating .spr-icon {
    font-size: 100%
}

.spr-summary {
    *zoom:1}

.spr-summary:before,.spr-summary:after {
    content: " ";
    display: table
}

.spr-summary:after {
    clear: both
}

.spr-summary-actions-newreview {
    float: right
}

.spr-summary-starrating {
    margin: 0 6px 0 0
}

.spr-form {
    margin: 24px 0 0 0;
    padding: 24px 0 0 0;
    border-top: 1px solid #DFDFDF;
    border-top: 1px solid rgba(0,0,0,0.1)
}

.spr-form>form {
    margin: 0
}

.spr-form-title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0
}

.spr-form-contact-name,.spr-form-contact-email,.spr-form-contact-location,.spr-form-review-rating,.spr-form-review-title,.spr-form-review-body {
    *zoom:1;margin: 0 0 15px 0
}

.spr-form-contact-name:before,.spr-form-contact-name:after,.spr-form-contact-email:before,.spr-form-contact-email:after,.spr-form-contact-location:before,.spr-form-contact-location:after,.spr-form-review-rating:before,.spr-form-review-rating:after,.spr-form-review-title:before,.spr-form-review-title:after,.spr-form-review-body:before,.spr-form-review-body:after {
    content: " ";
    display: table
}

.spr-form-contact-name:after,.spr-form-contact-email:after,.spr-form-contact-location:after,.spr-form-review-rating:after,.spr-form-review-title:after,.spr-form-review-body:after {
    clear: both
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.spr-form-contact,.spr-form-review,.spr-form-actions {
    *zoom:1;padding: 0;
    border: 0;
    margin: 0
}

.spr-form-contact:before,.spr-form-contact:after,.spr-form-review:before,.spr-form-review:after,.spr-form-actions:before,.spr-form-actions:after {
    content: " ";
    display: table
}

.spr-form-contact:after,.spr-form-review:after,.spr-form-actions:after {
    clear: both
}

.spr-form-review-rating {
    clear: both;
    overflow: hidden
}

.spr-form-review-rating a,.spr-form-review-rating a:hover {
    text-decoration: none;
    display: inline-block;
    float: left
}

.spr-form-label {
    font-size: 18px;
    line-height: 20px
}

.spr-form-input {
    margin: 0
}

.spr-form-label+.spr-form-input {
    margin: 0
}

.spr-form-input-text,.spr-form-input-email,.spr-form-input-textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0
}

.spr-form-input-textarea {
    resize: vertical
}

.spr-form-input-error,input[type="text"].spr-form-input-error,input[type="email"].spr-form-input-error {
    border-color: #C0363A
}

.spr-starrating.spr-form-input-error a {
    color: #C0363A
}

.spr-form-message {
    padding: 0.8em 1em;
    margin: 0 0 1em 0
}

.spr-form-message-error {
    background: #C0363A;
    color: #FFF
}

.spr-form-message-success {
    padding: 0;
    margin: 0
}

.spr-button,.spr-button-primary {
    width: auto;
    margin: 0;
    min-height: 1em
}

.spr-button-primary {
    float: right
}

.spr-reviews {
    margin: 24px 10px 10px 30px;
}

.spr-review {
    padding: 24px 0;
    border-top: 1px solid #DFDFDF;
    border-top: 1px solid rgba(0,0,0,0.1)
}

.spr-review:first-child {
    margin-top: 24px
}

.spr-review:last-child {
    padding-bottom: 0
}

.spr-review-header-byline {
    font-style: italic;
    font-size: 13px;
    opacity: 0.5;
    display: inline-block;
    margin: 0 0 1em 0
}

.spr-review-header-starratings {
    margin: 0 0 0.5em 0;
    display: inline-block
}

.spr-review-header-title {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0;
    border: none
}

.spr-review-content {
    *zoom:1;margin: 0 0 24px 0
}

.spr-review-content:before,.spr-review-content:after {
    content: " ";
    display: table
}

.spr-review-content:after {
    clear: both
}

.spr-review-content-body {
    font-size: 13px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.spr-review-reply {
    *zoom:1;background: #ECECEC;
    background: rgba(0,0,0,0.06);
    margin: 0 0 24px 0;
    padding: 24px
}

.spr-review-reply:before,.spr-review-reply:after {
    content: " ";
    display: table
}

.spr-review-reply:after {
    clear: both
}

.spr-review-reply-body,.spr-review-reply-shop {
    font-size: 13px;
    line-height: 20px
}

.spr-review-reply-body {
    margin: 0 0 12px 0
}

.spr-review-reply-shop {
    display: block;
    float: right;
    font-style: italic
}

.spr-review-footer {
    *zoom:1}

.spr-review-footer:before,.spr-review-footer:after {
    content: " ";
    display: table
}

.spr-review-footer:after {
    clear: both
}

.spr-review-reportreview {
    float: right;
    font-size: 11px;
    line-height: 16px
}

.spr-pagination {
    text-align: center;
    padding: 12px 0 0 0;
    position: relative;
    border-top: 1px solid #DFDFDF;
    border-top: 1px solid rgba(0,0,0,0.1)
}

.spr-pagination-page,.spr-pagination-deco,.spr-pagination-next,.spr-pagination-prev {
    display: inline-block
}

.spr-pagination-page.is-active {
    font-weight: bold
}

.spr-pagination-prev {
    position: absolute;
    left: 0
}

.spr-pagination-next {
    position: absolute;
    right: 0
}

@media only screen and (max-width: 480px) {
    .spr-header-title {
        text-align:center
    }

    .spr-summary {
        text-align: center
    }

    .spr-summary-actions-newreview {
        float: none;
        *zoom:1}

    .spr-summary-actions-newreview:before,.spr-summary-actions-newreview:after {
        content: " ";
        display: table
    }

    .spr-summary-actions-newreview:after {
        clear: both
    }
}







