@charset "UTF-8";
/*-----------------------------------------------------------
    Theme Name: Torado
    Theme URI: 
    Description: Torado - Broadband & Internet Service Providers Template
    Author: EnvyTheme
    Author URI: https://envytheme.com/
    Version: 1.0
-------------------------------------------------------------*/
/*--------------------------------
     =====Table Of Contents====

1.  General Styles 
2.  Mixins CSS
3.  Back To Top Button CSS
4.  Preloader CSS
5.  Button & Link CSS
6.  Section Title & Overlay & Shape CSS
7.  Social Link CSS
8.  Pagination CSS
9.  Sidebar CSS
     - Search Box Widget
     - Taglist Widget
     - Category Widget
     - Filter Search Widget
     - New Arrival Product Widget
     - Popular Post Widget
10. Sign In CSS
11. FAQ Terms & Conditions
----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #575A7B;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #282B2D;
  line-height: 1.4;
  font-family: "Kumbh Sans", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #575A7B;
  transition: all ease 0.8s;
}
a:hover {
  color: #ed8814;
}

p {
  font-size: 16px;
  color: #575A7B;
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pr-0 {
  padding-right: 0;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-0 {
  padding-left: 0;
}

.white-color {
  color: #282B2D !important;
}

.bg-F7F7F7 {
  background: #F7F7F7;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}
.section-title span {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ed8814;
}
.section-title h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0;
}

.single-section span {
  font-weight: 500;
  display: inline-block;
  color: #ed8814;
  margin-bottom: 10px;
}
.single-section h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
}
.single-section p {
  margin-bottom: 20px;
}

.container-fluid {
  max-width: 1680px;
}

.b-three .container-fluid {
  max-width: 1540px;
}

.default-btn {
  color: #ffffff;
  background-color: #ed8814;
  padding: 12px 25px;
  border: solid 1px #ed8814;
  font-weight: 600;
  font-size: 16px;
  transition: all ease 0.8s;
  display: inline-block;
  text-decoration: none;
}
.default-btn:hover {
  background-color: #ffffff;
  color: #ed8814;
}

.owl-theme .owl-dots {
  position: absolute;
  right: 0;
  margin-top: 0 !important;
  bottom: -26px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all ease 0.8s;
  background-color: transparent !important;
  position: relative;
  padding: 0;
  margin: 0 5px;
  border: 1px solid transparent;
}
.owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 2px;
  background: #282B2D;
  opacity: 0.2;
  right: 0;
  transition: all ease 0.8s;
  border-radius: 50%;
}
.owl-theme .owl-dots .owl-dot:last-child span {
  margin-right: 0;
}
.owl-theme .owl-dots .owl-dot.active span {
  border-color: #ed8814;
}
.owl-theme .owl-dots .owl-dot.active span::before {
  background: #ed8814;
  opacity: 1;
}
.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #ed8814;
}
.owl-theme .owl-dots .owl-dot:hover span::before {
  background: #ed8814;
  opacity: 1;
}

/*
Preloader Style
======================================================*/
.preloader {
  position: fixed;
  width: 100%;
  z-index: 9;
  height: 100%;
  background: #ffffff;
  color: #ed8814;
  top: 0;
  left: 0;
  text-align: center;
}

.preloader .lds-spinner {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 200px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@keyframes simple-square-to-circle {
  100% {
    border-radius: 50%;
  }
}
@keyframes simple-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes simple-scale {
  100% {
    transform: scale(1.5);
  }
}
@keyframes simple-move {
  100% {
    transform: translate(50px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
/*
Top button Style
======================================================*/
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(150, 150, 150, 0.5882352941);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ed8814;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 30px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #ed8814;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
@keyframes top-bottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
/*
Top Header Area Style
======================================================*/
.inner-header {
  padding-top: 15px;
  padding-bottom: 12px;
  background: #F7F7F7;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

.inner-header-style2 {
  padding-right: 0px;
  padding-left: 0px;
}

.top-header-style2 {
  background: #F7F7F7;
  position: relative;
  z-index: 2;
}

.header-contact .contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.header-contact .contact-list li {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 400;
  font-size: 14px;
}
.header-contact .contact-list li:hover .icon {
  background-color: #ed8814;
  color: #ffffff;
}
.header-contact .contact-list li:first-child {
  padding-left: 0;
}
.header-contact .contact-list li:last-child {
  padding-right: 0;
}
.header-contact .contact-list li .icon {
  position: absolute;
  left: 0;
  top: -5px;
  width: 30px;
  height: 30px;
  color: #ed8814;
  text-align: center;
  border-radius: 50%;
  line-height: 33px;
  transition: all ease 0.8s;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(17, 17, 17, 0.06);
}
.header-contact .contact-list li .icon i {
  font-size: 14px;
}
.header-contact .contact-list li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}

.social-widget {
  text-align: end;
}
.social-widget .social-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.social-widget .social-link li {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  top: -2px;
}
.social-widget .social-link li a {
  text-decoration: none;
  color: #282B2D;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background: #ffffff;
  transition: all ease 0.8s;
  box-shadow: 0px 4px 15px rgba(17, 17, 17, 0.06);
}
.social-widget .social-link li a:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.social-widget .social-link li a i.bx.bxl-instagram {
  font-size: 17px;
  position: relative;
  top: 1px;
}

/*
Banner Area Style
======================================================*/
.banner-area {
  padding-top: 210px;
  padding-bottom: 40px;
  background-image: url(../images/banner/banner-2.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
  top: -170px;
  margin-bottom: -170px;
}
.banner-area .banner-shape-1 {
  position: absolute;
  top: 24%;
  left: 0;
  opacity: 40%;
  animation: movebounce 8s linear infinite;
}
.banner-area .banner-shape-2 {
  position: absolute;
  left: 30%;
  bottom: 10px;
  animation: moveleftbounce 8s linear infinite;
}
.banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}
.banner-area .container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 120px;
}

.banner-image {
  position: relative;
}
.banner-image .mini-1 {
  position: absolute;
  left: -78px;
  width: 158.01px;
  height: 187.46px;
  bottom: 35px;
  animation: movebounce 8s linear infinite;
}

.banner-content {
  padding-top: 180px;
  padding-bottom: 180px;
}
.banner-content span {
  font-weight: 500;
  display: inline-block;
  color: #ffffff;
  margin-bottom: 15px;
}
.banner-content h1 {
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
  color: #ffffff;
  margin-bottom: 15px;
}
.banner-content p {
  color: #ffffff;
  padding-right: 95px;
  margin-bottom: 30px;
}
.banner-content .banner-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content .banner-list li {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
.banner-content .banner-list li:last-child {
  padding-right: 0;
  padding-left: 65px;
}
.banner-content .banner-list li:last-child .icon-play {
  position: absolute;
  left: 0;
  top: -13px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 4px rgba(40, 43, 45, 0.04);
  font-size: 39px;
  line-height: 58px;
  text-align: center;
  display: inline-block;
  color: #ed8814;
  transition: all ease 0.8s;
}
.banner-content .banner-list li:last-child .icon-play i {
  position: relative;
  left: 3px;
}
.banner-content .banner-list li:last-child .icon-play:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.banner-content .banner-list li:last-child a {
  display: inline-block;
  text-decoration: none;
}
.banner-content .banner-list li:last-child a:hover .icon-play {
  background-color: #ed8814;
  color: #ffffff;
}

.banner-image {
  position: relative;
  background-image: url(../images/banner/banner-1.webp);
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 80px;
}

/*
Features Area Style
======================================================*/
.features-area {
  position: relative;
  z-index: 1;
  background-image: url(../images/features/features-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.features-box {
  margin-bottom: 25px;
  padding: 0px 50px 0px 0px;
}
.features-box.two {
  margin-left: 40px;
  padding: 0px 1px 0px 0px;
}
.features-box .icon {
  padding-right: 20px;
  position: relative;
  z-index: 1;
  transition: all ease 0.8s;
}
.features-box .icon::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ed8814;
  opacity: 0.06;
  border-radius: 50%;
  top: 24px;
  z-index: -1;
  right: 35px;
  transition: all ease 0.8s;
}
.features-box .icon i {
  font-size: 55px;
  color: #ed8814;
}
.features-box:hover .icon::before {
  transform: translateY(-15px);
}
.features-box .features-content h4 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
}
.features-box .features-content p {
  margin-bottom: 0;
}
.features-box.last-box {
  padding-left: 78px;
  padding-right: 0;
}

/*
Service Area Style
======================================================*/
.service-box {
  position: relative;
  margin-bottom: 25px;
}
.service-box .service-content {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 2px rgba(40, 43, 45, 0.06);
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px 35px 20px 35px;
  transition: all ease 0.8s;
}
.service-box .service-content p {
  margin-bottom: 0px;
  transition: all ease 0.8s;
}
.service-box .service-content .default-btn {
  position: absolute;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.service-box .widget .icon {
  width: 70px;
  height: 70px;
  top: -50px;
  margin-bottom: -30px;
  border-radius: 50%;
  text-align: center;
  line-height: 78px;
  font-size: 35px;
  color: #ed8814;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
}
.service-box .widget h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.service-box .widget h3 a {
  color: #282B2D;
  text-decoration: none;
}
.service-box .widget h3 a:hover {
  color: #ed8814;
}
.service-box:hover .service-content p {
  padding-bottom: 70px;
}
.service-box:hover .service-content .default-btn {
  position: absolute;
  opacity: 1;
  bottom: 20px;
  visibility: visible;
  transition: all ease 0.8s;
}

.service-area {
  position: relative;
  z-index: 1;
}
.service-area .view {
  position: relative;
  top: 0px;
  margin-bottom: -5px;
}
.service-area .view a {
  color: #ed8814;
  font-weight: 600;
}

/*
About Area Style
======================================================*/
.about-image {
  background-image: url(../images/abouts/about-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.about-content {
  position: relative;
  margin-right: -253px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 60px 45px 60px 40px;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content .default-btn {
  background: #F7F7F7;
  border: none;
  color: #ed8814;
}
.about-content .default-btn:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.about-content .about-shape {
  position: absolute;
  bottom: 18px;
  right: 60px;
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.about-warp {
  padding-right: 30px;
}

.fastest-widget p {
  margin-bottom: 20px;
}
.fastest-widget .fastest-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}
.fastest-widget .fastest-list span {
  margin-bottom: 15px;
  padding: 15px 20px 15px 45px;
  background: #F7F7F7;
  font-weight: 500;
  position: relative;
  transition: all ease 0.8s;
  display: block;
}
.fastest-widget .fastest-list span:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.fastest-widget .fastest-list span:hover i {
  color: #ffffff;
}
.fastest-widget .fastest-list span i {
  color: #ed8814;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  margin-top: 1px;
  left: 20px;
  transform: translateY(-50%);
  top: 50%;
  transition: all ease 0.8s;
}
.fastest-widget .fast-image {
  padding-right: 15px;
}
.fastest-widget .fast-image img {
  width: 60px;
  height: 60px;
  border: solid 3px #ffffff;
  border-radius: 50%;
  box-shadow: 0px 2px 20px 2px rgba(17, 17, 17, 0.08);
}
.fastest-widget .self-content {
  padding-right: 50px;
}
.fastest-widget .self-content h6 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 3px;
}
.fastest-widget .self-content p {
  font-size: 14px;
  margin-bottom: 0;
}
.fastest-widget .fastest-self {
  align-items: center;
}

/*
Choose Area Style
======================================================*/
.choose-image {
  background-image: url(../images/chooses/choose-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  left: -30px;
}
.choose-image .router {
  position: absolute;
  right: -20px;
  bottom: 60px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 2px rgba(40, 43, 45, 0.06);
  padding: 30px 60px 30px 30px;
  animation: movebounce 5s linear infinite;
}
.choose-image .router .icon {
  width: 70px;
  height: 70px;
  top: -67px;
  margin-bottom: -50px;
  border-radius: 50%;
  text-align: center;
  line-height: 78px;
  font-size: 35px;
  color: #ed8814;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
}
.choose-image .router h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.choose-image .router p {
  margin-bottom: 0;
}
.choose-image .router p span {
  font-weight: 700;
  font-size: 18px;
  color: #ed8814;
}
.choose-image .router p a {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: #282B2D;
}

.choose-area .container-fluid {
  max-width: 100%;
}

.choose-content {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-left: 20px;
  padding-right: 300px;
  position: relative;
}
.choose-content h2 {
  margin-bottom: 30px;
}
.choose-content .nav-item {
  padding-right: 20px;
}
.choose-content .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  color: #282B2D;
  text-decoration: underline;
  transition: all ease 0.8s;
}
.choose-content .nav-pills .nav-link:hover {
  background: #FFFFFF !important;
  color: #ed8814;
  border-radius: 0;
}
.choose-content .nav-pills .nav-link.active {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 2px rgba(40, 43, 45, 0.04);
  color: #ed8814;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0;
}
.choose-content p {
  margin-bottom: 30px;
  margin-right: 10px;
}
.choose-content .tab-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.choose-content .tab-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 27px;
}
.choose-content .tab-list li i {
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -3px;
  color: #ed8814;
}

.tab-content {
  position: relative;
}
.tab-content .choose-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: movebounce 5s linear infinite;
}

/*
Checking Area Style
======================================================*/
.inner-checking-area {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.inner-checking-area h3 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
}
.inner-checking-area .form-control {
  height: 50px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  color: #ed8814;
  padding-left: 15px;
  border: solid 1px #ffffff;
}
.inner-checking-area .form-control:focus {
  box-shadow: unset;
  background-color: #ffffff;
}
.inner-checking-area .form-control::-moz-placeholder {
  color: #575A7B;
}
.inner-checking-area .form-control::placeholder {
  color: #575A7B;
}
.inner-checking-area .input-area {
  margin-right: 33px;
}
.inner-checking-area .input-area.one {
  padding-left: 33px;
  margin-right: 2px;
}
.inner-checking-area .default-btn {
  padding: 12px 30px;
}
.inner-checking-area .checking-btn {
  margin-left: -36px;
}

.checking-area {
  background-image: url(../images/checking/checking-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.checking-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}

/*
Pricing Area Style
======================================================*/
.pricing-card {
  background-image: url(../images/pricing/pricing-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.pricing-card:hover::before {
  opacity: 0;
  visibility: hidden;
}
.pricing-card:hover::after {
  opacity: 0.94;
  visibility: visible;
}
.pricing-card:hover h5 {
  color: #ffffff;
}
.pricing-card:hover h2 {
  color: #ffffff;
}
.pricing-card:hover p {
  color: #ffffff;
}
.pricing-card:hover .pricing-list li {
  color: #ffffff;
}
.pricing-card:hover .pricing-list li i {
  color: #ffffff;
}
.pricing-card:hover .pricing-list li i.flaticon-cross {
  color: #ffffff;
}
.pricing-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #F7F7F7;
  z-index: -1;
  transition: all ease 0.8s;
}
.pricing-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0;
  z-index: -1;
  transition: all ease 0.8s;
}
.pricing-card .icon {
  width: 70px;
  height: 70px;
  top: -76px;
  margin-bottom: -50px;
  border-radius: 50%;
  text-align: center;
  line-height: 78px;
  font-size: 35px;
  color: #ed8814;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
}
.pricing-card .icon.icon2 {
  margin-left: 20px;
}
.pricing-card .icon.icon3 {
  margin-left: 20px;
}
.pricing-card .pricing-content {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: solid 1px rgba(207, 207, 207, 0.35);
}
.pricing-card .pricing-content h5 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
  transition: all ease 0.8s;
}
.pricing-card .pricing-content h2 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 5px;
  transition: all ease 0.8s;
}
.pricing-card .pricing-content h2 span {
  font-size: 14px;
}
.pricing-card .pricing-content p {
  margin-bottom: 0;
  transition: all ease 0.8s;
}
.pricing-card .pricing-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.pricing-card .pricing-list li {
  position: relative;
  margin-bottom: 16px;
  color: #575A7B;
  transition: all ease 0.8s;
}
.pricing-card .pricing-list li:last-child {
  margin-bottom: 0;
}
.pricing-card .pricing-list li i {
  position: absolute;
  right: 0;
  top: 0;
  color: #24C373;
  transition: all ease 0.8s;
}
.pricing-card .pricing-list li i.flaticon-cross {
  color: #ed8814;
  font-size: 23px;
}
.pricing-card .default-btn {
  box-shadow: 0px 4px 15px 2px rgba(17, 17, 17, 0.04);
  background-color: #ffffff;
  color: #ed8814;
  border: none;
}
.pricing-card .default-btn:hover {
  background-color: #ed8814;
  color: #ffffff;
}

.pricing-area .section-title {
  margin-bottom: 60px;
}

.store-area .owl-theme .owl-dots {
  position: absolute;
  right: 0;
  margin-top: 0 !important;
  bottom: 0px;
}

/*
Discover Area Style
======================================================*/
.last-image {
  position: relative;
  top: 20px;
  left: -60px;
  z-index: 2;
}

.fast-image {
  position: relative;
  z-index: 1;
}
.fast-image .discover-shape {
  position: absolute;
  left: 0px;
  bottom: -105px;
  z-index: -1;
}

.discover-content {
  position: relative;
  padding-left: 30px;
}
.discover-content .d-shape-2 {
  position: absolute;
  right: 0;
  bottom: 2px;
  animation: animationFramesOne 30s infinite linear;
}
.discover-content .discover-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 68px;
}
.discover-content .discover-list li {
  display: inline-block;
  padding-right: 30px;
  align-items: center;
}
.discover-content .discover-list li h2 {
  font-weight: 600;
  font-size: 30px;
  color: #ed8814;
  margin-bottom: 0;
  position: relative;
  top: 5px;
}
.discover-content .discover-list li h2 span {
  font-weight: 600;
  font-size: 14px;
  color: #282B2D;
}
.discover-content .all-time {
  width: 65px;
  height: 65px;
  font-weight: 700;
  padding-top: 40px;
  margin-right: 50px;
  font-size: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  box-shadow: 0px 4px 15px 2px rgba(17, 17, 17, 0.04);
}
.discover-content .all-time:before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  right: -26px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  opacity: 10%;
  background: #111111;
}
.discover-content .all-time::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 0;
  right: -26px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  opacity: 10%;
  background: #111111;
}
.discover-content .all-time span {
  position: relative;
  top: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #575A7B;
}
.discover-content .seconds:before {
  display: none;
}
.discover-content .seconds::after {
  display: none;
}

/*
Extra Area Style
======================================================*/
.extra-widget-content {
  background: #F7F7F7;
  position: relative;
  margin-left: -160px;
  margin-right: -30px;
  padding: 30px;
  margin-bottom: 60px;
  margin-top: 60px;
  animation: movebounce 5s linear infinite;
}
.extra-widget-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.extra-widget-content ul li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}
.extra-widget-content ul li::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #111111;
  opacity: 0.08;
}
.extra-widget-content ul li:last-child {
  margin-bottom: 0;
}
.extra-widget-content ul li:last-child::before {
  display: none;
}
.extra-widget-content ul li .icon {
  position: absolute;
  left: 0;
  top: 8px;
}
.extra-widget-content ul li .icon i {
  font-size: 45px;
  color: #ed8814;
}
.extra-widget-content ul li .content h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 5px;
}
.extra-widget-content ul li .content p {
  margin-bottom: 0;
}

