@charset "UTF-8";
/*==============================================================================
[Table of CSS components]
==============================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Raleway:wght@700&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: myfont;
}

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: #f37633;
}

ol {
  list-style-position: inside;
}

ul,
li {
  padding: 0;
  margin: 0;
}

body {
  color: #7d7d7d;
  font-family: myfont;
  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: myfont;
}

.font-secondery {
  font-family: myfont;
}

.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: 13px !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: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 17px 35px;
  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: #35382f;
  background-color: #234fcb;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #f3f3f3;
  background-color: #4273f9;
}

.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: #f37633;
}

.btn-primary-outline {
  color: #35382f;
  background-color: #ffffff;
  border: 1px solid #f37633;
  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: #f37633;
}

.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: var(--themecolorcolor) !important;
  margin: 0 5px;
  margin-top: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.owl-dots button.owl-dot.active {
  background-color: #f37633 !important;
}

.section {
  padding: 60px 0px;
}

@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: #f37633;
  background-color: #f37633;
}

.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: #f37633;
}

.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: #f37633 !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #f37633 !important;
  opacity: 0.7;
}

.bg-primary {
  background-color: #f37633 !important;
}

.text-dark {
  color: #35382f !important;
}

a.text-dark:hover,
.text-dark a:hover {
  color: #f37633 !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: 10px 15px;
  border-radius: 5px;
  font-weight: normal !important;
  text-transform: none !important;
}

.home-4 .btn.btn-light {
  color: #f37633;
}

.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: var(--topbarcolor);
  margin-left: 10px;
}

.home-4 .social-area a:hover {
  border: 1px solid #f37633;
  color: #f37633;
}

.home-4 .social-area a.social-links-four-active {
  border: 1px solid #f37633;
  color: #f37633;
}

.home-4 .section-subtitle {
  position: relative;
  display: inline-block;
  font-size: 27px;
  font-weight: 600;
  color: #f37633;
  margin-bottom: 30px;
}

.home-4 .section-subtitle:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f37633;
  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 #f37633;
  bottom: -12px;
  left: 50%;
  margin-left: 0px;
  z-index: 11;
}

.home-4 .section-subtitle span {
  position: absolute;
  width: 100%;
  background: #f37633;
  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 #f37633;
  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 #f37633;
  border-radius: 5px !important;
  color: #f37633;
}

.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: 100;
  display: block;
  clear: both;
  font-size: 8pt;
}

.home-4 .product-item .card-body h5>span {
  color: #022f84;
  font-size: 12pt;
}

.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: #f37633;
}

.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: #f37633;
  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: #f37633;
}

.home-4 .testimonial-slider .owl-stage-outer .cm-testimonial-wrap i {
  font-size: 24px;
  color: #f37633;
}

.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: #f37633 !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: #f37633;
  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: #f37633;
  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: #f37633;
  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 {
  padding: 0;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
}

.cm-header.header-four .block .icon::before {
  color: #fff;
}

.cm-header.header-four .header {
  background: var(--headerbackground);
}

.cm-header.header-four .header .navbar-brand {
  position: absolute;
  height: 100%;
  top: 0;
  width: auto;
  line-height: 7;
  left: 0;
  padding: 0 90px 0 40px;
  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: var(--headercolor);
  font-weight: 500;
}

.cm-header.header-four .header .nav-link:hover {
  color: #f37633;
}

.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: #f37633;
  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****/
.single-features-wrap {
  background: #FFFFFF;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 8px 24px;
}

.single-features-wrap.single-features-wrap-active {
  background: #f376331d;
}

.single-features-wrap.single-features-wrap-active .icon img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}


.single-features-wrap .icon {
  background: transparent;
  display: inline-block;
  height: 120px;
  width: 150px;
  margin-bottom: 40px;
}

.single-features-wrap .icon img {
  width: 100%;
  height: auto;
}

.single-features-wrap h4 {
  color: #000C22;
  margin-bottom: 0;
  font-family: myfont;
  font-weight: 600;
  font-size: 20px;
}

.single-features-wrap p {
  color: #4F576D;
  margin-top: 10px;
  margin-bottom: 0;
}

.cm-fact-area {
  padding: 100px 0px;
  background-image: url('../imgs/images/ssss.png');
  background-size: 100% auto;
}

