
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #313030;
 
}

a {
  color: #ff5821;
  text-decoration: none;
}

a:hover {
  color: #6D6E70;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #6D6E70;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


              /* Modal container */
/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity for background blur */
    backdrop-filter: blur(5px); /* Background blur effect */
}

/* Modal content */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Default width */
    height: 40%; /* Default height */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center the message */
    position: relative;
}
#modal-message{
  font-size: 1.4rem;
}
/* Close button */
.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 60%; /* Adjust width for tablets and small desktops */
        height: 50%; /* Adjust height for tablets and small desktops */
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 80%; /* Adjust width for mobile devices */
        height: 60%; /* Adjust height for mobile devices */
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #39312f;
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #6D6E70;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #6D6E70;
}

#topbar .cta a {
  color: #fff;
  background: #6D6E70;
  padding: 10px 20px;
  display: inline-block;
  transition: 0.3s;
}

#topbar .cta a:hover {
  background: #6D6E70;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 1001;
  background: #fff;
}
#header #contactbtn{
  padding: 4px 15px ;
  border-radius: 18px;
  background-color: #000000;
  color: #fff;
  margin-left: 1rem;
  display: block;
}
#header #contactbtn:hover{
  background-color: #6D6E70;
  color: #fff;
  transition: all 0.3s;
}
@media (max-width : 900px) {
  #header #contactbtn{
    padding: 10px 0px ;
    border-radius: 18px;
    background-color: transparent;
    color: #000000;
    text-align: center;
    margin-left: 0;
  }
 
}
#header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.438);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}


#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 110px;
  /* padding: 10px 0; */
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px 5px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "lato", sans-serif;
  color: #635551;
  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: #000000;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #473d3a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 37, 35, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 25px;
  color: #473d3a;
  justify-content: center;
  margin-bottom: .5rem;

}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffffff;
  background-color: #000000;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/headerbg.jpg")  top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  margin-bottom: -180px;
}
@media (max-width: 768px) {
  #hero {
    background-image: url("dezo-mobile-01.jpg");
  }
}
.hero {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
 
#hero .herobox{
     margin-bottom: 18rem;
      display: none;
}
#hero .lampimg{
     margin-left: 13rem;
     display: none;
}
@media (min-width: 575px) and (max-width: 1024px){
  #hero {
    width: 100%;
    height: 80vh;
    background: url("../img/headerimg.webp") center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #hero .lampimg{
    margin-left: 3rem;
    display: block;
  }
  #hero .herobox{
    margin-bottom: 18rem;
     display: block;
  }
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 50px;
    color: #000000;
    font-family: lato, sans-serif;
  }
  
  #hero h2 {
    color: #000000;
    margin-bottom: 50px;
    font-size: 1.8rem;
    width: 20rem;  
  }
  
}
@media (max-width : 576px) {
 
#hero {
  width: auto;
  background: url("../img/dezo-banner-01-01.jpg") center;
  background-size: cover;
  background-repeat: no-repeat;
}
#hero .herobox{
  margin-bottom: 18rem;
   display: block;
   width: 15rem;
}


}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

 

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px),
(max-height: 768px) {
  #hero {
    margin-bottom: -150px;
    height: 80vh;
  }
}

@media (min-width: 351px) and (max-width: 768px) {
  #hero {
    height: 80vh;
    margin-bottom: -120px;
  }

  #hero h1 {
    font-size: 2rem;
    line-height: 30px;
    font-weight: 800;
    text-shadow: 2px 10px 10px rgba(0, 0, 0, 0.426);

  }

  #hero h2 {
    font-size: 1rem;
    line-height: 17px;
    margin-bottom: -74px;
    font-weight: 600;

  }
}
@media (max-width: 350px) {
  #hero {
    height: 80vh;
  }

  #hero h1 {
    font-size: 1.3rem;
    line-height: 25px;
    font-weight: 800;
  }

  #hero h2 {
    font-size: .9rem;
    line-height: 17px;
    margin-bottom: -94px;
    font-weight: 600;

  }
}