.extra-image {
  background-image: url(../images/extra/extra-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.extra-content {
  position: relative;
}
.extra-content .extra-contact {
  color: #575A7B;
  margin-bottom: 0;
}
.extra-content a {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  color: #ed8814;
}
.extra-content .default-btn {
  display: inline-block;
  color: #ffffff;
  margin-bottom: 0;
}
.extra-content .default-btn:hover {
  color: #ed8814;
}
.extra-content .extra-shape {
  position: absolute;
  bottom: 0;
  right: 180px;
}

/*
About Area Style
======================================================*/
.about-testimonial-area {
  background-image: url(../images/abouts/about-3.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.about-testimonial-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}
.about-testimonial-area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 200px;
  width: 100%;
  background: #ffffff;
  z-index: -1;
}

.testimonial-box {
  background: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.06);
  padding: 30px;
}
.testimonial-box .user-image {
  position: relative;
  top: -65px;
  margin-bottom: -45px;
}
.testimonial-box .user-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  margin-top: 5px;
}
.testimonial-box ul li {
  display: inline-block;
  padding-right: 5px;
}
.testimonial-box ul li i {
  color: #EBA400;
}
.testimonial-box .test-self {
  justify-content: space-between;
  align-items: center;
}
.testimonial-box .test-self .self-content h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}
.testimonial-box .test-self .self-content span {
  font-weight: 400;
  font-size: 14px;
}
.testimonial-box .test-self .self-icon {
  position: relative;
  top: 20px;
}
.testimonial-box .test-self .self-icon i {
  font-size: 50px;
  color: #ed8814;
  opacity: 10%;
}

.inner-test-about {
  position: relative;
}
.inner-test-about .section-title span {
  color: #ffffff;
}
.inner-test-about .section-title h2 {
  color: #ffffff;
}
.inner-test-about .view {
  position: relative;
  top: 0px;
  margin-bottom: -5px;
}
.inner-test-about .view a {
  color: #ed8814;
  font-weight: 600;
}

/*
Blog Area Style
======================================================*/
.blog-text {
  margin-bottom: 20px;
}
.blog-text .single-section {
  padding-right: 230px;
}

.blog-card {
  margin-bottom: 25px;
  transition: all ease 0.8s;
}
.blog-card .blog-image {
  position: relative;
}
.blog-card .blog-image .date {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.blog-card .blog-image .date span {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  padding: 8px 16px;
  background-color: #ed8814;
}
.blog-card .blog-image .date2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: center;
}
.blog-card .blog-image .date2 span {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.blog-card .blog-image .date2 p {
  display: inline-block;
  padding: 14px 15px;
  background-color: #ed8814;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 5px;
}
.blog-card .blog-content {
  background: #FFFFFF;
  padding: 30px;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.06);
}
.blog-card .blog-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.blog-card .blog-content ul li {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  padding-left: 22px;
}
.blog-card .blog-content ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 8px;
  transform: rotate(22deg);
  height: 17px;
  width: 1px;
  background-color: #575A7B;
}
.blog-card .blog-content ul li:last-child::before {
  display: none;
}
.blog-card .blog-content ul li i {
  position: absolute;
  color: #ed8814;
  left: 0;
  top: 2px;
  font-size: 20px;
}
.blog-card .blog-content ul li a {
  text-decoration: none;
}
.blog-card .blog-content h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-card .blog-content h3 a {
  text-decoration: none;
  color: #282B2D;
  transition: all ease 0.8s;
}
.blog-card .blog-content h3 a:hover {
  color: #ed8814;
}
.blog-card .blog-content .read-more {
  font-weight: 700;
  font-size: 16px;
  color: #282B2D;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all ease 0.8s;
}
.blog-card .blog-content .read-more:hover {
  color: #ed8814;
}
.blog-card:hover {
  transform: translateY(-10px);
}