.single-fact-wrap {
  text-align: center;
}

.single-fact-wrap .wrap-details img {
  margin-bottom: 10px;
}

.single-fact-wrap .wrap-details h2 {
  font-family: myfont;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  color: #142e72;
  margin-bottom: 20px;
}

.single-fact-wrap .wrap-details p {
  color: #4F576D;
}

.service-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #f37633;
  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: #f37633;
}

.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: myfont;
  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: #f37633;
  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: var(--headerbackground);
  padding: 30px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-wcu-wrap:hover {
  background: #f37633 !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: var(--headerbackground);
  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: #f37633;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  margin-right: 10px;
  font-family: myfont;
  color: #000C22;
}

.accordion-inner-wrap .card .card-header button:after {
  position: absolute;
  content: "";
  right: 0;
  top: 24px;
  background: #f37633;
  height: 2px;
  width: 14px;
}

.accordion-inner-wrap .card .card-header button:before {
  position: absolute;
  content: "";
  right: 6px;
  top: 18px;
  background: #f37633;
  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: #f37633;
  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: #f37633;
  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: 250px;
    -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: #f37633;
}

.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: #f37633 !important;
}

@media (max-width: 991px) {
  .cm-header .header-top {
    padding: 7px 0;
  }
}

.cm-header .block .icon {
  display: inline-block;
  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;
}

@media (max-width: 991px) {
  .cm-header .header {
    padding: 8px 0;
  }

  .cm-header .header .navbar-brand img {
    width: 160px;
  }

  .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: #f37633 !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: #f37633 !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: #f37633 !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: #f37633;
  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: 110px;
  padding-bottom: 110px;
}

@media (max-width: 1369px) {
  .cm-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.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.6;
}

@media (max-width: 1369px) {
  .banner-carousel .cm-banner {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .banner-carousel .cm-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .banner-carousel .cm-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.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;
    top: calc(100% - 65px);
  }
}

.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 #f37633;
}

.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 #f37633;
  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: #f37633;
  -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: #f37633;
  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: #f37633;
  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: #f37633;
  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: #f37633;
  border-color: #f37633;
}

@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: #f37633;
  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 #f37633;
  -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: #f37633;
  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: #f37633;
}

.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: #f37633;
  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: #f37633;
}

.footer-links a::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f33a";
  font-weight: 900;
  margin-left: 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: #f37633;
  border-radius: 50px;
}

.social-links li a:hover {
  background-color: #f37633;
  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: #f37633;
  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;
  }
}

.slider-holder {
  display: block;
  background-image: url('../imgs/images/ssssss.png');
  background-size: cover;
  background-position: center center;
  min-height: 30vh;
  background-attachment: fixed;
}

.cm-header .header .navbar-brand img {
  max-height: 80px;
}

.header-top .text-gray,
.header-top .text-gray a {
  color: #fff;
}

.lang-menu img {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: auto;
}

.work-gallery .work-item:hover .btn {
  color: var(--themecolorcolor);
}

.single_page_view_title {
  padding: 30px 0px;
  background: #000C22;
  color: #fff;
}

.image-full img {
  width: 100%;
  height: auto;
}

.cart_cc {
  position: fixed;
  left: 0px;
  bottom: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 15;
}

.cart_cc.asssssss {
  -moz-transform: scale(1.8) translateX(30px) translateY(-30px);
  -webkit-transform: scale(1.8) translateX(30px) translateY(-30px);
  -o-transform: scale(1.8) translateX(30px) translateY(-30px);
  -ms-transform: scale(1.8) translateX(30px) translateY(-30px);
  transform: scale(1.8) translateX(30px) translateY(-30px);
}

.cart_cc>form>button {
  display: block;
  padding: 5px 15px;
  border-radius: 0px 10px 0px 0px;
  background-color: var(--headerbackground);
  color: #fff;
  border: 0px;
  font-size: 12pt;
  z-index: 1500;
}

.cart_cc>form>button>i,
.cart_cc>form>button>div {
  display: inline-block;
  vertical-align: middle;
}

.cart_cc>form>button>div>span {
  display: block;
  padding: 0px 10px;
  font-size: 9pt;
}

.padd10px {
  padding-top: 30px;
}

