@import "pages-css/navbar.css";
@import "pages-css/home-one.css";
@import "pages-css/home-two.css";
@import "pages-css/home-three.css";
@import "pages-css/inner-banner.css";
@import "pages-css/contact.css";
@import "pages-css/faq.css";
@import "pages-css/blog-details.css";
@import "pages-css/service-details.css";
@import "pages-css/project-details.css";
@import "pages-css/team.css";
@import "pages-css/author.css";
@import "pages-css/pagination.css";
@import "pages-css/error.css";
@import "pages-css/coming-soon.css";
@import "pages-css/footer.css";
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap";
:root {
  --headerFonts: "Poppins", sans-serif;
  --bodyFonts: "Roboto", sans-serif;
  --orangeColor: #f85f0a;
  --lightColor: #f88240;
  --greenColor: #0ebc40;
  --titleColor: #00042e;
  --bodyColor: #4e4e4e;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
  font-weight: 400;
}
p {
  line-height: 1.8;
  color: var(--bodyColor);
  margin-bottom: 10px;
}
.footer-widget .footer-list li  i , .footer-widget .footer-list li  svg{
    color: #fff;
}
p:last-child {
  margin-bottom: 0;
}
 .choose-content-left .choose-item p , .choose-content-left .choose-item h4{
    color: #fff;
}
.choose-content-left .choose-item h3{
    background-color: #f85f0a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
.choose-content-left .choose-item{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    background-color: #52d84f;
    padding: 20px;
    border-radius: 20px;
 }
 a.navbar-brand img {
    max-width: 210px;
}
 .service-article-content , .project-article-content , .blog-article-content {
     text-align:justify;
 }
a {
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
}
button {
  outline: 0;
}
button:focus {
  outline: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: var(--headerFonts);
  color: var(--titleColor);
  line-height: 1.4;
}
h3 {
  font-size: 20px;
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
img {
  max-width: 100%;
}
.pt-150 {
  padding-top: 150px;
}
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.pt-70 {
  padding-top: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-20 {
  padding-top: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pb-10 {
  padding-bottom: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.border-radius-5 {
  border-radius: 5px !important;
}
.border-radius-50 {
  border-radius: 50px !important;
}
.default-btn {
  padding: 10px 30px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: var(--orangeColor);
  border: none;
  outline: none;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--greenColor);
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover::before {
  width: 100%;
  opacity: 1;
}
.default-btn.two {
  background-color: var(--greenColor);
}
.default-btn.two:hover {
  color: var(--whiteColor);
}
.default-btn.two:hover::before {
  background-color: var(--orangeColor);
}
.section-title .sp-title {
  padding-bottom: 22px;
  display: inline-block;
  line-height: 0;
  font-size: 15px;
  color: var(--greenColor);
  padding-left: 0;
  position: relative;
  font-weight: 500;
}
.section-title .sp-title::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--greenColor);
  display: none;
}
.section-title .sp-title::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  animation: MOVE-BG 2s linear infinite;
}
.section-title .sp-title2 {
  padding-bottom: 20px;
  line-height: 0;
  font-size: 15px;
  color: var(--lightColor);
  padding-left: 0;
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.section-title .sp-title2::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--lightColor);
  display: none;
}
.section-title .sp-title2::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  animation: MOVE-BG 2s linear infinite;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  color: var(--titleColor);
  margin-bottom: 0;
}
.section-title p {
  padding-top: 15px;
  margin-bottom: 0;
}
@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(88px);
  }
}
.work-area::before {
  background-image: url(../images/work-img/work-bg.jpg);
}
.testimonial-area::before {
  background-image: url(../images/testimonial/testimonial-bg.jpg);
}
.terms-conditions-img {
  margin-bottom: 30px;
}
.single-content {
  margin-bottom: 30px;
}
.single-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}
.single-content p {
  margin-bottom: 0;
}
.gallery-photo-item {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.gallery-photo-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  background-color: var(--titleColor);
}
.gallery-photo-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  background-color: var(--titleColor);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
}
.gallery-photo-item .photo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.gallery-photo-item .photo-button h3 {
  color: var(--whiteColor);
  margin-bottom: 20px;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.1s;
}
.gallery-photo-item .photo-button .photo-icon {
  width: 40px;
  height: 40px;
  line-height: 45px;
  background-color: var(--whiteColor);
  font-size: 20px;
  color: var(--orangeColor);
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.2s;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.gallery-photo-item .photo-button .photo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  animation: ripple 2s infinite ease-in-out;
  border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
  border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover::before {
  border-color: var(--orangeColor);
}
.gallery-photo-item:hover::before {
  opacity: 0.8;
  transform: scaleY(1);
}
.gallery-photo-item:hover::after {
  opacity: 0.8;
  transform: scaleY(1);
}
.gallery-photo-item:hover .photo-button h3 {
  opacity: 1;
}
.gallery-photo-item:hover .photo-button .photo-icon {
  opacity: 1;
}
.categories-title {
  margin-bottom: 30px;
}
.categories-title h3 {
  font-size: 24px;
  color: var(--titleColor);
}
.categories-title h3 span {
  color: var(--bodyColor);
  font-size: 17px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--orangeColor);
}
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}
.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
  animation-delay: -1s;
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.go-top {
  position: fixed;
  top: 70%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: var(--orangeColor);
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 100;
  transition: 0.5s;
}
.go-top i {
  transition: 0.5s;
  vertical-align: middle;
}
.go-top:hover {
  background-color: var(--titleColor);
}
.go-top:hover i {
  transform: translateY(-5px);
}
.go-top.active {
  top: 95%;
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}
.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes help-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes movebounce-up {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-120px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes move-to {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes running-in {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 150px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes waving-line {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0;
  }
}
@keyframes rotated360 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 20px;
  }
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pt-70 {
    padding-top: 50px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pt-45 {
    padding-top: 30px;
  }
  .pb-10 {
    padding-bottom: 0;
  }
  .pl-20 {
    padding-left: 0;
  }
  .pr-20 {
    padding-right: 0;
  }
  .ml-20 {
    margin-left: 20px;
  }
  .default-btn {
    padding: 8px 20px;
  }
  .section-title span {
    font-size: 12px;
  }
  .section-title .sp-title {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }
  .section-title .sp-title::before {
    display: none;
  }
  .section-title .sp-title::after {
    display: none;
  }
  .section-title .sp-title2 {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }
  .section-title .sp-title2::before {
    display: none;
  }
  .section-title .sp-title2::after {
    display: none;
  }
  .section-title h2 {
    font-size: 21px;
  }
  .section-title p {
    padding-top: 10px;
  }
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .ps-0 {
    padding-left: 15px !important;
  }
  .pe-0 {
    padding-right: 15px !important;
  }
  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .go-top .active {
    top: 85%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-area-two .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-area-three .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body {
    font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pt-70 {
    padding-top: 50px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pt-45 {
    padding-top: 30px;
  }
  .pb-10 {
    padding-bottom: 0;
  }
  .pl-20 {
    padding-left: 0;
  }
  .pr-20 {
    padding-right: 0;
  }
  .ml-20 {
    margin-left: 20px;
  }
  .default-btn {
    padding: 8px 20px;
  }
  .section-title span {
    font-size: 12px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .section-title p {
    padding-top: 10px;
  }
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .ps-0 {
    padding-left: 15px !important;
  }
  .pe-0 {
    padding-right: 15px !important;
  }
  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .container-fluid {
    width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media only screen and (min-width: 1350px) and (max-width: 1439px) {
  .container-fluid {
    width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1320px !important;
    position: absolute;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1799px) {
  .container-fluid {
    width: 1460px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1460px !important;
    position: absolute;
  }
}
@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1320px !important;
  }
}
@media only screen and (min-width: 1800px) {
  .container-fluid {
    width: 1640px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1760px !important;
    position: absolute;
  }
}
.author-profile {
    background: var(--orangeColor);
    padding: 35px 30px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 35px;
  }
  .author-profile h3 {
    color: var(--whiteColor);
    margin-bottom: 10px;
    font-size: 22px;
  }
  .author-profile img {
    border-radius: 50%;
    margin-bottom: 15px;
  }
  .author-profile p {
    margin-bottom: 17px;
    color: var(--whiteColor);
    font-weight: 600;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .author-profile .profile-social-link {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .author-profile .profile-social-link li {
    display: inline-block;
    margin-right: 5px;
  }
  .author-profile .profile-social-link li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    color: var(--orangeColor);
    background-color: var(--whiteColor);
    transition: var(--transition);
  }
  .author-profile .profile-social-link li a:hover i {
    background-color: var(--greenColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  
  .blog-article-content {
    margin-bottom: 20px;
  }
  .blog-article-content img {
    margin-bottom: 25px;
  }
  .blog-article-content .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-article-content .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-article-content .content ul li:last-child {
    margin-right: 0;
  }
  .blog-article-content .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-article-content .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-article-content .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-article-content .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-article-content .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-article-content .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-article-content .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-article-content .content h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 28px;
  }
  .blog-article-content .content p {
    margin-bottom: 15px;
  }
  .blog-article-content .content p:last-child {
    margin-bottom: 0;
  }
  .article-content-area .blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: #f3f0fb;
    padding: 20px 30px 40px;
  }
  .article-content-area .blockquote p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .article-content-area .blockquote i {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 35px;
    color: var(--orangeColor);
  }
  .blog-benefit-content {
    margin-bottom: 30px;
  }
  .blog-benefit-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .blog-benefit-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .blog-benefit-content ul li {
    display: block;
    font-size: 16px;
    padding-left: 23px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    transition: var(--transition);
  }
  .blog-benefit-content ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--orangeColor);
    border-radius: 50px;
    transition: var(--transition);
  }
  .blog-benefit-content ul li:hover {
    color: var(--greenColor);
  }
  .blog-benefit-content ul li:hover::before {
    background-color: var(--orangeColor);
    border-radius: 0;
  }
  .blog-benefit-content p {
    margin-bottom: 15px;
  }
  .article-share {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid #f2f1f1;
    border-bottom: 1px solid #f2f1f1;
  }
  .article-share .article-tag ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .article-share .article-tag ul li {
    color: var(--blueColor);
    margin-right: 5px;
    display: inline-block;
  }
  .article-share .article-tag ul li.title {
    font-weight: 500;
  }
  .article-share .article-tag ul li a {
    color: var(--bodyColor);
  }
  .article-share .article-tag ul li a:hover {
    color: var(--orangeColor);
  }
  .article-share .article-social-icon {
    float: right;
  }
  .article-share .article-social-icon .social-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .article-share .article-social-icon .social-icon li {
    font-size: 18px;
    color: var(--titleColor);
    display: inline-block;
    margin-right: 10px;
  }
  .article-share .article-social-icon .social-icon li.title {
    font-weight: 500;
  }
  .article-share .article-social-icon .social-icon li:last-child {
    margin-right: 0;
  }
  .article-share .article-social-icon .social-icon li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #e7e5e3;
    border-radius: 0;
    text-align: center;
    color: var(--orangeColor);
    font-size: 20px;
    transition: var(--transition);
  }
  .article-share .article-social-icon .social-icon li a:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  .comments-wrap .comment-title {
    margin-bottom: 30px;
  }
  .comments-wrap .comment-title .title {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--blueColor);
  }
  .comments-wrap .comment-form {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .comments-wrap .comment-form li {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
  }
  .comments-wrap .comment-form li.pl-80 {
    padding-left: 125px;
  }
  .comments-wrap .comment-form li.pl-80 img {
    left: 40px;
  }
  .comments-wrap .comment-form li img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
  }
  .comments-wrap .comment-form li h3 {
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 500;
  }
  .comments-wrap .comment-form li span {
    color: var(--orangeColor);
    font-size: 15px;
  }
  .comments-wrap .comment-form li p {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .comments-wrap .comment-form li a {
    padding: 5px 18px;
    background-color: #f3f4f5;
    color: var(--titleColor);
    border-radius: 0;
    font-size: 15px;
    display: inline-block;
  }
  .comments-wrap .comment-form li a:hover {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .comments-form {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .comments-form .contact-form {
    max-width: 100%;
  }
  .comments-form .contact-form .form-group label {
    margin-bottom: 20px;
    color: var(--blueColor);
  }
  .comments-form .title {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--blueColor);
  }
  .comments-form .default-btn {
    width: unset;
    border: none;
    box-shadow: none;
  }
  .search-widget {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    background-color: #f2f1f1;
    padding: 15px;
  }
  .search-widget .search-form {
    position: relative;
    margin: 0 auto;
    border-radius: 0;
    border: none;
    width: 100%;
    background-color: var(--whiteColor);
  }
  .search-widget .search-form .form-control {
    background-color: var(--whiteColor);
    border-radius: 0;
    border: none;
    height: 50px;
    line-height: 50px;
    margin: 0;
    border: 0;
    padding: 0 25px;
    color: var(--titleColor);
  }
  .search-widget .search-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
  }
  .search-widget .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: var(--orangeColor);
    height: 50px;
    line-height: 53px;
    font-size: 22px;
    padding: 0 15px;
    transition: var(--transition);
  }
  .search-widget .search-form button:hover {
    color: var(--whiteColor);
    background: var(--orangeColor);
  }
  .side-bar-categories {
    margin-bottom: 35px;
  }
  .side-bar-categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .side-bar-categories ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
  }
  .side-bar-categories ul li a {
    display: inline-block;
    color: var(--titleColor);
    font-weight: 400;
    padding: 15px;
    font-weight: 500;
    background-color: #f2f1f1;
    width: 100%;
    border-radius: 3px;
    position: relative;
    z-index: 1;
  }
  .side-bar-categories ul li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--orangeColor);
    transition: var(--transition);
    opacity: 0;
  }
  .side-bar-categories ul li a i {
    color: var(--orangeColor);
    float: right;
    position: relative;
    top: 3px;
  }
  .side-bar-categories ul li:hover a {
    color: var(--whiteColor);
  }
  .side-bar-categories ul li:hover a::before {
    opacity: 1;
    width: 100%;
  }
  .side-bar-categories ul li:hover a i {
    color: var(--whiteColor);
  }
  .side-bar-widget {
    margin-bottom: 35px;
    background-color: #f6f4f4;
    padding: 25px;
  }
  .side-bar-widget .title {
    font-size: 20px;
    color: var(--titleColor);
    margin-bottom: 20px;
  }
  .side-bar-widget .widget-popular-post {
    position: relative;
    overflow: hidden;
  }
  .side-bar-widget .widget-popular-post .item {
    overflow: hidden;
    margin-bottom: 12px;
        display: flex;
    flex-direction: row;
    align-items: center;
  }
  .side-bar-widget .widget-popular-post .item:last-child {
    margin-bottom: 0;
  }
  .side-bar-widget .widget-popular-post .item .thumb {
    float: left;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image {
    width: 85px;
    height: 85px;
    display: inline-block;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center !important;
    position: relative;
    background-color: var(--whiteColor);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
    background-image: url(../../images/blog/blog-img3.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
    background-image: url(../../images/blog/blog-img4.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
    background-image: url(../../images/blog/blog-img5.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg4 {
    background-image: url(../../images/blog/blog-img6.jpg);
  }
  .side-bar-widget .widget-popular-post .item .info {
    overflow: hidden;
    padding: 6px 0;
  }
  .side-bar-widget .widget-popular-post .item .info .title-text {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 17px;
    font-weight: 500;
    max-width: 245px;
  }
  .side-bar-widget .widget-popular-post .item .info .title-text a {
    display: inline-block;
    color: var(--titleColor);
  }
  .side-bar-widget .widget-popular-post .item .info .title-text a:hover {
    color: var(--orangeColor);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn {
    font-size: 14px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn:hover {
    color: var(--greenColor);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .side-bar-widget .side-bar-widget-tag {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .side-bar-widget .side-bar-widget-tag li {
    display: inline-block;
    padding: 8px 25px;
    margin: 5px;
    transition: 0.7s;
    color: var(--bodyColor);
    font-size: 14px;
    font-weight: 600;
    background-color: var(--whiteColor);
  }
  .side-bar-widget .side-bar-widget-tag li a {
    color: var(--bodyColor);
  }
  .side-bar-widget .side-bar-widget-tag li:hover {
    background-color: var(--orangeColor);
  }
  .side-bar-widget .side-bar-widget-tag li:hover a {
    color: var(--whiteColor);
  }
  @media only screen and (max-width: 767px) {
    .blog-article-content .content h3 {
      font-size: 25px;
    }
    .article-content-area .blockquote {
      padding: 20px 27px 40px;
    }
    .article-content-area .blockquote p {
      font-size: 16px;
    }
    .article-content-area .blockquote i {
      font-size: 30px;
    }
    .article-share .article-tag {
      margin-bottom: 15px;
    }
    .article-share .article-social-icon {
      float: none;
    }
    .comments-wrap .comment-form li {
      padding-left: 0;
    }
    .comments-wrap .comment-form li.pl-80 {
      padding-left: 0;
    }
    .comments-wrap .comment-form li.pl-80 img {
      left: 0;
    }
    .comments-wrap .comment-form li img {
      position: inherit;
      margin-bottom: 15px;
    }
  }
  .coming-soon-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--orangeColor);
  }
  .coming-soon-area .coming-soon-content {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 50px 30px;
    background-color: transparent;
    border: 3px solid var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content h1 {
    margin-bottom: 0;
    color: var(--whiteColor);
    font-size: 50px;
  }
  .coming-soon-area .coming-soon-content p {
    font-size: 16px;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
  }
  .coming-soon-area .coming-soon-content #timer div {
    display: inline-block;
    color: var(--whiteColor);
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 10px;
    font-size: 35px;
    font-weight: 700;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer div span {
    display: block;
    text-transform: capitalize;
    margin-top: -15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer div:last-child {
    margin-right: 0;
  }
  .coming-soon-area .coming-soon-content #timer div:last-child::before {
    display: none;
  }
  .coming-soon-area .coming-soon-content #timer div:first-child {
    margin-left: 0;
  }
  .coming-soon-area .coming-soon-content #timer div::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -10px;
    font-size: 70px;
    color: #fff;
  }
  .coming-soon-area .coming-soon-content .newsletter-form {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: var(--whiteColor);
    padding-left: 15px;
    color: var(--whiteColor);
    outline: 0;
    transition: 0.5s;
    border-radius: 0;
    border: 1px solid #ccc;
    color: #5d5d5d;
  }
  .coming-soon-area
    .coming-soon-content
    .newsletter-form
    .input-newsletter:focus {
    border-color: var(--greenColor);
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    outline: 0;
    color: #fff;
    transition: 0.5s;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn::before {
    border-radius: 0;
    background-color: var(--titleColor);
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn:hover {
    color: #fff;
    background-color: #190f3c;
  }
  .coming-soon-area #validator-newsletter {
    text-align: left;
    color: #dc3545 !important;
  }
  @media only screen and (max-width: 767px) {
    .coming-soon-area .coming-soon-content {
      padding-top: 30px;
      padding-bottom: 20px;
      padding-left: 15px;
      padding-right: 15px;
      border-radius: 0;
      animation: none;
    }
    .coming-soon-area .coming-soon-content h1 {
      font-size: 30px;
      line-height: 1.1;
      margin-top: 0;
    }
    .coming-soon-area .coming-soon-content p {
      font-size: 14px;
      margin-top: 15px;
    }
    .coming-soon-area .coming-soon-content #timer {
      margin-top: 30px;
    }
    .coming-soon-area .coming-soon-content #timer div {
      font-size: 30px;
      margin-left: 5px;
      margin-right: 5px;
      margin-bottom: 15px;
    }
    .coming-soon-area .coming-soon-content #timer div span {
      font-size: 14px;
      margin-top: -5px;
    }
    .coming-soon-area .coming-soon-content #timer div::before {
      display: none;
    }
    .coming-soon-area .coming-soon-content .newsletter-form {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
      height: 55px;
      padding-left: 13px;
      font-size: 15px;
    }
    .coming-soon-area .coming-soon-content .newsletter-form .default-btn {
      position: relative;
      font-size: 14px;
      margin-top: 15px;
      width: 100%;
      height: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .coming-soon-area .coming-soon-content {
      padding-top: 30px;
      padding-bottom: 50px;
      padding-left: 15px;
      padding-right: 15px;
      border-radius: 0;
      animation: none;
    }
    .coming-soon-area .coming-soon-content h1 {
      font-size: 45px;
      line-height: 1.1;
      margin-top: 0;
    }
    .coming-soon-area .coming-soon-content p {
      font-size: 16px;
      margin-top: 15px;
    }
  }
  .contact-map iframe {
    display: block;
    width: 100%;
    height: 550px;
    margin-bottom: 30px;
  }
  .contact-widget-form .contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contact-widget-form .contact-form .default-btn {
    width: 100%;
    text-align: center;
  }
  .contact-card {
    margin-bottom: 30px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  .contact-card i {
    width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    font-size: 26px;
    background-color: transparent;
    color: var(--orangeColor);
    border-radius: 50px;
    border: 1px solid var(--orangeColor);
    margin-bottom: 15px;
    transition: var(--transition);
  }
  .contact-card h3 {
    margin-bottom: 10px;
    transition: var(--transition);
  }
  .contact-card p {
    margin-bottom: 5px;
  }
  .contact-card p:last-child {
    margin-bottom: 0;
  }
  .contact-card p a {
    color: var(--bodyColor);
  }
  .contact-card p a:hover {
    color: var(--orangeColor);
  }
  .contact-card p:hover {
    color: var(--orangeColor);
  }
  .contact-card:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .contact-card:hover h3 {
    color: var(--orangeColor);
  }
  .user-all-form .contact-form {
    padding: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  .user-all-form .contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .user-all-form .contact-form .form-group label {
    margin-bottom: 15px;
    color: var(--titleColor);
  }
  .user-all-form .contact-form .default-btn {
    width: 100%;
    text-align: center;
    border-radius: 0;
  }
  .user-all-form .contact-form .account-desc {
    margin-top: 20px;
    font-weight: 500;
  }
  .user-all-form .contact-form .account-desc a {
    color: var(--orangeColor);
  }
  .user-all-form .contact-form .account-desc a:hover {
    color: var(--greenColor);
  }
  .user-img {
    margin-bottom: 30px;
  }
  @media only screen and (max-width: 767px) {
    .contact-card {
      padding: 30px 10px;
    }
    .contact-form .agree-label label a.forget {
      position: inherit;
      right: 0;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .contact-card {
      padding: 30px 10px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-card {
      padding: 30px 10px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-card {
      padding: 30px 10px;
    }
    .contact-card h3 {
      font-size: 19px;
    }
    .contact-card p {
      font-size: 14px;
    }
  }
  .error-area {
    padding-top: 80px;
  }
  .error-area .error-content {
    text-align: center;
    position: relative;
  }
  .error-area .error-content img {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .error-area .error-content h3 {
    margin-bottom: 20px;
    position: relative;
    color: var(--titleColor);
    font-size: 35px;
  }
  .error-area .error-content p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  @media only screen and (max-width: 767px) {
    .error-area {
      padding-top: 40px;
    }
    .error-area .error-content img {
      margin-bottom: 20px;
    }
    .error-area .error-content h3 {
      font-size: 26px;
    }
    .error-area .error-content p {
      font-size: 16px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-area {
      padding-top: 40px;
    }
    .error-area .error-content img {
      margin-bottom: 20px;
    }
    .error-area .error-content h3 {
      font-size: 26px;
    }
    .error-area .error-content p {
      font-size: 16px;
    }
  }
  .widget-popular-post img{
      max-width:100px;
      height:100%;
  }
    .widget-popular-post a{
        height:100%;
    }
  .faq-accordion {
    /*max-width: 610px;*/
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .faq-accordion .accordion .accordion-item {
    border-radius: 15px;
    display: block;
    background-color: #fff;
    margin-bottom: 15px;
    border: none;
  }
  .faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
  }
  .faq-accordion .accordion .accordion-title {
    padding: 15px 60px 12px 20px;
    color: var(--titleColor);
    background-color: #f4f3f3;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 600;
  }
  .faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    transition: 0.5s;
    font-size: 20px;
    width: 35px;
    height: 35px;
    color: var(--orangeColor);
    border-radius: 50px;
    border: none;
    text-align: center;
    line-height: 35px;
    background-color: transparent;
  }
  .faq-accordion .accordion .accordion-title.active {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .faq-accordion .accordion .accordion-title.active i {
    color: var(--whiteColor);
  }
  .faq-accordion .accordion .accordion-title.active i::before {
    content: "\eb8b";
  }
  .faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 10px;
    padding-bottom: 0;
    padding-right: 20px;
    padding-left: 20px;
  }
  .faq-accordion .accordion .accordion-content p {
    line-height: 1.8;
  }
  .faq-accordion .accordion .accordion-content.show {
    display: block;
  }
  @media only screen and (max-width: 767px) {
    .faq-accordion {
      max-width: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-accordion {
      max-width: 100%;
    }
  }
  .footer-area-bg {
    background-color: #000213;
  }
  .footer-area-bg-two {
    position: relative;
    z-index: 1;
  }
  .footer-area-bg-two::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000213;
  }
  .footer-contact {
    background-color: #03082d;
    padding: 20px 20px 20px 100px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .footer-contact .icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .footer-contact .icon i {
    width: 55px;
    height: 55px;
    line-height: 65px;
    text-align: center;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    font-size: 26px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
  }
  .footer-contact .content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .footer-contact .content h3 a {
    color: var(--whiteColor);
    margin-bottom: 0;
    transition: var(--transition);
  }
  .footer-contact .content p {
    color: var(--whiteColor);
    margin: 0;
  }
  .footer-contact .right {
    font-size: 50px;
    color: #181c3c;
    position: absolute;
    z-index: -1;
    top: 17px;
    right: 20px;
  }
  .footer-contact:hover .icon i {
    background-color: var(--greenColor);
    border-radius: 50px;
  }
  .footer-contact:hover .content h3 a {
    color: var(--orangeColor);
  }
  .footer-widget {
    margin-bottom: 30px;
  }
  .footer-widget .footer-logo {
    margin-bottom: 20px;
    position: relative;
    top: -5px;
  }
  .footer-widget h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--whiteColor);
    line-height: 1.2;
  }
  .footer-widget h3.title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .footer-widget p {
    margin-bottom: 25px;
    color: var(--whiteColor);
  }
  .footer-widget .social-link {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .footer-widget .social-link li {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-widget .social-link li:last-child {
    margin-right: 0;
  }
  .footer-widget .social-link li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #e7e5e3;
    border-radius: 0;
    text-align: center;
    color: var(--orangeColor);
    font-size: 24px;
    transition: var(--transition);
  }
  .footer-widget .social-link li a:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  .footer-widget .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-widget .footer-list li {
    display: block;
    margin-bottom: 15px;
  }
  .footer-widget .footer-list li:last-child {
    margin-bottom: 0;
  }
  .footer-widget .footer-list li a {
    color: var(--whiteColor);
  }
  .footer-widget .footer-list li a:hover {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
  }
  .footer-widget .footer-list li:hover a {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
  }
  .newsletter-area .newsletter-form {
    position: relative;
  }
  .newsletter-area .newsletter-form .form-control {
    background: #0e1125;
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    margin: 0;
    border-radius: 5px;
    border: none;
    padding: 0 25px;
    max-width: 100%;
    color: var(--whiteColor);
  }
  .newsletter-area .newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
  }
  .newsletter-area .newsletter-form .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    padding: 11px 16px;
    font-size: 24px;
    border: 0;
    transition: var(--transition);
    border-radius: 0 5px 5px 0;
    text-align: center;
  }
  .newsletter-area .newsletter-form .subscribe-btn:hover {
    background-color: var(--greenColor);
  }
  .newsletter-area .newsletter-form .validation-danger {
    font-size: 18px;
    margin-top: 5px;
    color: red;
  }
  .footer-top-two {
    background-color: #f5f4f4;
    padding: 50px;
    border-radius: 30px;
  }
  .footer-contact-two {
    background-color: var(--whiteColor);
    padding: 20px 20px 20px 90px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
  }
  .footer-contact-two .icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .footer-contact-two .icon i {
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    font-size: 24px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
  }
  .footer-contact-two .content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .footer-contact-two .content h3 a {
    color: var(--titleColor);
    margin-bottom: 0;
    transition: var(--transition);
  }
  .footer-contact-two .content p {
    color: var(--bodyColor);
    margin: 0;
  }
  .footer-contact-two .right {
    font-size: 50px;
    color: #f0f0f0;
    position: absolute;
    z-index: -1;
    top: 17px;
    right: 20px;
  }
  .footer-contact-two:hover .icon i {
    background-color: var(--greenColor);
    border-radius: 50px;
  }
  .footer-contact-two:hover .content h3 a {
    color: var(--orangeColor);
  }
  .copyright-area {
    border-top: 1px solid #1f1747;
    padding: 15px 0;
  }
  .copy-right-text p {
    color: var(--whiteColor);
    margin-bottom: 0;
  }
  .copy-right-text p a {
    color: var(--orangeColor);
  }
  .copy-right-text p a:hover {
    color: var(--greenColor);
  }
  @media only screen and (max-width: 767px) {
    .footer-top-two {
      padding: 30px 10px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      margin-bottom: 20px;
    }
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-widget h3 {
      margin-bottom: 15px;
    }
    .footer-widget p {
      margin-bottom: 15px;
    }
    .footer-widget .footer-list li {
      margin-bottom: 10px;
    }
    .footer-widget .social-link li a i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 20px;
    }
    .newsletter-area .newsletter-form {
      position: relative;
    }
    .newsletter-area .newsletter-form .form-control {
      height: 50px;
      line-height: 50px;
    }
    .newsletter-area .newsletter-form .subscribe-btn {
      padding: 9px 16px;
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-top-two {
      padding: 30px 10px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      margin-bottom: 20px;
    }
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-widget h3 {
      margin-bottom: 15px;
    }
    .footer-widget p {
      margin-bottom: 15px;
    }
    .footer-widget .footer-list li {
      margin-bottom: 10px;
    }
    .footer-widget .social-link li a i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 20px;
    }
    .newsletter-area .newsletter-form {
      position: relative;
    }
    .newsletter-area .newsletter-form .form-control {
      height: 50px;
      line-height: 50px;
    }
    .newsletter-area .newsletter-form .subscribe-btn {
      padding: 9px 16px;
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-top-two {
      padding: 30px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
  }
  @media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .footer-contact {
      padding: 15px 15px 18px 85px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 15px;
      left: 15px;
    }
    .footer-contact .content {
      margin-top: 5px;
    }
    .footer-contact .content h3 {
      font-size: 17px;
    }
    .footer-contact .content p {
      font-size: 14px;
    }
    .footer-top-two {
      padding: 30px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      padding: 15px 15px 18px 85px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 15px;
      left: 15px;
    }
    .footer-contact-two .content {
      margin-top: 5px;
    }
    .footer-contact-two .content h3 {
      font-size: 17px;
    }
    .footer-contact-two .content p {
      font-size: 14px;
    }
  }
  .top-header {
    padding: 10px 0;
  }
  .top-header-bg {
    background-color: #f0eeee;
  }
  .header-left {
    float: left;
  }
  .header-left ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .header-left ul li {
    display: inline-block;
    text-align: left;
    position: relative;
    padding-left: 25px;
    margin-right: 25px;
    font-weight: 400;
    font-size: 15px;
  }
  .header-left ul li:last-child {
    margin-right: 0;
  }
  .header-left ul li i {
    color: var(--orangeColor);
    font-size: 17px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 55%;
    transition: 0.5s;
    transform: translateY(-50%);
    line-height: 1;
  }
  .header-left ul li a {
    color: var(--titleColor);
  }
  .header-left ul li:hover i {
    color: var(--greenColor);
  }
  .header-left ul li:hover a {
    color: var(--titleColor);
  }
  .header-left-color ul li a {
    color: var(--whiteColor);
  }
  .header-left-color ul li:hover a {
    color: var(--orangeColor);
  }
  .header-right {
    float: right;
  }
  .header-right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .header-right ul li {
    display: inline-block;
    margin-right: 10px;
  }
  .header-right ul li:last-child {
    margin-right: 0;
  }
  .header-right ul li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--whiteColor);
    border-radius: 50px;
    text-align: center;
    color: var(--orangeColor);
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.3);
  }
  .header-right ul li a:hover i {
    color: var(--whiteColor);
    background-color: var(--orangeColor);
  }
  .banner-area {
    background-color: #f9f7f7;
    padding: 70px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-area::before {
    content: "";
    left: 0;
    position: absolute;
    background-color: var(--whiteColor);
    height: 20%;
    bottom: -60px;
    transform: skewY(175deg);
    width: 100%;
    z-index: 1;
  }
  .banner-content {
    max-width: 620px;
  }
  .banner-content h1 {
    font-size: 56px;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.2;
  }
  .banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .banner-content .banner-btn .two {
    margin-left: 20px;
  }
  .banner-img {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 auto;
  }
  .banner-img .banner-img-box img {
    border-radius: 50%;
    border: 15px solid var(--whiteColor);
  }
  .banner-img .circle1 {
    position: absolute;
    z-index: -1;
    top: 120px;
    right: -135px;
    height: 52%;
    width: 100%;
    border-radius: 400px 400px 0 0;
    background-color: var(--orangeColor);
    transform: rotate(100deg);
  }
  .banner-img .circle2 {
    position: absolute;
    z-index: -1;
    bottom: 120px;
    left: -135px;
    height: 52%;
    width: 100%;
    border-radius: 0 0 400px 400px;
    background-color: var(--orangeColor);
    transform: rotate(100deg);
  }
  .banner-img .banner-img-shape img:nth-child(1) {
    position: absolute;
    z-index: -1;
    bottom: 60px;
    right: 0;
    max-width: 400px;
  }
  .banner-img .banner-img-shape img:nth-child(2) {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 20px;
    animation: animationFramesOne 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(3) {
    position: absolute;
    z-index: -1;
    top: 25%;
    left: -80px;
    animation: animationFramesOne 15s linear infinite;
  }
  .banner-img .banner-img-shape img:nth-child(4) {
    position: absolute;
    z-index: -1;
    top: 60%;
    left: -80px;
    animation: rotated360 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(5) {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 110px;
    animation: rotated360 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(6) {
    position: absolute;
    z-index: -1;
    top: 15%;
    right: 5px;
    animation: sk-bounce 6s infinite linear;
  }
  .banner-shape {
    position: absolute;
    z-index: -1;
    top: -40px;
    left: -5px;
  }
  .banner-shape img {
    max-width: 140px;
  }
  .about-area {
    margin-bottom: 80px;
    margin-top: 50px;
  }
  .about-img {
    position: relative;
    z-index: 1;
  }

  .about-img::before {
    content: "";
    left: 0;
    position: absolute;
    background-color: var(--whiteColor);
    height: 10%;
    bottom: -30px;
    transform: skewY(175deg);
    width: 100%;
    z-index: 1;
  }
  .about-img .line {
    position: absolute;
    z-index: -1;
    top: 60px;
    left: -30px;
  }
  .about-content {
    max-width: 610px;
  }
  .about-content .section-title {
    margin-bottom: 20px;
  }
  .about-content .about-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .about-content .about-list li {
    display: block;
    font-size: 18px;
    color: var(--titleColor);
    margin-bottom: 10px;
    font-weight: 500;
    transition: var(--transition);
  }
  .about-content .about-list li i {
    color: var(--orangeColor);
    margin-right: 5px;
    position: relative;
    top: 3px;
    transition: var(--transition);
  }
  .about-content .about-list li:hover {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
    margin-left: 2px;
  }
  .about-content .about-list li:hover i {
    color: var(--titleColor);
  }
  .about-content .default-btn {
    margin-top: 15px;
  }
  .choose-area {
    margin-bottom: 40px;
  }
  .choose-area .section-title {
    margin-bottom: 40px;
  }
  .choose-leftside {
    max-width: 750px;
    position: relative;
    z-index: 1;
  }
  .choose-card {
    margin-bottom: 40px;
    padding: 74px 30px 65px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    margin-right: 10px;
  }
  .choose-card::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: #fbf9f9;
    height: 100%;
    width: 100%;
    transform: skewY(165deg);
    z-index: -1;
    border-radius: 5px;
  }
  .choose-card::after {
    content: "";
    bottom: -20px;
    right: -20px;
    position: absolute;
    background-color: transparent;
    height: 100%;
    width: 100%;
    transform: skewY(165deg);
    z-index: -2;
    border: 2px solid var(--greenColor);
    opacity: 0;
    transition: var(--transition);
  }
  .choose-card h3 {
    margin-bottom: 15px;
  }
  .choose-card p {
    margin-bottom: 0;
  }
  .choose-card i {
    font-size: 50px;
    position: absolute;
    top: 52px;
    right: 20px;
    color: var(--orangeColor);
    line-height: 1;
  }
  .choose-card .circle {
    position: absolute;
    z-index: -1;
    top: -30px;
    right: -15px;
    height: 50px;
    width: 80px;
    border-radius: 0 0 150px 150px;
    background-color: var(--orangeColor);
    transform: rotate(89deg);
  }
  .choose-card:hover::after {
    opacity: 1;
  }
  .choose-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
  }
  .work-area {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    margin-bottom: 100px;
  }
  .work-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .work-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-color: var(--greenColor);
    opacity: 0.9;
  }
  .work-content .section-title {
    margin-bottom: 30px;
  }
  .work-content .content {
    padding-left: 55px;
    position: relative;
    margin-bottom: 20px;
  }
  .work-content .content .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    color: var(--whiteColor);
    background-color: var(--orangeColor);
    text-align: center;
    transition: var(--transition);
  }
  .work-content .content h3 {
    margin-bottom: 10px;
  }
  .work-content .content h3 a {
    color: var(--titleColor);
    display: block;
    transition: var(--transition);
  }
  .work-content .content p {
    margin-bottom: 0;
    max-width: 530px;
  }
  .work-content .content:hover .number {
    background-color: var(--greenColor);
    animation: bounce 1s;
  }
  .work-content .content:hover h3 a {
    color: var(--orangeColor);
  }
  .work-img {
    position: relative;
    z-index: 1;
    margin-right: 140px;
  }
  .work-img img:nth-child(2) {
    display: none;
  }
  .work-img .line {
    position: absolute;
    z-index: -1;
    top: 60px;
    right: -100px;
  }
  .work-area-mt {
    margin-top: 100px;
  }
  .testimonial-area {
    position: relative;
    z-index: 1;
  }
  .testimonial-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .testimonial-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: #fdfcfb;
    opacity: 0.9;
  }
  .testimonial-slider {
    position: relative;
  }
  .testimonial-slider .owl-nav {
    margin-top: 0;
  }
  .testimonial-slider .owl-nav .owl-prev {
    position: absolute;
    top: -60px;
    right: 60px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .testimonial-slider .owl-nav .owl-prev i {
    position: relative;
    top: 2px;
    right: 3px;
  }
  .testimonial-slider .owl-nav .owl-prev:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .testimonial-slider .owl-nav .owl-next {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .testimonial-slider .owl-nav .owl-next i {
    position: relative;
    top: 3px;
    left: 3px;
  }
  .testimonial-slider .owl-nav .owl-next:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .testimonial-slider .testimonial-item {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .testimonial-item {
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    position: relative;
    margin-bottom: 30px;
  }
  .testimonial-item .content {
    padding-left: 80px;
    position: relative;
    margin-bottom: 23px;
  }
  .testimonial-item .content img {
    position: absolute;
    top: -3px;
    left: 0;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
  }
  .testimonial-item .content h3 {
    margin-bottom: 0;
    font-size: 18px;
  }
  .testimonial-item .content span {
    color: var(--orangeColor);
    font-size: 15px;
  }
  .testimonial-item p {
    margin-bottom: 15px;
  }
  .testimonial-item .rating {
    font-size: 18px;
    color: var(--greenColor);
  }
  .testimonial-item .rating i {
    display: inline-block;
  }
  .testimonial-item .quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 45px;
    color: #d4d3d3;
  }
  .blog-card {
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: var(--transition);
  }
  .blog-card a {
    display: block;
  }
  .blog-card .content {
    padding: 20px 0 10px;
  }
  .blog-card .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-card .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-card .content ul li:last-child {
    margin-right: 0;
  }
  .blog-card .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-card .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-card .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-card .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-card .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-card .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-card .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-card .content h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .blog-card .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .blog-card .content p {
    margin-bottom: 10px;
    display: block;
  }
  .blog-card .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-card .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-card:hover {
    transform: translate(-10px);
  }
  .blog-card:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-card:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-card:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .blog-left-content {
    margin-bottom: 40px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 17px 17px 17px 190px;
    transition: var(--transition);
    position: relative;
  }
  .blog-left-content .blog-left-img {
    position: absolute;
    top: 17px;
    left: 17px;
  }
  .blog-left-content .blog-left-img a {
    display: block;
  }
  .blog-left-content .blog-left-img a img {
    max-width: 150px;
  }
  .blog-left-content .content {
    vertical-align: middle;
    margin: 7px 0;
  }
  .blog-left-content .content ul {
    list-style-type: none;
    margin: 0 0 8px;
    padding: 0;
  }
  .blog-left-content .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-left-content .content ul li:last-child {
    margin-right: 0;
  }
  .blog-left-content .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-left-content .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-left-content .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-left-content .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-left-content .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-left-content .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-left-content .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-left-content .content h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }
  .blog-left-content .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .blog-left-content .content p {
    margin-bottom: 8px;
    display: block;
  }
  .blog-left-content .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-left-content .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-left-content:hover {
    transform: translateX(10px);
  }
  .blog-left-content:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-left-content:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-left-content:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .blog-card-two {
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }
  .blog-card-two a {
    display: block;
  }
  .blog-card-two .content {
    padding: 30px 20px;
  }
  .blog-card-two .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-card-two .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-card-two .content ul li:last-child {
    margin-right: 0;
  }
  .blog-card-two .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-card-two .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-card-two .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-card-two .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-card-two .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-card-two .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-card-two .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-card-two .content h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .blog-card-two .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .blog-card-two .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-card-two .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-card-two:hover {
    transform: translateY(-10px);
  }
  .blog-card-two:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-card-two:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-card-two:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .services-area-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url(../../images/services/service-bg.jpg);
  }
  .services-area-bg::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #fdfcfb;
    opacity: 0.9;
  }
  #sidebar {
    height: 0;
    position: fixed;
    padding: 0;
    margin-right: 0;
    top: 38%;
    right: -8px;
    bottom: 0;
    z-index: 999;
    transform: translateY(-50%);
}
.social {
  margin-bottom: 1px;
  padding: 0 15px 0 0;
  display: inline-block;
  height: auto;
  -moz-transition-property: right;
  -moz-transition-duration: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: right;
  -ms-transition-duration: 0.2s;
  -ms-transition-delay: 0.2s;
  cursor: pointer;
  background: #f85f0a;
  width: 100%;
  position: relative;
  right: -104px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.social i {
  padding: 10px;
  width: 48px;
  height: 48px;
  color: #fff;
  line-height: 28px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.social p i {
  right: 30px;
  vertical-align: middle;
  font-size: 20px;
  float: left;
  margin-right: 0px;
}
.social:hover {
  right: -30px;
  background: #54d851;
  color: #d5812a;
}
.social p {
  color: #fff;
  /* margin-bottom: 0; */
  font-size: 14px;
  line-height: 48px;
  opacity: 1;
  margin-bottom: 0;
}
  .services-area .service-btn {
    float: right;
  }
  .services-slider {
    position: relative;
  }
  .services-slider .owl-nav {
    margin-top: 0;
  }
  .services-slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .services-slider .owl-nav .owl-prev i {
    position: relative;
    top: 2px;
  }
  .services-slider .owl-nav .owl-prev:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .services-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .services-slider .owl-nav .owl-next i {
    position: relative;
    top: 3px;
  }
  .services-slider .owl-nav .owl-next:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .services-slider .services-item {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .services-item {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }
  .services-item .content {
    padding: 35px 40px;
    background-color: var(--whiteColor);
    position: relative;
    z-index: 1;
    border-radius: 10px;
  }
  .services-item .content .service-icon {
    font-size: 55px;
    color: var(--orangeColor);
    line-height: 1;
    margin-bottom: 10px;
  }
  .services-item .content h3 {
    margin-bottom: 15px;
  }
  .services-item .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .services-item .content p {
    margin-bottom: 20px;
    max-width: 340px;
  }
  .services-item .content .read-btn {
    padding: 10px 30px;
    color: var(--orangeColor);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    background-color: #f0eeee;
    border: none;
    outline: none;
  }
  .services-item .content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--orangeColor);
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
  }
  .services-item .content .read-btn:hover {
    color: var(--whiteColor);
  }
  .services-item .content .read-btn:hover::before {
    width: 100%;
    opacity: 1;
  }
  .services-item .content .top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .services-bg1::before {
    background-image: url(../../images/services/service-img1.jpg);
  }
  .services-bg2::before {
    background-image: url(../../images/services/services-large1.jpg);
  }
  .services-bg3::before {
    background-image: url(../../images/services/services-large2.jpg);
  }
  .services-bg4::before {
    background-image: url(../../images/services/services-large3.jpg);
  }
  @media only screen and (max-width: 767px) {
    .header-left {
      float: none;
      text-align: center;
    }
    .header-left ul li {
      text-align: center;
      margin: 0 5px;
      font-size: 14px;
    }
    .header-left ul li:last-child {
      margin-right: 5px;
    }
    .header-left ul li i {
      font-size: 16px;
    }
    .header-left-color ul li a {
      color: var(--bodyColor);
    }
    .header-right {
      margin-top: 5px;
      margin-bottom: 5px;
      float: none;
      text-align: center;
    }
    .header-right ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }
    .header-right ul li {
      display: inline-block;
      margin: 0 5px;
    }
    .header-right ul li:last-child {
      margin-right: 5px;
    }
    .banner-area {
      padding: 50px 0;
    }
    .banner-area::before {
      display: none;
    }
    .banner-content {
      margin-bottom: 30px;
      margin-left: auto;
      margin-right: auto;
    }
    .banner-content h1 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-content .banner-btn .two {
      margin-left: 20px;
    }
    .banner-img .banner-img-box img {
      border-radius: 50%;
      border: 15px solid var(--whiteColor);
    }
    .banner-img .circle1 {
      display: none;
    }
    .banner-img .circle2 {
      display: none;
    }
    .banner-img .banner-img-shape {
      display: none;
    }
    .banner-shape {
      display: none;
    }
    .banner-content-two .social-link li {
      margin-right: 10px;
    }
    .about-area {
      margin-bottom: 0;
      padding-top: 50px;
      padding-bottom: 45px;
    }
    .about-img {
      margin-bottom: 30px;
    }
    .about-img::after {
      display: none;
    }
    .about-img::before {
      display: none;
    }
    .about-img .line {
      display: none;
    }
    .about-content .section-title {
      margin-bottom: 15px;
    }
    .about-content .about-list li {
      font-size: 16px;
    }
    .about-content .default-btn {
      margin-top: 5px;
    }
    .about-area {
      margin-top: 0;
    }
    .services-area .section-title {
      max-width: 100%;
      margin-bottom: 15px;
    }
    .services-area .service-btn {
      float: none;
      margin-bottom: 0;
    }
    .services-slider {
      margin-bottom: 30px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: 0;
      position: inherit;
      top: 0;
      transform: translateY(0);
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .services-slider .owl-nav .owl-prev:hover {
      background-color: var(--greenColor) !important;
    }
    .services-slider .owl-nav .owl-next {
      right: 0;
      position: inherit;
      top: 0;
      transform: translateY(0);
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .services-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .services-slider .owl-nav .owl-prev,
    .services-slider .owl-nav .owl-next {
      width: 30px !important;
      height: 30px !important;
      line-height: 30px !important;
      font-size: 12px !important;
    }
    .services-slider .owl-nav .owl-prev i,
    .services-slider .owl-nav .owl-next i {
      left: 0;
      right: 0;
    }
    .services-slider .services-item {
      margin-top: 30px;
    }
    .services-item {
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 20px;
    }
    .services-item .content p {
      max-width: 100%;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-area {
      margin-bottom: 0;
    }
    .choose-area .section-title {
      margin-bottom: 0;
    }
    .choose-img {
      margin-bottom: 30px;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 20px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 18px;
      padding-right: 50px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 40px;
      position: absolute;
      top: 24px;
      right: 20px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .choose-bg {
      display: none;
    }
    .choose-leftside {
      margin: 0 auto;
    }
    .work-area {
      position: relative;
      z-index: 1;
      padding: 0 0 50px;
      margin-bottom: 0;
    }
    .work-area::before {
      display: none;
    }
    .work-area::after {
      display: none;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 0;
    }
    .work-img img:nth-child(1) {
      display: none;
    }
    .work-img img:nth-child(2) {
      display: block;
    }
    .work-img .line {
      display: none;
    }
    .work-area-mt {
      margin-top: 50px;
    }
    .testimonial-area::before {
      width: 100%;
    }
    .testimonial-area::after {
      width: 100%;
    }
    .testimonial-slider {
      margin-bottom: 30px;
    }
    .testimonial-slider .owl-nav {
      margin-top: 0;
    }
    .testimonial-slider .owl-nav .owl-prev,
    .testimonial-slider .owl-nav .owl-next {
      position: inherit;
      top: 0;
      right: 0;
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .testimonial-slider .owl-nav .owl-prev:hover,
    .testimonial-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .testimonial-slider .owl-nav .owl-next {
      position: inherit;
      top: 0;
      right: 0;
      color: var(--whiteColor) !important;
      background-color: var(--orangeColor) !important;
    }
    .testimonial-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .testimonial-slider .owl-nav .owl-prev,
    .testimonial-slider .owl-nav .owl-next {
      width: 30px !important;
      height: 30px !important;
      line-height: 30px !important;
      font-size: 12px !important;
    }
    .testimonial-slider .owl-nav .owl-prev i,
    .testimonial-slider .owl-nav .owl-next i {
      left: 0;
      right: 0;
    }
    .testimonial-slider .testimonial-item {
      margin-top: 30px;
    }
    .testimonial-item {
      padding: 20px 10px 12px;
    }
    .testimonial-item .content {
      padding-left: 70px;
    }
    .testimonial-item .content h3 {
      font-size: 17px;
    }
    .testimonial-item .quote {
      display: none;
    }
    .testimonial-item p {
      margin-bottom: 7px;
    }
    .blog-area-mt-10 {
      margin-top: -10px;
    }
    .blog-card .content {
      padding: 20px 0 10px;
    }
    .blog-card .content ul li {
      margin-right: 5px;
    }
    .blog-card .content ul li:last-child {
      margin-right: 0;
    }
    .blog-card .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
    .blog-left-content {
      margin-bottom: 30px;
      padding: 20px;
    }
    .blog-left-content .blog-left-img {
      position: inherit;
      top: 0;
      left: 0;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 100%;
      margin-bottom: 15px;
      width: 100%;
    }
    .blog-left-content .content {
      margin: 0;
    }
    .blog-left-content .content ul {
      list-style-type: none;
      margin: 0 0 8px;
      padding: 0;
    }
    .blog-left-content .content ul li {
      margin-right: 5px;
    }
    .blog-left-content .content ul li:last-child {
      margin-right: 0;
    }
    .blog-left-content .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .choose-area .container-fluid {
      width: 540px;
    }
    .choose-card {
      padding: 25px 13px;
    }
    .choose-card i {
      right: 13px;
    }
    .choose-card h3 {
      font-size: 19px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-left-color ul li a {
      color: var(--bodyColor);
    }
    .banner-area {
      padding: 70px 0;
    }
    .banner-area::before {
      display: none;
    }
    .banner-content {
      margin-bottom: 30px;
    }
    .banner-content h1 {
      font-size: 35px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-content .banner-btn .two {
      margin-left: 20px;
    }
    .banner-img .banner-img-box img {
      border-radius: 50%;
      border: 15px solid var(--whiteColor);
    }
    .banner-img .circle1 {
      display: none;
    }
    .banner-img .circle2 {
      display: none;
    }
    .banner-img .banner-img-shape {
      display: none;
    }
    .banner-shape {
      display: none;
    }
    .about-area {
      margin-bottom: 0;
      padding-top: 50px;
      padding-bottom: 45px;
    }
    .about-img {
      margin-bottom: 30px;
    }
    .about-img::after {
      display: none;
    }
    .about-img::before {
      display: none;
    }
    .about-img .line {
      display: none;
    }
    .about-content .section-title {
      margin-bottom: 15px;
    }
    .about-content .about-list li {
      font-size: 16px;
    }
    .about-content .default-btn {
      margin-top: 5px;
    }
    .services-item {
      margin-top: 30px;
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 30px 20px;
    }
    .services-item .content p {
      max-width: 100%;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover .content h3 a {
      color: var(--orangeColor);
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-area .container-fluid {
      width: 720px;
    }
    .choose-area {
      margin-bottom: 0;
    }
    .choose-area .section-title {
      margin-bottom: 0;
    }
    .choose-img {
      margin-bottom: 30px;
      text-align: center;
    }
    .choose-img img {
      text-align: center;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 20px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 35px;
      position: absolute;
      top: 24px;
      right: 20px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .choose-bg {
      display: none;
    }
    .choose-leftside {
      margin: 0 auto;
    }
    .work-area {
      position: relative;
      z-index: 1;
      padding: 0 0 50px;
      margin-bottom: 0;
    }
    .work-area::before {
      display: none;
    }
    .work-area::after {
      display: none;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 0;
    }
    .work-img img:nth-child(1) {
      display: none;
    }
    .work-img img:nth-child(2) {
      display: block;
    }
    .work-img .line {
      display: none;
    }
    .work-area-mt {
      margin-top: 50px;
    }
    .blog-card-two .content ul li {
      margin-right: 5px;
    }
    .blog-card-two .content ul li i {
      margin-right: 3px;
    }
    .blog-card-two .content h3 {
      font-size: 20px;
    }
    .blog-area-mt-10 {
      margin-top: -10px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner-content {
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }
    .banner-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-img {
      max-width: 420px;
    }
    .banner-img .circle1 {
      height: 47%;
      top: 101px;
      right: -115px;
    }
    .banner-img .circle2 {
      height: 47%;
      bottom: 100px;
      left: -115px;
    }
    .banner-shape img {
      max-width: 105px;
    }
    .about-area {
      margin-top: 40px;
      margin-bottom: 60px;
    }
    .about-img .line img {
      height: 450px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -20px;
    }
    .services-slider .owl-nav .owl-next {
      right: -20px;
    }
    .services-item {
      margin-top: 30px;
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 30px 45px;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover .content h3 a {
      color: var(--orangeColor);
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 15px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 17px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 35px;
      position: absolute;
      top: 24px;
      right: 15px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 50px;
    }
    .work-img .line {
      top: 15px;
      right: -50px;
    }
    .work-img .line img {
      height: 450px;
    }
    .testimonial-item .quote {
      display: none;
    }
    .blog-left-content {
      margin-bottom: 30px;
      padding: 10px 10px 10px 125px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 100px;
    }
    .blog-left-content .content {
      margin: 0;
    }
    .blog-left-content .content ul {
      list-style-type: none;
      margin: 0 0 8px;
      padding: 0;
    }
    .blog-left-content .content ul li {
      margin-right: 5px;
    }
    .blog-left-content .content ul li:last-child {
      margin-right: 0;
    }
    .blog-left-content .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
    .blog-left-content .content h3 {
      font-size: 18px;
    }
    .blog-card-two .content {
      padding: 25px 15px;
    }
    .blog-card-two .content ul li {
      margin-right: 12px;
    }
    .blog-card-two .content h3 {
      font-size: 19px;
    }
  }
  @media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .banner-content {
      margin-bottom: 30px;
    }
    .banner-content h1 {
      font-size: 45px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 15px;
      margin-bottom: 15px;
    }
    .banner-img .circle1 {
      height: 50%;
    }
    .banner-img .circle2 {
      height: 50%;
    }
    .about-area {
      margin-top: 40px;
      margin-bottom: 60px;
    }
    .about-img .line img {
      height: 570px;
    }
    .services-item .content {
      padding: 35px 30px;
    }
    .services-item .content .top img {
      max-width: 85px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -20px;
    }
    .services-slider .owl-nav .owl-next {
      right: -20px;
    }
    .choose-card h3 {
      font-size: 17px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 50px;
    }
    .work-img .line {
      top: 15px;
      right: -50px;
    }
    .work-img .line img {
      height: 570px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
    }
    .blog-left-content {
      padding: 10px 10px 10px 140px;
      margin-bottom: 32px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
    }
    .blog-left-content .blog-left-img a {
      display: block;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 120px;
    }
    .blog-left-content .content {
      vertical-align: middle;
      margin: 0;
    }
    .blog-left-content .content ul li {
      font-size: 13px;
    }
    .blog-left-content .content h3 {
      font-size: 18px;
    }
    .blog-left-content .content p {
      font-size: 15px;
    }
    .blog-left-content .content .read-btn {
      font-size: 14px;
    }
    .blog-card .content ul li {
      font-size: 13px;
    }
    .blog-card .content h3 {
      font-size: 20px;
    }
    .blog-card .content .read-btn {
      font-size: 14px;
    }
  }
  @media only screen and (min-width: 1300px) and (max-width: 1350px) {
    .container-fluid {
      width: 1280px;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .about-img {
      margin-left: 30px;
    }
    .about-img::before {
      width: 102%;
    }
    .about-img::after {
      width: 102%;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -10px;
    }
    .services-slider .owl-nav .owl-next {
      right: -10px;
    }
    .services-item .content .top img {
      max-width: 85px;
    }
    .blog-left-content {
      padding: 17px 17px 17px 185px;
    }
  }
  @media only screen and (min-width: 1800px) {
    .banner-area {
      padding: 100px 0;
    }
    .banner-area::before {
      bottom: -110px;
    }
    .banner-img {
      max-width: 700px;
    }
    .banner-img .circle1 {
      top: 125px;
      height: 60%;
    }
    .banner-img .circle2 {
      bottom: 125px;
      height: 60%;
    }
    .banner-img .banner-img-shape img:nth-child(1) {
      bottom: 0;
    }
    .choose-area .container-fluid {
      width: 1440px;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
  .top-header-bg-three {
  position: relative;
  z-index: 2;
  background-color: transparent;
}
.banner-area-three {
  position: relative;
  z-index: 1;
  margin-top: -125px;
  background-image: url(../../images/home-three/home-three-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 125px 0 0;
}
.banner-area-three::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--whiteColor);
  opacity: 0.9;
}
.banner-img-three img {
  border-bottom-left-radius: 80%;
}
.why-card {
  margin-top: 50px;
  margin-bottom: 90px;
  padding: 74px 30px 65px;
  position: relative;
  z-index: 1;
  background-color: transparent;
  margin-right: 10px;
}
.why-card::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #fbf9f9;
  height: 100%;
  width: 100%;
  transform: skewY(165deg);
  z-index: -1;
  border-radius: 5px;
}
.why-card::after {
  content: "";
  bottom: -20px;
  right: -20px;
  position: absolute;
  background-color: transparent;
  height: 100%;
  width: 100%;
  transform: skewY(165deg);
  z-index: -2;
  border: 2px solid var(--greenColor);
  opacity: 0;
  transition: var(--transition);
}
.why-card h3 {
  margin-bottom: 15px;
  padding-right: 50px;
}
.why-card p {
  margin-bottom: 0;
}
.why-card i {
  font-size: 50px;
  position: absolute;
  top: 50px;
  right: 20px;
  color: var(--orangeColor);
}
.why-card .circle {
  position: absolute;
  z-index: -1;
  top: -35px;
  right: -15px;
  height: 50px;
  width: 80px;
  border-radius: 0 0 150px 150px;
  background-color: var(--orangeColor);
  transform: rotate(89deg);
}
.why-card:hover::after {
  opacity: 1;
}
.work-area-two {
  position: relative;
  z-index: 1;
  background-image: url(../../images/work-img/work-img2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.work-area-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--whiteColor);
  opacity: 0.9;
}
.work-img-three {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.work-img-three .line {
  position: absolute;
  z-index: -1;
  top: 30px;
  left: -30px;
}
.services-area-two .section-title h2 {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.services-tab .tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.services-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 25px;
  margin-top: 30px;
}
.services-tab .tabs li a {
  display: inline-block;
  position: relative;
  color: var(--blueColor);
  padding: 15px 30px;
  background-color: #f0eeee;
  border-radius: 5px;
}
.services-tab .tabs li.active a {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
}
.services-tab .tabs li.current a {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
}
.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}
.services-tab-img a {
  display: block;
}
.services-tab-img a img {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.services-tab-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}
.services-tab-content p {
  margin-bottom: 20px;
}
.services-tab-content .services-tab-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.services-tab-content .services-tab-list li {
  display: block;
  font-size: 18px;
  color: var(--titleColor);
  margin-bottom: 10px;
  font-weight: 500;
  transition: var(--transition);
}
.services-tab-content .services-tab-list li i {
  color: var(--orangeColor);
  margin-right: 5px;
  position: relative;
  top: 3px;
  transition: var(--transition);
}
.services-tab-content .services-tab-list li:hover {
  color: var(--orangeColor);
  letter-spacing: 0.25px;
  margin-left: 2px;
}
.services-tab-content .services-tab-list li:hover i {
  color: var(--titleColor);
}
.services-tab-content .default-btn {
  margin-top: 15px;
}
.services-tab-img {
  margin-bottom: 30px;
}
.choose-area-two {
  background-color: #f9f7f7;
}
.choose-content-left .section-title {
  margin-bottom: 30px;
}

.choose-content-left .choose-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.choose-content-left .choose-item p {
  margin-bottom: 0;
 
}

.choose-img-three {
  position: relative;
  z-index: 1;
  margin-right: 30px;
  margin-bottom: 30px;
}
.choose-img-three::before {
  content: "";
  right: 0;
  position: absolute;
  background-color: #f9f7f7;
  height: 10%;
  top: -30px;
  transform: skewY(-175deg);
  width: 100%;
  z-index: 1;
}
.choose-img-three::after {
  content: "";
  right: 0;
  position: absolute;
  background-color: #f9f7f7;
  height: 10%;
  bottom: -30px;
  transform: skewY(175deg);
  width: 100%;
  z-index: 1;
}
.choose-img-three .line {
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -30px;
}
.choose-img-three .line img {
  height: 500px;
}
.project-slider {
  position: relative;
}
.project-slider .owl-nav {
  margin-top: 0;
}
.project-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  font-size: 17px !important;
  transition: 0.7s;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  border-radius: 0 !important;
  background-color: #f0efef !important;
  color: var(--titleColor) !important;
  transition: var(--transition);
}
.project-slider .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}
.project-slider .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--orangeColor) !important;
}
.project-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  font-size: 17px !important;
  transition: 0.7s;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  border-radius: 0 !important;
  background-color: #f0efef !important;
  color: var(--titleColor) !important;
  transition: var(--transition);
}
.project-slider .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.project-slider .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--orangeColor) !important;
}
.project-item {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}
.project-item a {
  display: block;
}
.project-item a img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.project-item .content {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 90%;
  height: 65px;
  margin: 0 auto;
  background-color: var(--whiteColor);
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  transition: var(--transition);
}
.project-item .content::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background-color: var(--orangeColor);
  transition: var(--transition);
  opacity: 0;
  border-radius: 5px;
}
.project-item .content h3 {
  margin-bottom: 10px;
  text-align: center;
  transition: var(--transition);
}
.project-item .content h3 a {
  color: var(--blueColor);
  transition: var(--transition);
}
.project-item .content p {
  color: var(--whiteColor);
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
  max-width: 250px;
}
.project-item .content.content-max p {
  max-width: 300px;
}
.project-item:hover .content {
  height: 130px;
}
.project-item:hover .content::before {
  height: 100%;
  opacity: 1;
}
.project-item:hover .content h3 {
  -moz-text-align-last: left;
  text-align-last: left;
}
.project-item:hover .content h3 a {
  color: var(--whiteColor);
}
.project-item:hover .content p {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
    .inner-banner .inner-title ul li {
      font-size: 14px;
    }
     .inner-banner .inner-title h3 {
        font-size: 18px;
    }
    .footer-logo img {
        max-width: 165px;
    }
  .top-header-bg-three {
    background-color: #f0eeee;
  }
  .banner-area-three {
    margin-top: 0;
    padding: 30px 0 0;
  }
  .banner-img-three img {
    border-bottom-left-radius: 0%;
  }
  .why-card {
    margin-top: 0;
    margin-bottom:10px;
    padding: 15px 20px;
    margin-right: 0;
    background-color: #fdfcfb;
  }
  .why-card::before {
    display: none;
  }
  .why-card::after {
    display: none;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--orangeColor);
    line-height: 1;
  }
  .why-card .circle {
    display: none;
  }
  .work-img-three {
    margin-bottom: 30px;
  }
  .work-img-three::after {
    display: none;
  }
  .work-img-three::before {
    display: none;
  }
  .work-img-three .line {
    display: none;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs li a {
    padding: 15px 20px;
  }
  .services-tab-img {
    margin-bottom: 30px;
  }
  .services-tab-img a img {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .services-tab-content {
    margin-bottom: 30px;
  }
  .services-tab-content h2 {
    font-size: 24px;
  }
  .services-tab-content .services-tab-list li {
    display: block;
    font-size: 16px;
  }
  .services-tab-content .default-btn {
    margin-top: 15px;
  }
  .choose-content-left .section-title {
    margin-bottom: 20px;
  }
  .choose-content-left .choose-item {
    margin-bottom: 0px;
  }
  .postnsticky {
    margin-top: 20px;
  }
  .choose-content-left .choose-item h4 {
    font-size: 18px;
  }
  .choose-content-left .choose-item p {
    margin-bottom: 0;
    max-width: 100%;
  }
  
  .choose-img-three {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .choose-img-three::before {
    display: none;
  }
  .choose-img-three::after {
    display: none;
  }
  .choose-img-three .line {
    display: none;
  }
  .project-slider {
    margin-bottom: 30px;
  }
  .project-slider .owl-nav {
    margin-top: 0;
  }
  .project-slider .owl-nav .owl-prev {
    position: inherit;
    top: 0;
    transform: translateY(0%);
    left: 0;
  }
  .project-slider .owl-nav .owl-next {
    position: inherit;
    top: 0;
    transform: translateY(0%);
    right: 0;
  }
  .project-slider .owl-nav .owl-prev,
  .project-slider .owl-nav .owl-next {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 12px !important;
  }
  .project-slider .owl-nav .owl-prev i,
  .project-slider .owl-nav .owl-next i {
    left: 0;
    right: 0;
  }
  .project-item .content.content-max {
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: var(--orangeColor);
  }
  .project-item .content.content-max h3 {
    -moz-text-align-last: left;
    text-align-last: left;
  }
  .project-item .content.content-max h3 a {
    color: var(--whiteColor);
  }
  .project-item .content.content-max p {
    opacity: 1;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-header-bg-three {
    background-color: #f0eeee;
  }
  .banner-area-three {
    margin-top: 0;
    padding: 70px 0 0;
  }
  .banner-img-three img {
    border-bottom-left-radius: 0%;
  }
  .why-card {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 30px 20px;
    margin-right: 0;
    background-color: #fdfcfb;
  }
  .why-card::before {
    display: none;
  }
  .why-card::after {
    display: none;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 35px;
    position: absolute;
    top: 20px;
  }
  .why-card .circle {
    display: none;
  }
  .work-img-three {
    margin-bottom: 30px;
  }
  .work-img-three::after {
    display: none;
  }
  .work-img-three::before {
    display: none;
  }
  .work-img-three .line {
    display: none;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs li a {
    padding: 15px 20px;
  }
  .services-tab-img {
    margin-bottom: 30px;
  }
  .services-tab-img a img {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .services-tab-content {
    margin-bottom: 30px;
  }
  .services-tab-content h2 {
    font-size: 24px;
  }
  .services-tab-content .services-tab-list li {
    display: block;
    font-size: 16px;
  }
  .services-tab-content .default-btn {
    margin-top: 15px;
  }
  .choose-content-left .section-title {
    margin-bottom: 20px;
  }
  .choose-content-left .choose-item {
    margin-bottom: 30px;
  }
  
  .choose-content-left .choose-item h4 {
    font-size: 18px;
  }
  .choose-content-left .choose-item p {
    margin-bottom: 0;
    max-width: 100%;
  }
 .choose-item{
    display: flex;
    flex-direction: row;
    gap: 20px;
 }
  .choose-img-three {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .choose-img-three::before {
    display: none;
  }
  .choose-img-three::after {
    display: none;
  }
  .choose-img-three .line {
    display: none;
  }
  .project-item .content.content-max {
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: var(--orangeColor);
  }
  .project-item .content.content-max h3 {
    -moz-text-align-last: left;
    text-align-last: left;
  }
  .project-item .content.content-max h3 a {
    color: var(--whiteColor);
  }
  .project-item .content.content-max p {
    opacity: 1;
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-card {
    padding: 56px 10px 65px 15px;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 40px;
    top: 40px;
    right: 10px;
    line-height: 1;
  }
  .work-img-three .line img {
    height: 440px;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs li a {
    padding: 15px 20px;
  }
  .choose-img-three .line {
    top: 65px;
  }
  .choose-img-three .line img {
    height: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .work-img-three .line img {
    height: 500px;
  }
  .choose-img-three .line {
    top: 65px;
  }
  .choose-img-three .line img {
    height: 400px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1350px) {
  .work-img-three {
    margin-left: 30px;
  }
  .work-img-three .line img {
    height: 575px;
  }
  .project-slider {
    position: relative;
  }
  .project-slider .owl-nav {
    margin-top: 0;
  }
  .project-slider .owl-nav .owl-prev {
    left: -10px;
  }
  .project-slider .owl-nav .owl-next {
    right: -10px;
  }
}
.side-bar-area{
  position: sticky;
  top: 100px;
}


.single-about {
    background: #fff;
    text-align: center;
    padding: 28px 0;
    position: relative;
}


.category_container .about-content h6 {
  color: #082352;
  line-height: 20px;
  margin: auto;
  margin-top: 15px;
}

.category_container  h6 {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
}

.category_container .single-about {
    max-height: 180px;
    margin: 5px;
    background: #FFF;
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.category_container .about-content {
    display: block;
}

.category_container .single-about:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

.category_container .img-containter {
    height: 75px;
    margin-bottom: 5px;
}


.category_container .col-2 {
    width: 20%;
}

.postnsticky {
    position: sticky;
    top: 80px;
}


@media(max-width:640px){
 
  .category_container .col-2 {
    width: 50%;
  }
  
  
}