/*
Footer Area Style
======================================================*/
.footer-area {
  background-image: url(../images/footer/footer-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}

.bg-2 {
  background-image: url(../images/footer/footer-2.webp);
}

.col-lg-3:nth-child(2) .footer-widget {
  margin-left: 20px;
}
.col-lg-3:nth-child(3) .footer-widget {
  margin-left: 30px;
}
.col-lg-3:nth-child(4) .footer-widget {
  margin-left: -10px;
}

.footer-widget {
  margin-bottom: 25px;
}
.footer-widget .location-content {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget .location-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.footer-widget .location-content li:last-child {
  margin-bottom: 0;
}
.footer-widget .location-content li i {
  position: absolute;
  top: 4px;
  left: 0;
  color: #ed8814;
}
.footer-widget .location-content li h6 {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.footer-widget .location-content li p {
  color: #E6E6E6;
  margin-bottom: 0;
}
.footer-widget .location-content li a {
  text-decoration: none;
  color: #E6E6E6;
}
.footer-widget .footer-logo {
  margin-bottom: 25px;
  display: block;
}
.footer-widget h4 {
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 55px;
  position: relative;
}
.footer-widget h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  width: 80px;
  height: 2px;
  opacity: 0.2;
  background-color: #FFFFFF;
}
.footer-widget h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #ed8814;
}
.footer-widget .customer-service {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget .customer-service li {
  margin-bottom: 11px;
}
.footer-widget .customer-service li:last-child {
  margin-bottom: 0;
}
.footer-widget .customer-service li a {
  color: #E6E6E6;
  text-decoration: none;
  transition: all ease 0.8s;
}
.footer-widget .customer-service li a:hover {
  color: #ed8814;
}
.footer-widget p {
  color: #E6E6E6;
}
.footer-widget .from-box {
  position: relative;
}
.footer-widget .from-box .form-control {
  position: relative;
  height: 50px;
  border-radius: 0;
  border: none;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  border: solid 1px #fff;
  margin-bottom: 30px;
}
.footer-widget .from-box .form-control::-moz-placeholder {
  color: #575A7B;
}
.footer-widget .from-box .form-control::placeholder {
  color: #575A7B;
}
.footer-widget .from-box .form-control:focus {
  box-shadow: unset;
  background-color: #ffffff;
}
.footer-widget .from-box button {
  position: absolute;
  top: 2px;
  right: -3px;
  border: none;
  background-color: transparent;
}
.footer-widget .from-box button i {
  color: #ffffff;
  font-size: 20px;
  padding: 12px;
  background-color: #ed8814;
}
.footer-widget .social-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget .social-link li {
  display: inline-block;
  padding-right: 8px;
}
.footer-widget .social-link li h5 {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  position: relative;
  top: -2px;
}
.footer-widget .social-link li a {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: #ed8814;
  text-decoration: none;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  transition: all ease 0.8s;
}
.footer-widget .social-link li a:hover {
  background-color: #ed8814;
  color: #ffffff;
}

.copyright-area {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: solid 1px #464748;
}
.copyright-area p {
  margin-bottom: 0;
  text-align: center;
  color: #E6E6E6;
  font-weight: 400;
  font-size: 16px;
}
.copyright-area p a {
  text-decoration: none;
  color: #ed8814;
  transition: all ease 0.8s;
}
.copyright-area p a:hover {
  color: #ffffff;
}

/*========= Home - 2 Style ========*/
/*
Banner Area Style
======================================================*/
.banner-area-style2 {
  background-image: url(../images/banner/banner-3.webp);
  padding-top: 250px;
  padding-bottom: 100px;
}
.banner-area-style2 .container-fluid {
  width: auto !important;
  max-width: 1680px !important;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.extra-banner-image {
  background-image: url(../images/banner/banner-4.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding-right: 80px;
  width: 94%;
}

.banner-content-style2 {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.banner-content-style2 .banner-shape-5 {
  position: absolute;
  top: -164px;
  left: 48%;
}

.banner-widget-content {
  margin-left: -145px;
  margin-bottom: 100px;
  margin-top: 80px;
  margin-right: 0;
}

.extra-widget {
  position: relative;
}
.extra-widget .banner-shape-3 {
  position: absolute;
  top: -33px;
  right: 106px;
  z-index: -1;
}
.extra-widget .banner-shape-4 {
  position: absolute;
  left: -122px;
  bottom: -39px;
  z-index: -1;
}

/*
Checking Area Style
======================================================*/
.checking-style2 {
  background-image: url(../images/features/features-1.webp);
}
.checking-style2::before {
  display: none;
}
.checking-style2 .inner-checking-area h3 {
  color: #282B2D;
}
.checking-style2 .inner-checking-area .form-control {
  box-shadow: 0px 2px 10px 2px rgba(17, 17, 17, 0.03);
}

/*
Second Area Style
======================================================*/
.second-about-image {
  position: relative;
  padding-right: 110px;
}
.second-about-image .about-shape-5 {
  position: absolute;
  width: 261px;
  right: 0px;
  top: 145px;
  height: 279px;
}
.second-about-image .about-shape-2 {
  position: absolute;
  padding: 20px;
  left: 0;
  background: #fff;
  bottom: 0;
  animation: bounce 10s linear infinite;
}

.second-about-content {
  padding-left: 40px;
  position: relative;
}
.second-about-content .fastest-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
  padding-right: 140px;
}
.second-about-content .fastest-list span {
  margin-bottom: 15px;
  padding: 15px 20px 15px 45px;
  background: #F7F7F7;
  font-weight: 500;
  position: relative;
  color: #575A7B;
  transition: all ease 0.8s;
  display: block;
}
.second-about-content .fastest-list span:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.second-about-content .fastest-list span:hover i {
  color: #ffffff;
}
.second-about-content .fastest-list span i {
  color: #ed8814;
  font-size: 15px;
  line-height: 1;
  position: absolute;
  margin-top: 1px;
  left: 20px;
  transform: translateY(-50%);
  top: 50%;
  transition: all ease 0.8s;
}
.second-about-content .about-extra {
  position: absolute;
  right: 0;
  bottom: 60px;
}

/*
Explore Area Style
======================================================*/
.explore-service-area {
  background-image: url(../images/services/service-4.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.explore-service-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #383741;
  opacity: 0.95;
  z-index: -1;
}
.explore-service-area .section-title h2 {
  color: #ffffff;
}
.explore-service-area .section-title span {
  color: #ffffff;
}

.explore-card {
  background-color: #ffffff;
  padding: 40px 35px;
  margin-bottom: 25px;
  transition: all ease 0.8s;
}
.explore-card .icon {
  margin-right: 20px;
}
.explore-card .icon i {
  font-size: 60px;
  color: #ed8814;
  transition: all ease 0.8s;
}
.explore-card .content h3 {
  font-weight: 700;
  font-size: 22px;
}
.explore-card .content h3 a {
  text-decoration: none;
  color: #282B2D;
  transition: all ease 0.8s;
}
.explore-card .content .read-more {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #282B2D;
  transition: all ease 0.8s;
}
.explore-card .content p {
  transition: all ease 0.8s;
}
.explore-card:hover {
  background-color: #ed8814;
}
.explore-card:hover .icon i {
  color: #ffffff;
}
.explore-card:hover .content h3 a {
  color: #ffffff;
}
.explore-card:hover .content .read-more {
  color: #ffffff;
}
.explore-card:hover .content p {
  color: #ffffff;
}

/*
Show Area Style
======================================================*/
.show-btn {
  text-align: end;
}

.popular-warp:hover .content {
  opacity: 1;
  visibility: visible;
}
.popular-warp .content {
  position: absolute;
  bottom: 20px;
  left: 50px;
  right: 50px;
  background-color: #ffffff;
  padding: 20px;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.popular-warp .content p {
  margin-bottom: 10px;
}
.popular-warp .content h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0;
}
.popular-warp .content h3 a {
  color: #282B2D;
  text-decoration: none;
}
.popular-warp .content h3 a:hover {
  color: #ed8814;
}
.popular-warp .icon i {
  color: #FFF;
  font-size: 30px;
  padding: 15px;
  position: relative;
  background: #ed8814;
  top: -20px;
  right: -20px;
}

/*
Pricing Area Style
======================================================*/
.pricing-card-style2 .icon {
  top: 0;
  margin-bottom: 20px;
  box-shadow: unset;
}

.pricing-area-style2 .section-title {
  margin-bottom: 30px;
}

/*
Magic Area Style
======================================================*/
.magic-area {
  position: relative;
  background-image: url(../images/magic/magic-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.magic-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.95;
  z-index: -1;
}

.magic-content {
  position: relative;
  margin-right: 80px;
}
.magic-content span {
  color: #ffffff;
}
.magic-content h2 {
  color: #ffffff;
}
.magic-content p {
  color: #ffffff;
}
.magic-content .tab-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.magic-content .tab-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 27px;
  color: #ffffff;
}
.magic-content .tab-list li i {
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -3px;
  color: #ffffff;
}
.magic-content .magic-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: movebounce 10s linear infinite;
}

.magic-image {
  position: relative;
}
.magic-image .router {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 2px rgba(40, 43, 45, 0.06);
  padding: 30px 60px 30px 30px;
  animation: bounce 10s linear infinite;
}
.magic-image .router .icon {
  width: 70px;
  height: 70px;
  top: -67px;
  margin-bottom: -50px;
  border-radius: 50%;
  text-align: center;
  line-height: 78px;
  font-size: 35px;
  color: #ffffff;
  position: relative;
  background-color: #ed8814;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
}
.magic-image .router h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.magic-image .router p {
  margin-bottom: 0;
}
.magic-image .router p span {
  font-weight: 700;
  font-size: 18px;
  color: #ed8814;
}
.magic-image .router p a {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: #282B2D;
}

/*
Testimonial Area Style
======================================================*/
.testimonial-area .owl-theme .owl-dots {
  position: relative;
  right: 0;
  margin-bottom: -10px !important;
}

/*
Store Area Style
======================================================*/
.store-area {
  position: relative;
  background-image: url(../images/magic/magic-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.store-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.95;
  z-index: -1;
}
.store-area span {
  color: #ffffff;
}
.store-area h2 {
  color: #ffffff;
}

.store-box {
  padding: 25px;
  background-color: #ffffff;
  margin-bottom: 25px;
}
.store-box .content {
  padding-top: 30px;
  padding-bottom: 10px;
}
.store-box .content .price {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.store-box .content .price span {
  font-weight: 700;
  font-size: 20px;
  color: #282B2D;
  margin-right: 10px;
}
.store-box .content .price .price-p {
  font-weight: 500;
  font-size: 15px;
  text-decoration-line: line-through;
  color: #777777;
  margin-bottom: 0;
}
.store-box .content h4 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.store-box .content h4 a {
  text-decoration: none;
  color: #282B2D;
}
.store-box .content h4 a:hover {
  color: #ed8814;
}
.store-box .content .ratting {
  align-items: center;
}
.store-box .content .ratting p {
  margin-bottom: 0;
  padding-left: 20px;
}
.store-box .content .ratting p i {
  color: #EBA400;
  padding-right: 5px;
}
.store-box .store-image {
  position: relative;
}
.store-box .store-image ul {
  list-style: none;
  position: absolute;
  padding-left: 0;
  margin-bottom: 0;
  right: 25px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.store-box .store-image ul li {
  margin-bottom: 15px;
}
.store-box .store-image ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 48px;
  color: #ed8814;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.8s;
  background: #FFFFFF;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
}
.store-box .store-image ul li a:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.store-box:hover .store-image ul {
  opacity: 1;
  bottom: 40px;
  visibility: visible;
}

.store-area .owl-theme .owl-dots {
  position: relative;
  right: 0;
  margin-bottom: -10px !important;
}
.store-area .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all ease 0.8s;
  background-color: transparent !important;
  position: relative;
  padding: 0;
  margin: 0 5px;
  border: 1px solid transparent;
}
.store-area .owl-theme .owl-dots .owl-dot span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 2px;
  background: #ffffff;
  opacity: 0.2;
  right: 0;
  transition: all ease 0.8s;
  border-radius: 50%;
}
.store-area .owl-theme .owl-dots .owl-dot:last-child span {
  margin-right: 0;
}
.store-area .owl-theme .owl-dots .owl-dot.active span {
  border-color: #ffffff;
}
.store-area .owl-theme .owl-dots .owl-dot.active span::before {
  background: #ffffff;
  opacity: 1;
}
.store-area .owl-theme .owl-dots .owl-dot:hover span {
  border-color: #ffffff;
}
.store-area .owl-theme .owl-dots .owl-dot:hover span::before {
  background: #ffffff;
  opacity: 1;
}

/*
Header Area Style
======================================================*/
.top-header-style3 {
  background: #383741;
}
.top-header-style3 .inner-header {
  background-color: transparent;
}
.top-header-style3 .inner-header .header-contact .contact-list li {
  color: #ffffff;
}
.top-header-style3 .inner-header .header-contact .contact-list li a {
  color: #ffffff;
}

/*
Banner Area Style
======================================================*/
.third-banner-area {
  background-image: url(../images/banner/banner-5.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
  z-index: 1;
  top: 0;
  margin-bottom: 0;
}
.third-banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}
.third-banner-area .jui-o1 {
  position: absolute;
  top: -175px;
  right: -114px;
  transform: rotate(7deg);
}
.third-banner-area .banner-3-shape1 {
  bottom: 100px;
  position: absolute;
  right: 0;
}
.third-banner-area .banner-3-shape2 {
  position: absolute;
  left: 0;
  top: 70px;
}

.banner-content-style3 {
  padding-right: 40px;
}
.banner-content-style3 span {
  font-weight: 500;
  display: inline-block;
  color: #ffffff;
  margin-bottom: 15px;
}
.banner-content-style3 h1 {
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
  color: #ffffff;
  margin-bottom: 30px;
}
.banner-content-style3 p {
  color: #ffffff;
  padding-right: 190px;
  margin-bottom: 30px;
}
.banner-content-style3 .banner-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content-style3 .banner-list li {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
.banner-content-style3 .banner-list li:last-child {
  padding-right: 0;
  padding-left: 65px;
}
.banner-content-style3 .banner-list li:last-child .icon-play {
  position: absolute;
  left: 0;
  top: -13px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 4px rgba(40, 43, 45, 0.04);
  font-size: 39px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  color: #ed8814;
  transition: all ease 0.8s;
}
.banner-content-style3 .banner-list li:last-child .icon-play i {
  position: relative;
  left: 3px;
}
.banner-content-style3 .banner-list li:last-child .icon-play:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.banner-content-style3 .banner-list li:last-child a {
  display: inline-block;
  text-decoration: none;
}
.banner-content-style3 .banner-list li:last-child a:hover .icon-play {
  background-color: #ed8814;
  color: #ffffff;
}

.banner-image-style3 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-right: 90px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.banner-image-style3 .jui-2 {
  position: absolute;
  top: -25px;
  left: 25px;
  z-index: -1;
}
.banner-image-style3 .jui-3 {
  position: absolute;
  top: 180px;
  right: 50px;
  z-index: 1;
}

.third-banner-area .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50px);
  right: 0;
}
.owl-nav [class*=owl-] {
  width: 45px;
  height: 45px;
  border-radius: 50px !important;
  line-height: 57px !important;
  background: #ffffff !important;
  transition: all 0.5s;
}
.owl-nav [class*=owl-]:hover {
  background-color: #ed8814 !important;
}
.owl-nav [class*=owl-]:hover i {
  color: #ffffff;
}
.owl-nav [class*=owl-] i {
  font-size: 25px;
  font-weight: normal;
  color: #ed8814;
  transition: all 0.5s;
}
.owl-nav .owl-prev {
  position: absolute;
  left: -120px;
}
.owl-nav .owl-next {
  position: absolute;
  right: -120px;
}

/*
Internet Area Style
======================================================*/
.internet-content {
  padding-left: 30px;
  padding-right: 42px;
  position: relative;
}
.internet-content .hfy-image {
  position: absolute;
  right: 0;
  bottom: 50px;
}
.internet-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.internet-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 17px;
}
.internet-content ul li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #ed8814;
}

.is-content {
  margin-bottom: 0px;
  margin-top: 170px;
  margin-left: -195px;
  margin-right: 0px;
}

/*
Features Area Style
======================================================*/
.next-features-box {
  padding: 10px;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
  margin-bottom: 25px;
}
.next-features-box .content {
  padding-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.next-features-box .content p {
  margin-bottom: 0;
}
.next-features-box .content h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.next-features-box .content h3 a {
  color: #282B2D;
  text-decoration: none;
}
.next-features-box .content h3 a:hover {
  color: #ed8814;
}

.testimonial-slide-widget2 ul {
  margin-bottom: 20px !important;
}
.testimonial-slide-widget2 .test-self {
  margin-bottom: 0px !important;
}

/*
Recent Area Style
======================================================*/
.recent-image {
  position: relative;
  margin-bottom: 25px;
}
.recent-image .content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  justify-content: space-between;
  transition: all ease 0.8s;
  margin: auto;
  max-width: 260px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.recent-image .content h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}
.recent-image .content h3 a {
  color: #282B2D;
  text-decoration: none;
  transition: all ease 0.8s;
}
.recent-image .content h3 a:hover {
  color: #ed8814;
}
.recent-image .content p {
  margin-bottom: 8px;
}
.recent-image .content a {
  color: #282B2D;
  text-decoration: none;
}
.recent-image .content .icon i {
  color: #FFF;
  font-size: 20px;
  padding: 10px;
  position: relative;
  background: #ed8814;
  transition: all ease 0.8s;
}
.recent-image .content .icon i:hover {
  background-color: #000000;
  color: #ffffff;
}
.recent-image .content.content2 {
  max-width: 330px;
}
.recent-image .content.content2 .icon i {
  color: #FFF;
  font-size: 30px;
  padding: 15px;
  position: relative;
  background: #ed8814;
  transition: all ease 0.8s;
}
.recent-image .content.content2 .icon i:hover {
  background-color: #000000;
  color: #ffffff;
}
.recent-image:hover .content {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.skill-bar .bar {
  margin: 40px 0;
}
.skill-bar .bar:first-child {
  margin-top: 0;
}
.skill-bar .bar:last-child {
  margin-bottom: 0px;
}
.skill-bar .bar .info {
  margin-bottom: 5px;
}
.skill-bar .bar .info span {
  font-size: 16px;
  font-weight: 600;
  color: #282B2D;
  margin-bottom: 5px;
}
.skill-bar .bar .progress-line {
  position: relative;
  height: 5px;
  border-radius: 0px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: #EAEAEA;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}
.skill-bar .bar .progress-line span {
  height: 5px;
  border-radius: 0px;
  width: 80%;
  background: #ed8814;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
  margin-bottom: 0;
}
.skill-bar .bar .progress-line span::before {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  height: 0;
  width: 0;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
.skill-bar .bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -32px;
  font-size: 16px;
  font-weight: 600;
  padding: 1px 8px;
  opacity: 0;
  color: #282B2D;
  animation: showText2 0.5s 1.5s linear forwards;
}
.skill-bar .bar .html span::after {
  content: "90%";
}
.skill-bar .bar .java span::after {
  content: "80%";
}
.skill-bar .bar .python span::after {
  content: "95%";
}
.skill-bar .bar .html span {
  width: 90%;
}
.skill-bar .bar .java span {
  width: 80%;
}
.skill-bar .bar .python span {
  width: 95%;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}
@keyframes showText2 {
  100% {
    opacity: 1;
  }
}
/*
Find Area Style
======================================================*/
.fd-content {
  padding-right: 130px;
}

.find-box {
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
  padding: 30px;
  transition: all ease 0.8s;
  margin-bottom: 25px;
}
.find-box i {
  font-size: 60px;
  color: #ed8814;
  margin-bottom: 15px;
  transition: all ease 0.8s;
}
.find-box h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 2px;
}
.find-box h3 a {
  color: #282B2D;
  text-decoration: none;
  transition: all ease 0.8s;
}
.find-box h3 a:hover {
  color: #ed8814;
}
.find-box p {
  margin-bottom: 8px;
  transition: all ease 0.8s;
}
.find-box .read-more {
  text-decoration: none;
  font-weight: 600;
  color: #282B2D;
  transition: all ease 0.8s;
}
.find-box .read-more:hover {
  color: #ed8814;
}
.find-box:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.find-box:hover h3 a {
  color: #ffffff;
}
.find-box:hover .read-more {
  color: #ffffff;
}
.find-box:hover i {
  color: #ffffff;
}
.find-box:hover p {
  color: #ffffff;
}

/*
Team Area Style
======================================================*/
.team-area {
  background-image: url(../images/team/team-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.team-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}
.team-area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 124px;
  width: 100%;
  background: #ffffff;
  z-index: -1;
}
.team-area .section-title span {
  color: #ffffff;
}
.team-area .section-title h2 {
  color: #ffffff;
}
.team-area .view {
  position: relative;
  top: 0px;
  margin-bottom: -5px;
}
.team-area .view a {
  color: #ed8814;
  font-weight: 600;
}

.team-warp {
  position: relative;
  margin-bottom: 25px;
}
.team-warp .team-content {
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 0;
  background: #FFFFFF;
  transition: all ease 0.8s;
  box-shadow: 0px 4px 20px 2px rgba(40, 43, 45, 0.06);
}
.team-warp .team-content h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.team-warp .team-content p {
  margin-bottom: 0px;
  transition: all ease 0.8s;
}
.team-warp .team-content .social-link {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.team-warp .team-content .social-link li {
  display: inline-block;
  padding-right: 8px;
}
.team-warp .team-content .social-link li:last-child {
  padding-right: 0;
}
.team-warp .team-content .social-link li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  display: inline-block;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
  transition: all ease 0.8s;
}
.team-warp .team-content .social-link li a:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.team-warp:hover .team-content p {
  padding-bottom: 40px;
}
.team-warp:hover .team-content .social-link {
  position: absolute;
  opacity: 1;
  bottom: 20px;
  visibility: visible;
  transition: all ease 0.8s;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 45px;
  z-index: 1;
}

.modal-content .modal-header {
  padding: 0;
  border-bottom: none;
}
.modal-content .modal-header button.btn-close {
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 999;
}
.modal-content .modal-header button.btn-close:focus {
  box-shadow: unset;
}

.modal {
  --bs-modal-width: auto !important;
}

.modal-content {
  width: 1200px;
  margin: auto;
  margin-top: 200px;
}

/*
Project Area Style
======================================================*/
.project-image-warp {
  position: relative;
  padding-top: 160px;
  padding-right: 165px;
}
.project-image-warp .project-2 {
  position: absolute;
  width: 337px;
  height: 400px;
  top: 0;
  right: 30px;
}
.project-image-warp .pw-content {
  padding: 15px 70px;
  top: 25px;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
  left: 30px;
}
.project-image-warp .pw-content .icon {
  position: absolute;
  left: -24px;
  top: -30px;
  width: 60px;
  height: 60px;
  background: #ed8814;
  text-align: center;
  border-radius: 50%;
  font-size: 32px;
  color: #ffffff;
  line-height: 71px;
  transition: all ease 0.8s;
  box-shadow: 0px 4px 15px rgba(17, 17, 17, 0.06);
}
.project-image-warp .pw-content h4 {
  font-weight: 600;
  font-size: 36px;
}
.project-image-warp .pw-content p {
  margin-bottom: 0;
}

.bank-transfer .accordion-item {
  border: none;
  border-radius: 0;
  padding-left: 50px;
  margin-bottom: 10px;
}
.bank-transfer .accordion-item .accordion-button {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
.bank-transfer .accordion-item .accordion-button:focus {
  box-shadow: unset;
  outline: 0;
}
.bank-transfer .accordion-item .accordion-button span::before {
  position: absolute;
  content: "\eb8d";
  top: 8px;
  left: -40px;
  color: #ffffff;
  font-weight: 100;
  bottom: 0;
  width: 46px;
  line-height: 48px;
  font-size: 29px;
  height: 46px;
  text-align: center;
  border-radius: 50%;
  font-family: boxicons !important;
  background: #ed8814;
  box-shadow: 0px 5px 20px 1px rgba(17, 17, 17, 0.08);
}
.bank-transfer .accordion-item button.accordion-button.collapsed span::before {
  position: absolute;
  content: "\ebc1";
  top: 8px;
  left: -40px;
  bottom: 0;
  width: 46px;
  font-weight: 100;
  line-height: 48px;
  font-size: 29px;
  height: 46px;
  color: #575A7B;
  text-align: center;
  border-radius: 50%;
  font-family: boxicons !important;
  background: #FFFFFF;
  box-shadow: 0px 5px 20px 1px rgba(17, 17, 17, 0.08);
}
.bank-transfer .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
  font-weight: 600;
  font-size: 18px;
}
.bank-transfer .accordion-item .accordion-body {
  padding: 5px 20px 8px 20px;
}
.bank-transfer .accordion-item .accordion-body p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}
.bank-transfer .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-180deg);
}
.bank-transfer .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

