@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Protest+Revolution&display=swap');

/* Colors */
:root {
  --color-default: #5e223e;
  --color-primary: #ffaa17;
  --border-color: #dcdcdc;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "DM Sans", sans-serif;
}
/* Scroll design */
::-webkit-scrollbar-track
{
	background-color: var(--border-color);
}
::-webkit-scrollbar
{
	width: 5px;
	background-color: var(--border-color);
}
::-webkit-scrollbar-thumb
{
	background-color: var(--color-primary);
}

/* Font family */
.protest-revolution-regular {
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
}

/* Links */

a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Font Size */

h1 {
  font-size: 40px;
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.font-16 {
  font-size: 16px;
}

.font-24 {
  font-size: 24px;
}

p {
  font-size: 16px;
}

/* select text color */


::selection {
  background: var(--border-color);
}


/* Colors */

.primary-color {
  color: var(--color-primary) !important;
}

.bg-primary-color {
  background: var(--color-primary) !important;
}

.default-color {
  color: var(--color-default) !important;
}

.bg-default-color {
  background: var(--color-default) !important;
}

/* Font Weight */

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

.fw-300 {
  font-weight: 300;
}

/* Padding & Margin */

.me-30 {
  margin-right: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-20 {
  margin-top: 20px;
}

.py-130 {
  padding: 130px 0;
}

/* Button */

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
}

.button {
  padding: 10px 40px;
  background: var(--color-default);
  color: #fff;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--color-default);
  transition: 0.4s;
}

.button:hover {
  background: transparent;
  color: var(--color-default);
}

.building-packages .button:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* Section */

section {
  margin: 60px 0;
}

/* Popup */
.close {
  position: absolute;
  right: 30px;
  top: 30px;
  background: var(--color-default);
  padding: 6px 13px;
  z-index: 111111;
  border: 1px solid var(--color-default);
  border-radius: 50px;
  border: none;
  color: #ffffff;
  transition: 0.3s;
}

.fade:not(.show) {
  display: none !important;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 50px;
  border: 1px solid var(--color-primary);
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  background: transparent;
  color: var(--color-primary);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar {
  background: var(--color-default);
  transition: all 0.5s;
  color: #fff;
  padding: 6px 0;
}

.topbar .contact-info a {
  padding-left: 5px;
  color: #fff;
  transition: 0.3s;
}

.topbar .contact-info span {
  padding-left: 5px;
  color: #fff;
  transition: 0.3s;
}

.topbar .contact-info div:hover a {
  color: #fff;
  text-decoration: underline;
}

.topbar .contact-info div:hover span {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

.topbar .contact-info i::before {
  color: var(--color-default);
  transition: 0.3s;
}

.topbar .contact-info i {
  transition: 0.3s;
  padding: 6px 7px;
  text-align: center;
  background: var(--color-primary);
  border-radius: 50px;
  border: 1px solid var(--color-primary);
}

.topbar .contact-info div:hover i,
.topbar .contact-info div:hover i::before {
  background: transparent;
  color: var(--color-primary);
}

/*---------------------------------------------
-------------------- Header--------------------
----------------------------------------------- */

.header {
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}

.header .logo img {
  max-height: 85px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 3px;
    color: var(--color-default);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: 0.3s;
    transform: scale(1, 0);
    transform-origin: 0 0;
    border-top: 1px solid var(--border-color);
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    transition: 0.2s;
  }

  .navbar .dropdown ul a:hover {
    margin-left: 5px;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transform: scale(1);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
    border: 1px solid var(--color-default);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-default);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #ffaa1770;
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  width: 100%;
  padding: 50px 0px;
  background: url(/assets/image/header-background.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 992px) {
  .hero {
    padding: 30px 0;
    height: 100%;
    background-size: 100% 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    background: none;
    background-color: var(--color-primary);
  }
}

/* @media (max-width: 1200px) {
  .hero {
    height: 70vh;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 68vh;
}
}
.hero p {
  max-width: 422px;
  color: #000000;
} */

/* --------------------------------------------------
-------------------ABOUT US START--------------------
----------------------------------------------------- */

.about .mask {
  --webkit-mask-image: url(/assets/image/mask-img.png);
  mask-image: url(/assets/image/mask-img.png);
  --webkit-mask-position: center;
  mask-position: center;
  --webkit-mask-size: 420px 420px;
  mask-size: 420px 420px;
  --webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  --webkit-mask-mode: auto;
  mask-mode: alpha;
  mask-position: 0 0;
}

.about .mask img {
  height: 422px;
  width: 422px;
}

.about .mask-experience {
  position: relative;
  display: inline-block;
}

.about .mask-experience .experience {
  position: absolute;
  bottom: -16px;
  right: -40px;
  color: var(--color-default);
  background: url(/assets/image/Star1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 232px;
  width: 232px;
  text-align: center;
}

.about .experience p {
  letter-spacing: 8px;
}

.about .facility-section .svg-icons .svg_inner{
  height: 60px;
  width: 60px;
  background: var(--color-default);
  padding: 10px;
  border-radius: 40px;
  border: 1px solid var(--color-default);
  transition: 0.3s;
}
.about .facility-section .svg-icons .svg_inner svg{
  fill: #ffffff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.about .facility-section .svg-icons:hover .svg_inner{
  background: transparent;
  padding: 10px;
  border-radius: 40px;
  border: 1px solid var(--color-default);
}
.about .facility-section .svg-icons:hover .svg_inner svg{
  fill: var(--color-default);
}


/* --------------------------------------------------
------------------OUR PROJECTS START--------------------
----------------------------------------------------- */

.our-project {
  background: url(/assets/image/our-project-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}

.our-project .projects a {
  color: #fff;
}

.our-project .projects {
  position: relative;
}

.our-project .projects .project-content {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-default);
  border: 1px solid var(--color-primary);
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  padding: 10px;
}

.our-project .projects:hover .project-content {
  opacity: 1;
  visibility: visible;
}

/* Our project slide css */

.our-project .swiper-button-prev,
.our-project .swiper-button-next {
  bottom: auto;
  top: 50%;
  padding: 10px 21px;
  background: var(--color-primary);
  border-radius: 34px;
  color: var(--color-default);
  border: 1px solid var(--color-primary);
  transition: 0.2s;
}

.our-project .swiper-button-prev:hover,
.our-project .swiper-button-next:hover {
  background: transparent;
  color: var(--color-primary);
}

.our-project .swiper-button-prev {
  left: -3% !important;
  right: auto !important;
}

.our-project .swiper-button-next {
  right: -3% !important;
  left: auto !important;
}

@media (max-width: 1024px) {
  .our-project .swiper-button-next {
    right: 0% !important;
    left: auto !important;
  }

  .our-project .swiper-button-prev {
    left: 0% !important;
    right: auto !important;
  }
}



/* --------------------------------------------------
--------------------HOW IT WORK----------------------
----------------------------------------------------- */

.howitwork .work-packages .left {
  height: 150px;
  width: 150px;
}
.howitwork .work-packages .left img{
  width: 100%;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(-20px);
  }
}

/* --------------------------------------------------
--------------------BUILDING PACKAGES----------------------
----------------------------------------------------- */

.building-packages {
  background: url(/assets/image/building-packages.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}

.building-packages .building-package {
  padding: 50px 40px;
  margin-bottom: 20px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1px solid #fff;
  transition: 0.5s;
}

.building-packages .building-package:hover {
  background: var(--color-default);
  border: 1px solid var(--color-primary);
  color: #fff;
}

.building-packages .building-package h4 {
  color: var(--color-default);
  transition: 0.5s;
}

.building-packages .building-package h5 {
  color: #000000;
  transition: 0.5s;
}

.building-packages .building-package:hover h4 {
  color: var(--color-primary);
}

.building-packages .building-package:hover h5 {
  color: #ffffff;
}

/* --------------------------------------------------
-----------------CLIENTS TESTIMONIALS-----------------
----------------------------------------------------- */

.testimonials .swiper-slide {
  border: 1px solid var(--border-color);
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}

.testimonials .info-image img {
  border-radius: 10px;
  width: 100%;
}

.testimonials .info-image {
  padding: 20px;
  position: relative;
  transition: 0.5s;
}

.testimonials .info-image::before {
  content: "";
  border-radius: 10px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--border-color);
  z-index: 0;
}

.testimonials .testimonial-item .testimonial-img {
  width: 69px;
  height: 69px;
  border-radius: 50px;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.testimonials .swiper-pagination {
  width: 100%;
  bottom: 10px;
}

.testimonials .swiper-pagination span {
  margin-right: 10px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  opacity: 1;
  border: none;
}

.testimonials .testimonial-item h5 {
  letter-spacing: 7px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-default);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
}


/* --------------------------------------------------
-------------RECENT BLOG SECTION SECTION-------------
----------------------------------------------------- */

.recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/* --------------------------------------------------
-------------GALLERY SECTION-------------
----------------------------------------------------- */
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  cursor: zoom-in;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
-----------------------FAQ SECTION------------------------------
--------------------------------------------------------------*/

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 14px;
  background: #fff;
  position: relative;
  border-top: 1px solid #00000041;
  border-left: 1px solid #00000041;
  border-right: 1px solid #00000041;
}

.faq .faq-list li:last-child {
  padding: 14px;
  background: #fff;
  position: relative;
  border-bottom: 1px solid #00000041;
}

.faq .faq-list a {
  display: block;
  position: relative;
  padding-left: 32px;
  color: var(--color-default);
  cursor: pointer;
  font-size: 18px;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 32px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--color-default);
  padding-left: 32px;
  transition: 0.3s;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  font-size: 14px;
  background-color: var(--color-default);
  color: white;
  position: relative;
  padding-top: 270px;
}

.footer a {
  color: white;
}

.footer .footer-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.footer .border-top {
  border-top: 1px solid var(--border-color) !important;
}

.footer .border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #c4c4c4;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 1399px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 40px;
  }

  .footer {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 30px;
  }

  .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }

    100% {
      transform: translateY(-10px);
    }
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
    text-transform: uppercase;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  .font-16 {
    font-size: 14px;
  }

  .font-24 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  .me-30 {
    margin-right: 20px;
  }

  .mb-10 {
    margin-bottom: 5px;
  }

  .mb-20 {
    margin-bottom: 10px;
  }

  .mb-30 {
    margin-bottom: 20px;
  }

  .mb-40 {
    margin-bottom: 30px;
  }

  .mb-60 {
    margin-bottom: 50px;
  }

  .py-130 {
    padding: 50px 0;
  }

  .header .logo img {
    max-height: 60px;
  }

  .button {
    padding: 6px 26px;
    font-weight: 500;
    font-size: 12px;
  }

  .topbar .contact-info i {
    padding: 8px;
  }

  .font-16 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  .hero p {
    max-width: 100%;
  }

  .footer {
    padding-top: 75px;
  }

  .circles li:nth-child(1) {
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
  }


  .circles li:nth-child(2) {
    left: 10%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 12s;
  }

  .circles li:nth-child(3) {
    left: 70%;
    width: 10px;
    height: 10px;
    animation-delay: 4s;
  }

  .circles li:nth-child(4) {
    left: 40%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 18s;
  }

  .circles li:nth-child(5) {
    left: 65%;
    width: 10px;
    height: 10px;
    animation-delay: 0s;
  }

  .circles li:nth-child(6) {
    left: 75%;
    width: 55px;
    height: 55px;
    animation-delay: 3s;
  }

  .circles li:nth-child(7) {
    left: 35%;
    width: 75px;
    height: 75px;
    animation-delay: 7s;
  }

  .circles li:nth-child(8) {
    left: 50%;
    width: 12px;
    height: 12px;
    animation-delay: 15s;
    animation-duration: 45s;
  }

  .circles li:nth-child(9) {
    left: 20%;
    width: 7px;
    height: 7px;
    animation-delay: 2s;
    animation-duration: 35s;
  }

  .circles li:nth-child(10) {
    left: 85%;
    width: 75px;
    height: 75px;
    animation-delay: 0s;
    animation-duration: 11s;
  }

  .mobile-view-call-mail span {
    display: none;
  }

  .mobile-view-call-mail i {
    margin-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .about .mask img {
    height: 300px;
    width: 300px;
  }

  .about .mask {
    mask-size: 300px 300px;
    -webkit-mask-size: 300px 300px;
  }

  .about .mask-experience .experience {
    height: 140px;
    width: 140px;
    bottom: -6px;
    right: 0px;
  }

  .about .experience p {
    letter-spacing: 0px;
  }

  h3 {
    font-size: 18px;
  }

  .mb-10 {
    margin-bottom: 0px;
  }

  .testimonials .testimonial-item h5 {
    letter-spacing: 0px;
  }
}

