@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lilita+One&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("animate.min.css");
@import url("gallery.css");
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #033038;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #fc8f3a;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
}

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

a,
span {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #fc8f3a !important;
  padding-left: 0;
  color: #ffffff !important;
}
.custum-input:focus {
  background-color: transparent;
}

::-webkit-input-placeholder {
  color: #eaeaea !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #033038;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #033038;
  border-color: transparent;
  opacity: 0.5;
}

.help-block.with-errors .list-unstyled {
  color: red;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Roboto", sans-serif;
}

.heading-font {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.fw-size-custon {
  font-size: 7rem;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 767px) and (max-width: 992px) {
  .fw-size-custon {
    font-size: 4rem;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .fw-size-custon {
    font-size: 5rem;
  }
}
@media screen and (max-width: 575px) {
  .fw-size-custon {
    font-size: 3rem;
  }
}

.theme-bg-primary {
  background-color: #033038;
}

.theme-bg-secondary {
  background-color: #fc8f3a;
}

.theme-bg-accent-one {
  background-color: #A5A5A5;
}

.theme-bg-accent-two {
  background-color: #eaeaea;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #033038;
}

.theme-text-secondary {
  color: #fc8f3a;
}

.theme-text-accent-one {
  color: #A5A5A5;
}

.theme-text-accent-two {
  color: #eaeaea;
}

.body-bg {
  background-color: #ffffff;
}

.theme-text-dark {
  color: #000000;
}

.theme-box-shadow {
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.custom-btn-primary {
  background-color: #033038;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.9375rem;
}

.custom-btn-secondary {
  min-width: 100px;
  min-height: 50px;
  border: 0;
  border-radius: 0.9375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #eaeaea;
  color: #033038;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #fc8f3a;
  border: 2px solid #033038;
}

.theme-border-radius {
  border-radius: 0.9375rem;
}

.theme-border {
  border: 1px solid #033038;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-effect {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-effect::before {
  background: #fc8f3a;
  content: "";
  position: absolute;
  z-index: -1;
}
.button-effect::after {
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  background: #fc8f3a;
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.button-effect:hover {
  color: #ffffff;
  background-color: #033038;
  transition: all 0.2s ease;
}
.button-effect:hover::after {
  height: 100%;
}

.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.15);
}

.product-quick-view {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(252, 143, 58, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view span,
.product-quick-view .view i {
  color: #ffffff;
}
.product-quick-view:hover {
  filter: grayscale(100%);
}
.product-quick-view:hover .view {
  opacity: 1;
  cursor: pointer;
}

.bottom .add-cart {
  cursor: pointer;
}
.bottom .add-cart .add {
  position: relative;
  display: inline-block;
}
.bottom .add-cart .add:hover {
  transform: translateY(-3px);
}

.slick-arrow {
  background-color: rgba(252, 143, 58, 0.85);
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  width: 3.5rem;
  height: 2.5rem;
  border-radius: 0.9375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px solid #033038;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.slick-arrow i {
  color: #033038;
}

.slick-arrow.slick-next {
  right: 20px;
}
.slick-arrow.slick-next:before {
  content: "\f285";
  font-family: "bootstrap-icons";
}
.slick-arrow.slick-prev {
  left: 20px;
}
.slick-arrow.slick-prev:before {
  content: "\f284";
  font-family: "bootstrap-icons";
}
.slick-arrow:hover {
  background-color: #033038;
}
.slick-arrow:hover i {
  color: #ffffff;
}

.slick-dots li button::before {
  border: 1px solid #033038;
  background-color: rgba(255, 255, 255, 0.5);
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  border-radius: 0.9375rem;
  font-family: initial;
  content: "";
}
.slick-dots .slick-active button::before {
  background-color: white;
}

.high-text {
  position: relative;
  display: flex;
  width: 50px;
  height: auto;
  align-items: end;
  text-align: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.high-text::before {
  content: "";
  display: flex;
  width: 20px;
  height: 2px;
  background: #033038;
  position: absolute;
  right: 0px;
}
.high-text::after {
  content: "";
  display: flex;
  width: 20px;
  height: 2px;
  background: #fc8f3a;
  position: absolute;
  left: 0px;
}

.grow-box {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  width: 100%;
}

.grow-box:hover {
  transform: scale(1.1);
}

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

.effect {
  color: #A5A5A5;
}
.effect:hover {
  color: #033038;
}
.effect:hover i {
  color: #033038;
}
.effect:hover i:before {
  transform: translateX(5px);
  transition: all 0.2s ease;
}
.effect .bi:before {
  transition: all 0.2s ease;
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
  opacity: 0.5;
}
.img-lt:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.max-2 {
  max-width: 550px;
  margin: 0 auto;
}

.end-1 {
  right: 1rem;
}

.min-h {
  min-height: 50px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(252, 143, 58, 0);
  color: #fc8f3a;
}

.text-gred {
  background: -webkit-linear-gradient(#033038, #fc8f3a);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.cardeffect:hover svg {
  fill: #033038;
  transition: all ease-in-out 0.3s;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
  padding: 0.25rem 0.5rem;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-loader .wrap {
  background: url(../images/favicon.png) no-repeat;
  width: 80px;
  height: 80px;
}
.page-loader .loader {
  width: 80px;
  height: 80px;
  border: 3px solid #033038;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: rotation 1s linear infinite;
}
.page-loader .loader:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: #fc8f3a;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.info-top {
  background-color: #033038;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  width: 98%;
  margin: auto;
}
.info-top .btn {
  color: #eaeaea;
  text-decoration: none;
}
.info-top .btn i {
  color: #ffffff;
}
.info-top .social a,
.info-top .social .botom-link {
  color: #A5A5A5;
}
.info-top .social a:hover,
.info-top .social .botom-link:hover {
  color: #fc8f3a;
}

.header {
  background-color: #033038;
  z-index: 2;
  width: 98%;
  position: absolute;
  left: 1%;
  border-radius: 0px 0px 50px 50px;
}
.header.trans {
  background-color: transparent;
}
@media screen and (max-width: 992px) {
  .header.trans {
    background-color: #033038;
  }
}
@media screen and (max-width: 992px) {
  .header .navbar-collapse {
    height: 250px;
    overflow: auto;
  }
}
.header .navbar-nav .nav-item .nav-link {
  color: #fc8f3a;
  padding: 1.2rem 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.header .navbar-nav .nav-item .nav-link:hover {
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #eaeaea;
  }
}
.header .navbar-nav .nav-item .nav-link.active {
  color: #033038 !important;
}
.header .navbar-nav .nav-item .nav-link.active::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: #033038;
  position: absolute;
  bottom: 0;
  display: block;
  left: 33%;
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link.active::before {
    left: 0;
  }
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #033038;
  padding: 0.5rem 1rem;
  font-weight: 400;
  border-bottom: 1px solid #eaeaea;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #033038;
  color: #ffffff;
}
.header .navbar-nav .nav-item .dropdown-menu li.active a {
  background-color: #fc8f3a;
}
.header .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
}

.fixed-top .trans {
  background-color: #033038;
}

.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 2px;
  background: #033038;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero {
  position: relative;
}
@media screen and (max-width: 992px) {
  .hero {
    margin-top: 0px;
  }
}
.hero .slider-item {
  min-height: 760px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .hero .slider-item {
    min-height: 70vh;
  }
}
.hero .slider-item:before {
  content: "";
  width: 80%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  z-index: -1;
  transform: skew(45deg);
}
.hero .slider-item:after {
  content: "";
  width: 90%;
  height: 100%;
  background-color: rgba(3, 48, 56, 0.25);
  position: absolute;
  z-index: -2;
  transform: skew(45deg);
  left: 0;
}
.hero .slick-dots {
  bottom: 3rem;
}
.hero .slick-dots li button:before {
  font-size: 1rem;
}
.hero .slick-dots li.slick-active button:before {
  color: #033038;
}
.hero .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.video-image {
  width: 100%;
  height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.video-image .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.features {
  background-color: #ffffff;
  margin-top: -50px;
}
.features .left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 0.9375rem;
  text-align: center;
}
.features .left-icon:hover .icon {
  transform: translateY(-5px);
  transition-duration: 0.3s;
}
.features .left-icon .icon {
  transition-duration: 0.3s;
}
.features .left-icon .icon img {
  width: 50px;
  height: 50px;
}
.features .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 10px;
}
.features .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.75rem;
}

.topCategories .nav-pills,
.featuredProduct .nav-pills {
  display: flex;
  justify-content: end;
  width: 70%;
  align-items: end;
}
@media screen and (max-width: 575px) {
  .topCategories .nav-pills,
  .featuredProduct .nav-pills {
    width: 100%;
  }
}
.topCategories .nav-pills li,
.featuredProduct .nav-pills li {
  margin-left: 1rem;
}
.topCategories .nav-pills li .nav-link,
.featuredProduct .nav-pills li .nav-link {
  border-bottom: 2px solid #033038;
  color: #fc8f3a;
  border-radius: 50px;
  background-color: #eaeaea;
}
.topCategories .nav-pills li .active,
.featuredProduct .nav-pills li .active {
  background-color: #eaeaea;
  color: #033038;
  border-bottom: 2px solid #fc8f3a;
}
.topCategories .card-wrap,
.featuredProduct .card-wrap {
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.topCategories .card-wrap.ext,
.featuredProduct .card-wrap.ext {
  border-top: 2px solid #033038;
  border-bottom: 2px solid #fc8f3a;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.topCategories .card-wrap.ext img,
.featuredProduct .card-wrap.ext img {
  width: 120px;
  height: 120px;
}
.topCategories .card-wrap .con-img-wrap,
.featuredProduct .card-wrap .con-img-wrap {
  position: relative;
}
.topCategories .card-wrap .small-img,
.featuredProduct .card-wrap .small-img {
  min-height: 120px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.topCategories .card-wrap .con-wrap .text a,
.featuredProduct .card-wrap .con-wrap .text a {
  color: #033038;
}
.topCategories .card-wrap .con-wrap .text a:hover,
.featuredProduct .card-wrap .con-wrap .text a:hover {
  color: #fc8f3a;
}
.topCategories .card-wrap .con-wrap .rating-cover i,
.featuredProduct .card-wrap .con-wrap .rating-cover i {
  color: orange;
}
.topCategories .card-wrap .con-wrap .product-price span,
.featuredProduct .card-wrap .con-wrap .product-price span {
  color: #033038;
}

.deal-to-action {
  background-color: rgba(3, 48, 56, 0.1);
  background-image: url(../images/section/Bg-Deals.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
}
.deal-to-action::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.deal-to-action #timer {
  font-size: 2.5em;
  font-weight: 500;
  color: #033038;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .deal-to-action #timer {
    font-size: 1.75em;
  }
}
.deal-to-action #timer div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 140px;
  height: 140px;
  text-align: center;
  border-right: 4px solid #fc8f3a;
  text-transform: uppercase;
  background-color: #eaeaea;
  border-radius: 100%;
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  .deal-to-action #timer div {
    width: 100px;
    height: 100px;
  }
}
.deal-to-action #timer div:last-child {
  margin-right: 0rem;
}
.deal-to-action #timer div span {
  color: #fc8f3a;
  font-size: 0.35em;
  font-weight: 500;
  display: flex;
}