/*
Funfect Area Style
======================================================*/
.funfact-area {
  position: relative;
  z-index: 1;
}
.funfact-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100px;
  z-index: -1;
  width: 100%;
  background: #F7F7F7;
}

.funfact-warp {
  background: #ed8814;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 35px;
  padding-right: 100px;
  padding-left: 100px;
}

.single-funfacts-box {
  position: relative;
  padding-left: 110px;
  margin-bottom: 25px;
}
.single-funfacts-box .icon {
  position: absolute;
  font-size: 60px;
  color: #fff;
  left: 15px;
  top: 9px;
  margin-right: 0px;
}
.single-funfacts-box .icon::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 36px;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  opacity: 0.2;
  border-radius: 50%;
}
.single-funfacts-box h3 {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  text-align: left;
}
.single-funfacts-box p {
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}

/*
Testimonial Area Style
======================================================*/
.testimonial-area .owl-theme .owl-dots {
  position: absolute;
  right: 0;
  margin-top: 0 !important;
  bottom: -8px;
}

.testimonial-slide-widget {
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.06);
  padding: 30px;
  margin-bottom: 30px;
}
.testimonial-slide-widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px;
  margin-top: 5px;
}
.testimonial-slide-widget ul li {
  display: inline-block;
  padding-right: 5px;
}
.testimonial-slide-widget ul li i {
  color: #EBA400;
}
.testimonial-slide-widget .test-self {
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-slide-widget .test-self .test-content {
  position: relative;
  left: 20px;
}
.testimonial-slide-widget .test-self .test-content h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}
.testimonial-slide-widget .test-self .test-content p {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}
.testimonial-slide-widget .test-self .test-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.testimonial-slide-widget .test-self .test-icon {
  position: relative;
  left: 100px;
  top: 12px;
}
.testimonial-slide-widget .test-self .test-icon i {
  font-size: 50px;
  color: #ed8814;
  opacity: 0.1;
}
.testimonial-slide-widget p {
  margin-bottom: 20px;
}

/*
Question Area Style
======================================================*/
.question-warp {
  background: #383741;
  padding: 55px 45px;
}
.question-warp span {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}
.question-warp h2 {
  font-weight: 700;
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.question-warp .form-control {
  border: none;
  border-bottom: solid 1px #8d8181 !important;
  background-color: transparent;
  color: #ffffff;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-radius: 0;
  padding-left: 0;
}
.question-warp .form-control::-moz-placeholder {
  color: #ffffff;
}
.question-warp .form-control::placeholder {
  color: #ffffff;
}
.question-warp .form-control:focus {
  box-shadow: unset;
}
.question-warp textarea {
  height: 130px;
}

.question-image {
  background-image: url(../images/projects/project-3.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.another {
  bottom: -22px !important;
}

/*
Partner Area Style
======================================================*/
.partner-1 {
  position: absolute;
  z-index: 9;
  top: 0px;
  left: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}

.logo-image {
  position: relative;
}
.logo-image:hover .partner-2 {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.logo-image:hover .partner-1 {
  opacity: 1;
  visibility: visible;
  transition: all ease 0.8s;
}

.partner-logo .owl-carousel .owl-item img {
  margin: auto;
}

/*========= All Inner Pages Style ========*/
.inner-banner-area {
  background-image: url(../images/banner/inner-bg-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 1;
  top: 0px;
  margin-bottom: 0px;
}
.inner-banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #383741;
  opacity: 0.94;
  z-index: -1;
}

.ib-content {
  text-align: center;
}
.ib-content h2 {
  font-weight: 700;
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.ib-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.ib-content ul li {
  display: inline-block;
  padding-right: 10px;
  position: relative;
  color: #ed8814;
  padding-left: 10px;
}
.ib-content ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  bottom: 0;
  right: -3px;
  height: 17px;
  transform: rotate(15deg);
  width: 1px;
  opacity: 0.6;
  background-color: #ffffff;
}
.ib-content ul li:last-child {
  padding-right: 0px;
}
.ib-content ul li:last-child::before {
  display: none;
}
.ib-content ul li a {
  text-decoration: none;
  color: #ffffff;
}

.result-pagination {
  margin-bottom: 30px;
  margin-top: 25px;
}
.result-pagination .pagination {
  justify-content: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
.result-pagination .pagination .page-item {
  margin-right: 10px;
}
.result-pagination .pagination .page-item .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 31px;
  text-align: center;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: #282B2D;
  transition: all ease 0.5s;
  background: #FFFFFF;
  border: none;
  box-shadow: 0px 4px 20px rgba(17, 17, 17, 0.08);
}
.result-pagination .pagination .page-item .page-link:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.result-pagination .pagination .page-item .page-link.active {
  background-color: #ed8814;
  z-index: -2;
  color: #ffffff !important;
}
.result-pagination .pagination .page-item .page-link span i {
  font-size: 20px;
  position: relative;
  top: 2px;
  left: -2px;
}

.security-list {
  margin-bottom: 30px;
}
.security-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.security-list ul li {
  position: relative;
  margin-bottom: 12px;
}
.security-list ul li i {
  position: absolute;
  right: 30px;
  top: 19px;
}
.security-list ul li a {
  display: block;
  padding: 17px 30px;
  color: #575A7B;
  text-decoration: none;
  background: #FFFFFF;
  box-shadow: 0px 6px 20px rgba(5, 17, 69, 0.08);
  transition: all ease 0.8s;
}
.security-list ul li a:hover {
  background-color: #ed8814;
  color: #ffffff;
}

.stil-box {
  background: #FFFFFF;
  box-shadow: 0px 6px 20px rgba(5, 17, 69, 0.08);
  padding: 35px 30px 40px 30px;
  margin-bottom: 30px;
}
.stil-box h3 {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.stil-box h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 86%;
  background-color: #ed8814;
}
.stil-box h3::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  width: 21px;
  background-color: #ed8814;
}

.pdf-box p {
  margin-bottom: 20px;
}

/*
Inner Service Area Style
======================================================*/
.service-small-widget {
  padding-right: 15px;
}

.service-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.service-box ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.service-box ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #ed8814;
}
.service-box ul li a {
  text-decoration: none;
  color: #575A7B;
  transition: all ease 0.8s;
}
.service-box ul li a:hover {
  color: #ed8814;
}

.service-project {
  margin-bottom: 30px;
}
.service-project .service-image {
  margin-bottom: 25px;
}
.service-project .content h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 8px;
}
.service-project .content .last-p {
  margin-bottom: 0;
}

.dovide-service .d-image {
  margin-bottom: 25px;
}

.last-service h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 8px;
}
.last-service .last-p {
  margin-bottom: 0;
}

.inner-bg {
  position: relative;
  z-index: 1;
}
.inner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #F7F7F7;
  opacity: 0.96;
  z-index: -1;
}
.inner-bg .section-title span {
  color: #ed8814;
}
.inner-bg .section-title h2 {
  color: #282B2D;
}

.budget-box {
  position: relative;
  margin-bottom: 30px;
}
.budget-box .box-image {
  position: relative;
}
.budget-box .box-image .date {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.budget-box .box-image .date span {
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  padding: 8px 16px;
  background-color: #ed8814;
}
.budget-box .blog-content {
  background: #FFFFFF;
  padding-top: 30px;
}
.budget-box .blog-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.budget-box .blog-content ul li {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  padding-left: 22px;
}
.budget-box .blog-content ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 8px;
  transform: rotate(22deg);
  height: 17px;
  width: 1px;
  background-color: #575A7B;
}
.budget-box .blog-content ul li:last-child::before {
  display: none;
}
.budget-box .blog-content ul li i {
  position: absolute;
  color: #ed8814;
  left: 0;
  top: 0;
}
.budget-box .blog-content ul li i.bx.bx-chat {
  font-size: 19px;
  top: 2px !important;
}
.budget-box .blog-content h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 12px;
}
.budget-box .blog-content .last-p {
  margin-bottom: 0;
}

.lorem-box {
  padding: 33px 33px 33px 110px;
  background: #FFFFFF;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
}
.lorem-box h6 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.lorem-box img {
  position: absolute;
  left: 33px;
}

.paragraph {
  margin-bottom: 30px;
}
.paragraph .last-p {
  margin-bottom: 0px;
}

.media {
  justify-content: space-between;
  background: #FFFFFF;
  padding: 20px 40px;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
  margin-bottom: 30px;
}
.media .internet ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.media .internet ul li {
  display: inline-block;
  padding-right: 5px;
}
.media .internet ul li a {
  text-decoration: none;
}
.media .social ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.media .social ul li {
  display: inline-block;
  padding-right: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #282B2D;
}
.media .social ul li:last-child {
  padding-right: 0;
}
.media .social ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #ed8814;
  color: #ed8814;
  display: inline-block;
  text-align: center;
  line-height: 33px;
  transition: all ease 0.8s;
  text-decoration: none;
}
.media .social ul li a:hover {
  transform: translateY(-5px);
  background-color: #ed8814;
  color: #ffffff;
}

.person {
  padding: 40px 35px;
  position: relative;
  background: #FFFFFF;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
}
.person .person-image {
  position: absolute;
  left: 35px;
}
.person .person-image img {
  border-radius: 50%;
}
.person .person-self {
  padding-left: 125px;
}
.person .person-self ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.person .person-self ul li {
  display: inline-block;
  padding-right: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #282B2D;
}
.person .person-self ul li:last-child {
  padding-right: 0;
}
.person .person-self ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #ed8814;
  color: #ed8814;
  display: inline-block;
  text-align: center;
  line-height: 33px;
  transition: all ease 0.8s;
  text-decoration: none;
}
.person .person-self ul li a:hover {
  transform: translateY(-5px);
  background-color: #ed8814;
  color: #ffffff;
}
.person .person-self h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.comments-area h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}
.comments-area .commrnt-box {
  padding: 40px 35px;
  background: #FFFFFF;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
}
.comments-area .commrnt-box .comment-man {
  position: absolute;
  left: 35px;
}
.comments-area .commrnt-box .comment-man img {
  border-radius: 50%;
}
.comments-area .commrnt-box .comments-content {
  padding-left: 108px;
}
.comments-area .commrnt-box .comments-content h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 2px;
}
.comments-area .commrnt-box .comments-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.comments-area .commrnt-box .comments-content ul li {
  display: inline-block;
  padding-right: 20px;
  font-weight: 400;
  font-size: 12px;
  position: relative;
}
.comments-area .commrnt-box .comments-content ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 7px;
  height: 11px;
  width: 1px;
  background-color: #575A7B;
}
.comments-area .commrnt-box .comments-content ul li:last-child {
  padding-right: 0;
}
.comments-area .commrnt-box .comments-content ul li:last-child::before {
  display: none;
}
.comments-area .commrnt-box .comments-content .reply {
  position: absolute;
  right: 50px;
  top: 50px;
  font-weight: 500;
  font-size: 16px;
  color: #282B2D;
  text-decoration: none;
  transition: all ease 0.8s;
}
.comments-area .commrnt-box .comments-content .reply:hover {
  color: #ed8814;
}

/*
Inner Blog Area Style
======================================================*/
.post-box .blog-post {
  overflow: hidden;
  margin-bottom: 20px;
}
.post-box .blog-post:last-child {
  margin-bottom: 0;
}
.post-box .blog-post .thumb {
  width: 83px;
  height: 81px;
  margin-right: 20px;
  position: relative;
  display: inline-block;
}
.post-box .blog-post .thumb .full-image {
  width: 83px;
  height: 81px;
  display: inline-block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.post-box .blog-post .thumb .full-image.bg-1 {
  background-image: url("../images/blogs/mini-1.webp");
}
.post-box .blog-post .thumb .full-image.bg-2 {
  background-image: url("../images/blogs/mini-2.webp");
}
.post-box .blog-post .thumb .full-image.bg-3 {
  background-image: url("../images/blogs/mini-3.webp");
}
.post-box .blog-post .post-content span {
  font-weight: 400;
  font-size: 14px;
  color: #575A7B;
  margin-bottom: 10px;
  display: inline-block;
}
.post-box .blog-post .post-content h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}
.post-box .blog-post .post-content h5 a {
  text-decoration: none;
  color: #282B2D;
  transition: all ease 0.8s;
}
.post-box .blog-post .post-content h5 a:hover {
  color: #ed8814;
}
.post-box .blog-post.last-blog {
  margin-bottom: 0px;
}

.blog-small-sight {
  padding-left: 15px;
}

.comment-option {
  background: #FFFFFF;
  box-shadow: 0px 5px 20px rgba(17, 17, 17, 0.08);
  padding: 30px;
}
.comment-option h3 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 8px;
}
.comment-option p {
  margin-bottom: 30px;
}
.comment-option .form-control {
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  height: 50px;
  border-radius: 0;
  padding-left: 20px;
  color: #575A7B;
  margin-bottom: 20px;
}
.comment-option .form-control:focus {
  box-shadow: unset;
}
.comment-option .form-control::-moz-placeholder {
  color: #575A7B;
}
.comment-option .form-control::placeholder {
  color: #575A7B;
}
.comment-option textarea {
  height: 150px !important;
  padding-top: 15px;
}

.input-box {
  position: relative;
}
.input-box .form-control {
  background: #FFFFFF;
  position: relative;
  border: 1px solid #E1E1E1;
  height: 50px;
  border-radius: 0;
  padding-left: 20px;
  color: #575A7B;
}
.input-box .form-control:focus {
  box-shadow: unset;
}
.input-box .form-control::-moz-placeholder {
  color: #575A7B;
}
.input-box .form-control::placeholder {
  color: #575A7B;
}
.input-box .btn-outline-secondary {
  border: none;
  background-color: #ed8814;
  border-radius: 0;
  padding-left: 20px;
}
.input-box .btn-outline-secondary i {
  font-size: 20px;
  color: #ffffff;
  left: -2px;
  bottom: -3px;
  position: relative;
}

.tag ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.tag ul li {
  display: inline-block;
  margin-bottom: 8px;
  padding-right: 5px;
}
.tag ul li a {
  text-decoration: none;
  padding: 5px 15px;
  background: #FFFFFF;
  color: #575A7B;
  border: 1px solid #E1E1E1;
  transition: all ease 0.8s;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
}
.tag ul li a:hover {
  background-color: #ed8814;
  color: #ffffff;
  border-color: #ed8814;
}
.tag ul li:last-child {
  padding-right: 0;
}