.form-background {
  background: #ffffff;
  border: 1px solid var(--color-default);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2px);
}

.form-background input {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-default);
  color: var(--color-default);
}

.form-background input::placeholder {
  color: var(--color-default);
}

/* Counter */

.counter-main .counter-contant {
  background: var(--color-default);
  padding: 50px 0px;
  border-radius: 10px;
}

.counter-main .left {
  margin-right: 10px;
}

.counter-main .left svg {
  height: 60px;
  width: 60px;
  fill: var(--color-default);
  background: var(--color-primary);
  padding: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  transition: 0px;
  transition: 0.5s;
}

.counter-main .counter-hover:hover .left svg {
  fill: var(--color-primary);
  background: transparent;
}

.counter-main .right .counter {
  font-size: 24px;
}

.counter-main .right p {
  color: #ffffff;
  margin-bottom: 0;
}

.counter-main .counter-hover {
  border-right: 1px solid var(--border-color);
  cursor: pointer;
}

.counter-main .counter-hover:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .counter-main .counter-contant {
    padding: 50px 165px;
  }

  .counter-main .counter-hover {
    border: none;
  }
}

@media (max-width: 539px) {
  .counter-main .counter-contant {
    padding: 50px 70px;
  }
}


/* --------------------------------------------------
-------------------CONTACT SECTION-------------------
----------------------------------------------------- */