.why-us {
  background-color: #ffffff;
  background-image: url(../images/section/bg-why.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  position: relative;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .why-us {
    padding: 4rem 0;
  }
}
.why-us .max {
  max-width: 650px;
  margin: auto;
}

.testimonials {
  position: relative;
  background-color: rgba(3, 48, 56, 0.1);
  background-image: url(../images/section/review-bg-picture.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
}
.testimonials .carouselTestimonials .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.testimonials .carouselTestimonials .slick-arrow.slick-next {
  right: -10px;
}
.testimonials .carouselTestimonials .slick-arrow.slick-prev {
  left: -10px;
}
.testimonials .carouselTestimonials:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.testimonials::before {
  content: "";
  background: rgba(0, 0, 0, 0.68);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.testimonials .review-wrap {
  padding: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 0.9375rem;
  min-height: 320px;
}
.testimonials .client-pic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonials .client-pic .avatar {
  width: 5rem;
  height: 5rem;
  background: #A5A5A5;
  position: relative;
  border-radius: 0.9375rem;
}
.testimonials .client-pic .avatar img {
  border-radius: 0.9375rem;
}
.testimonials .client-pic .avatar::before {
  content: "";
  background: #fc8f3a;
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  left: -8px;
  top: -5px;
}
.testimonials .client-con {
  text-align: center;
  font-size: 0.875rem;
}

.blog .blog-card .cat {
  color: #033038;
  cursor: pointer;
}
.blog .blog-card .cat:hover {
  color: #fc8f3a;
}

.partner {
  position: relative;
  border-top: 1px solid #eaeaea;
}
.partner img {
  margin: auto;
}

.contact-sec {
  position: relative;
  background-color: rgba(3, 48, 56, 0.1);
  background-image: url(../images/section/review-bg-picture.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 650px;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
}
.contact-sec::before {
  content: "";
  background: rgba(0, 0, 0, 0.68);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer {
  position: relative;
  background: #eaeaea;
}
.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(234, 234, 234, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.footer p {
  line-height: 2rem;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li i {
  color: #033038;
  font-size: 1.5rem;
  line-height: normal;
  vertical-align: middle;
}
.footer .footer-link li a {
  color: #A5A5A5;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #033038;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
}
.footer .social a,
.footer .social .botom-link {
  color: #A5A5A5;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #033038;
}
.footer .custom img {
  width: 240px;
}
.footer .custom p {
  color: #A5A5A5;
}
.footer .form-subcriber {
  border-radius: 0.9375rem;
  position: relative;
}
.footer .form-subcriber input {
  box-shadow: none;
  width: 100%;
  border: 0;
  border-radius: 0.9375rem;
  padding: 1rem 2rem;
}
.footer .form-subcriber button {
  margin-top: 0.5rem;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(165, 165, 165, 0.2);
}
.footer .footer-bottom .bottom-link li {
  display: inline-block;
  padding: 0 1.5rem;
}
.footer .footer-bottom .bottom-link li:last-child {
  padding: 0 0 0 2rem;
}
.footer .footer-bottom .bottom-link li a {
  color: #A5A5A5;
  position: relative;
  font-size: 0.875rem;
}
.footer .footer-bottom .bottom-link li a:after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #A5A5A5;
  position: absolute;
  top: 8px;
  right: -2rem;
}
.footer .footer-bottom .bottom-link li a:hover {
  color: #033038;
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3.5rem;
  width: 3.5rem;
  line-height: 3.5rem;
  bottom: -5rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: white;
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  border-radius: 50%;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
}
.scrollup img {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup img:hover, .scrollup img:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  background-color: #033038;
}

.scrollup.back-top {
  bottom: 20px;
}

@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.carouselhero [data-animation-in] {
  opacity: 0;
}

.item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-wrap .notify-btn {
  cursor: pointer;
  position: relative;
}
.item-wrap .notify-btn i {
  font-size: 1.5rem;
  color: #A5A5A5;
  transition: all 0.3s ease 0s;
}
.item-wrap .notify-btn i:hover {
  color: #fc8f3a;
}
.item-wrap .tag {
  position: absolute;
  top: 0;
  right: 10px;
  width: 16px;
  height: 16px;
  background: red;
  font-weight: bold;
  border-radius: 50%;
  font-size: 12px;
  line-height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.5rem;
}
.item-wrap .main-box {
  position: absolute;
  top: 50px;
  right: 0;
  width: 290px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  transform: translateY(150px);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  max-height: 350px;
  overflow-y: scroll;
  z-index: 9999;
  border-radius: 0.9375rem;
}
.item-wrap .main-box .button-close {
  background-color: #000000;
  border: none;
  border-radius: 0.9375rem;
  width: 30px;
  height: 30px;
  line-height: 1.2rem;
}
.item-wrap .main-box .button-close:hover {
  background-color: #033038;
}
.item-wrap .main-box .button-close i {
  font-size: 1.2rem;
  line-height: normal;
  color: #ffffff;
}
.item-wrap .main-box.active {
  transform: translateY(0px);
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}
.item-wrap .main-box .tag-count {
  width: 28px;
  height: 28px;
  background: #fc8f3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  margin-left: 10px;
  border-radius: 50%;
}
.item-wrap .main-box ul li {
  margin-top: 5px;
  border-top: 1px solid #eaeaea;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.item-wrap .main-box ul li a {
  display: flex;
  align-items: center;
  color: #A5A5A5;
  justify-content: start;
}
.item-wrap .main-box ul li a img {
  width: 100px;
}
.item-wrap .main-box ul li a i {
  margin-right: 1rem;
  font-size: 1.5rem;
}
.item-wrap .main-box ul li a:hover {
  color: #fc8f3a;
  transition: 0.3s;
}

.search-switch {
  display: block;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(3, 48, 56, 0.85);
  z-index: 99999;
}
.search-model .search-model-form {
  padding: 0 0px;
  position: relative;
  display: flex;
  border-radius: 0.9375rem;
  background: #ffffff;
  width: 50%;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .search-model .search-model-form {
    width: 94%;
  }
}
.search-model .search-model-form input {
  font-size: 1.5rem;
  border: none;
  border-radius: 0.9375rem;
  width: 100%;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .search-model .search-model-form input {
    font-size: 1rem;
  }
}
.search-model .search-model-form .btn {
  min-width: 50px;
}
.search-model .search-model-form .btn i {
  font-size: 1.5rem;
}
.search-model .search-model-form .btn i:hover {
  color: #fc8f3a;
}
.search-model .search-model-form .btn:active {
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}
.search-model .search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fc8f3a;
  color: #ffffff;
  text-align: center;
  border-radius: 0.9375rem;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-model .search-close-switch:hover {
  background-color: #000000;
}

.product-tab-list {
  display: flex;
}
.product-tab-list li {
  padding: 0 1rem 0 0;
}
.product-tab-list li a {
  display: inline-flex;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #A5A5A5;
  color: #000000;
  padding: 0.5rem 1rem;
}
.product-tab-list li a:hover {
  background-color: #fc8f3a;
}

.input-spinner .button-minus,
.input-spinner .button-plus {
  background-color: transparent;
  border-color: #eaeaea;
  height: 3rem;
  width: 2.4rem;
  line-height: 2.5rem;
  border-radius: 0.9375rem;
}
.input-spinner .button-minus:hover,
.input-spinner .button-plus:hover {
  background-color: #eaeaea;
}
.input-spinner .form-input {
  background: 0 0;
  border: 1px solid #eaeaea;
  height: 100%;
  min-height: 3rem;
  text-align: center;
  width: 2.5rem !important;
  padding: 0;
}

.order-detail {
  background-color: rgba(252, 143, 58, 0.05);
  border-radius: 0.9375rem;
  padding: 1.5rem;
}
.order-detail .form-pay {
  display: grid;
  grid-gap: 1em;
  gap: 1em;
}
.order-detail .form-pay .pay-radio {
  align-items: center;
  background-color: #ffffff;
  border-radius: 0.9375rem;
  display: flex;
  padding: 1rem;
}
.order-detail .form-pay .pay-radio label {
  align-items: center;
  display: flex;
  flex: 1;
  grid-gap: 1em;
  gap: 1em;
}

.form-check-input {
  border: 2px solid #033038;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
  vertical-align: top;
  background-color: transparent;
  margin-top: 0px;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #033038;
  border-color: #033038;
}

.nav-category .nav-item .nav-link {
  color: #033038;
  padding-left: 0px;
}
.nav-category .nav-item .nav-link:hover {
  color: #033038;
}

.shop-cart img {
  width: 60%;
}

.shop-detail {
  background-color: rgba(252, 143, 58, 0.1);
  padding: 2rem 0;
}
.shop-detail .nav-lb-tab {
  justify-content: center;
}
.shop-detail .nav-lb-tab .nav-item {
  margin-right: 2rem;
}
.shop-detail .nav-lb-tab .nav-item::before {
  content: "";
  display: none;
}
.shop-detail .nav-lb-tab .nav-item .nav-link {
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #033038;
  font-weight: 500;
  margin-bottom: -1px;
  padding: 1rem 0.5rem;
  white-space: nowrap;
  background: none;
  font-size: 1.25rem;
}
.shop-detail .nav-lb-tab .nav-item .nav-link:hover, .shop-detail .nav-lb-tab .nav-item .nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #fc8f3a;
  color: #fc8f3a;
  box-shadow: none;
}
.shop-detail .table-transparent tr th,
.shop-detail .table-transparent tr td {
  background-color: transparent;
}
.shop-detail p {
  color: #033038;
}
.shop-detail ul {
  margin-left: 1rem;
}
.shop-detail ul li {
  display: block;
  padding: 6px 0;
  color: #033038;
}
.shop-detail ul li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  background-color: #033038;
  border-radius: 50%;
  margin-right: 8px;
}

.product-gallery .slider-for img {
  width: 100%;
  height: auto;
}
.product-gallery .gallery-thumb {
  margin-top: 1rem;
}
.product-gallery .gallery-thumb img {
  width: 100%;
  height: auto;
  padding: 2%;
}

div.zoom {
  background-position: 50% 50%;
  border-radius: 0.5rem;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  width: 100%;
}
div.zoom img {
  display: block;
  transition: opacity 0.5s;
  width: 100%;
}
div.zoom img:hover {
  opacity: 0;
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
  background-image: url(../images/section/breadcrumb.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.breadcrumb-area .breadcrumb-content {
  position: relative;
}
.breadcrumb-area .breadcrumb-content h2,
.breadcrumb-area .breadcrumb-content h1,
.breadcrumb-area .breadcrumb-content h3 {
  margin-bottom: 0;
  color: #fc8f3a;
  font-size: 42px;
  font-weight: 700;
}
.breadcrumb-area .breadcrumb-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb-content ul li {
  color: #eaeaea;
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  margin-left: 0px;
  margin-right: 20px;
}
.breadcrumb-area .breadcrumb-content ul li::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fc8f3a;
}
.breadcrumb-area .breadcrumb-content ul li:last-child::before {
  display: none;
}
.breadcrumb-area .breadcrumb-content ul li a {
  display: inline-block;
  color: #fc8f3a;
  transition: 0.4s;
}
.breadcrumb-area .breadcrumb-content ul li a:hover {
  color: #ffffff;
}

.our-team {
  position: relative;
}
.our-team .team-card {
  cursor: pointer;
  position: relative;
}
.our-team .team-card:hover .team-con {
  visibility: visible;
}
.our-team .team-card .team-con {
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
  border-radius: 0.9375rem;
}
.our-team .team-card .team-con p {
  color: #ffffff;
}
.our-team .team-card .team-con .team-social {
  display: flex;
}
.our-team .team-card .team-con .team-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A5A5A5;
  background-color: #eaeaea;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin: 0 0.5rem;
}
.our-team .team-card .team-con .team-social li a:hover {
  color: #033038;
}
.our-team .team-card img {
  transition: all 0.4s ease-out 0s;
}
.our-team .team-card:hover .team-con {
  background-color: rgba(3, 48, 56, 0.5);
}
.our-team .team-card:hover img {
  transform: scale(1.1);
}

.about-area {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem 0;
}
.about-area .skills .skill-item {
  margin-bottom: 25px;
}
.about-area .skills .skill-item:last-child {
  margin-bottom: 40px;
}
.about-area .skills .skill-item .text {
  position: relative;
  z-index: 4;
  font-size: 15px;
  letter-spacing: 0.7px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-area .skills .skill-item .text em {
  float: right;
  font-size: 15px;
  font-style: normal;
}
.about-area .skills .skill-item .skill-progress {
  position: relative;
  height: 5px;
  border-radius: 0.9375rem;
  background: #eaeaea;
  overflow: hidden;
}
.about-area .skills .skill-item .skill-progress .progres {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  background-color: #033038;
  transition: all 1.5s;
}

.company-image {
  position: relative;
  text-align: center;
}
.company-image img {
  border-radius: 0.9375rem;
}
.company-image .years-design {
  position: absolute;
  left: 0px;
  bottom: 25px;
  text-align: left;
  padding: 20px 40px 20px 40px;
  background: #ffffff;
  border-top: 2px solid #033038;
  border-bottom: 2px solid #fc8f3a;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 50%;
  width: 250px;
  height: 250px;
}

.about-img img:first-child {
  width: 90%;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.9375rem;
}
.about-img img:last-child {
  position: relative;
  width: 80%;
  right: 0;
  float: right;
  top: -150px;
  margin-bottom: -150px;
  border: 10px solid #ffffff;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .about-img img:last-child {
    top: -100px;
  }
}

.about-company {
  padding: 4rem 0 6rem 0;
}
.about-company .max {
  max-width: 450px;
}
.about-company .review-con {
  text-align: justify;
}
.about-company .about-pic {
  position: relative;
}
.about-company .about-pic::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 400px;
  border-radius: 0.9375rem;
  z-index: -1;
  background-color: #033038;
  top: 120px;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::before {
    width: 120px;
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::before {
    right: 0px;
    top: 50px;
  }
}
.about-company .about-pic::after {
  content: "";
  position: absolute;
  background-color: #fc8f3a;
  z-index: -1;
  display: block;
  border-radius: 0.9375rem;
  width: 150px;
  height: 400px;
  background-size: contain;
  top: -60px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .about-company .about-pic::after {
    width: 150px;
    height: 200px;
    left: 0px;
  }
}

.social-follow-icon {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.social-follow-icon li {
  margin-left: 1rem;
}
.social-follow-icon li:first-child {
  font-weight: bold;
  color: #fc8f3a;
}
.social-follow-icon li a {
  display: block;
  transition: 0.4s ease;
}
.social-follow-icon li a i {
  color: #fc8f3a;
}
.social-follow-icon li a:hover {
  transform: scale(1.2);
}

.content-list li {
  padding: 10px 0 0 10px;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #A5A5A5;
  list-style: disc;
  margin: 0 0 0 20px;
}
.content-list .content-sublist li {
  list-style: circle;
}

.deals-tab {
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
  border-radius: 0.9375rem;
  flex-wrap: nowrap;
}
.deals-tab li .nav-link {
  color: #A5A5A5;
  padding: 1rem 2.5rem;
}
.deals-tab li .nav-link:hover {
  color: #033038;
}
.deals-tab li .nav-link.active {
  background-color: #fc8f3a;
  color: #033038;
  border-radius: 0.9375rem;
}

.single-pricing-content {
  padding: 30px 30px;
  background: #ffffff;
  text-align: left;
  transition: all 0.4s ease 0s;
  margin-bottom: 30px;
}
.single-pricing-content:hover {
  transform: translateY(-10px);
}
.single-pricing-content .price-tag {
  position: relative;
}
.single-pricing-content .price-tag .title {
  position: absolute;
  display: block;
  width: 115px;
  height: 50px;
  border-radius: 25px 0 0 25px;
  background: #eaeaea;
  line-height: 50px;
  font-size: 0.875rem;
  color: #ffffff;
  top: 2px;
  left: -20px;
  transform: rotate(-90deg);
  text-align: center;
}
.single-pricing-content .price-tag .highlight {
  background: #fc8f3a;
}
.single-pricing-content .price-list {
  text-align: center;
}
.single-pricing-content .price-list ul li {
  display: block;
  border-top: 1px dashed;
  padding: 10px 0;
  border-color: #eaeaea;
}
.single-pricing-content .price-list ul li:last-child {
  padding-bottom: 0;
}

.read-more-content {
  display: none;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
}

.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-image: url(../images/section/coming-page-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.coming-soon-area::before {
  content: "";
  z-index: -1;
  background: rgba(252, 143, 58, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.coming-soon-area .social a,
.coming-soon-area .social .botom-link {
  color: #ffffff;
}
.coming-soon-area .social a:hover,
.coming-soon-area .social .botom-link:hover {
  color: #033038;
}

#timer {
  font-size: 2.5em;
  font-weight: 600;
  color: #033038;
  display: flex;
  justify-content: center;
}
#timer div {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  border-right: 1px solid #eaeaea;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  #timer div {
    min-width: 60px;
  }
}
#timer div:last-child {
  border-right: none;
}
#timer div span {
  color: #ffffff;
  display: block;
  font-size: 0.35em;
  font-weight: 500;
}

.single-partner {
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.service-single-img {
  border-radius: 0.9375rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.service-single-img img {
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.features-text li {
  padding-left: 35px;
  position: relative;
  color: #eaeaea;
  margin-bottom: 17px;
  font-weight: 500;
  font-size: 0.875rem;
}
.features-text li:before {
  position: absolute;
  content: "\f270";
  font-family: "bootstrap-icons";
  color: #033038;
  left: 0;
  top: 0;
}
.features-text li:last-child {
  margin-bottom: 0;
}

.cta {
  width: 100%;
  background: url(../images/section/services-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
.cta:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(252, 143, 58, 0.5);
  opacity: 0.75;
}

.pagination li a.page-link {
  border-radius: 0.9375rem;
  color: #033038;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.875rem;
  width: 3.5rem;
  height: 2.5rem;
}
.pagination li a.page-link:hover {
  color: #ffffff;
  background: #033038;
}
.pagination li a.page-link:first-child {
  border-radius: 0;
  border-radius: 0.9375rem;
}
.pagination li a.page-link:last-child {
  border-radius: 0;
  border-radius: 0.9375rem;
}
.pagination li .page-link.active {
  background-color: #033038;
  color: #ffffff;
  border: none;
}

.post-wrap {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.post-wrap p i {
  line-height: 2rem;
  font-size: 0.875rem;
  border-left: 2px solid #033038;
  height: 100%;
  display: block;
  padding: 1rem;
  background: rgba(3, 48, 56, 0.04);
  text-align: justify;
}
.post-wrap .post-head {
  font-size: 1.5rem;
  margin: 2rem 0;
  font-weight: bold;
}
.post-wrap .post-desc {
  font-size: 0.875rem;
  line-height: 2rem;
  text-align: justify;
  color: #A5A5A5;
}

.blog-post-social {
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  padding: 25px 0px;
  margin-bottom: 55px;
}

.post-tag-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.post-tag-list li {
  font-weight: bold;
  color: #fc8f3a;
  margin-right: 8px;
}
.post-tag-list li:first-child {
  margin-right: 15px;
}
.post-tag-list li a {
  font-size: 0.875rem;
  color: #A5A5A5;
  font-weight: normal;
}
.post-tag-list li a:hover {
  color: #fc8f3a;
}

.blog-icon-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.blog-icon-list li {
  margin-left: 1rem;
}
.blog-icon-list li:first-child {
  font-weight: bold;
  color: #fc8f3a;
}
.blog-icon-list li a {
  display: block;
  transition: 0.4s ease;
}
.blog-icon-list li a i {
  color: #fc8f3a;
}
.blog-icon-list li a:hover {
  transform: scale(1.2);
}

.comment-box .comment-head {
  padding: 2rem;
  font-weight: bold;
  font-size: 1.5rem;
}
.comment-box .user-comment-card {
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.comment-box .user-comment-card li {
  position: inherit;
}
.comment-box .user-comment-card .userPic {
  position: relative;
}
.comment-box .user-comment-card .userName {
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 1rem;
  font-size: 0.875rem;
}
.comment-box .comment-title {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
}
.comment-box .comment-title .comment-meta span {
  color: #A5A5A5;
  font-size: 0.75rem;
}
.comment-box .comment-body p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #A5A5A5;
}
.comment-box h4 {
  margin-bottom: 2rem;
}

.search-form {
  border: 1px solid #eaeaea;
  border-radius: 0.9375rem;
}
.search-form input {
  font-size: 0.875rem !important;
}
.search-form button {
  min-width: auto !important;
}

.blog-list-head {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: #033038;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1rem;
}
.blog-list-head:after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #033038;
}
.blog-list-head:before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  right: 0;
  background: #fc8f3a;
}

.post-thumb img {
  width: 100px;
  height: auto;
}

.widget-categories li :first-child {
  margin-top: 0;
}
.widget-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #A5A5A5;
  padding: 10px 15px;
  padding-left: 15px;
  position: relative;
  transition: all 0.2s;
}
.widget-categories li a:hover {
  background: rgba(3, 48, 56, 0.04);
  color: #033038;
}
.widget-categories li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.widget-categories li a::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #fc8f3a;
  border-radius: 2px 0px 0px 2px;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-5px);
}

.tags-blog {
  list-style-type: none;
}
.tags-blog li {
  padding: 1rem 0.5rem;
  margin: 0 0;
  display: inline-block;
}
.tags-blog li a {
  color: #A5A5A5;
  border-radius: 0.9375rem;
  background: #eaeaea;
  padding: 0.5rem;
  font-size: 0.875rem;
}
.tags-blog li a:hover {
  background: #fc8f3a;
  color: #ffffff;
}

.stats {
  position: relative;
  min-height: 540px;
  background-image: url(../images/section/features-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.stats .stats-icon {
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  background-color: #033038;
  border-bottom: 2px solid #fc8f3a;
  border-top: 2px solid #033038;
  padding: 1rem;
  display: inline-flex;
  margin-bottom: 1rem;
  line-height: 1rem;
  justify-content: center;
  align-items: center;
}

.our-menu .nav.nav-pills {
  background-color: #033038;
  border-radius: 0.9375rem;
  overflow: hidden;
  padding: 0.5rem;
}
.our-menu .nav.nav-pills .nav-link {
  color: #ffffff;
}
.our-menu .nav.nav-pills .nav-link.active {
  background-color: transparent;
  border-radius: 0.9375rem;
  color: #fc8f3a;
}
.our-menu .wrap {
  align-self: center;
  flex-grow: 1;
}
.our-menu .wrap .seperater {
  border-bottom: 1px solid #fc8f3a;
  width: 86%;
  display: block;
  margin: auto;
}

.auth-area {
  position: relative;
}
.auth-area .bg-auth {
  width: 100%;
  height: 100vh;
  display: block;
  background-image: url(../images/section/maintenance-page-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper > a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 0.9375rem;
}
.grid-wrapper > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-box {
  min-height: 60vh;
}
.gallery-box #filters {
  margin: 30px auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.gallery-box #filters li {
  margin: 10px 5px;
  display: inline-block;
}
.gallery-box #filters li span {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #A5A5A5;
  cursor: pointer;
  font-size: 2rem;
  text-transform: uppercase;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .gallery-box #filters li span {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
.gallery-box #filters li span:hover {
  color: #033038;
}
.gallery-box #filters li span.active {
  color: #fc8f3a;
}
.gallery-box #portfoliolist .portfolio {
  box-sizing: border-box;
  margin: 0px 0px 0 0;
  display: none;
  overflow: hidden;
}
.gallery-box #portfoliolist .portfolio .portfolio-wrapper figure {
  min-height: auto;
  height: auto;
}

.effect-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 0.9375rem;
}
.effect-gallery img {
  width: 100%;
}
.effect-gallery:hover .portfolio-contnet {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.effect-gallery:hover .portfolio-contnet:before {
  top: 0;
}
.effect-gallery .portfolio-contnet {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  z-index: 5;
}
.effect-gallery .portfolio-contnet:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 48, 56, 0.5);
  opacity: 0.8;
  z-index: -1;
}
.effect-gallery .portfolio-contnet .contnet-inner a {
  font-size: 20px;
  color: #033038;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  background: #ffffff;
  border-radius: 50%;
}
.effect-gallery .portfolio-contnet .contnet-inner a:hover {
  background: #fc8f3a;
}