.contact-form-area {
  background: #FFFFFF;
  padding: 70px 50px;
  box-shadow: 0px 0px 20px rgba(17, 17, 17, 0.08);
}
.contact-form-area .contact-from .form-control {
  background: #FFFFFF;
  position: relative;
  border: 1px solid #E1E1E1;
  height: 50px;
  border-radius: 0;
  padding-left: 20px;
  color: #575A7B;
  margin-bottom: 20px;
}
.contact-form-area .contact-from .form-control:focus {
  border-color: #ed8814;
  background-color: transparent;
  border: solid 1px #ed8814;
}
.contact-form-area .contact-from .form-control::-moz-placeholder {
  color: #575A7B;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.contact-form-area .contact-from .form-control::placeholder {
  color: #575A7B;
  transition: all ease 0.8s;
}
.contact-form-area .contact-from .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-area .contact-from .form-control:focus::placeholder {
  color: transparent;
}
.contact-form-area .contact-from textarea {
  height: 150px !important;
  padding-top: 15px;
}

.map {
  height: 512px;
  width: 100%;
}

/*
Inner Contact Area Style
======================================================*/
.contact-area {
  margin-bottom: 30px;
}

.contact-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(17, 17, 17, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  align-items: center;
  position: relative;
}
.contact-card .icon {
  width: 70px;
  position: absolute;
  height: 70px;
  border-radius: 50%;
  border: dashed 1px #ed8814;
  text-align: center;
  line-height: 74px;
  left: 30px;
  top: 40px;
  font-size: 40px;
  color: #ed8814;
  transition: all ease 0.8s;
}
.contact-card .icon:hover {
  background-color: #ed8814;
  color: #ffffff;
  border-color: #ffffff;
}
.contact-card .content {
  padding-left: 90px;
}
.contact-card .content a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}
.contact-card .content p {
  margin-bottom: 0;
}
.contact-card .content h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.portfolio-image {
  margin-bottom: 25px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.portfolio-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #282B2D;
  opacity: 0;
  transition: all ease 0.8s;
}
.portfolio-image .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.portfolio-image .content .icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  color: #ed8814;
  line-height: 56px;
  text-decoration: none;
  transition: all ease 0.8s;
  margin-bottom: 15px;
}
.portfolio-image .content .icon:hover {
  background-color: #ed8814;
  color: #ffffff;
}
.portfolio-image .content p {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
}
.portfolio-image .content h5 {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 0;
}
.portfolio-image .content h5 a {
  text-decoration: none;
  color: #ffffff;
}
.portfolio-image:hover:before {
  opacity: 0.7;
}
.portfolio-image:hover .content {
  opacity: 1;
  visibility: visible;
}

.portfolio-imagee {
  margin-bottom: 30px;
}

.form-control {
  box-shadow: unset !important;
  transition: all ease 0.8s;
  border: solid 1px #ffffff;
}
.form-control:focus {
  border-color: #ed8814;
  background-color: transparent;
  border: solid 1px #ed8814;
}
.form-control::-moz-placeholder {
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.form-control::placeholder {
  transition: all ease 0.8s;
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

.family-warp {
  margin-bottom: 30px;
}
.family-warp h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}
.family-warp p {
  margin-bottom: 30px;
}
.family-warp .last-p {
  margin-bottom: 0;
}

.project-service {
  margin-bottom: 30px;
}
.project-service h5 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.project-service p {
  margin-bottom: 20px;
}
.project-service .project-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.project-service .project-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.project-service .project-list li i {
  color: #ed8814;
  position: absolute;
  left: 0;
  top: 2px;
}

.future-plan h5 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.future-plan p {
  margin-bottom: 20px;
}
.future-plan .plan-image {
  margin-bottom: 25px;
}

/*
Inner Shop Area Style
======================================================*/
.shop-area {
  margin-bottom: 30px;
}
.shop-area .form-control {
  background: #F7F7F7;
  position: relative;
  border: none;
  height: 50px;
  border-radius: 0;
  padding-left: 20px;
  color: #575A7B;
}
.shop-area .form-control:focus {
  box-shadow: unset;
}
.shop-area .form-control::-moz-placeholder {
  color: #575A7B;
}
.shop-area .form-control::placeholder {
  color: #575A7B;
}
.shop-area .form-select {
  background-color: #F7F7F7;
  position: relative;
  border: none;
  height: 50px;
  border-radius: 0;
  padding-left: 20px;
  color: #575A7B;
}
.shop-area .form-select:focus {
  box-shadow: unset;
}
.shop-area .btn-outline-secondary {
  border: none;
  background-color: #ed8814;
  border-radius: 0;
  padding-left: 20px;
}
.shop-area .btn-outline-secondary i {
  font-size: 20px;
  color: #ffffff;
  left: -2px;
  bottom: -3px;
  position: relative;
}
.shop-area p {
  margin-bottom: 0;
}

.shop-card-area .store-box {
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.06);
}

.shop-content {
  padding-left: 20px;
}
.shop-content h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.shop-content .price {
  margin-bottom: 20px;
  align-items: center;
}
.shop-content .price span {
  font-weight: 600;
  font-size: 20px;
  padding-right: 10px;
  color: #282B2D;
}
.shop-content .price p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
  text-decoration-line: line-through;
  color: #54595F;
}
.shop-content .star {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
.shop-content .star li {
  display: inline-block;
  padding-right: 5px;
}
.shop-content .star li i {
  color: #EBA400;
}
.shop-content .star li:last-child {
  padding-right: 0;
}
.shop-content p {
  padding-right: 150px;
}

.content-one {
  max-width: 190px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.content-one a {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  color: #575A7B;
}
.content-one h6 {
  font-weight: 600;
  font-size: 16px;
}

input:focus {
  box-shadow: unset;
}

.counter-content {
  align-items: center;
  margin-bottom: 30px;
}
.counter-content h6 {
  font-weight: 600;
  font-size: 16px;
}
.counter-content input {
  border: none;
  width: 50px;
  height: 40px;
  text-align: center;
  cursor: pointer;
}
.counter-content input:focus {
  box-shadow: unset;
}
.counter-content input:focus-visible {
  outline: 0;
}
.counter-content .minus-btn {
  text-align: center;
  height: 40px;
  width: 50px;
  display: inline-block;
  cursor: pointer;
  line-height: 47px;
  position: relative;
}
.counter-content .minus-btn:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  height: 43px;
  width: 1px;
  opacity: 0.15;
  background-color: #282B2D;
}
.counter-content .plus-btn {
  text-align: center;
  height: 40px;
  width: 50px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.counter-content .plus-btn:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  bottom: 0;
  height: 43px;
  width: 1px;
  opacity: 0.15;
  background-color: #282B2D;
}
.counter-content .input-counter {
  border: 1px solid #dce0e5;
  line-height: 40px;
  margin-left: 40px;
}

.review-area .tab-content {
  max-width: 1100px;
  margin: auto;
  background: #FFFFFF;
  padding: 60px 80px;
}
.review-area #nav-tab {
  text-align: center;
  justify-content: center;
  border: none;
  margin-bottom: 30px;
}
.review-area .nav-tabs .nav-link {
  font-weight: 600;
  font-size: 24px;
  color: #282B2D;
  padding: 0;
  margin-left: 25px;
  margin-right: 25px;
}
.review-area .nav-tabs .nav-link.active {
  color: #ed8814;
  background-color: transparent !important;
  border-color: transparent !important;
}
.review-area .nav-tabs .nav-link:hover {
  color: #ed8814;
  background-color: transparent !important;
  border-color: transparent !important;
}

.customer-reviews .review-text {
  justify-content: space-between;
  align-items: center;
}
.customer-reviews .review-text .content h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 15px;
}
.customer-reviews .review-text .content .star {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
.customer-reviews .review-text .content .star li {
  display: inline-block;
  padding-right: 5px;
}
.customer-reviews .review-text .content .star li i {
  color: #EBA400;
}
.customer-reviews .review-text .content .star li:last-child {
  padding-right: 0;
}
.customer-reviews .review {
  margin-bottom: 30px;
  position: relative;
  margin-top: 10px;
  padding-top: 40px;
  border-top: 1px solid #e6e7ed;
}
.customer-reviews .review .people-self {
  margin-bottom: 20px;
}
.customer-reviews .review .people-self .people {
  margin-right: 20px;
}
.customer-reviews .review .people-self .people img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.customer-reviews .review .people-self .content h6 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}
.customer-reviews .review .people-self .content span {
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
}
.customer-reviews .review a {
  position: absolute;
  right: 0;
  top: 22px;
  font-weight: 600;
  font-size: 16px;
  color: #ed8814;
}

.review-option h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 20px;
}
.review-option .form-control {
  height: 70px;
  margin-bottom: 20px;
  border-radius: 0;
  border: none;
  padding-left: 20px;
  background: #F7F7F7;
  color: #575A7B;
}
.review-option .form-control::-moz-placeholder {
  color: #575A7B;
}
.review-option .form-control::placeholder {
  color: #575A7B;
}
.review-option .form-control:focus {
  box-shadow: unset;
}
.review-option textarea {
  height: 200px !important;
  padding-top: 15px !important;
}

.brand-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid #d4d5db;
}
.brand-list ul li {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  padding-left: 18px;
  color: #282B2D;
  padding-bottom: 15px;
  margin-top: 15px;
  border-bottom: solid 1px #d4d5db;
}
.brand-list ul li:last-child {
  border-bottom: transparent;
}
.brand-list ul li span {
  position: absolute;
  left: 300px;
  font-weight: 400;
  font-size: 16px;
  color: #575A7B;
}

.cart-table table {
  margin: 0;
}
.cart-table table thead tr {
  border-top: none;
  background: transparent;
  border: 1px solid #cacbd3;
}
.cart-table table thead tr th {
  border: none;
  padding: 15px 30px 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid #cacbd3;
}
.cart-table table tbody tr {
  vertical-align: middle;
  border: 1px solid #cacbd3;
}
.cart-table table tbody tr td {
  padding: 8px 15px 8px;
  background: #fff;
  text-align: center;
  border-bottom: none;
  border-right: 1px solid #cacbd3;
}
.cart-table table tbody tr td button.style1 {
  font-size: 16px;
}
.cart-table table tbody tr td .cart-item {
  font-weight: 500;
  margin-left: 15px;
  text-align: center;
  text-decoration: none;
}
.cart-table table tbody tr td .cart-item-price {
  text-align: center;
}
.cart-table table tbody tr td .product-img {
  max-width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
  background-color: #F3F4F6;
}
.cart-table table tbody tr td button {
  background: transparent;
  display: block;
  margin: 0 auto;
  padding: 0;
  border: none;
  font-size: 20px;
}
.cart-table table tbody tr td button i {
  color: #ed8814;
}
.cart-table table tbody tr td button span {
  font-size: 18px;
  line-height: 30px;
}
.cart-table table tbody tr td p {
  margin: 0;
}

.coupon-wrap {
  border: 1px solid #cacbd3;
  border-top: none;
  padding: 15px;
}
.coupon-wrap .form-control {
  border: 1px solid #cacbd3;
  height: 50px;
  background-color: transparent;
  border-radius: 0;
}
.coupon-wrap .default-btn {
  padding: 10px 26px;
  border-radius: 0;
}

.product-quantity {
  width: 144px;
}

.product-quantity .qtySelector {
  position: relative;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.product-quantity .qtySelector span {
  width: 48px;
  position: absolute;
  top: 0;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  line-height: 42px;
  font-size: 20px;
  color: #cfc6c6;
  transition: all ease 0.8s;
}
.product-quantity .qtySelector span:hover {
  color: #ed8814;
}
.product-quantity .qtySelector input {
  width: calc(100% - 96px);
  background: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  left: 48px;
  position: relative;
  height: 42px;
  top: -1px;
  text-align: center;
  color: #000;
}
.product-quantity .qtySelector span.decreaseQty {
  left: 0;
}
.product-quantity .qtySelector span.increaseQty {
  right: 0;
}

.cart-qty .product-quantity {
  margin: 0 auto;
}
.cart-qty .product-quantity input {
  left: 0 !important;
}

.coupon-code {
  position: relative;
}
.coupon-code input {
  width: 100%;
  height: 54px;
  background: #f9f9f9;
  padding: 10px 50px 10px 20px;
  border: none;
  border-radius: 0;
}

.wh_btn .btn:nth-child(1) {
  margin-right: 10px;
}

.wishlist-table table tbody tr td:nth-child(4) {
  text-align: left;
}

.wishlist-table table tbody tr td .product-quantity {
  margin: 0 auto;
}

.checkout label {
  font-weight: 600;
  margin: 0 0 8px;
}

.checkout .form-group input {
  border: none;
  border-radius: 5px;
  background: #F1F1F1;
  color: #999;
}

.checkout .form-group textarea {
  border: none;
  border-radius: 5px;
  background: #F1F1F1;
  color: #999;
  height: 120px;
}

.cart-total {
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 25px 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 50px !important;
}
.cart-total .cart-item-summery ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.cart-total .cart-item-summery ul li {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}
.cart-total .cart-item-summery ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.cart-total .cart-item-summery ul li span {
  position: absolute;
  right: 0;
}
.cart-total .cart-item-summery .default-btn {
  width: 100%;
  text-align: center;
}
.cart-total h3 {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: solid 1px #ed8814;
}
.cart-total.style {
  border: none;
  background: #F7F7F7;
  max-width: 100% !important;
}

.cart-table {
  width: 100%;
  overflow-x: auto;
}

/*
Inner Checkout Area Style
======================================================*/
.frist-check {
  padding: 12px;
  background: #F7F7F7;
  margin-bottom: 20px;
}
.frist-check .form-check-input[type=checkbox] {
  border-radius: 50%;
}
.frist-check a {
  text-decoration: none;
}

.second-check {
  padding: 12px;
  background: #F7F7F7;
  margin-bottom: 20px;
}
.second-check .form-check-input[type=checkbox] {
  border-radius: 50%;
}
.second-check a {
  text-decoration: none;
}

.form-check-label {
  position: relative;
  bottom: -1px;
}

.billing-details {
  padding: 40px 30px;
  background: #F7F7F7;
}
.billing-details h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.billing-details .form-control {
  height: 50px;
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 20px;
  border: solid 1px #ffffff;
}
.billing-details .form-control:focus {
  box-shadow: unset;
}
.billing-details .form-select {
  height: 50px;
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 13px;
  padding-left: 20px;
}
.billing-details .form-select:focus {
  box-shadow: unset;
}
.billing-details .form-check-label {
  position: relative;
  bottom: -1px;
}
.billing-details .form-check-input[type=checkbox] {
  border-radius: 50%;
}
.billing-details a {
  text-decoration: none;
}
.billing-details .form-check {
  margin-bottom: 20px;
  margin-left: 14px;
}
.billing-details textarea {
  height: 150px !important;
  padding-top: 13px !important;
}

.portfolio-small-area {
  padding-left: 15px;
}

.pamayent-method .form-check-label {
  font-weight: 500;
  font-size: 16px;
}
.pamayent-method .form-check-label p {
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
  margin-left: -20px;
  margin-bottom: 12px;
}
.pamayent-method .form-check-input[type=checkbox] {
  border-radius: 50%;
}
.pamayent-method .form-check-label {
  position: relative;
  bottom: 2px;
}
.pamayent-method .form-check {
  margin-bottom: 10px;
}
.pamayent-method .last-check a {
  text-decoration: none;
  color: #ed8814;
}

.list-unstyled li {
  color: red;
}

.account-warp {
  background: #F7F7F7;
  padding: 35px;
  margin-bottom: 30px;
}
.account-warp h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
.account-warp .form-control {
  height: 50px;
  background-color: #ffffff;
  border: none;
  border-radius: none;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #575A7B;
}
.account-warp .form-control:focus {
  box-shadow: unset;
}
.account-warp .form-control::-moz-placeholder {
  color: #575A7B;
}
.account-warp .form-control::placeholder {
  color: #575A7B;
}
.account-warp .default-btn {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.account-warp .default-btn.one {
  background-color: #fff;
  color: #3B5998;
  border: none;
}
.account-warp .default-btn.two {
  background-color: #fff;
  color: #EA4335;
  border: none;
}
.account-warp .forget {
  text-align: end;
}
.account-warp .after-before {
  padding-bottom: 20px;
  text-align: center;
}
.account-warp .after-before p {
  position: relative;
  margin-bottom: 0px;
}
.account-warp .after-before p::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 45%;
  opacity: 0.1;
  background-color: #051145;
}
.account-warp .after-before p::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 45%;
  opacity: 0.1;
  background-color: #051145;
}
.account-warp .form-check {
  margin-bottom: 20px;
}
.account-warp .form-check-input[type=checkbox] {
  border-radius: 50%;
}
.account-warp a {
  text-decoration: none;
  transition: all ease 0.8s;
}
.account-warp a:hover {
  color: #ed8814;
}
.account-warp .create-login {
  text-align: center;
}
.account-warp .create-login p {
  margin-bottom: 0;
}
.account-warp .create-login p a {
  color: #ed8814;
}