.cart_items {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px rgba(0, 0, 0, 0.154) solid;
}

.cart_items::after {
  display: block;
  clear: both;
  content: "";
}

.cart_items>img {
  width: 120px;
  height: auto;
  float: right;
  margin: 10px;
  border-radius: 20px;
}

.cart_items h2 {
  font-size: 12pt;
  margin-bottom: 10px;
  color: #022f84;
}

.cart_items h3 {
  font-size: 10pt;
  margin-bottom: 10px;
  color: #095390;
}

.cart_items>button {
  padding: 5px 15px !important;
  font-size: 10pt !important;
  float: left !important;
  margin-top: 10px !important;
  font-weight: normal !important;
}

.home-4 .card-body h6 {
  display: block;
  color: #1847a0 !important;
  margin-bottom: 10px;
}


.single_page_view_content h5.text-dark-2 {
  font-weight: 100;
  display: block;
  clear: both;
  font-size: 8pt;
}

.single_page_view_content h5.text-dark-2>span {
  color: #022f84;
  font-size: 12pt;
}


.breadcrumb {
  list-style-type: none;
}

.v1 .breadcrumb-level::before,
.v1 .breadcrumb-level::after {
  content: "";
  position: absolute;
  left: 0;
  height: 50%;
  width: 100%;
  background: #ff661a;
  z-index: -1;
}

.v1 .breadcrumb-level::before {
  top: 0;
  transform: skew(20deg);
}

.v1 .breadcrumb-level::after {
  bottom: 0;
  transform: skew(-20deg);
}

.v2 .breadcrumb-level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ff661a;
  transform: skew(-20deg);
  z-index: -1;
}

.breadcrumb-level {
  display: inline-block;
  position: relative;
}

.breadcrumb-level:last-child a {
  cursor: default;
}

.breadcrumb-level:last-child::before,
.breadcrumb-level:last-child::after {
  background: #ff884d;
}

.breadcrumb-level:not(:last-child):hover::before,
.breadcrumb-level:not(:last-child):hover::after {
  background: #e64c00;
}

.breadcrumb-level a {
  display: inline-block;
  position: relative;
  line-height: 2.5;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
}

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

.category_item>a {
  display: block;
}

.category_item>a img {
  display: inline-block;
  vertical-align: middle;
  border-radius: 15px;
  max-width: 150px;
}

.call_us_content {
  padding: 15px;
  margin: 25px 0px;
  background-color: #f8f8f8;
  border-radius: 15px;
}

.call_us_content label {
  display: block;
  margin-bottom: 15px;
  color: #000C22;
}

.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.form-group .nice-select {
  float: none;
  direction: rtl;
  text-align: right !important;
  line-height: 26px;
}

.job_holder {
  display: none;
}

.job_holder.active {
  display: block;
}

.uploader {
  display: inline-block;
}

.uploader>label>input {
  display: none;
}

.uploader>label {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: .45rem 1.5rem;
  font-size: .9rem;
  line-height: 1.5;
  border-radius: 5.35rem;
  display: inline-block;
  box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
  color: #fff;
  background-color: #727cf5;
  border-color: #727cf5;
  cursor: pointer;
  margin-top: 10px;
}

.uploader>label>span {
  display: inline-block;
}

.loading-upload {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 10px;
  text-align: center;
}

body[dir=rtl] .loading-upload {
  left: 30px;
}

body[dir=rtl] .dt-buttons {
  float: left;
}

body[dir=ltr] .dt-buttons {
  float: right;
}

body[dir=ltr] .loading-upload {
  right: 30px;
}

.loading-upload .spinner-border {
  margin-bottom: 10px;
}

.row>div {
  margin-bottom: 10px !important;
}

[dir=rtl] .input-group-addon:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, .15);
  border-left: 0;
}