.contact .info-counter-contant {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: var(--color-default);
  margin-bottom: 20px;
  padding: 20px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}
.info-container{
  height: 100%;
}
.info-container .info-item:last-child{
  margin-bottom: 0px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.map-section iframe {
  width: 100%;
  height: 500px;
}

/* All Page header */

.auther-hero {
  padding: 100px 0;
  background: var(--color-primary);
  position: relative;
}

@media (max-width: 575px) {
  .auther-hero {
    padding: 50px 0;
  }
}

.auther-hero .title-section {
  position: relative;
  z-index: 1;
}

.auther-hero .title-img {
  background: url(/assets/image/hero-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  animation: cloudMove 60s linear 0s infinite;
  opacity: 0.2;
}

@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }

  100% {
    background-position: 0 100%;
  }
}

.auther-hero .title-img img {
  height: 100%;
  width: 100%;
}



/* About Us Page Css--------------------------------------------------------
---------------------------------------------------------------------------
------------------------------------------------------------------------- */

.focus-strive .content-box img {
  height: 40px;
  width: 40px;
  margin-bottom: 20px;
}

.focus-strive .content-box {
  padding: 30px;
  background: var(--color-default);
  color: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--color-default);
  transition: 0.3s;
  height: 100%;
}

.focus-strive .content-box:hover {
  background: transparent;
  color: var(--color-default);
}