@media (max-height: 640px) {
  #hero {
    height: 100vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width : 576px) {
  section {
    padding: 20px 0;
    overflow: hidden;
  }
}
.section-bg {
  background-color: #fff9f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #635551;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}
    .flipped-quote {
      display: inline-block;
      transform: scaleX(-1);
    }
.why-us .content {
  padding: 30px;
  background: #000;
  border-radius: 14px;
  color: #fff;
  width: 23rem;
}
@media (max-width : 576px) {
  .why-us .content {
 
    width: auto;
  }
}
@media (min-width: 576px) and (max-width: 900px){
  .why-us .content {
    padding: 30px;
    padding: 30px 0;
    background: #6D6E70;
    border-radius: 14px;
    color: #fff;
    width: 100%;
  }
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #ff5821;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 30px 5px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #ff5821;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 30px;
  font-weight: 700;
   
}

.why-us .icon-boxes .icon-box p {
  font-size: 13px;
  color: #716f6f;
  text-align: center;
  font-weight: 600;
}
@media (max-width : 576px) {
  .why-us .icon-boxes .icon-box p {
    font-size: 15px;
 
    font-weight: 600;
  }
}
.why-us .icon-boxes .icon-box img {
   width: 4rem;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 38px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #554945;
  margin-bottom: 15px;
}
.about .icon-boxes p {
 
  color: #000000;
  text-align: justify;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #6D6E70;
  border-radius: 50px;
  transition: 0.5s;
  background: #fff;
}

.about .icon-box .icon .material-symbols-outlined {
  color: #6D6E70;
  font-size: 32px;
}

.about .icon-box:hover .icon{
  background: #000000;
  border-color: #ffffff;
  
}

.about .icon-box:hover .icon .material-symbols-outlined {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #6D6E70;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/home1/about.webp") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#000000 50%, rgba(243, 207, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #6D6E70;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5821;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5821;
}

.clients .swiper-slide img {
  opacity: 0.5;
  filter: grayscale(100%);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services .card-body1{
  padding: 1rem 1rem;
  height: 15rem;
}
 
#services .card-body1 h5{
  font-size: 1.2rem;
  font-weight: 700;
  font-family: lato, sans-serif;
}
#services #show-more-btn{
  background-color: #6D6E70;
  color: #fff;
}
#services #show-more-btn:hover{
  background-color: #000000;
  transition: all 0.3s ease;
  color: #fff;
}
#services .card-body1 p{
  font-size: 1rem;
  font-weight: 400;
  font-family: Lato, sans-serif;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  /* word-spacing: normal;
  hyphens: auto; */
}
#services .card-body1:hover{
  background-color: #6D6E70;
  color: #fff;
  transition: all 0.4s ease;
 
}
@media (max-width : 576px) {
  #services .card-body1:hover{
    background-color: #ffffff;
    color: #000000;
    transition: all 0.4s ease;
    border-radius: 10px;
  }

}
#services .cards{
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.438);
  border-radius: 10px;
  overflow: hidden;
}
#services .cards img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* transition: transform 0.3s ease;  */
  height: 14rem;
}
/* #services .cards img:hover{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scale(1.1);  
} */
@media (min-width: 768px) and (max-width: 1024px) {
  .row-cols-md-4 .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.d-none {
  display: none;
}
 
.section-heading {
  text-align: center;
  margin: 20px;
}

.section-heading h1 {
  font-size: 2.5em;
  margin: 0;
  padding-bottom: 10px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
}

.section-heading h1::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #6D6E70;
  transition: width 0.3s, left 0.3s;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.section-heading h1:hover::after {
  width: 100%;
  left: 0;
  color: #6D6E70;
}

 
.scrollable-paragraph::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
} 
 
@media (max-width : 576px) {
 /* #services .serv78{
    display: none;
  } */
  #services .cards img{
    height: 18rem;
  }
}
 
 
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/countbg.png") center center no-repeat;
  background-size: cover;
  padding: 70px 0 60px;
  margin-bottom: 3rem;
  background-attachment: fixed; 
  /* background-position: center;  */
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.counts .count-box:hover {
   background:#6d6e7066 ;
   transition: all 0.5s ease;
   color: #000000;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #000000;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #082744;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
.counts .Followers {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width : 576px) {
  .counts .Followers {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}
 
.counts .Followers p{
  color: #082744;
  font-size: 2.2rem;
  font-weight: 600;
}

 
  
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
 
  background: url("../img/testimonsls.webp") no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;  
  background-attachment: fixed; 
  background-position: center; 

}


.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.5); */
}

.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000000;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(0, 0, 0, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #000000;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .img-fluid {
  height: 13rem;
  object-fit: cover;
}