/*
404 Error Page Stayle
=======================================================*/
.error-area {
  text-align: center;
  position: relative;
  z-index: 1;
}
.error-area .d-table {
  width: 100%;
  height: 100%;
}
.error-area .d-table .d-table-cell {
  vertical-align: middle;
}
.error-area .error-content-wrap {
  z-index: 1;
  position: relative;
}
.error-area .error-content-wrap h1 {
  font-size: 300px;
  line-height: 1;
  font-weight: 700;
  color: #ed8814;
  margin-top: -40px;
}
.error-area .error-content-wrap h1 .a {
  display: inline-block;
}
.error-area .error-content-wrap h1 .red {
  color: #282B2D;
  display: inline-block;
}
.error-area .error-content-wrap h1 .b {
  display: inline-block;
}
.error-area .error-content-wrap h3 {
  margin: 30px 0 0;
  position: relative;
  color: #282B2D;
}
.error-area .error-content-wrap p {
  margin: 20px 0 20px;
  font-size: 19px;
  color: #ed8814;
}
.error-area .error-content-wrap .default-btn.two {
  font-size: 16px;
  padding: 12px 40px;
}

/*
Terms & Conditions Area Stayle
=======================================================*/
.terms-conditions .title {
  margin-bottom: 30px;
  text-align: center;
}
.terms-conditions .title span {
  color: #ed8814;
  display: block;
  margin-bottom: 10px;
}
.terms-conditions .title h2 {
  font-size: 36px;
  color: #282B2D;
  font-weight: 900;
}
.terms-conditions img {
  margin-bottom: 30px;
}
.terms-conditions .conditions-content {
  margin-bottom: 30px;
}
.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
  color: #282B2D;
}
.terms-conditions .conditions-content p {
  margin-bottom: 10px;
}
.terms-conditions .conditions-content ul {
  margin-bottom: 15px;
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
}
.terms-conditions .conditions-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.terms-conditions .conditions-content ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions .conditions-content ul li i {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #ed8814;
}
.terms-conditions .conditions-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #282B2D;
}
.terms-conditions .conditions-content p {
  margin-bottom: 10px;
}

/*
Privacy Policy Area Stayle
=======================================================*/
.privacy-policy-wrap .title {
  margin-bottom: 30px;
  text-align: center;
}
.privacy-policy-wrap .title h2 {
  font-size: 36px;
  font-weight: 900;
  color: #282B2D;
  font: 30px;
}
.privacy-policy-wrap img {
  margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content {
  margin-bottom: 30px;
}
.privacy-policy-wrap .privacy-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #282B2D;
  font-size: 26px;
}
.privacy-policy-wrap .privacy-content p {
  margin-bottom: 10px;
}
.privacy-policy-wrap .privacy-content ul {
  margin-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}
.privacy-policy-wrap .privacy-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.privacy-policy-wrap .privacy-content li:last-child {
  margin-bottom: 0;
}
.privacy-policy-wrap .privacy-content li i {
  position: absolute;
  left: 0;
  top: 1px;
  color: #ed8814;
  font-size: 20px;
}