/* --------------------------------------------------
-----------------CLIENTS TESTIMONIALS-----------------
----------------------------------------------------- */

.team-members .team-member {
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  position: relative;
}

.team-members .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team-members .team-member .social {
  position: absolute;
  right: auto;
  left: 0;
  bottom: auto;
  top: 20%;
  transform: scale(0, 1);
  transform-origin: 0 0;
  transition: 0.2s;
  background: var(--color-primary);
  z-index: 2;
}

.team-members .team-member:hover .social {
  transform: scale(1);
}

.team-members .team-member .social a {
  transition: 0.2s;
  padding: 15px 12px;
  color: var(--color-default);
  display: block;
  line-height: 0;
  text-align: center;
}

.team-members .team-member .social a:hover {
  color: var(--color-primary);
  background: var(--color-default);
}

.team-members .team-member .social i {
  font-size: 18px;
}

.team-members .team-member .member-info {
  padding: 10px 15px;
}

.team-members .team-member .member-post {
  padding: 10px 50px 10px 15px;
  position: absolute;
  bottom: 55px;
  left: 0;
  top: auto;
  right: auto;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  transform: scale(0, 1);
  transform-origin: 0 0;
  transition: 0.2s;
}

.team-members .team-member:hover .member-post {
  transform: scale(1);
}

.team-members .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

/* Our Project Page Css--------------------------------------------------------
---------------------------------------------------------------------------
------------------------------------------------------------------------- */

.our-project-main .project-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;

}

.our-project-main .project-content img {
  transition: 0.6s;
  filter: grayscale(1);
}

.our-project-main .project-content:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}

.our-project-main .project-content-inner {
  background: var(--color-default);
  color: #ffffff;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

/* Blog Page Css -----------------------------------------------------------
--------------------------------------------------------------------------
----------------------------------------------------------------------*/

.recent-blog-posts .right .blog-input::placeholder {
  color: var(--color-default);
}

.recent-blog-posts .right .blog-input {
  border-radius: 0px;
  border: none;
  background: #5e223e12;
  border-bottom: 1px solid var(--color-default);
  color: var(--color-default);
}

.blog-input:focus {
  box-shadow: none;
}

.recent-blog-posts .blog-search-icon {
  border-radius: 0px;
  border: none;
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-default);
  color: var(--color-default);
  cursor: pointer;
}

.recent-blog-posts .card-header {
  background: #5e223e12;
}

.recent-blog-posts .recent-blog .right span {
  font-size: 12px;
}

.recent-blog-posts .popular-tags button {
  padding: 6px;
  border: none;
  background: var(--color-default);
  border: 1px solid var(--color-default);
  color: #ffffff;
  transition: 0.3s;
}

.recent-blog-posts .popular-tags button:hover {
  color: var(--color-default);
  background: transparent;
}

.page-link:focus {
  box-shadow: none;
}
.categories .blog-button{
  padding: 5px;
  border: 1px solid var(--color-default);
  background: var(--color-default);
  color: #ffffff;
  transition: 0.3s;
}
.categories .card-title:hover .blog-button{
  background: transparent;
  color: var(--color-default);
}