.portfolio-details-date {
  position: relative;
  padding-left: 20px;
  color: #A5A5A5;
}
.portfolio-details-date:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #033038;
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.portfolio-details-single-img {
  margin-bottom: 30px;
  border-radius: 0.9375rem;
  overflow: hidden;
}
.portfolio-details-single-img img {
  width: 100%;
}

.choosing__number span {
  display: inline-block;
  text-align: center;
  position: relative;
  transition: all 0.5s ease-out 0s;
  border: 1px solid #fc8f3a;
  color: #fc8f3a;
  height: 50px;
  width: 50px;
  line-height: 48px;
  border-radius: 50%;
}

.project-sidebar-widget {
  background: #ffffff;
  border-radius: 0.9375rem;
  padding: 25px 30px;
  box-shadow: 0rem 0.1875rem 1.625rem rgba(0, 0, 0, 0.1);
}
.project-sidebar-widget .tg-widget-meta {
  margin-bottom: 35px;
}
.project-sidebar-widget .tg-widget-meta .name {
  font-size: 0.875rem;
  color: #A5A5A5;
}
.project-sidebar-widget .tg-widget-meta .tg-widget-meta li {
  display: inline-block;
  position: relative;
  margin: 0 15px;
  font-size: 0.875rem;
  color: #A5A5A5;
}
.project-sidebar-widget .tg-widget-meta .tg-widget-meta li:first-child {
  margin-left: 0;
}
.project-sidebar-widget .tg-widget-meta .tg-widget-meta li:last-child {
  margin-right: 0;
}
.project-sidebar-widget .tg-widget-meta .tg-widget-meta li:last-child::after {
  display: none;
}
.project-sidebar-widget .tg-widget-meta .tg-widget-meta li:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background: #eaeaea;
  top: 5px;
  right: -16px;
}/*# sourceMappingURL=main.css.map */