/*
Coming Soon Area Stayle
=======================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
  z-index: 1;
  background-image: url(../images/banner/comming-soon.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.coming-soon-area .d-table {
  width: 100%;
  height: 100%;
}
.coming-soon-area .d-table .d-table-cell {
  vertical-align: middle;
}
.coming-soon-area .coming-soon-content {
  max-width: 700px;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 40px 60px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  margin-left: 300px;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: auto;
}
.coming-soon-area .coming-soon-content .logo {
  display: inline-block;
}
.coming-soon-area .coming-soon-content h2 {
  font-size: 45px;
  margin-top: 30px;
  margin-bottom: 0;
  color: #282B2D;
}
.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}
.coming-soon-area .coming-soon-content #timer div {
  background-color: #f9f9f9;
  color: #000000;
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: 800;
  margin-left: 10px;
  margin-right: 10px;
}
.coming-soon-area .coming-soon-content #timer div span {
  font-size: 16px;
  color: #666666;
  display: block;
  margin-top: -10px;
}
.coming-soon-area .coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.coming-soon-area .coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}
.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #5D5D5D;
  transition: all ease 0.8s;
  color: #282B2D;
  padding: 0 0 0 0px;
  height: 45px;
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
}
.coming-soon-area .coming-soon-content form .form-group .input-newsletter:focus {
  box-shadow: unset;
}
.coming-soon-area .coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 110%;
  height: 110%;
  pointer-events: none;
  color: #282B2D;
}
.coming-soon-area .coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 9px;
  font-size: 22px;
}
.coming-soon-area .coming-soon-content form .default-btn.disabled {
  border: none;
  font-size: 16px;
  border-radius: 0;
  padding: 12px 40px;
}
.coming-soon-area .coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}
.coming-soon-area .coming-soon-content form #validator-newsletter {
  color: red;
  position: relative;
  bottom: 0;
  top: 10px;
}/*# sourceMappingURL=style.css.map */
/* Max width 767px */
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .default-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-75 {
    padding-bottom: 35px;
  }
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .preloader .lds-spinner {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 130px;
    left: 31%;
    transform: translateY(-34px);
  }
  .section-title {
    margin-bottom: 25px;
  }
  .section-title span {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 25px;
    margin-bottom: 0;
  }
  .single-section span {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .single-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .portfolio-small-area {
    padding-left: 0px;
  }
  .blog-small-sight {
    padding-left: 0px;
  }
  .service-small-widget {
    padding-right: 0px;
  }
  .modal-content {
    width: 100%;
    margin: auto;
  }
  .shop-content p {
    padding-right: 0;
  }
  .counter-content .plus-btn {
    height: 40px;
    width: 38px;
  }
  .counter-content input {
    width: 30px;
  }
  .counter-content .minus-btn {
    width: 35px;
  }
  .blog-text .single-section {
    padding-right: 0;
  }
  .col-lg-3:nth-child(2) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(3) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(4) .footer-widget {
    margin-left: 0px;
  }
  .owl-theme .owl-dots {
    position: relative;
    right: 0;
    margin-bottom: 8px;
    bottom: -2px;
  }
  .extra-banner-image {
    width: 100%;
  }
  .banner-area .container-fluid {
    width: auto !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    max-width: 540px !important;
  }
  .container-fluid {
    max-width: 540px;
  }
  .b-three .container-fluid {
    max-width: 540px;
  }
  .banner-content p {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .banner-image .mini-1 {
    display: none;
  }
  .about-content {
    position: relative;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 35px 20px 20px 16px;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
  }
  .banner-area .banner-shape-1 {
    display: none;
  }
  .banner-area .banner-shape-2 {
    display: none;
  }
  .partner-1 {
    top: 0px;
    text-align: center;
    left: 0;
    right: 0;
  }
  .third-banner-area .jui-o1 {
    display: none;
  }
  .third-banner-area .banner-3-shape1 {
    display: none;
  }
  .third-banner-area .banner-3-shape2 {
    display: none;
  }
  .coming-soon-area .coming-soon-content {
    padding: 35px 20px;
    margin: auto;
  }
  .coming-soon-area .coming-soon-content h2 {
    font-size: 26px;
    margin-top: 24px;
    margin-bottom: 0;
    color: #282B2D;
  }
  .coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
  }
  .coming-soon-area .coming-soon-content #timer div {
    background-color: #f9f9f9;
    width: 100px;
    height: 105px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 800;
    margin: 10px;
  }
  .pl-0 {
    padding-left: 14px;
  }
  .inner-header {
    padding-right: 0;
    padding-left: 0;
  }
  .top-header-area {
    background: #F7F7F7;
    position: relative;
    z-index: 2;
  }
  .header-contact {
    text-align: center;
  }
  .header-contact .contact-list li {
    padding-left: 40px;
    padding-right: 10px;
    font-size: 13px;
    margin-bottom: 8px;
  }
  .social-widget {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
  .privacy-policy-wrap .privacy-content h3 {
    margin-bottom: 15px;
    font-weight: 700;
    color: #282B2D;
    font-size: 18px;
  }
  .banner-content {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .banner-content h1 {
    font-size: 28px;
    line-height: unset;
    margin-bottom: 15px;
  }
  .banner-content span {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .banner-content .banner-list li .default-btn {
    font-size: 13px;
    font-weight: 400;
  }
  .banner-content .banner-list li:last-child {
    padding-left: 45px;
  }
  .banner-content .banner-list li:last-child .icon-play {
    top: -10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 48px;
  }
  .banner-content .banner-list li:last-child p {
    font-size: 13px;
  }
  .banner-image {
    height: 400px;
    width: 94%;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
    background-size: cover;
  }
  .features-box {
    padding: 0px 0px 0px 0px;
  }
  .features-box.last-box {
    padding-left: 0;
    padding-right: 0;
  }
  .features-box .icon i {
    font-size: 40px;
  }
  .features-box .icon::before {
    width: 40px;
    height: 40px;
    top: 23px;
    right: 27px;
  }
  .features-box .features-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .service-box .widget .icon {
    width: 45px;
    height: 45px;
    top: -41px;
    margin-bottom: -30px;
    line-height: 50px;
    font-size: 20px;
  }
  .service-box .widget h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .service-box .service-content {
    padding: 20px 20px 20px 20px;
  }
  .service-box .service-content2 {
    padding: 20px 20px 20px 20px;
  }
  .service-area .view {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0px;
  }
  .about-content .about-shape {
    display: none;
  }
  .about-warp {
    padding-right: 0;
  }
  .about-image {
    height: 320px;
    margin-bottom: 30px;
  }
  .fastest-widget .fastest-list span {
    margin-bottom: 15px;
    padding: 12px 5px;
    font-size: 14px;
    padding-left: 30px !important;
  }
  .fastest-widget .fastest-list span i {
    font-size: 16px;
    left: 10px;
    top: 11px;
  }
  .features-box.two {
    margin-left: 0px;
    padding: 0px 1px 0px 0px;
  }
  .choose-image {
    height: 350px;
    left: 0;
  }
  .second-image {
    display: none;
  }
  .choose-image .router {
    right: 20px;
    left: 20px;
    bottom: 20px;
    padding: 20px 20px 20px 20px;
  }
  .choose-image .router .icon {
    width: 45px;
    height: 45px;
    top: -44px;
    margin-bottom: -35px;
    line-height: 54px;
    font-size: 20px;
  }
  .choose-image .router h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .choose-image .router p span {
    font-size: 16px;
  }
  .choose-content {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: 0;
    padding-right: 0;
    position: relative;
  }
  .choose-content .nav-pills .nav-link {
    font-size: 13px;
  }
  .choose-content .nav-pills .nav-link.active {
    font-size: 13px;
    padding: 8px 15px;
  }
  .choose-content .nav-item {
    padding-right: 10px;
    margin-bottom: 10px;
  }
  .choose-content ul#pills-tab {
    justify-content: center;
  }
  .choose-content .tab-list {
    margin-bottom: 30px;
  }
  .choose-content .tab-list.one {
    margin-bottom: 10px;
  }
  .choose-content .tab-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
  }
  .choose-content .tab-list li i {
    font-size: 16px;
    left: 0;
    top: 2px;
  }
  .inner-checking-area h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .inner-checking-area .input-area {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .inner-checking-area .input-area.one {
    padding-left: 0;
    margin-right: 0;
  }
  .pricing-card {
    padding: 30px 20px;
    margin-bottom: 25px;
    margin-bottom: 70px;
  }
  .pricing-card .icon {
    width: 50px;
    height: 50px;
    top: -65px;
    margin-bottom: -50px;
    line-height: 64px;
    font-size: 25px;
  }
  .pricing-card .pricing-content {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .pricing-card .pricing-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .pricing-card .pricing-content h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 5px;
  }
  .pricing-card .pricing-list li {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .pricing-area {
    padding-bottom: 0px;
  }
  .last-image {
    top: 30px;
    margin-bottom: 60px;
    left: 0;
  }
  .discover-content {
    padding-left: 0;
  }
  .discover-content .all-time {
    margin-bottom: 65px;
    width: 55px;
    height: 55px;
    padding-top: 39px;
    margin-right: 38px;
    font-size: 16px;
  }
  .discover-content .discover-list {
    margin-top: 0px;
  }
  .discover-content .discover-list li {
    padding-right: 12px;
  }
  .discover-content .discover-list li:last-child {
    padding-right: 0;
  }
  .discover-content .d-shape-2 {
    display: none;
  }
  .extra-widget-content {
    margin-left: 0;
    padding: 30px;
    margin-bottom: 0px;
    margin-top: 35px;
  }
  .extra-image {
    height: 350px;
    margin-top: 30px;
  }
  .testimonial-box {
    padding: 20px;
  }
  .testimonial-box .user-image {
    top: -55px;
  }
  .testimonial-box .user-image img {
    width: 55px;
    height: 55px;
  }
  .testimonial-box ul {
    padding-left: 0;
    margin-bottom: 15px;
    margin-top: 5px;
  }
  .testimonial-box p {
    margin-bottom: 5px;
  }
  .inner-test-about .view {
    text-align: center;
  }
  .blog-card .blog-content {
    padding: 25px 15px;
    box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.06);
  }
  .blog-card .blog-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .logo-image {
    margin-bottom: 30px;
  }
  .footer-widget .footer-logo {
    margin-bottom: 20px;
  }
  .footer-widget .location-content li {
    padding-left: 25px;
    margin-bottom: 12px;
  }
  .footer-widget .location-content li h6 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .footer-widget h4 {
    font-size: 18px;
    margin-bottom: 28px;
  }
  .magic-image .router {
    right: 0;
  }
  .banner-area-style2 {
    background-image: url(../images/banner/banner-3.webp);
    padding-top: 185px;
    padding-bottom: 60px;
  }
  .extra-banner-image {
    height: 400px;
  }
  .second-about-image {
    padding-right: 0;
  }
  .second-about-image .about-shape-5 {
    position: relative;
    width: auto;
    right: 0px;
    top: 0;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .second-about-content {
    padding-left: 0;
  }
  .second-about-content .fastest-list {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .second-about-content .fastest-list li {
    margin-bottom: 20px;
    padding: 12px 5px;
    font-size: 14px;
    padding-left: 30px !important;
  }
  .second-about-content .fastest-list li i {
    font-size: 17px;
    left: 9px;
    top: 11px;
  }
  .second-about-content .about-extra {
    bottom: -2px;
  }
  .explore-card {
    padding: 30px 20px;
    text-align: center;
    display: block !important;
  }
  .explore-card .icon i {
    font-size: 40px;
  }
  .explore-card .content h3 {
    font-size: 18px;
  }
  .blog-text {
    margin-bottom: 20px;
    text-align: center;
  }
  .show-btn {
    text-align: center;
  }
  .popular-warp .content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }
  .popular-warp .content h3 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .popular-warp .icon i {
    font-size: 25px;
    padding: 10px;
    top: -20px;
    right: -20px;
  }
  .magic-content {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .magic-content .tab-list {
    margin-bottom: 30px;
  }
  .magic-content .tab-list.one {
    margin-bottom: 14px;
  }
  .magic-content .tab-list li {
    padding-left: 30px;
    margin-bottom: 14px;
  }
  .magic-content .tab-list li i {
    font-size: 18px;
    left: 0;
    top: 0px;
  }
  .store-box {
    padding: 15px;
  }
  .store-box .content {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .store-box .content .price {
    margin-bottom: 10px;
  }
  .store-box .content .price span {
    font-size: 16px;
    margin-right: 10px;
  }
  .store-box .content .price .price-p {
    font-size: 13px;
  }
  .store-box .content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .blog-card .blog-image .date2 p {
    padding: 10px 11px;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .top-header-style3 .inner-header .header-contact .contact-list li {
    color: #575A7B;
  }
  .top-header-style3 .inner-header .header-contact .contact-list li a {
    color: #575A7B;
  }
  .banner-image-style3 {
    margin-right: 0;
  }
  .banner-image-style3 .jui-2 {
    display: none !important;
  }
  .banner-content-style3 {
    padding-right: 10px;
  }
  .banner-content-style3 h1 {
    font-size: 28px;
    line-height: unset;
    margin-bottom: 15px;
  }
  .banner-content-style3 span {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .banner-content-style3 .banner-list li {
    padding-right: 10px;
  }
  .banner-content-style3 .banner-list li .default-btn {
    font-size: 13px;
    font-weight: 400;
  }
  .banner-content-style3 .banner-list li:last-child {
    padding-left: 45px;
  }
  .banner-content-style3 .banner-list li:last-child .icon-play {
    top: -10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 48px;
  }
  .banner-content-style3 .banner-list li:last-child p {
    font-size: 13px;
  }
  .banner-content-style3 p {
    padding-right: 0;
  }
  .extra-widget-content {
    margin-right: 0;
  }
  .third-banner-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .internet-content {
    margin-top: 65px;
    padding-left: 0;
    padding-right: 0;
  }
  .internet-content ul li {
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .internet-content ul li i {
    left: 0;
    top: 0px;
    font-size: 16px;
  }
  .internet-content p {
    margin-bottom: 20px;
  }
  .owl-nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    right: 0;
  }
  .owl-nav .owl-prev {
    position: relative;
    left: 0;
  }
  .owl-nav .owl-next {
    position: relative;
    right: 0;
  }
  .next-features-box .content {
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .next-features-box .content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .inner-checking-area .checking-btn {
    margin-left: 0;
  }
  .recent-image .content {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 20px;
    justify-content: space-between;
    transition: all ease 0.8s;
    margin: auto;
    max-width: 260px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
  }
  .fd-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .skill-bar .bar .info span {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .skill-bar .bar .progress-line span::after {
    top: -27px;
    font-size: 14px;
  }
  .project-image-warp {
    position: relative;
    padding-top: 0;
    padding-right: 0;
  }
  .project-image-warp .project-2 {
    position: relative;
    width: auto;
    height: auto;
    top: 0;
    right: 0px;
    margin-top: 30px;
  }
  .project-image-warp .pw-content {
    padding: 15px 45px;
    top: auto;
    margin-top: 35px;
    margin-bottom: 30px;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 4px rgba(17, 17, 17, 0.08);
    left: 0;
  }
  .project-image-warp .pw-content .icon {
    left: 184px;
    top: 27px;
  }
  .bank-transfer .accordion-item .accordion-button span::before {
    top: 19px;
    left: -43px;
    bottom: 0;
    width: 30px;
    line-height: 33px;
    font-size: 16px;
    height: 30px;
  }
  .bank-transfer .accordion-item .accordion-button:not(.collapsed) {
    padding-bottom: 8px;
    font-size: 16px;
  }
  .bank-transfer .accordion-item .accordion-body {
    padding: 5px 20px 8px 0px;
  }
  .bank-transfer .accordion-item .accordion-body p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .accordion-button {
    padding-left: 0px;
    padding-bottom: 0;
  }
  .bank-transfer .accordion-item button.accordion-button.collapsed span::before {
    top: 19px;
    left: -43px;
    bottom: 0;
    width: 30px;
    line-height: 33px;
    font-size: 16px;
    height: 30px;
  }
  .funfact-warp {
    padding-right: 0;
    padding-left: 0;
  }
  .single-funfacts-box {
    padding-left: 110px;
  }
  .single-funfacts-box .icon {
    font-size: 50px;
    left: 20px;
    top: 6px;
  }
  .single-funfacts-box .icon::before {
    top: 30px;
    left: 25px;
  }
  .single-funfacts-box h3 {
    font-size: 32px;
  }
  .testimonial-slide-widget .test-self .test-icon i {
    display: none;
  }
  .testimonial-slide-widget .test-self .test-content {
    position: relative;
    left: 0px;
  }
  .testimonial-slide-widget .test-self .test-content h5 {
    font-size: 16px;
  }
  .testimonial-slide-widget .test-self .test-content {
    position: relative;
    left: 8px;
  }
  .question-warp {
    padding: 40px 20px;
  }
  .question-warp span {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
  }
  .question-warp h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .question-warp .form-control {
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .question-warp textarea {
    height: 85px;
    margin-bottom: 30px !important;
  }
  .inner-banner-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .ib-content h2 {
    font-size: 30px;
    margin-bottom: 3px;
  }
  .service-project .content h2 {
    font-size: 25px;
    margin-bottom: 8px;
  }
  .last-service h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .input-group {
    margin-bottom: 20px;
  }
  .paragraph-p {
    padding-left: 18px;
    margin-bottom: 20px;
  }
  .shop-image {
    text-align: center;
    margin-bottom: 30px;
  }
  .shop-content {
    padding-left: 0;
  }
  .shop-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .shop-content .shop-content p {
    padding-right: 0;
  }
  .review-area .nav-tabs .nav-link {
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 25px;
    margin-right: 25px;
  }
  .review-area .tab-content {
    background: #ffffff;
    padding: 35px 10px;
  }
  .customer-reviews .review-text {
    display: block !important;
    margin-bottom: 20px;
  }
  .customer-reviews .review-text .content h3 {
    font-size: 22px;
  }
  .customer-reviews .review a {
    position: relative;
    top: 0;
    margin-bottom: 12px;
    display: block;
  }
  .review-option h3 {
    font-size: 22px;
  }
  .review-option .form-control {
    height: 55px;
  }
  .review-option textarea {
    height: 130px !important;
    padding-top: 15px !important;
  }
  .billing-details {
    padding: 30px 15px;
    background: #F7F7F7;
  }
  .family-warp h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .project-service h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .future-plan h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .terms-conditions .conditions-content h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
    color: #282B2D;
  }
  .error-area .error-content-wrap h1 {
    font-size: 95px;
    margin-top: -40px;
  }
  .stil-box {
    margin-bottom: 20px;
  }
  .media {
    display: block !important;
    padding: 20px 25px;
  }
  .internet {
    margin-bottom: 20px;
  }
  .person {
    padding: 30px 15px;
    text-align: center;
  }
  .person .person-image {
    margin-bottom: 20px;
    position: unset;
  }
  .person .person-image img {
    height: 100px;
    width: auto;
  }
  .person .person-self {
    padding-left: 0;
  }
  .comments-area .commrnt-box {
    padding: 30px 15px;
    display: block !important;
    text-align: center;
  }
  .comments-area .commrnt-box .comment-man {
    padding-right: 0px;
    margin-bottom: 20px;
    position: unset;
  }
  .comments-area .commrnt-box .comment-man img {
    width: auto;
  }
  .comments-area .commrnt-box .comments-content {
    padding-left: 0;
  }
  .comment-option {
    padding: 20px;
    margin-bottom: 30px;
  }
  .post-box .blog-post .post-content h5 {
    font-size: 14px;
  }
  .post-box .blog-post .post-image img {
    width: 100px;
    height: 65px;
  }
  .budget-box .blog-content h2 {
    font-weight: 700;
    font-size: 20px;
  }
  .lorem-box {
    padding: 25px 15px 25px 15px;
    text-align: center;
  }
  .lorem-box img {
    position: unset;
    left: 0;
    margin-bottom: 20px;
  }
  .contact-form-area {
    padding: 40px 15px;
  }
  .contact-card {
    padding: 20px;
    text-align: center;
  }
  .contact-card .icon {
    width: 70px;
    position: unset;
    height: 70px;
    text-align: center;
    margin: 0 auto 10px auto;
  }
  .account-warp {
    padding: 18px;
  }
  .account-warp .forget {
    text-align: left;
    margin-bottom: 20px;
  }
  .account-warp .form-check {
    margin-bottom: 10px;
  }
}
/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-funfacts-box {
    padding-left: 83px;
  }
  .single-funfacts-box .icon {
    font-size: 35px;
    left: 20px;
    top: 6px;
  }
  .single-funfacts-box .icon::before {
    top: 15px;
    left: 10px;
  }
  .funfact-warp {
    padding-right: 20px;
    padding-left: 20px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
  }
  .modal-content {
    width: 100%;
    margin: auto;
  }
  .col-lg-3:nth-child(2) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(3) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(4) .footer-widget {
    margin-left: 0px;
  }
  .portfolio-small-area {
    padding-left: 0px;
  }
  .blog-small-sight {
    padding-left: 0px;
  }
  .service-small-widget {
    padding-right: 0px;
  }
  .banner-area .container-fluid {
    width: auto !important;
    max-width: 720px !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .choose-area .container-fluid {
    max-width: 720px;
  }
  .pt-100 {
    padding-top: 70px;
  }
  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pb-75 {
    padding-bottom: 45px;
  }
  .b-three .container-fluid {
    max-width: 720px;
  }
  .partner-1 {
    top: 0px;
    text-align: center;
    left: 0;
    right: 0;
  }
  .coming-soon-area .coming-soon-content {
    margin-left: auto;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
  }
  .coming-soon-area .coming-soon-content h2 {
    font-size: 22px;
  }
  .coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
  }
  .coming-soon-area .coming-soon-content {
    padding: 35px 20px;
  }
  .coming-soon-area .coming-soon-content h2 {
    font-size: 22px;
  }
  .coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
  }
  .coming-soon-area .coming-soon-content #timer div {
    background-color: #f9f9f9;
    width: 100px;
    height: 105px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 800;
    margin: 10px;
  }
  .coming-soon-area .coming-soon-content #timer div span {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 5px;
  }
  .about-content {
    position: relative;
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 65px 60px 40px;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
  }
  .discover-content .d-shape-2 {
    display: none;
  }
  team-area::after {
    bottom: -1px;
  }
  .others-style2::before {
    background: transparent;
  }
  .header-contact {
    text-align: center;
  }
  .header-contact .contact-list li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .social-widget {
    text-align: center;
    margin-top: 10px;
  }
  .top-header-area {
    background: #F7F7F7;
    position: relative;
    z-index: 2;
  }
  .banner-image {
    height: 400px;
    margin-left: 0;
  }
  .banner-image .mini-1 {
    left: 20px;
    bottom: 75px;
  }
  .banner-content {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .banner-content span {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .banner-content h1 {
    font-size: 40px;
    line-height: unset;
    margin-bottom: 8px;
  }
  .banner-area .banner-shape-1 {
    display: none;
  }
  .about-image {
    height: 400px;
    margin-bottom: 30px;
  }
  .about-content {
    margin-right: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 50px 55px 50px 40px;
  }
  .about-warp {
    padding-right: 0;
  }
  .choose-image {
    height: 400px;
    left: 0;
  }
  .choose-image .router {
    position: absolute;
    right: 0;
  }
  .choose-content {
    padding-top: 30px;
    padding-bottom: 100px;
    margin-left: 0;
    padding-right: 0;
  }
  .inner-checking-area .checking-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .pricing-card {
    padding: 35px 20px;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .discover-image {
    margin-bottom: 55px;
  }
  .discover-content {
    position: relative;
    padding-left: 0;
  }
  .extra-content {
    position: relative;
    margin-bottom: 30px;
  }
  .inner-test-about .view {
    top: -6px;
    margin-bottom: -11px;
  }
  .blog-card .blog-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer-widget h4 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
  }
  .banner-widget-content {
    margin-left: -120px;
  }
  .second-about-image {
    margin-bottom: 30px;
    position: relative;
    padding-right: 0;
  }
  .second-about-image .about-shape-5 {
    display: none;
  }
  .second-about-content {
    padding-left: 0;
    position: relative;
  }
  .explore-card {
    padding: 40px 35px;
    display: block !important;
    text-align: center;
  }
  .pricing-card-style2 {
    margin-bottom: 25px;
    margin-top: 0px;
  }
  .magic-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .store-box {
    padding: 20px;
  }
  .store-box .content h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .features-box.last-box {
    padding-left: 0;
    padding-right: 0;
  }
  .banner-image-style3 {
    margin-right: 0;
    text-align: start;
  }
  .top-header-style3 .inner-header .header-contact .contact-list li {
    color: #575A7B;
  }
  .top-header-style3 .inner-header .header-contact .contact-list li a {
    color: #575A7B;
  }
  .banner-image-style3 .jui-2 {
    display: none !important;
  }
  .owl-nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    right: 0;
  }
  .owl-nav .owl-prev {
    position: relative;
    left: 0;
  }
  .owl-nav .owl-next {
    position: relative;
    right: 0;
  }
  .banner-content-style3 h1 {
    font-size: 45px;
    line-height: unset;
  }
  .internet-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }
  .recent-image {
    text-align: center;
  }
  .fd-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .project-image-warp {
    margin-bottom: 30px;
  }
  .question-image {
    height: 615px;
  }
  .input-group {
    margin-bottom: 20px;
  }
  .paragraph-p {
    padding-left: 18px;
    margin-bottom: 20px;
  }
  .shop-image {
    text-align: start;
    margin-bottom: 30px;
  }
  .testimonial-slide-widget .test-self .test-icon {
    position: relative;
    left: 20px;
    top: 23px;
  }
  .testimonial-slide-widget .test-self .test-icon i {
    font-size: 29px;
  }
  .funfact-warp {
    padding-right: 60px;
    padding-left: 60px;
  }
  .shop-content {
    padding-left: 0;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area .container-fluid {
    width: auto !important;
    max-width: 960px !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .col-lg-3:nth-child(2) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(3) .footer-widget {
    margin-left: 0px;
  }
  .col-lg-3:nth-child(4) .footer-widget {
    margin-left: 0px;
  }
  .modal-content {
    width: 100%;
    margin: auto;
  }
  .container-fluid {
    max-width: 960px;
  }
  .b-three .container-fluid {
    max-width: 960px;
  }
  .owl-nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    right: 0;
  }
  .owl-nav .owl-prev {
    position: relative;
    left: 0;
  }
  .owl-nav .owl-next {
    position: relative;
    right: 0;
  }
  .choose-area .container-fluid {
    max-width: 960px;
  }
  .partner-1 {
    top: 0px;
    text-align: center;
    left: 0;
    right: 0;
  }
  body {
    font-size: 15px;
  }
  .single-section h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
  }
  .header-contact .contact-list li {
    padding-right: 15px;
    font-size: 13px;
    padding-left: 30px;
  }
  .header-contact .contact-list li .icon {
    left: -1px;
    top: -4px;
    width: 25px;
    height: 25px;
    line-height: 29px;
  }
  .discover-content .d-shape-2 {
    display: none;
  }
  .desktop-nav .navbar .others-options {
    align-items: center;
    position: relative;
    display: none !important;
  }
  .others-option-for-responsive {
    display: block !important;
  }
  .others-option-for-responsive .dot-menu {
    top: -63px;
    right: 25px;
  }
  .others-option-for-responsive .container .container {
    position: absolute;
    right: -2px;
    top: 15px;
    max-width: 500px;
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: scaleY(0);
    padding-left: 0px;
    padding-right: 15px;
  }
  .others-option-for-responsive .others-options .item-nav {
    display: inline-block;
    padding-left: 0px;
  }
  .navbar-area-style2 .dot-menu {
    top: -63px;
    right: 0px;
  }
  .navbar-area-style2 .others-option-for-responsive .container .container {
    max-width: 255px;
  }
  .navbar-area-style3 .dot-menu {
    top: -63px;
    right: 0px;
  }
  .navbar-area-style3 .others-option-for-responsive .container .container {
    max-width: 255px;
  }
  .footer-widget .social-link li a {
    width: 28px;
    height: 28px;
  }
  .desktop-nav .navbar .navbar-brand {
    padding-right: 45px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: -250px;
    right: 250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
  .banner-content {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .banner-content h1 {
    font-size: 40px;
    line-height: unset;
    margin-bottom: 15px;
  }
  .banner-content p {
    padding-right: 0;
  }
  .banner-image .mini-1 {
    left: 20px;
    bottom: 35px;
    width: 130px;
    height: 150px;
  }
  .choose-content {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: 30px;
    padding-right: 0;
    position: relative;
  }
  .features-box {
    margin-bottom: 25px;
    padding: 0px 0px 0px 0px;
  }
  .features-box.last-box {
    padding-left: 0;
    padding-right: 0;
  }
  .service-box .service-content {
    padding: 20px 24px 20px 25px;
  }
  .about-content {
    position: relative;
    margin-right: -253px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 40px 30px 40px 30px;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px 2px rgba(17, 17, 17, 0.08);
  }
  .about-content h2 {
    font-size: 24px;
  }
  .fastest-widget {
    margin-left: -20px;
  }
  .fastest-widget .fastest-list span {
    margin-bottom: 14px;
    padding: 15px 10px;
    padding-left: 30px !important;
  }
  .fastest-widget .fastest-list span i {
    margin-top: -2px;
    left: 9px;
  }
  .fastest-widget .fastest-self .second-image {
    display: none;
  }
  .choose-content {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 0px;
    padding-right: 0;
  }
  .pricing-card {
    margin-bottom: 80px;
  }
  .pricing-area {
    padding-bottom: 20px !important;
  }
  .discover-content .all-time {
    margin-right: 35px;
  }
  .extra-widget-content {
    margin-left: -215px;
  }
  .blog-card .blog-content {
    padding: 25px 15px;
  }
  .blog-card .blog-content h3 {
    font-size: 18px;
  }
  .desktop-nav .navbar-style2 ul {
    margin-bottom: 0;
    padding-right: 115px;
    list-style-type: none;
  }
  .second-about-content .fastest-list {
    margin-bottom: 35px;
    padding-right: 30px;
  }
  .explore-card {
    padding: 30px 25px;
    display: block !important;
    text-align: center;
  }
  .popular-warp .content {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
  }
  .popular-warp .icon i {
    font-size: 26px;
    padding: 11px;
    top: -15px;
    right: -15px;
  }
  .pricing-card-style2 {
    margin-bottom: 25px;
  }
  .pricing-area-style2 {
    padding-bottom: 75px !important;
  }
  .navbar-area-style3 .desktop-nav .navbar ul {
    margin-right: 110px;
  }
  .banner-image-style3 {
    margin-right: 0;
  }
  .banner-image-style3 .jui-2 {
    display: none !important;
  }
  .banner-content-style3 h1 {
    font-size: 40px;
    line-height: unset;
  }
  .banner-content-style3 .default-btn {
    padding: 14px 20px;
    font-weight: 500;
    font-size: 14px;
  }
  .banner-content-style3 p {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .third-banner-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .is-content {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .recent-image .content {
    padding: 10px;
    max-width: 185px;
  }
  .recent-image .content .icon i {
    font-size: 16px;
    padding: 5px;
  }
  .recent-image .content h3 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
  }
  .recent-image .content p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .fd-content {
    padding-right: 0;
  }
  .find-box {
    padding: 25px 15px;
    margin-bottom: 25px;
  }
  .find-box i {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .find-box h3 {
    font-weight: 700;
    font-size: 18px;
  }
  .project-image-warp {
    position: relative;
    padding-top: 105px;
    padding-right: 85px;
  }
  .project-image-warp .project-2 {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 0;
    right: 30px;
  }
  .project-image-warp .pw-content {
    top: 7px;
    left: 50px;
  }
  .project-image-warp .pw-content h4 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  .funfact-warp {
    padding-right: 0;
    padding-left: 0;
  }
  .testimonial-slide-widget .test-self .test-icon {
    display: none;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-fluid {
    max-width: 1140px;
  }
  .modal-content {
    width: 100%;
    margin: auto;
  }
  .b-three .container-fluid {
    max-width: 1140px;
  }
  .single-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  body {
    font-size: 15px;
  }
  .partner-1 {
    top: 0px;
    text-align: center;
    left: 0;
    right: 0;
  }
  .banner-area .container-fluid {
    width: auto !important;
    max-width: 1140px !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .discover-content .d-shape-2 {
    display: none;
  }
  .banner-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 50px;
    line-height: 70px;
    margin-bottom: 8px;
  }
  .banner-content p {
    padding-right: 0;
    font-size: 15px;
  }
  .about-content {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 50px 60px 50px 40px;
  }
  .fastest-widget .fastest-list span {
    margin-bottom: 15px;
    padding: 15px 10px;
    padding-left: 40px !important;
  }
  .fastest-widget .fastest-list span i {
    font-size: 20px;
    left: 14px;
    top: 28px;
  }
  .choose-content {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: 30px;
    padding-right: 0;
    position: relative;
  }
  .choose-area .container-fluid {
    max-width: 1140px;
  }
  .pricing-card {
    padding: 30px 20px;
    z-index: 1;
  }
  .blog-card .blog-content h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .desktop-nav .navbar .others-options {
    align-items: center;
    position: relative;
    display: none !important;
  }
  .desktop-nav .navbar .others-style2 {
    margin-left: 0;
  }
  .navbar-area-style2 .desktop-nav .navbar .others-options {
    align-items: center;
    position: relative;
    display: flex !important;
  }
  .navbar-area-style2 .others-option-for-responsive {
    display: none !important;
  }
  .navbar-area-style3 .desktop-nav .navbar .others-options {
    align-items: center;
    position: relative;
    display: flex !important;
  }
  .navbar-area-style3 .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 15px;
    margin-left: 12px;
    margin-right: 10px;
  }
  .navbar-area-style3 .others-option-for-responsive {
    display: none !important;
  }
  .others-option-for-responsive {
    display: block !important;
  }
  .others-option-for-responsive .dot-menu {
    top: -63px;
  }
  .others-option-for-responsive .container .container {
    position: absolute;
    right: -2px;
    top: 15px;
    max-width: 500px;
    margin-left: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: scaleY(0);
    padding-left: 0px;
    padding-right: 15px;
  }
  .others-option-for-responsive .others-options .item-nav {
    display: inline-block;
    padding-left: 0px;
  }
  .header-contact .contact-list li {
    padding-left: 40px;
    padding-right: 20px;
    font-weight: 400;
    font-size: 14px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 15px;
    margin-left: 12px;
    margin-right: 10px;
  }
  .desktop-nav .navbar-style2 ul {
    margin-bottom: 0;
    padding-right: 115px;
    list-style-type: none;
  }
  .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
  .banner-widget-content {
    margin-left: -160px;
  }
  .explore-card {
    padding: 35px 20px;
    margin-bottom: 25px;
  }
  .explore-card .icon i {
    font-size: 45px;
  }
  .popular-warp .content {
    left: 25px;
    right: 25px;
  }
  .store-box .content h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .navbar-area-style3 .desktop-nav .navbar ul {
    margin-right: 85px;
  }
  .owl-nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    right: 0;
  }
  .owl-nav .owl-prev {
    position: relative;
    left: 0;
  }
  .owl-nav .owl-next {
    position: relative;
    right: 0;
  }
  .banner-content-style3 p {
    color: #ffffff;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .banner-content-style3 h1 {
    font-size: 50px;
    line-height: unset;
    margin-bottom: 30px;
  }
  .is-content {
    margin-bottom: 0px;
    margin-top: 120px;
  }
  .funfact-warp {
    padding-right: 40px;
    padding-left: 40px;
  }
}
/* Min width 1400px to Max width 1799px */
@media only screen and (min-width: 1400px) and (max-width: 1799px) {
  .discover-content .d-shape-2 {
    display: none;
  }
  .modal-content {
    width: 100%;
    margin: auto;
  }
  .banner-widget-content {
    margin-left: -180px;
  }
  .banner-content p {
    color: #ffffff;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .banner-content h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 80px;
    color: #ffffff;
    margin-bottom: 8px;
  }
  .owl-nav {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    right: 0;
  }
  .owl-nav .owl-prev {
    position: relative;
    left: 0;
  }
  .owl-nav .owl-next {
    position: relative;
    right: 0;
  }
  .partner-1 {
    top: 0px;
    text-align: center;
    left: 0;
    right: 0;
  }
  .container-fluid {
    max-width: 1320px;
  }
  .b-three .container-fluid {
    max-width: 1320px;
  }
  .banner-area .container-fluid {
    width: auto !important;
    max-width: 1320px !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .choose-area .container-fluid {
    max-width: 1320px;
  }
  .banner-content-style3 h1 {
    font-size: 58px;
    line-height: 80px;
    color: #ffffff;
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=responsive.css.map */
.header-contact .contact-list li:first-child {
padding-left: 45px;
}

.desktop-nav .navbar .navbar-brand img {
max-height: 65px;
}
.navbar-collapse {

  flex-grow: 0;

}

.third-banner-area {
  background-image: url(../images/banner/sliderbg.jpg);

}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #000000;
  padding: 13px;
  border-bottom: 1px dashed #e3e3e3;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  display: block;
  position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b2336;
  border-bottom: 1px dashed #e3e3e3;
  font-size: 12px;
  font-weight: 600;
  line-height: 0.5;
  position: relative;
}

.security-list ul li .active {
  background-color: #ed8814;
  color: #ffffff;
}

.security-list  h3 {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.security-list h3::after {
  position: absolute;

  content: "";

  bottom: -1px;

  left: 0;

  right: 0;

  height: 3px;

  width: 21px;

  background-color: #ed8814;

}

.preloader-word .waviy span:nth-child(1) {
  --tw-text-opacity: 1;
  color: #000;
  display: inline-block;
  position: relative;
  --tw-text-opacity: 1;
  color: #000;
}
.preloader-word .waviy span:nth-child(2) {
  --tw-text-opacity: 1;
  display: inline-block;
  position: relative;
  --tw-text-opacity: 1;
  color: #000;
  animation-delay: 0.2s;
}
.preloader-word .waviy span:nth-child(3) {
  display: inline-block;
  position: relative;
  animation-delay: 0.4s;
  --tw-text-opacity: 1;
  color: #000;
}


.preloader-word .waviy span:nth-child(4) {
  display: inline-block;
  position: relative;
  animation-delay: 0.4s;
  --tw-text-opacity: 1;
  color: #000;
}

.contact-card .icon {
  width: 50px;
  position: absolute;
  height: 50px;
  border-radius: 50%;
  border: dashed 1px #ed8814;
    border-top-color: rgb(241, 25, 40);
    border-right-color: rgb(241, 25, 40);
    border-bottom-color: rgb(241, 25, 40);
    border-left-color: rgb(241, 25, 40);
  text-align: center;
  line-height: 54px;
  left: 30px;
  top: 30px;
  font-size: 30px;
  color: #ed8814;
  transition: all ease 0.8s;
}

.contact-card .content {
  padding-left: 70px;
}
.contact-area
 p {
  font-size: 15px;
}

.others-option-for-responsive .container .others-options {

  padding: 12px 8px 12px 8px;
  border-radius: 10px;

  box-shadow: none;
}

.extra-widget-content ul li {
  display: flex;
  flex-direction: column;   /* stack icon above text */
  align-items: center;      /* center horizontally */

  margin-bottom: 20px;      /* spacing between items */
}

.extra-widget-content ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;      /* gap between icon and text */
}

.extra-widget-content ul li .content p {
  margin: 0;
  line-height: 1.4;
}

.service-area {

  background-color: #f7f7f7;
}

/* Fix store-box height */
.store-box {
  display: flex;
  flex-direction: column;
  height: 100%; /* ensures all equal height in slider */
}

.store-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #f7f7f7;
  opacity: 0.95;
  z-index: -1;
}

/* Fix image container */
.store-box .store-image {
  width: 100%;
  height: 220px; /* adjust as needed */
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-box .store-image img {
  width: 100%;
  height: 100%;
  max-height: 230px;
  object-fit: cover; /* keeps aspect ratio, fills box */
}

/* Equal height for content area */
.store-box .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.store-box h4 {
  height: 50px;          /* adjust as needed for 2 lines */
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
  margin: 10px 0;
  font-size: 16px;       /* optional: keep consistent size */
  line-height: 1.4;
  overflow: hidden;      /* hides any extra text */
}


.store-area span {
  color: #ed8814;
}

.section-title h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0;
  color: #282B2D;
}
.footer-logo img {max-width: 250px;}

.footer-area {
  background: none;
}

.copyright-area {

  border-top: solid 1px #bebebe;
}

/* Parent accordion button */
.category-accordion .accordion-button {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;   /* smaller height */
    background: #f8f9fa;
    color: #333;
    border: none;
    box-shadow: none;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.category-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #ed8814;   /* active color */
    font-weight: 600;
}

/* Direct parent links (no children) */
.category-accordion .accordion-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    text-decoration: none;
    color: #333;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.2s;
    line-height: 1.2;
}
.category-accordion .accordion-link:hover {
    background: #f1f1f1;
    color: #ed8814;
}

/* Subcategory links */
.subcategory-list li a {
    display: block;
    font-size: 13px;
    padding: 3px 8px;
    text-decoration: none;
    color: #555;
    border-radius: 3px;
    transition: all 0.2s;
    line-height: 1.2;
}
.subcategory-list li a:hover {
    background: #f1f3f5;
    color: #ed8814;
}



.category-accordion .accordion-button,
.category-accordion .accordion-link {
    padding: 10px 14px;   /* more height */
    line-height: 1.5;     /* taller line height */
}

/* Subcategories a little taller too */
.subcategory-list li a {
    padding: 6px 12px;
    line-height: 1.4;
}

/* Arrow styling */
.category-accordion .accordion-button::after {
    font-size: 0.50rem;   /* slightly smaller arrow */
    color: #ed8814;       /* red arrow */
}

li.active-subcategory > a {
  color: #ed8814 !important;
}

.shop-content .content-one {
  max-width: none;
  justify-content: left;
  margin-bottom: 10px;
}

.thumbnail-50 {    
    height: 120px;
  
    cursor: pointer; /* show pointer on hover */
    border: 2px solid transparent;
    transition: border 0.2s;
}
.thumbnail-50:hover {
    border: 2px solid #000;
}

.default-btn-dark {
  color: #ffffff;
  background-color: #000000;
  padding: 12px 25px;
  border: solid 1px #000000;
  font-weight: 600;
  font-size: 16px;
  transition: all ease 0.8s;
  display: inline-block;
  text-decoration: none;
}

.default-btn-dark:hover {
  background-color: #ffffff;
  color: #000000;
}

.inner-banner-area {
  background-image: url(../images/banner/inner-bg.jpg);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .extra-widget-content ul li {
    height: 50px;              /* ✅ set equal height */
    justify-content: center;    /* ✅ vertically center icon + text */
         /* adjust spacing */
  }
}