@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
  font-family: "Montserrat", serif;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
::-webkit-scrollbar{
  width: 10px;

}
::-webkit-scrollbar-thumb {
  background: #b0b0b0;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}


.header-bottom {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  max-width: 71%;
  min-width: 71%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.742);
  padding: 10px 20px 10px 20px;
  /* clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 5% 100%); */
  color: white;
}
.header-bottom::before{
  position: absolute;
    top: 0;
    left: -31px;
    height: 0;
    width: 0;
    border-left: 30px solid transparent;
    border-top: 100px solid rgba(0, 0, 0, 0.80);
    content: "";
}
.header-bottom::after{
  position: absolute;
    top: 0;
    right: -31px;
    height: 0;
    width: 0;
    border-right: 30px solid transparent;
    border-top: 100px solid rgba(0, 0, 0, 0.80);
    content: "";
}


.logo2 img {
  height: 70px; 
}

.homepage-nav {
  position: relative;
  z-index: 3; 
}

.homepage-nav .home-ul {
  display: flex;
  list-style-type: none;
  column-gap: 15px;
}

.homepage-nav .home-ul li {
  margin: 0 80px;
}
 
.homepage-nav .home-ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.homepage-nav .home-ul li a:hover,
.homepage-nav .home-ul li a.active {
    color: #ff6600; 
}


.search div{
  width: 100%;
  max-width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px dotted #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search i {
  font-size: 15px;
  color: #e47e03;
}



/* Hero Section */
.slider-wrapper .hero-section {
  height: 117vh; /* Full viewport height */
  background: url('../images/IMG_3608.jpg') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  color: black;
  background-size: cover;
}

.slider-wrapper .hero-section:nth-child(2){
  height: 117vh;
  background: url('../images/IMG_3788.JPG');
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  color: black;
  background-size: cover;
  
}
.slider-wrapper .hero-section:nth-child(3){
  height: 117vh;
  background: url('../images/IMG_3789.jpg');
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  color: black;
  background-size: cover;
}

.slider-wrapper .hero-section:nth-child(4){
  height: 117vh;
  background: url('../images/IMG_3786.jpg');
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  color: black;
  background-size: cover;
}


.slider-container{
  overflow: hidden;
  height: 100%;
  width: 100%;
}


.hero_section_content_div_wrapper{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 100px;
  
}
.architecture_head{
  position: relative;
    display: block;
    font-size: 52px;
    line-height: 72px;
    color: black;
    font-weight: 700;
    margin-bottom: 30px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    opacity: 0;
    transform: translateY(-60%);
    transition: all 1000ms ease;
}
.text_para{
    opacity: 0;
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: black;
    font-weight: 400;
    margin-bottom: 55px;
    transform: translateY(-60%);
    transition: all 1000ms ease;
}

.hero-section.swiper-slide-active .architecture_head,
.hero-section.swiper-slide-active .text_para {
  animation: animate_text 0.8s 0.6s linear forwards;
}

@keyframes animate_text {
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* .hero-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
} */
.check_art_btn{
 font-size: 16px;
 background: linear-gradient(to bottom, rgba(255, 174, 0, 1) 0%, rgba(255, 138, 0, 1) 100%) !important;
 padding: 16px 45px !important;
 display: block;
 border-radius: 25px !important;
 margin-top: 50px !important;
 opacity: 0; 
  transform: translateY(60%); 
  transition: all 1000ms ease;
}

.hero-section.swiper-slide-active .check_art_btn {
  animation: animate_button 0.8s 0.6s linear forwards;
}

@keyframes animate_button {
  100% {
    opacity: 1;
    transform: translateY(0%); /* Move it to its normal position */
  }
}
/* .hero-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
} */