@media (max-width: 576px) {
  .gallery .img-fluid {
    height: 13rem;
    object-fit: cover;
    width: 20rem;
  }
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #000;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 0px;
}
.portfolio .portfolio-container .img-fluid {
  border-radius: 20px;
  width: 100%;
  height: 18rem;
  object-fit: cover;
}
@media (max-width : 576px) {
  .portfolio .portfolio-container .img-fluid {
    border-radius: 20px;
    width: 100%;
    
    background-size: cover;
  }
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 12px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #313030;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  width: auto;
  box-shadow: 0 3px 8px #0000006c;
}
@media (max-width : 576px) {
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 10px 10px 10px;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    width: auto;
    color: #313030;
    margin-bottom: 5px;
    align-items: center;
  }
  .portfolio #portfolio-flters {
    text-align: auto;
  }
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #000000;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #473d3a;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #7f6d68;
  font-size: 14px;
  margin-bottom: 0;
  width: 80%;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #635551;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #6D6E70;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #ffa587;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5821;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5821;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(71, 61, 58, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
   
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: #6D6E70;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}
.contact .whatsappiconfooter a {
  color: #ffffff;
}

.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 h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item a{
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #ffffff;
}

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

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

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #059f17;
  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: #635551;
  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 #635551;
  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;
}

.contact .php-email-form button[type=submit] {
  background: #6c757d;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(0, 0, 0, 0.8);
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #313030;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 20px 0 30px 0;
  background: #fff9f7;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact .footer-logo {
  width: 10rem;

}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #656262;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
}
/* 
#footer .footer-top .footer-links {
  margin-bottom: 30px;
} */

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000000;
  font-size: 16px;
  line-height: 1px;

}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

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

#footer .footer-top .footer-links ul a {
  color: #656262;
  /* transition: 0.3s; */
  display: inline-block;
  line-height: 1;
  font-weight: 500;
  transition: all 0.5s;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: all 0.5s;
   
  /* padding-left: .4rem; */
  transition: all 0.3s ease;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #313030;
  position: relative;
  padding-bottom: 12px;
} 
#footer .footer-newsletter p {
  text-align: justify;
} 

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #3130305c;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000000;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #b9b7b7;
  color: #fff;
  text-decoration: none;
}

.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
  position: fixed;
  right: 30px; 
  bottom: 8rem; 
  z-index: 1000;
}

.tooltip {
  position: absolute;
  top: 0;
 
  transform: translateX(-60%);
 
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.profile {
  background: #fff;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.tooltip-container:hover .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}
.layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 35px;
  transition: all 0.3s;
}

.layer span,
.text {
  color: #25D366;
  border-color: #25D366  ;
}

.icon:hover.layer span {
  box-shadow: -1px 1px 3px #25D366  ;
}
.icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}
.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.user {
  display: flex;
  gap: 10px;
}
.img{

  font-size: 25px;
  font-weight: 700;
  border: 1px solid #25D366;
  object-fit: cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.img img{
  object-fit: contain;
  width: 50px;
  height: 50px;
}
.name {
    font-size: 22px;
  line-height: 1.5rem;
  font-weight: 700;
  color: #25D366  ;
}
.details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about {
  color: #000;
  padding-top: 5px;
}



/* instagram-icon */
.tooltip-container3 {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
  position: fixed;
  right: 30px; 
  bottom: 16rem; 
  z-index: 999;
}

.tooltip3 {
  position: absolute;
  top: 0;
   
  transform: translateX(-60%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
 
}

.profile3 {
  background: #fff;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.tooltip-container3:hover .tooltip3 {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon3 {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.layer3 {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon3:hover .layer3 {
  transform: rotate(-35deg) skew(20deg);
}
.layer3 span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

.layer3 span,
.text3 {
  color: #e6683c;
  border-color: #e6683c;
}

.icon3:hover.layer3 span {
  box-shadow: -1px 1px 3px #e6683c;
}
.icon3 .text3 {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon3:hover .text3 {
  bottom: -35px;
  opacity: 1;
}

.icon3:hover .layer3 span:nth-child(1) {
  opacity: 0.2;
}
.icon3:hover .layer3 span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon3:hover .layer3 span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon3:hover .layer3 span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon3:hover .layer3 span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.instagramSVG3 {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.user3 {
  display: flex;
  gap: 10px;
}
.img3 {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.img3 img{
  width: 55px; 
  height: 55px;
  object-fit: contain;
}
.name3 {
  font-size: 17px;
  font-weight: 700;
  color: #e6683c;
}
.details3 {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about3 {
  color: #000;
  padding-top: 5px;
}