[dir=rtl] .input-group .form-control:not(:last-child),
[dir=rtl] .input-group-addon:not(:last-child),
[dir=rtl] .input-group-btn:not(:first-child)>.btn-group:not(:last-child)>.btn,
[dir=rtl] .input-group-btn:not(:first-child)>.btn:not(:last-child):not(.dropdown-toggle),
[dir=rtl] .input-group-btn:not(:last-child)>.btn,
[dir=rtl] .input-group-btn:not(:last-child)>.btn-group>.btn,
[dir=rtl] .input-group-btn:not(:last-child)>.dropdown-toggle {
  border-bottom-right-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

[dir=rtl] .input-group .form-control:not(:first-child),
[dir=rtl] .input-group-addon:not(:first-child),
[dir=rtl] .input-group-btn:not(:first-child)>.btn,
[dir=rtl] .input-group-btn:not(:first-child)>.btn-group>.btn,
[dir=rtl] .input-group-btn:not(:first-child)>.dropdown-toggle,
[dir=rtl] .input-group-btn:not(:last-child)>.btn-group:not(:first-child)>.btn,
[dir=rtl] .input-group-btn:not(:last-child)>.btn:not(:first-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: .25rem;
  border-top-left-radius: .25rem;
}

[dir=rtl] .form-control+.input-group-addon:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, .15);
  border-right: 0;
}

[dir=rtl] .input-group .form-control:not(:first-child):not(:last-child),
[dir=rtl] .input-group .input-group-addon:not(:first-child):not(:last-child) {
  border-radius: 0;
}

[dir=rtl] .list-group-horizontal .list-group-item:first-child {
  border-radius: 0px .25rem .25rem 0px;
}

[dir=rtl] .list-group-horizontal .list-group-item:last-child {
  border-radius: .25rem 0px 0px .25rem;
}

.form-group label .fad.fa-certificate,
.form-cnontents label .fad.fa-certificate {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px;
  color: #f44747;
  font-size: 8pt;
}

.vertical-conteter-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.max-width-box-600 {
  max-width: 600px;
}

.vertical-conteter-center-holder {
  min-height: 100vh;
}

.row>div.vertical-conteter-center-holder {
  margin-bottom: 0px !important;
}


.upload_results {
  display: inline-block;
  margin: 0px 5px;
}

.upload_results>.input-image-cc {
  display: inline-block;
  margin: 3px;
}

.input-image-cc>img {
  width: 46px;
  border-radius: 3px;
  height: 40px
}

.input-image-cc>button {
  background-color: red;
  color: #fff;
  border: 0px;
  border-radius: 3px;
}

.sc-butt {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
  border: 1px solid transparent;
  padding: .45rem 1.5rem;
  font-size: .9rem;
  line-height: 1.5;
  border-radius: 5.35rem;
  display: inline-block;
  box-shadow: 0 2px 6px 0 rgba(114, 124, 245, .5);
  color: #fff;
  background-color: #727cf5;
  border-color: #727cf5;
  cursor: pointer;
  margin-top: 10px;
}

.hidden {
  display: none;
}

.multi-cc {
  position: relative;
  margin-bottom: 10px;
}

body[dir=rtl] .multi-cc {
  padding-left: 50px;
}

body[dir=ltr] .multi-cc {
  padding-right: 50px;
}

.multi-cc .clear_multible {
  position: absolute;
  top: -15px;
  z-index: 11;
  width: 60px;
}

body[dir=ltr] .multi-cc .clear_multible {
  right: 15px;
}

body[dir=rtl] .multi-cc .clear_multible {
  left: 15px;
}

.nice-select .list {
  direction: rtl;
  width: 100%;
  text-align: right;
}

.slient_opinio_sextion {
  padding: 80px 0px;
}

.block_opinion_holder {
  display: inline-block;
  padding: 25px;
  background-color: #f4f4f4;
  border-radius: 25px;
  margin: 15px;
  min-width: 70%;
  color: #000;
  text-align: center;
  margin-top: 120px;
}

.block_opinion_holder img {
  width: 150px !important;
  height: 150px;
  border-radius: 50%;
  border: 10px #fff solid;
  margin-top: -75px;
  display: inline-block !important;
}

.block_opinion_holder h2 {
  color: #232323;
  font-size: 22pt;
  margin: 30px auto;
}


.block_opinion_holder p {
  color: #747474;
  font-size: 12pt;
  margin-bottom: 15px;
}

.texts_holderser {
  font-size: 24pt;
  color: #171717;
}

.texts_holderser .s_w_0{
  color: #f37633;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 15px;
}

.texts_holderser .s_w_0::after{
  display: block;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #f37633;
  position: absolute;
  right: 0px;
  bottom: -5px;
}