.hero-section button {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-section button:hover {
  background-color: #0056b3;
}





/* Scrolling-section */

.scrolling-section {
  background-color: #333; /* Dark background */
  color: white; /* Light text */
/* Center vertically */
  padding: 45px 0px; /* Add some padding */
}

.scrolling_section_content_wrapper{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left-section{
  display: flex;
  column-gap: 25px;
}
/* Left Side (Phone & Email) */
.phone_para {
 margin: 0 ;
 padding: 0;
 color: rgb(239, 120, 39);
 font-size: 14px;
 text-transform: uppercase;
 font-weight: 400;
}
.phone_para2{
  margin: 0 ;
  padding: 0;
  color: white;
  font-size: 14px;

  font-weight: 400;
}
/* Right Side (Buttons) */
.right-section {
  display: flex; /* Flexbox for buttons */
  gap: 10px; /* Space between buttons */
}


/* Common Button Style */
.right-section button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px; 
  font-size: 1rem; 
  font-weight: bold;
  color: white; 
  background-color: transparent; 
  border: none; 
  cursor: pointer; 
  text-transform: uppercase; 
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.right-section button::before,
.right-section button::after {
  content: '';
  position: absolute;
  height: 2px; /* Thickness of the border */
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
}

/* Top Border */
.right-section button::before {
  top: 0; /* Position at the top */
  width: 100%; /* Full width by default */
  left: 0;
}

/* Bottom Border */
.right-section button::after {
  bottom: 0; /* Position at the bottom */
  width: 100%; /* Full width by default */
  left: 0;
}

.prev-btn::before {
  width: calc(100% - 30px); /* Shorten the top border from the right */
}

.prev-btn::after {
  width: calc(100% - 30px); /* Shorten the bottom border from the right */
}

.prev-btn {
  text-align: left; /* Align text to the left */
}

.next-btn::before {
  width: calc(100% - 30px); /* Shorten the top border from the left */
  left: 30px; /* Start after the letter T */
}

.next-btn::after {
  width: calc(100% - 30px); /* Shorten the bottom border from the left */
  left: 30px; /* Start after the letter T */
}


.right-section .prev-btn::before {
  content: "\2190"; 
  position: absolute;
  left: 10px; 
  font-size: 1.2rem;
}


.right-section .next-btn::after {
  content: "\2192"; 
  position: absolute;
  right: 10px; 
  font-size: 1.2rem;
}


.image-card-section {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

/* Big Background Image */
.background-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Smaller Overlay Image */
.overlay-image {
  position: absolute;
  top: 50%; /* Adjust based on where you want the smaller image */
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-image img {
  width: 300px; /* Adjust the size of the smaller image */
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Shadow for emphasis */
}

/* Card Styling */
.card {
  position: relative;
  width: 60%;
  background-color: white;
  margin: 0 auto;
  margin-top: 100px; /* Space between images and card */
  display: flex;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: visible; /* Allows the image to overlap */
}

/* Card Image (Left) */
.card-image {
  position: relative;
  width: 40%; /* Adjust image width */
  overflow: visible;
}

.card-image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: -30%; /* Moves the image upwards to overlap */
  left: 0;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow for the image */
}

/* Card Text (Right) */
.card-text {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.card-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #666;
}

.card-text button {
  align-self: start;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-text button:hover {
  background-color: #555;
}

.about_section{
  padding-top: 100px;
  padding-bottom: 70px;
}
.about_container{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  background-image: url('../images/1.jpg');
  background-position-x: 60%;
  background-repeat: no-repeat;
  display: flex;
padding-top: 150px;
}
.left_about_container{
  width: 100%;
  max-width: 50%;
  min-width: 50%;
  position: relative;
  display:flex ;
  justify-content: end;
}
.left_about_img{
  width: 100%;
  max-width: 60%;
  min-width: 60%;
  border-radius: 8px;
  /* right: 0;
  top: -70px; */
  z-index: 6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.a_image_div{
  position: absolute;
   width: 100%;
   max-width: 70%;
   min-width: 70%;
   z-index: 5;
   top: -150px;
   left: 10px;
   height: 450px;
   border-radius: 8px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.left_about_content_div p{
  position: absolute;
   top: 54%;
   left: 14%;
    display: block;
    font-size: 60px;
    line-height: 78px;
    color: #f2f2f2;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px #000;
    font-family: "Rubik", sans-serif;
    z-index: 9;
}
.a_image_div img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.left_about_img img{
  width: 100%;
  height: 100%;

}
.right_about_container{
  width: 100%;
  max-width: 50%;
  min-width: 50%;
}
.right_about_container_border{
  width: 100%;
  max-width: 100%;
  padding: 40px 70px;
 border: 20px solid #f2f2f2;
 border-left: none;
 /* margin-top: 50px; */
 background-color: white;
}
.right_button_wrapper{
  width: 100%;
  max-width: 200px;
  min-width: 200px;
  height: 42px;

  display: flex;
  justify-content: space-between;
}
.right_prev_div{
  border: 3px solid #bbbbbb;;
  border-right: none;
  width: 100%;
  max-width: 30%;
  min-width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right_next_div{
  border: 3px solid #bbbbbb;
  border-left: none;
  width: 100%;
  max-width: 30%;
  min-width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right_about_heading{
  position: relative;
    display: block;
    font-size: 30px;
    line-height: 42px;
    color: #222222;
    font-weight: 600;
    padding-bottom: 35px;

}
.right_about_heading::before{
  position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 45px;
    background-color: #ff8a00;
    content: "";
}
.right_about_para{
  position: relative;
    display: block;
    font-size: 14px;
    line-height: 28px;
    color: #777777;
    margin-bottom: 45px;
    width: 100%;
    max-width: 90%;
    min-width: 90%;
    margin-top: 30px;
}
.right_about_btn{
  font-size: 16px;
  background: linear-gradient(to bottom, rgba(255, 174, 0, 1) 0%, rgba(255, 138, 0, 1) 100%) !important;
  padding: 16px 45px !important;
  display: block;
  border-radius: 25px !important;
  margin-top: 50px !important;
  border: none;
  color: white;
  font-weight: 600;
}
.specialization_section{
padding-bottom: 100px;
}
.specialization_bg{
  padding-top: 70px;
  height: 489px;
  background:linear-gradient(rgba(0, 0, 0, 0.85),rgba(0, 0, 0, 0.85)) ,url('../images/2.jpg');
}
.special_text_background{
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #f2f2f2;
  opacity: 0.10;
  font-size: 68px;
  font-weight: 700;
  letter-spacing: 1px;
}

.special_box_wrapper{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

 .swiper{
  width: 100%;
  height: 100%;
 }

 .swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
 }

.special_div_img{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 250.5px;
  overflow: hidden;
  cursor: pointer;
}

.special_div_img img{
  opacity: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  
}



.special_div_img:hover img{
  opacity: 0.70;
  -webkit-transform: rotate(-5deg) scale(1.2);
	transform: rotate(-5deg) scale(1.2);
}
.special_div_img:hover .special_div_content{
  box-shadow: 0px 0px 5px #ccc;
}
.special_box_wrapper{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  display: flex;
  column-gap: 30px;
  margin-top: 60px;
}


.learn_more{
    position: relative;
    font-size: 14px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.design_head{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 20px;
  color: #222222;
  font-weight: 600;
  /* margin-bottom: 9px; */
  text-align: center;
  margin-top: 30px;
}
.design_head-h2{
  position: relative;
  display: block;
  font-size: 14px;
  /* line-height: 30px; */
  color: #777777;
  font-weight: 400;
  margin-bottom: 18px;
  text-align: center;
}
.design_para{
  position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
    margin-bottom: 27px;
    text-align: center;
}
.special_div{
  width: 100%;
  max-width: 31%;
  min-width: 31%;
  padding-bottom: 40px;
  height: 100%;
  /* border: 2px solid black; */
  /* box-shadow: 0px 0px 5px #ccc; */
}

/* .special_div:hover{
  box-shadow: 0px 0px 5px #ccc;
} */
.special_head_div{
  position: relative;
}

.special_head{
  position: absolute;
    display: block;
    font-size: 30px;
    font-weight: 700 !important;
    line-height: 40px;
    color: white;
    font-weight: 500;
    padding: 16px 0;
    top: 13px;
   left: 50%;
   transform: translateX(-50%);
}
.design-style-section{
  margin-top: 100px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
.design-style_heading_div{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 70px;
}
.design-style-head{
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 72px;
  line-height: 1em;
  color: #2f2f2f;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .10;
  font-family: "Arimo", sans-serif;
}
.design-style-head5{
  font-size: 30px;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 600;
    margin-top: -10px;

}
.design-style-container{
  display: flex;
  justify-content: center ; /* Space between left and right containers */
  align-items: center;
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  height: auto;
  margin: 0 auto;
}
.left-design-container{
  width: 100%;
  max-width: 50%;
  min-width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-design-image {
  position: relative;
  z-index: 2;
  height: 500px;
}
.left-design-image img {
  position: relative; 
  transform: translate(10%, -5%); 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  /* border-radius: 10px;  */
}
/* Background styling */
.background-div {
  position: relative;
  
  width: 80%;
  height: 100%;

  z-index: 1; 
  
}
.left_design_img_div{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  height: 550px  ;
  box-shadow: 0px 0px 15px #797979;
}
.left_design_img_div img{
  width: 100%;
  height: 100%;
}
.right-design-container{
  width: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-design-wrapper {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;
}

/* Box styling */
.box {
  width: 48%; /* Each box takes up 48% of the container width */
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0px 5px #aaa; 
  cursor: pointer;
  transition: all 0.3s linear;
}

/* Box item (icon and text) styling */
.box-item {
  display: flex;
  align-items: center; /* Aligns icon and text horizontally */
  gap: 10px; /* Space between icon and text */
  margin-bottom: 12px; /* Adds space between items */
}

.box:hover {
  background-color: #ff8a00; /* Change background color on hover */
  color: #fff; /* Change font color on hover */
  transition: all 0.3s linear; /* Smooth transition */
}

.box:hover .box-item a {
  color: #fff; 
}

/* Icon styling */
.icon {
  width: 20px; /* Icon width */
  height: 20px; /* Icon height */
  background-color: #ccc; /* Optional icon background */
  border-radius: 50%; /* Circular icon */
  display: inline-block;
  text-align: center;
  line-height: 20px; /* Centers the icon inside */
}

/* Text link styling */
a {
  color: #333;
  text-decoration: none; /* Removes underline from links */
  font-weight: 600; /* Bold text */
  font-size: 16px;
  transition: color 0.3s ease;
}

/* .count_down_section{
  margin-top: 250px;
  padding-bottom: 50px;
}
.count_down_wrapper{
  width: 100%;
  max-width: 92%;
  min-width: 92%;
  height: 42vh;
  margin: 0 auto;
  background:linear-gradient(rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0.15)) ,url('../images/3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.countdowns_divs_wrapper{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.count_down_div{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 13px;
  position: relative;
}
.count_down_div::before{
  position: absolute;
    left: -20px;
    top: -20px;
    height: 95px;
    width: 50px;
    border: 2px solid #ff8a00;
    content: "";
    transition: 0.3s linear all;

}
.count_down_div:hover::before{
  background-color: #e47e03;
  z-index: 8;
}
.count_down_div:hover .count_down_number{
  z-index: 99;
}
.count_down_number{
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
}
.experience_para{
  position: relative;
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 400;
    color: #dddddd;
    padding: 9px 0;
    font-family: "Rubik", sans-serif;
} */
.prev_para{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
 transform: translateX(45%);
}

.prev_para2{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
 transform: translateX(-45%);
}
.project_section{
  padding-top: 70px;
  padding-bottom: 100px;
}
.project_heading{
  width: 100%;
  max-width: 75%;
  min-width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.project_head{
  position: absolute;
 right: 0;
  top: -20px;
  font-size: 72px;
  line-height: 1em;
  color: #2f2f2f;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .10;
  font-family: "Arimo", sans-serif;
}


.project_links{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
.filter-tabs1{
  position: relative;
  display: flex;
  column-gap: 10px;
  justify-content: center;
  list-style: none;
  border-bottom: none;
}
.filter-tabs1::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20%;
  height: 1.5px; 
  background-color: #777777;
}
.filter-tabs1 li {
  cursor: pointer;
  padding: 10px 20px;
  margin-bottom: -1.4px;
  font-size: 16px;
  color: #888888;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.filter-tabs1 li:hover {
  border-bottom: 2px solid #ff8a00;
}

.filter-tabs1 .active {
  border-bottom: 2px solid #ff8a00;
}
.slider_1, .slider_2 {
  display: none;
  
}

.slider_1.active, .slider_2.active {
  display: block;
}
.our_project_head5{
    font-size: 30px;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 600;
    margin-top: -10px;
}
.project_slider_main{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.slide_img_div{
  position: relative;
  width: 100%;
  max-width: 20%;
  min-width: 20%;
  height: 57vh;
}
.project_slider_main .swiper-slide{
  height: 57vh;
}

.slide_img_div:hover .hover-content::before {
  height: 100%;
  width: 100%;
  opacity: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slide_img_div:hover .hover-content h4,
.slide_img_div:hover .hover-content .btn-box,
.slide_img_div:hover .hover-content .tag {
  opacity: 1;
  /* transform: scale(1, 1); */
}

.slide_img_div:hover .hover-content .btn-box {
  margin-top: 0;
}
.slide_img_div img{
  
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  background-size: cover;
}
.hover-content{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
} 

.hover-content::before{
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0%;
  width: 0%;
  opacity: 0;
  overflow: hidden;
  content: "";
  border-radius: 0%;
  background-color: rgba(0, 0, 0, 0.90);
  transition: all 400ms ease;
  transform: translate(-50%, -50%);
}

.hover-content h4{
  position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    font-size: 25px;
    /* line-height: 24px; */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 400ms ease;
    transition-delay: 0.4s;
}
.hover-content .btn-box{
  position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    opacity: 0;
    margin-top: -15px;
    transition: all 400ms ease;
    transform: scale(0, 0);
    display: none;
    
}
.hover-content .btn-box a{
  position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 6px;
    transition: all 400ms ease;
    transition-delay: 0s;
}

.perfect_expert_section{
 padding-bottom: 80px;
}
.our_team_para{
  font-size: small;
  text-align: center;
}
.perfect_heading{
      font-size: 30px;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 500;
    padding: 16px 0;
    text-align: center;
    font-weight: 600;
}
.pefect_expert_cards_wrapper{
  width: 100%;
  max-width: 90%;
  min-width: 90%;
  margin: 0 auto;
  display:flex ;
  justify-content: space-evenly;
  margin-top: 70px;
}
.perfect_expert_card_main{
  text-align: center;
  width: 100%;
  max-width: 25%;
  min-width: 25%;
  position: relative;
}

.perfect_expert_card_main p{
  text-align: end;
  margin-top: 10px;
  font-size: small;
}
.perfect_expert_card1{
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 67vh;
  overflow: hidden;
}


.perfect_expert_card1 img{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  transition: 0.3s linear;
  opacity: 1;
}

.perfect_expert_card1 img:hover{
  transform: scale(1.1);
  opacity: .8;
}

.perfect_expert_card_main .social-links{
  position: absolute;
  right: 0;
  top: 25%;
  transform: translateY(-50%); /* Adjust for proper vertical centering */
  display: flex;
  flex-direction: column; /* Icons appear in a column */
  gap: 10px; /* Space between icons */
  transition: all 400ms ease;
}
.perfect_expert_card_main .social-links li{
  position: relative;
  opacity: 0;
  visibility: hidden;
  /* right: -50px; */
  list-style: none;
  /* transition: all 400ms ease; */
}
.perfect_expert_card_main .social-links li a{
  display: block;
  font-size: 19px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  color: #222222;
  font-weight: 400;
  transition: all 400ms ease;
}
.perfect_expert_card_main:hover .social-links {
  right: -50px; 
}
.perfect_expert_card_main:hover .social-links li {
  opacity: 1; 
  visibility: visible;
}
.perfect_expert_card_main .social-links li:nth-child(1) {
  transition-delay: 100ms; 
}

.perfect_expert_card_main .social-links li:nth-child(2) {
  transition-delay: 300ms; 
}

.perfect_expert_card_main .social-links li:nth-child(3) {
  transition-delay: 500ms; 
}

.perfect_expert_card_main .social-links li:nth-child(4) {
  transition-delay: 700ms; 
}

.perfect_expert_card_main .social-links li:nth-child(5) {
  transition-delay: 900ms; 
}

.perfect_name_div{
  position: absolute;
  transform: skewX(-30deg);
  min-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  height: 47px;
  bottom: 15%;
  right: -12%;

}
.perfect_name_div p {
  transform: skewX(30deg);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
.perfect_expert_card_main:hover .perfect_name_div{
  background-color: #ff8a00;
}
.testimonial_section{
  padding-bottom: 100px;
}
.testimonial_div_wrapper{
  display: flex;
  column-gap: 30px;
}
.left_testimonial_div{
  width: 100%;
  max-width: 65%;
  min-width: 65%;
  background:linear-gradient(rgba(0, 0, 0, 0.89),rgba(0, 0, 0, 0.89)) ,url('../images/4.jpg');
  border-radius: 0px 40px 40px 0px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0px;
  height: 100%;
}
.right_testimonail_div{
  width: 100%;
  max-width: 32%;
  min-width: 32%;
}
.left_testimonial_slider_div{
  height: 100%;
  width: 100%;
  max-width: 95%;
  min-width: 95%;
}
.left_testimonial_slide_wrapper{
  height: 100%;
}
.left_testimonial_slide{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.left_testimonial_content{
  width: 100%;
  max-width: 60%;
  min-width: 60%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: end;
}
.right_testimonial_content{
  width: 100%;
  max-width: 20%;
  min-width: 20%;
}
.testimonail_text{

    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: end;
    width: 100%;
    max-width: 78%;
    min-width: 78%;
}
.testimonial_name{

    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 500;
    text-align: end;
}
.testimonial_proffession{
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #ff8a00;
  font-weight: 400;
  text-align: end;
}
.testimonial_dummy{
  position: absolute;
  width: 100%;
  max-width: 150px;
  min-width: 150px;
  height: 150px;
  background-color: #87868654;
  right: -20%;
  bottom: -20%;
}
.testimonial_image{
  width: 100%;
  max-width: 150px;
  min-width: 150px;
  height: 210px;
  position: relative;
  z-index: 9;
}
.testimonial_image img{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  z-index: 9;
}
.arrow_left{
  color: white;
}
.arrow_right{
  color: white;
}
.line_para{
  color: rgb(172, 172, 172);
}
.arrow_div{
  width:80% ;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
  margin-left:  auto;
}
.right_testimonial_div_content_wrapper{
  position: relative;
  margin-top: 120px;
}
.right_testimonial_heading{
  position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    font-size: 72px;
    line-height: 1em;
    color: #2f2f2f;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .10;
    font-family: "Arimo", sans-serif;
}
.what_client_says_heading{
  text-align: end;
    font-size: 30px;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 600;
    padding: 16px 0;
    
}
.client_para{
    font-size: 16px;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
    text-align: end;
    margin-top: 50px;
}
.blogs_wrapper_div{
  width: 100%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  padding-bottom: 150px;
}
.blogs_heading_div{
  margin-bottom: 50px;
  position: relative;
}
.blogs_head{
  position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 74px;
    line-height: 1em;
    color: #2f2f2f;
    font-weight: 700;
    text-transform: uppercase;
    opacity: .10;
    font-family: "Arimo", sans-serif;
}
.blogs_head2{
  position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #2f2f2f;
    font-weight: 600;
    padding: 16px 0;
}
.blogs_card_div_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  row-gap: 150px;
  flex-wrap: wrap;
  /* overflow-x: hidden; */
}
.blogs_card{
  width: 100%;
  max-width: 29%;
  min-width: 29%;
  height: 350px;
  position: relative;
}

.blogs_card img{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs_card .hover-content{
  /* background: #ff8a00; */
  position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 100%;
    background: #ff8a00 padding-box content-box;
    padding: 15px;
    opacity: 0;
    transition: all 300ms linear;
}
/* .blogs_card:hover .hover-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0.70;
} */
.bolgs_card .hover-content a{
  text-decoration: none;
}
/* .blogs_card:hover .hover-content a i{
  
  transition: all 400ms ease;
  color: #000000;
  font-size: 30px; 
  transform: scale(1.2);
  transition-delay: 0.4s;
} */

.blog_float_head{
  position: relative;
  font-size: 20px;
  line-height: 30px;
  color: #2f2f2f;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog_date_div{
  display: flex;
  justify-content:flex-start ;
  align-items: center;
  column-gap: 20px;
}
.blog_date_div p {
  color: #777777;
  font-size: 14px;
  margin-top: 5px;
}
.blogs_card_float{
  position: absolute;
  bottom: -100px;
  right: -40px;
  background-color: #ffff;
  width: 100%;
  max-width: 95%;
  min-width: 95%;
  padding: 30px 35px;
  box-shadow:  0 0px 21px rgba(0, 0, 0, 0.21);
}





/* Footer Section CSS */
.background-container {
  background: url('../images/project-footer-bac-img.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  position: relative;
  background-attachment: fixed;
}


.four-div-section,
.footer-section {
  position: relative;
  z-index: 1;
}

.background-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 0;
}



.four-div-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 82%;
  min-width: 82%;
  margin: 0 auto;
  padding: 70px 0 80px 0px;
  height: 100%;
}

.first-div p {
  position: relative;
  font-size: 15px;
  line-height: 36px;
  color: #f4f4f4;
  font-weight: 400;
}

.four-div-section>div {
  padding: 20px;
}

.first-div {
  width: 100%;
  max-width: 25%;
  min-width: 25%;
  line-height: 2.5;
}

.first-div img {
  width: 25%;
}

.second-div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  /* align-items: center; */
  /* gap: 30%; */
  width: 100%;
  max-width: 20%;
  min-width: 20%;
}
.second-div-heading{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.second-div h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  font-size: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  /* margin-bottom: 40px; */
  /* margin-top: 30px; */
}
.second-div img{
  margin-top: 20px;
  width: 150px;
}

.third-div span {
  color: #e47e03;
}

.fourth-div span {
  color: #e47e03;
}
.third-div{
  height: 250px;
}

.third-div h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  font-size: 600;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
  /* margin-bottom: 40px; */
  margin-top: 8px;
}
.third_div_ul{
  margin-top: 30px;
}

.second-div span {
  color: #e47e03;
}

.small-divs {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.small_divs_wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.small-divs img {
  width: 100%;
  max-width: 24%;
  min-width: 24%;
  height: 68px;
}

.div-content h3 {
  position: relative;
  font-size: 17px;
  color: #f4f4f4;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 3px;
}

.div-content p {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #f4f4f4;
  font-weight: 400;
  padding-right: 3px;
  margin-right: 3px;
}

.third-div {
  width: 20%;
}

.third-div ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.third-div ul li {
  display: block;
  line-height: 20px;
  font-size: 14px;
  color: #f4f4f4;
  font-weight: 400;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
}

.third-div li a {
  text-decoration: none;
  color: white;
}

.fourth-div{
  width: 30%;
}
.fourth-div-1{
  display: flex;
}
.fourth-div-2{
  display: flex;
}

.fourth-div h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 30px;
  font-size: 600;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.small-images-container img {
  width: 100%;
  max-width: 80px;
  min-width: 80px;
  height: 70px;
  margin-left: 10px;
  margin-top: 10px;
}

.footer-section {
  height: 70px;
  border-top: 1px solid #222222;
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;

}

.footer-left {
  width: 100%;
  max-width: 40%;
  min-width: 40%;
  height: 100%;
  text-align: start;
  background-color: rgb(255, 138, 0);
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  padding-right: 40px;
}

.footer-left::before {
  position: absolute;
  left: 100%;
  top: 0;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #ff8a00;
  content: "";
}

.footer-left p {
  position: relative;
  line-height: 30px;
  font-size: 16px;
  color: #000000;
  font-weight: 700;

}

.footer-right {
  width: 100%;
  max-width: 22%;
  min-width: 22%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  text-align: start;
}

.social-icon {
  color: white;
  font-size: 1rem;
}

.logo_wrapper_main {
  width: 100%;
  max-width: 90%;
  min-width: 90%;
  height: 27vh;
  background-color: white;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.30);
  margin: 0 auto;
  position: relative;
  transform: translateY(50%);
  z-index: 9;
  padding: 50px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo-1 {
  width: 100%;
  max-width: 18%;
  min-width: 18%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo_img {
  width: 100%;
  max-width: 70%;
  min-width: 70%;
}

.logo_img img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  background-color: white;
  width: 25px;
  height: 3px;
  border-radius: 2px;
}

.social-icons {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
}

@media(max-width:1499px) {
  .four-div-section {
    width: 100%;
    max-width: 90%;
    min-width: 90%;
  }
  .right_about_container_border{
    padding: 33px 70px;
  }
  .testimonial_div_wrapper {
    display: flex;
    column-gap: 20px;
}
/* .left_about_img{
  height: 674px;
} */
}
@media(max-width:1399px){
  .fourth-div {
    width: 30%;
  }
  .left-design-container {
    width: 100%;
    max-width: 43%;
    min-width: 43%;
  }
  .right-design-container {
    width: 60%;
  }
  .blog_date_div p {
    color: #777777;
    font-size: 11px;
  }
  .box-item a{
    font-size: 13px;
    
  }
  .box{
    width: 46%;
  }
  .right_about_para{
    font-size: 12px;
  }
  .right_about_container_border {
    padding: 20px 70px;
}
.filter-tabs1::after{
  display: none;
}

}
@media(max-width:1199px){
  .about_container {
 
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
;

}
.left_about_container{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.a_image_div img{
width: 100%;
max-width: 80%;
min-width: 80%;
}
.left_about_img{
  width: 100%;
  max-width: 50%;
  min-width: 50%;
}
.a_image_div{
  left: 88px;
}
.right_about_container {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.right_about_container_border{
  border-left: 20px solid #f2f2f2;;
}
.design-style-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 20px solid #f7f7f7;
  padding: 40px 20px;
}
.left-design-container {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.left_design_img_div{
  width: 100%;
  max-width: 90%;
  min-width: 90%;
  border-radius: 10px;
}
.left_design_img_div img{
  border-radius: 10px;
}
.right-design-container{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.box{
  width: 48%;
}
.slide_img_div{
  width: 100%;
  max-width: 23%;
  min-width: 23%;
}
.a_image_div img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
}
@media(max-width: 1185px){
  .fourth-div {
    width: 50%;
  }
}
@media(max-width:1099px){
  .header-bottom{
    width: 100%;
    max-width: 86%;
    min-width: 86%;
  }
  
}
@media(max-width:999px){

  .header-bottom::before{
    display: none;
  }
  .header-bottom::after{
    display: none;
  }
  .homepage-nav .home-ul li {
    margin: 0 40px;
  }

  .header-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .homepage-nav {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: fixed;
    top: 90px;
    right: 0;
    width: 30%;
    height: 100vh;
    text-align: center;
  }
  .home-ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    row-gap: 20px;
  }

  .homepage-nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-bottom .logo2 img{
    height: 65px;
  }

  .social-icons {
    display: flex;
    margin-top: 70px;
  }
  .special_box_wrapper {
    width: 100%;
    max-width: 95%;
    min-width: 95%;
  }
  .blogs_card{
    width: 100%;
    max-width: 45%;
    min-width: 45%;
  }

  .first-div{
    width: 100%;
    max-width: 40%;
    min-width: 40%;
  }

  .second-div{
    width: 100%;
    max-width: 40%;
    min-width: 40%;
  }
  .third-div{
    width: 40%;
  }
  .fourth-div{
    width: 40%;
  }

  .footer-left {
    width: 100%;
    max-width: 50%;
    min-width: 50%;
  }

}


@media(max-width: 850px){
  .architecture_head{
    font-size: 48px;
  }
  .text_para{
    font-size: 20px;
  }
}
@media(max-width: 820px){
  
  .footer-left p  {
    font-size: 13px;
  }
}
@media(max-width: 810px){
  
  
  .architecture_head{
    margin-bottom: 0px;
  }
  
  .header-bottom .logo2 img{
    height: 55px;
  }
}
@media(max-width:799px){
  .homepage-nav {
    top: 80px;
  }
  .phone_para2{
    font-size: 10px;
  }
  .prev_para{
    font-size: 12px;
  }
  .prev_para2{
    font-size: 12px;
  }
  .right_button_wrapper {
    width: 100%;
    max-width: 160px;
    min-width: 160px;
    height: 36px;
  }
  .box{
    width: 100%;
  }
  .box-item{
    display: flex;
    justify-content: center;
  }
  .design-style-head{
    font-size: 60px;
  }
  .left_design_img_div{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

}
@media(max-width:768px){
  .project_slider_main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
  }
  .slide_img_div{
    width: 100%;
    max-width: 90%;
    min-width: 90%;
    height: 67vh;
  }
  .blogs_card{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .blogs_card_float{
    right: 0px;
  }
  .special_head{
    top: 0;
  }
  .special_text_background{
    font-size: 48px;
  }
  .special_box_wrapper {
    width: 100%;
    max-width: 95%;
    min-width: 95%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 40px;
}
.specialization_bg{
  height: auto;
}
.special_div{
  width: 100%;
  max-width: 90%;
  min-width: 90%;
}
.special_div_img{
  height: 60vh;
}
.design_head{
  color: white;
}
.design_head-h2{
  color: rgb(178, 173, 173);
}
.left_about_img {
  width: 100%;
  max-width: 60%;
  min-width: 60%;
}
.hero-section{
  background-position: center;
}

.four-div-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.first-div{
  width: 100%;
  max-width: 60%;
  min-width: 60%;
  text-align: center;
}

.second-div{
  width: 100%;
  max-width: 60%;
  min-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.third-div{
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fourth-div{
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
}

@media(max-width: 680px){
  

  .homepage-nav {
    /* top: 112px; */
  }

  .architecture_head{
    font-size: 40px;
    margin-bottom: 0px;
  }
  .header-bottom .logo img{
    height: 45px;
  }
  .footer-left p  {
    font-size: 10px;
  }
}
@media(max-width:576px){
  
  .architecture_head{
    font-size: 30px;
  }
  .text_para{
    font-size: 15px;
  }
  .scrolling_section_content_wrapper {
    width: 100%;
    max-width: 80%;
    min-width: 80%;
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
}
.a_image_div {
  position: absolute;
  width: 100%;
  max-width: 75%;
  min-width: 75%;
  left: 60px;
}
.a_image_div img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.left_about_img {
  width: 100%;
  max-width: 66%;
  min-width: 66%;
}
.right_about_container_border {
  padding: 0px 30px;
}
.left_about_content_div p {
  font-size: 50px;
  line-height: 60px;
}
.about_container {
  width: 100%;
  max-width: 90%;
  min-width: 90%;
  margin: 0 auto;
}
.special_head {
  position: absolute;
  display: block;
  font-size: 25px;
}
.design-style-head {
  font-size: 40px;
}
.design-style-head5 {
  font-size: 30px;
  line-height: 40px;
  color: #2f2f2f;
  font-weight: 600;
  margin-top: -21px;
}
.design-style-container {
  display: flex
;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 90%;
  min-width: 90%;
  height: auto;
  margin: 0 auto;
}
.blogs_head{
  font-size: 48px;
}

}
@media(max-width: 515px){
  .footer-left p  {
    font-size: 8px;
  }
}
@media(max-width:480px){
  .architecture_head {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 41px;
  }
  .left_design_img_div{
    height: auto;
  }
  .left_design_img_div img{
    height: 100%;
    object-fit: fill;
  }
  .special_head {
    position: absolute;
    display: block;
    font-size: 20px;
    top: -10px;
}
.special_text_background {
  font-size: 35px;

}
.design-style-head {
  font-size: 35px;
}
}

@media(max-width: 450px) {
 
  .homepage-nav {
    width: 50%;
  }

  .footer-left p  {
    font-size: 8px;
  }
  
  .footer-right {
    width: 100%;
    max-width: 30%;
    min-width: 30%;
  }

}
@media(max-width: 430px) {
  .footer-left {
    width: 100%;
    max-width: 60%;
    min-width: 60%;
  }
}