﻿@import url("../../css2");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-font: "Poppins", sans-serif;
  --text-color: #27455f;
  --text-white: #ffffff;
  --text-black: #000000;
  /* ---color-1---- */
  --color-primary: #344556;
  /* ---color-2---- */
  --color-secondary: #7f9396;
  /* ---color-3---- */
  --color-ternary: #f9c534;
  /* ---color-3---- */
  --color-quarternary: #ca2d2c;
  /* ---transition-- */
  --transition-threesec: all 0.3s ease;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* -----custom-scrollbar---- */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

p {
  font-size: 1rem !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
li,
a {
  font-family: var(--main-font) !important;
  margin-bottom: 0;
  color: var(--text-color);
}


::-moz-selection { /* Code for Firefox */
  color: var(--text-color);
  background: var(--color-ternary);
}

::selection {
  color: var(--text-color);
  background: var(--color-ternary);
}

.sect_padd {
  padding: 40px 0;
}

img {
  width: 100%;
}

/* ----header-section-start---- */
.navbar {
  border-bottom: 5px solid rgba(249, 180, 56, 0.5);
}

.navbar-brand {
  margin-right: 0;
}
.nav_logo {
  width: 150px;
}

.nav-item a,
.nav_cnct a {
  font-weight: 600 !important;
}

.nav_cnct a {
  text-decoration: none;
}

.centered_nav_items {
  justify-content: space-between !important;
}

.centered_nav_items .nav-item.dropdown:hover .dropdown_menu{
  display: block;
}

.nav-item .nav-link {
  color: var(--text-color) !important;
}

.nav-item .nav-link:hover {
  color: var(--color-ternary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--color-ternary) !important;
}

.custom_nav {
  flex: 1 !important;
  justify-content: center;
}

.nav_btn {
  border: 1px solid var(--color-ternary);
}

.nav_btn:hover {
  color: var(--text-color);
  background: var(--color-ternary);
}

.nav_btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.nav_phone {
  width: 50px;
  height: 50px;
  background: var(--color-ternary);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_phone i {
  font-size: 30px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.nav_btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.nav_btn:hover .icon {
  transform: translate(4px);
}

.nav_btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.nav_btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

.logo_rotate {
  position: absolute;
  right: 50px;
  top: 0;
  animation: rotation 8s infinite linear;
}

/* ---logo-rotate-animation-start--- */

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* ---logo-rotate-animation-end--- */

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.blurry_navbar {
  background: rgba(255, 255, 255);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dropdown_menu {
  border-radius: unset;
  padding: 0 15px;
}

.dropdown_menu li {
  padding: 15px 0;
  border-bottom: 1px solid #7f939634;
}

.dropdown_menu li:last-child {
  border-bottom: none;
}

.dropdown_menu li a {
  color: var(--text-color);
}

.dropdown_menu li :hover {
  color: var(--color-ternary);
  background: none;
}

.dropdown_menu .dropdown-item {
  padding: 0;
}

.dropdown_menu .dropdown-item.active,
.dropdown_menu .dropdown-item:active {
  color: var(--color-ternary);
  background-color: unset;
}

/* ---bottom-navigation-start----- */
.bottom_nav {
  display: none;
  background: var(--color-primary) !important;
  padding: 0;
}

.bottom_nav > .container-fluid {
  display: block !important;
}

.bottom_nav_cont {
  padding: 0;
  margin: 0;
}

.bottom_nav_cont ul {
  padding: 0;
  margin-bottom: 0;
}

.bottom_nav_cont li {
  list-style-type: none;
}

.bottom_nav_cont li a {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  padding: 0 10px;
}

.bottom_nav_cont li .active{
  color: var(--color-ternary)!important;
}

.bottom_nav_cont li a i {
  font-size: 1.5rem;
}

.bottom_nav_cont li a .circle {
  background: #ffffff;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  top: -5px;
}

.bottom_nav_cont li a .circle img {
  width: 40px;
}

.make_it_icon {
  position: relative;
  top: -8px;
}

.bottom_nav .navbar-toggler span {
  font-size: 14px;
}

.bottom_nav .navbar-nav a {
  color: #ffffff;
  font-size: 14px;
}

.bottom_nav_links {
  padding: 0 0 0 10px !important;
}

.bottom_nav_links li{
  list-style-type: none;
}

/* ---bottom-navigation-end----- */

/* ----header-section-end---- */

/* ------hero-section-start----- */

.hero_sect {
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero/hero_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero_shape {
  /* width: 550px;
    height: 600px; */
  width: 566px;
  height: 587px;
  background: var(--color-ternary);
  transform: rotate(30deg);
  position: absolute;
  top: 0;
  right: -250px;
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border: 1px solid var(--color-primary);
}

.hero_img img {
  position: absolute;
  /* width: 450px; */
  width: 430px;
  /* right: -35px; */
  right: 0;
  top: 30px;
  z-index: 100;
}

.hero_intro_txt,
.hero_main_txt span {
  font-size: 3rem;
  font-weight: normal !important;
}

.hero_cont {
  padding: 80px 0 80px 0;
  max-width: fit-content;
}

.hero_main_txt {
  font-size: 6rem;
  line-height: 5rem;
}

.hero_main_txt2 {
  font-size: 9rem;
  color: var(--color-ternary);
}

.hero_descp {
  text-transform: uppercase;
  font-size: 1.8rem !important;
  font-weight: 500;
}

.hero_btn_box {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.hero_btn {
  background: var(--color-ternary);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: right;
  transition: var(--transition-threesec);
}

.hero_btn:hover {
  background: #d3a62c;
  transform: scale(1.1);
}

/* ------hero-section-end----- */

/* ---what-we-do-section-start--- */
.what_we_do {
  position: relative;
  overflow: hidden;
}

.slider_bulldozer img {
  width: 75%;
}

.what_we_square {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(39, 69, 95, 0.97);
  transform: rotate(33deg);
  top: 40%;
  left: -425px;
}

.section_title h3 {
  font-size: 2.5rem;
  font-weight: 600;
}

.what_img {
  position: relative;
}

.what_img img {
  width: 100%;
  z-index: 2;
  position: relative;
  object-fit: cover;
}

/* .what_img_overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-primary);
  z-index: 1;
  left: -7px;
  top: 7px;
} */

.what_cont h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
  width: max-content;
}

.what_cont h3::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--color-ternary);
  display: block;
  margin: 5px 0;
  z-index: 2 !important;
}

.what_cont p {
  font-size: 1.2rem;
}

.what_cont2 h3 {
  text-align: right;
}
/* 
.what_img2 .what_img_overlay2{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-primary);
  z-index: 1;
  bottom: -7px;
  right: -7px;
} */

.what_cont2 h3::after {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--color-ternary);
  display: block;
  margin: 5px 0;
  z-index: 3 !important;
}

.what_cont2 p {
  text-align: right;
}

.what_cont2 .video-play-button:after {
  right: 0 !important;
  left: unset;
}

.what_cont2 .video-play-button:before {
  left: unset;
  right: -25px;
}

.what_cont2 .video-play-button span {
  left: unset;
  right: 15px;
}

.section_title {
  margin-bottom: 25px;
}

.section_title h3 {
  text-transform: uppercase;
}

.what_we_do .slick-dots {
  width: 94%;
}

.what_we_do .slick-dots li button {
  color: var(--color-primary) !important;
}

.what_we_do .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.what_we_do .slick-dots li.slick-active button:before {
  opacity: 0.75;
}

.what_we_do .slick-dots li button::before {
  font-size: 25px !important;
  color: var(--color-primary) !important;
}

.service_readmore {
  text-decoration: none;
  font-size: 12px;
  color: var(--color-quarternary);
  background: var(--color-ternary);
  color: var(--text-color);
}

.service_readmore:hover {
  text-decoration: underline;
}

.make_slider_wrap {
  position: relative;
}

/* ----video-play-css--- */

.video_btn_box {
  position: absolute;
  top: 30%;
  left: 40%;
}

.video-play-button {
  position: relative;
  z-index: 10;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  position: absolute;
  left: 25px;
  content: "";
  z-index: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--color-quarternary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  top: 25px;
}

.video-play-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--color-quarternary);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 15px solid transparent;
  left: 20px;
  top: 12px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* ---what-we-do-section-end--- */

/* ----free-plan-section-start---- */

.get_free_plan {
  overflow: hidden;
  padding: 40px 0 80px 0;
}

.get_free_plan .section_title p {
  padding-right: 100px;
}

.free_plan {
  background: #f9c53414;
}

.free_plan_info {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.free_pan_shape {
  position: absolute;
  width: 850px;
  height: 550px;
  background: var(--color-ternary);
  right: -400px;
  transform: rotate(15deg);
  z-index: -1;
  border: 1px solid var(--color-primary);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.get_free_plan .section_title {
  margin-bottom: 0;
}

.get_free_plan .section_title h3,
.get_free_plan .section_title p {
  margin-bottom: 25px;
}

.get_free_plan .section_title p {
  font-size: 1.2rem;
}

.form_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form_item label {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-color);
}

.form_item input,
.form_item textarea {
  border: none;
  outline: none;
  border-bottom: 3px solid var(--color-primary);
  padding: 5px 0;
  background: transparent;
}

.form_item textarea {
  resize: none;
}

.form_btn .btn {
  background: var(--color-ternary) !important;
  font-size: 1.25rem;
  padding: 5px 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-top: 15px;
}

.form_btn .btn:hover {
  background: #d3a62c !important;
}

.form_info h4 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 0 0 65px;
}

.info_box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info_box a {
  text-decoration: none;
}

.info_box a:hover {
  color: var(--color-quarternary);
}

.info_icon img {
  width: 50px;
}
.info_box {
  margin-bottom: 50px;
}

/* ----free-plan-section-end---- */

/* ----services-section-satrt----- */

.our_services {
  background-image: url("../images/services/services_bg.png.html");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.our_services_shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--color-ternary);
  left: -610px;
  top: 40%;
  transform: rotate(45deg);
  border: 1px solid var(--color-primary);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service_box {
  margin-bottom: 30px;
  border: 1px solid #7f93965e;
  padding: 15px;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service_img_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_img_box img {
  width: 150px;
}

.service_heading h5 {
  text-align: center;
}

.service_txt p {
  text-align: center;
  font-weight: 300;
}

/* ----services-section-end----- */

/* -----projects-section-start----- */

.project_sect {
  background-image: url("../images/projects/proj_bg.png.html");
  background-repeat: no-repeat;
  background-size: cover;
}

.project_card {
  border-radius: 5px;
  display: block;
  overflow: hidden;
  position: relative;
}

.project_card_overlay {
  background-image: linear-gradient(
    to top,
    rgba(249, 197, 52, 0.7),
    rgba(39, 69, 95, 0.7)
  );
  backdrop-filter: blur(5px);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: var(--transition-threesec);
  padding: 15px;
}

.project_card_overlay h4 {
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
}

.project_card_overlay h4::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-ternary);
  display: block;
}

.project_card_overlay p {
  color: #ffffff;
}

.project_card:hover .project_card_overlay {
  top: 45%;
}

.project_card img {
  width: 100%;
  border-radius: 5px;
  transition: var(--transition-threesec);
}

.project_card:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.project_btn {
  background: var(--color-ternary);
  padding: 5px 10px;
  margin-top: 15px;
  transition: var(--transition-threesec);
  font-size: 12px !important;
}

.project_btn:hover {
  background-color: #f9c434bb;
  transform: scale(1.1);
}

.project_sect {
  background-image: url("../images/testimonials/testi_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.project_sect .slick-dots li button:before {
  font-size: 25px !important;
}

.project_sect .slick-next:before,
.project_sect .slick-prev:before {
  color: var(--color-primary);
  font-size: 20px;
}

.gall_project_descp {
  padding: 10px;
}

.project_item {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
}

/* -----projects-section-end----- */

/* ----cta-section-start---- */

/* ---cta-section-start--- */

.cta_sect {
  position: relative;
  padding-top: 40px;
}

.cta_box h3 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--text-color);
}

.cta_box p {
  color: var(--text-color);
  font-size: 1.25rem !important;
}

.cta_box a {
  margin-top: 15px;
}

/* .cta_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 15px;
} */

.cta_overlay2 {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(
    to top right,
    var(--color-primary),
    var(--color-ternary)
  );
  z-index: -1;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 0px rgba(0, 95, 120, 0.2);
}

.cta_wrap {
  position: relative;
  background-image: url("../images/cta/cta_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px;
  border-radius: 15px;
}

.cta_wrap .row {
  position: relative;
  z-index: 1;
}

.cta_img_box {
  position: relative;
}

.cta_box .hero_btn {
  background: var(--color-primary);
  color: var(--text-white);
}

.cta_img_box img {
  width: 371px !important;
  position: absolute;
  top: -162px;
  right: -53px;
  border-radius: 15px;
}

.design_details {
  padding: 15px;
}

.design_details p {
  font-weight: 600;
}

.design_details span {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition-threesec);
}

.design_details span:hover {
  color: var(--color-ternary);
}

img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ---cta-section-end--- */

/* -------vr-360-section-start------ */

.vr_360 {
  background: #f9c43411;
  position: relative;
  overflow: hidden;
}

.section_title span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-ternary);
}

.vr_left_box img {
  width: 100%;
}

.vr_right_box img {
  width: 100%;
}

/* -------vr-360-section-end------ */

/* ----testimonial-section-start------ */

.client_testimonial{
  padding-top: 0;
}

.sk_branding a {
  display: none!important;
}

.testi_sect {
  background-image: url("../images/testimonials/testi_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}

.testi_left img {
  width: 100%;
}

.testi_left h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.testi_left p {
  margin-bottom: 95px;
}

.testi_wrap {
  background: #7f93962e;
  padding: 30px 25px;
  border-radius: 15px;
  /* max-height: 230px; */
}

.testi_card {
  border: 1px solid #7f93962e;
  border-radius: 5px;
  max-height: 350px;
  margin-bottom: 25px;
  position: relative;
  /* background: #7f9396d3; */
  background: var(--text-white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testi_card_img img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.testi_card_cont {
  padding: 10px;
  position: relative;
  top: -50px;
}
.user_icon_box {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.user_icon_box i {
  font-size: 50px;
  background: var(--text-white);
}

.user_name h6 {
  text-align: center;
  margin-bottom: 15px;
}

.user_review {
  font-size: 12px !important;
  text-align: center;
}
/* ----testimonial-section-end------ */

/* ----gallery-page-start---- */
.gallery_sect .nav-tabs .nav-link.active {
  color: var(--color-ternary) !important;
}

.gallery_sect .nav-item .nav-link {
  padding: 5px 15px !important;
}

.gallery_sect .nav-underline .nav-link.active {
  font-weight: normal;
}
.gallery_sect .project_gall_card {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.gallery_modal .modal-dialog {
  max-width: 95% !important;
}

.gallery_item {
  overflow: hidden;
}

.gallery_item img {
  transition: var(--transition-threesec);
}

.gallery_item:hover img {
  transform: scale(1.1);
}

.archi-construct .project_gall_card {
  border-radius: 5px;
}

.archi-construct img {
  border-radius: 5px !important;
}

.project_details > span,
.project_config > span {
  display: block !important;
}

.project_config > span {
  font-size: 12px;
}

.gall_project_descp .project_location {
  font-size: 12px;
}

.proj_cont {
  text-align: justify;
  padding-bottom: 15px;
}

.project_config .project_view {
  font-size: 12px;
  text-decoration: none;
  background: var(--color-ternary);
  color: var(--text-color);
  padding: 5px;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition-threesec);
}

.project_config .project_view:hover {
  background: #d3a62c;
}

.project_item:hover .project_gall_card img {
  transform: scale(1.1);
}

/* ----gallery-page-end---- */

/* ----footer-section-start--- */

.footer_sect {
  /* background: var(--text-color); */
  /* background: #f9c43494; */
  background-image: url('../images/footer/footer_bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom: 1px dotted var(--color-secondary);
  position: relative;
}

.footer_copyright {
  background: var(--text-color);
  padding: 15px 0;
}

.footer_copyright p {
  color: var(--text-white);
  font-size: 12px !important;
  margin-bottom: 0;
  line-height: unset;
}

.footer_copyright a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-threesec);
}

.footer_copyright a:hover {
  color: var(--color-secondary);
}

.footer_box h5 {
  margin-bottom: 15px;
  /* color: var(--text-white); */
  color: var(--text-color);
}

.footer_box ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.footer_box ul li a {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

.footer_logo {
  width: 150px;
}

.footer_box ul li a:hover {
  color: var(--color-secondary);
}

.footer_box ul li:last-child a {
  margin-bottom: 0;
}

.footer_input form {
  display: flex;
}

.footer_input input {
  width: 100%;
  padding: 10px;
  border: none;
}

.footer_input input:focus {
  outline: 1px solid var(--color-ternary);
}

.footer-btn {
  background: var(--color-ternary);
  border-radius: unset;
  transition: var(--transition-threesec);
}

.footer-btn:hover {
  background-color: #f9c434cc;
}

.footer_socials ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin-bottom: 0;
}

.footer_socials ul li {
  list-style-type: none;
}

.footer_socials a {
  transition: var(--transition-threesec);
}

.footer_socials a img {
  width: 25px;
}

.footer_cntc {
  margin-top: 15px;
}

.footer_cntc .footer_socials ul{
  flex-direction: column;
}

.footer_cntc .footer_socials ul li a{
  margin-bottom: 0;
}

.footer_cntc .footer_socials ul li a:hover {
  color: var(--color-secondary);
  transform: unset;
}

.footer_socials ul li a:hover {
  transform: scale(1.1);
}

.auto_year {
  color: var(--text-white);
}

.sart_icon {
  width: 25px;
}

/* ----footer-section-end--- */

/* -----services-page-start------ */
.service_banner {
  background-image: url("../images/projects/6.png.html");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_overlay {
  position: absolute;
  width: 100%;
  height: 95.6%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service_overlay h2 {
  font-size: 3rem;
}

.service_overlay a {
  text-align: center !important;
}

.scroll {
  width: 50px;
  height: 50px;
  border: 2px solid var(--text-white);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;
}
.scroll::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--text-white);
  border-bottom: 2px solid var(--text-white);
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}
@-webkit-keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(15px);
  }
  40% {
    transform: translate(0);
  }
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}
@-webkit-keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

.service_banner_heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_banner_heading h2 {
  font-size: 3rem;
  color: var(--text-white);
  padding: 15px;
  background: #d3a62c31;
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-ternary);
  display: inline-block;
}

.archi_sect {
  padding-bottom: 0;
  position: relative;
}

.archi_sect .slick-dots li button:before {
  font-size: 25px !important;
  color: var(--color-ternary) !important;
}

.archi_sect .slick-dots {
  bottom: 25px;
  /* bottom: 0; */
  z-index: 2;
}
.overview_sect,
.detailed_servi {
  background-image: url("../images/architecture/archi_sect_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.overview_sect {
  padding-top: 0;
}

.overview_sect .section_title {
  margin-bottom: 15px;
}

.overview_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overview_img img {
  border-radius: 5px;
}

.overview_img a {
  position: absolute;
  transform: translate(25%, 15%);
}

.overview_overlay {
  position: absolute;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  background: #f9c4342d;
  backdrop-filter: blur(1px);
  transition: var(--transition-threesec);
}

.overview_img:hover .overview_overlay {
  background: #f9c43400;
  backdrop-filter: blur(0px);
}

.count_up {
  padding: 30px;
  background: rgba(249, 196, 52, 0.651);
}

.count_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.count_box h4 {
  font-size: 3rem;
  padding: 15px;
}

.count_box p {
  text-transform: uppercase;
  border-left: 3px solid var(--color-secondary);
  font-size: 1.25rem !important;
  padding: 0 15px;
}

.count_box .bi-infinity {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
}

.det_servi_card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  border-radius: 5px;
  background: var(--text-white);
  border: 1px solid #ca2c2c28;
}

.det_servi_card img {
  max-width: 60px;
}

.det_servi_card_cont h5 {
  margin-bottom: 5px;
}

.recent_proj_sect {
  background-image: url("../images/architecture/gallery_build.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 40px;
}

.recent_proj_overlay {
  background: rgba(39, 69, 95, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.recent_proj_sect .section_title h3 {
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.recent_proj_card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recent_proj_card1 img {
  border-radius: 5px;
  transition: var(--transition-threesec);
}

.recent_proj_card:hover .recent_proj_card1 img {
  opacity: 0.5;
}

.recent_proj_card2 {
  width: 100%;
  background: rgba(211, 166, 44);
  position: relative;
  bottom: 50px;
  padding: 15px;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

.recent_proj_card2 h4,
.recent_proj_card2 p {
  color: var(--text-color);
  margin-bottom: 15px;
}

.project_descp {
  border-bottom: 1px dotted var(--color-primary);
}

.proj_loc {
  margin-top: 15px;
}
.proj_loc p {
  margin-bottom: 0;
}


.service_cta_wrap {
  background-image: url('../images/architecture/architecture-cta.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
}

.constr_cta{
  background-image: url('../images/construction/construction_cta.png')!important;
}

.resident_cta{
  background-image: url('../images/residential-interiors/resident_cta.png')!important;

}

.commer_cta{
  background-image: url('../images/commercial-interiors/commerical-interiors-cta.png')!important;
}

.service_cta_right {
  position: relative;
  border: 5px;
}

.service_cta_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color);
  z-index: -1;
  top: 10px;
  right: 10px;
}

.service_cta_right img {
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service_cta_btn {
  background: var(--color-primary);
  color: var(--text-white);
  transition: var(--transition-threesec);
}

.service_cta_btn:hover {
  background: var(--color-primary);
  transform: scale(1.1);
  color: var(--text-white);
}

.proj_gallery_sect {
  background-image: url("../images/architecture/gallery_bg.webp");
  background-repeat: repeat;
  background-size: cover;
}

.project_gall_card {
  overflow: hidden;
}

.project_gall_card img {
  transition: var(--transition-threesec);
}

.project_gall_card img:hover {
  transform: scale(1.1);
}

.gallery_text {
  margin: 15px 0 5px 0;
  line-height: 0 !important;
  font-size: 12px;
  font-weight: 500;
}

.gallery_subtext {
  font-size: 12px;
  line-height: 0 !important;
}

.fancybox-share span {
  color: var(--text-white);
}

.service_form_sect {
  background-image: url("../images/architecture/service_form_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.logo_slider {
  padding: 60px 0 0 0;
}

.logo_slider .slider_logo {
  filter: grayscale(1);
  transition: var(--transition-threesec);
  width: unset;
}

.logo_slider .slider_logo:hover {
  filter: grayscale(0);
}

.fancybox-infobar span {
  color: var(--text-white);
}

.no_padd {
  padding: 1px;
  margin-bottom: 1px !important;
}

.vr_element_box img {
  width: 100%;
}

.vr_element_box {
  position: absolute;
  width: 500px;
  top: 0;
  left: -500px;
}

.service_form_sect {
  position: relative;
  overflow: hidden;
}

/* -----services-page-end------ */

/* ----about-page-start----- */

.about_us {
  background-image: url("../images/architecture/gallery_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about_right {
  position: relative;
}

.about_img_overlay {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color);
  right: -30px;
  top: 30px;
  z-index: 1;
}
.about_right img {
  display: block;
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--color-ternary);
}

.about_second {
  background: var(--color-primary);
  margin-top: 40px;
  border: 2px solid var(--color-ternary);
}

.about_second_right {
  position: relative;
  left: -150px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--text-white);
}

.about_second_right p {
  padding: 15px;
  border: 2px solid var(--color-secondary);
}

.about_third_img_box {
  position: relative;
}

.about_img3 {
  border: 2px solid var(--color-ternary);
  width: 100%;
}

.about_img_mini {
  position: absolute;
  bottom: -50px;
  right: -50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* ----about-page-end----- */

/* ------contact-us-page-start------ */
.contact_us {
  background-image: url("../images/contact/contact_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.contact_info_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 15px;
  background: var(--text-white);
  border-radius: 5px;
  transition: var(--transition-threesec);
  margin-bottom: 25px;
}

.contact_info_box:hover {
  background: var(--color-ternary);
}

.contact_info_box h4 {
  margin-bottom: 15px;
}

.contact_info_box i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact_info_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-height: 144px;
}

.contact_info {
  text-decoration: none;
  transition: var(--transition-threesec);
}

.contact_info:hover {
  text-decoration: underline;
}

.contact_info_box:hover i {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

.contact_info_wrap a {
  text-decoration: none;
}

.contact_info_wrap a:hover {
  text-decoration: underline;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.service_form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  border-radius: 5px;
  background: var(--text-white);
  margin-bottom: 15px;
}

.map_sect iframe {
  width: 100%;
  height: 350px;
}

/* ------contact-us-page-end------ */

/* ========social embedds======= */

.social-embedd {
  padding-top: 50px;
  padding-bottom: 50px;
}

.embedd-wrapper {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all ease;
  border: none;
  border-radius: 5px;
}

.embedd-wrapper.embedd-wrapper-1 {
  box-shadow: rgba(131, 58, 180, 0.5) 0px 50px 100px -20px,
    rgba(131, 58, 180, 0.3) 0px 30px 60px -30px;
  color: #833ab4;
}

.embedd-wrapper.embedd-wrapper-2 {
  box-shadow: rgba(24, 119, 242, 0.5) 0px 50px 100px -20px,
    rgba(24, 119, 242, 0.3) 0px 30px 60px -30px;
  color: #1877f2;
}

.embedd-wrapper.embedd-wrapper-3 {
  box-shadow: rgba(255, 0, 0, 0.5) 0px 50px 100px -20px,
    rgba(255, 0, 0, 0.3) 0px 30px 60px -30px;
  color: #ff0000;
}
.embedd-wrapper.embedd-wrapper-4 {
  box-shadow: rgba(0, 114, 177, 0.5) 0px 50px 100px -20px,
    rgba(0, 115, 177, 0.3) 0px 30px 60px -30px;
  color: #0072b1;
}

.social-embedd .social-heading-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.social-heading-box {
  padding: 15px 0;
  background: #ffffff;
  border-bottom: 2px solid #d3d3d3;
}

.social-heading-box p {
  font-size: 18px;
}

.social-heading-box a i {
  font-size: 35px;
}

.social-heading-box a:hover {
  color: unset;
}

.social-content span,
.social-content iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: unset !important;
  height: 460px;
}

.instagram-media {
  min-height: 465px;
}

/* ========social-embedd-end========== */

/* ------back-to-top-start------ */
.bck_top {
  background-color: #ff9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  /* opacity: 0;
  visibility: hidden; */
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bck_top::after {
  content: "↑";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 50px;
  color: #fff;
}
.bck_top:hover {
  cursor: pointer;
  background-color: #333;
}
.bck_top:active {
  background-color: var(--color-primary);
}

/* .bck_top.show,
.icon_float.show {
  opacity: 1;
  visibility: visible;
} */

/* ------back-to-top-end------ */

/* -----floating-icon-start---- */
.icon_float {
  position: fixed;
  right: 15px;
  bottom: 75px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  /* opacity: 0;
  visibility: hidden; */
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.icon_float i {
  font-size: 40px;
  color: #25d366;
}

.icon_float::after {
  content: unset;
}
/* -----floating-icon-end---- */

/* -----animations-start--- */

/* --hero-section-start-- */

.hero_element {
  opacity: 0;
  transform: translateY(-365px);
  transition: transform 1.5s ease-out, opacity 0.6s ease-in-out;
  transition-delay: 1s;
}

.hero_shape {
  opacity: 0;
  transition: opacity 2.5s ease-in;
}

.hide_shape {
  opacity: 0;
  transition: opacity 1.5s ease-in;
}

.visible_heroshape {
  opacity: 1;
}

.slide_heroimg {
  transform: unset !important;
  opacity: 1 !important;
}

.intro_text {
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
  position: relative;
  display: block;
  transform: translateY(-60px);
}

.sub_text {
  opacity: 0;
  transition: transform 1.3s ease-out, opacity 1.3s ease-out;
  position: relative;
  transform: translateX(60px);
}

.main_text {
  opacity: 0;
  transition: transform 1.3s ease-out, opacity 1.3s ease-out;
  position: relative;
  transform: translateY(60px);
}

.main_descp {
  opacity: 0;
  transition: transform 1.6s ease-out, opacity 1.6s ease-out;
  position: relative;
  transform: translateY(-60px);
}

.hide_btn {
  opacity: 0;
  transition: transform 2s ease-out, opacity 2s ease-out;
  position: relative;
  transform: translateY(30px);
}

.show_introtext,
.show_subtext,
.show_maintext,
.show_maindescp,
.show_btn {
  opacity: 1;
  transform: unset;
}

.show_subtext {
  opacity: 1;
  transform: unset;
}
/* --hero-section-end-- */

/* ---what-make-section-start--- */

.slider_bulldozer {
  position: absolute;
  right: -450px;
  width: 30%;
  top: 50%;
}

.card_left,
.card_right {
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  transform: translateX(-60px);
}

.card_right {
  transform: translateX(60px);
}

.card_heading_left {
  opacity: 0;
  transition: transform 2s ease-out, opacity 2s ease-out;
  transition-delay: 0.3s;
  transform: translateX(60px);
}

.card_descp_left {
  opacity: 0;
  transition: transform 2s ease-out, opacity 2s ease-out;
  transition-delay: 0.6s;
  transform: translateX(60px);
}

.card_heading_right {
  opacity: 0;
  transition: transform 2s ease-out, opacity 2s ease-out;
  transition-delay: 0.3s;
  transform: translateX(-60px);
}

.card_descp_right {
  opacity: 0;
  transition: transform 2s ease-out, opacity 2s ease-out;
  transition-delay: 0.6s;
  transform: translateX(-60px);
}

.card_slide_left,
.card_slide_right,
.card_heading_slide_left,
.card_descp_slide_left,
.card_heading_slide_right,
.card_descp_slide_right,
.show_shape {
  opacity: 1;
  transform: unset;
}

/* -----why-make-it-section-satrt----- */

/* .why_make_it_sect{
  background-image: url('../images/why-makeit/what_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
} */

.why_make_img img {
  width: 100%;
}

.why_make_wrap {
  background: #ffffff;
  padding: 15px;
  border: 1px solid #34455634;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: var(--transition-threesec);
}

.why_make_wrap:hover .why_make_img img {
  -webkit-animation: roll-in-blurred-left 1s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: roll-in-blurred-left 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.why_make_wrap:hover {
  border: 1px solid #f9c434d3;
  /* background: #344556b7; */
}

/* .why_make_wrap:hover h5,
.why_make_wrap:hover p {
  color: #ffffff;
} */

.make_it_video .slick-dots li button:before{
  font-size: 1.5rem;
  color: var(--color-ternary);
}

.make_it_video .slick-dots li button:after,  .make_it_video .slick-dots li.slick-active button:before {
  color: var(--color-ternary);
}

.make_it_video .video_interview_box{
  padding:0 15px;
}

@-webkit-keyframes roll-in-blurred-left {
  0% {
    -webkit-transform: translateX(-1000px) rotate(-720deg);
    transform: translateX(-1000px) rotate(-720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes roll-in-blurred-left {
  0% {
    -webkit-transform: translateX(-1000px) rotate(-720deg);
    transform: translateX(-1000px) rotate(-720deg);
    -webkit-filter: blur(50px);
    filter: blur(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* ---what-we-make-section-end--- */

/* ---vr-360-start---- */

.vr_img {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}

@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

#vrview iframe {
  width: 100%;
  height: 400px;
}

.view_360 #vrview iframe {
  height: 600px;
}

/* ---vr-360-end---- */

/* -----animations-end--- */

.cta_bulk {
  font-size: 1.5rem;
  font-weight: 600;
}

/* ------fancybox-customization------- */

.fancybox-content ul{
  display: flex;
  padding: 0;
  margin: 0;
}

.fancybox-content ul li{
 list-style-type: none;
}

.fancybox-content ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
}

.fancybox-content ul li a i{
  font-size: 30px;
  padding: 0 15px;
}

.fancybox-content ul li a:hover{
  color: var(--color-ternary);
}

.fancybox-content ul li a:hover i{
  color: var(--color-ternary);
}


/* ---------21-08-2024------- */

.make_it_video{
  background: var(--color-primary);
  padding: 50px 0;
  position: relative;
}

.make_it_video_wrap{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.make_it_video_wrap .video-play-button{
  position: absolute;
}

.make_it_video_wrap iframe{
  width: 100%;
  max-width: 100%;
  height: 550px;
  border-radius: 5px;
}

.make_it_video{
  background-image:url('../images/home-tour/home_tour_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.make_it_video_wrap img{
  transition: filter 0.3s ease;
  margin-bottom: 30px;
}

.make_it_video_wrap:hover img{
  filter: grayscale(0.7);
}

/* ------member-slider------ */
.slide_item{
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.slide_item img{
  width: 100%;
  filter: grayscale(1);
  transition: filter 0.3s ease,transform 0.3s ease;
  border-radius: 5px;
}

.slide_item img:hover{
  filter: grayscale(0);
  transform: scale(1.1)
}

.member_slide_track{
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
  justify-content: center;
}


/* ------project-detail-page-start------ */
.project_detail_sect{
  background-image: url('../images/projects/jayam-complex/jayam-complex-3.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.parashuram_bg{
  background-image: url('../images/projects/parashuram-devanahalli/parashuram-devanahalli-3.png');
}

.rajeev_bg{
  background-image: url('../images/projects/rajeev-residence/4.png.html');
}

.savita_bg{
  background-image: url('../images/projects/savita-konankunte/savita-konankunte-10.png');
}

.santhosh_bg{
  background-image: url('../images/projects/santhosh-devanahalli/santhosh-devanahalli-12.png');
}

.atiyas_bg{
  background-image: url('../images/projects/atiyas-electric/atiyas-electric-3.png');
}

.dilkush_bg{
  background-image: url('../images/projects/dilkush/dilkush-7.png');
}

.haricons_bg{
  background-image: url('../images/projects/haricons/haricons-2.png');
}

.jolger_bg{
  background-image: url('../images/projects/jolger/jolger-1.png');
}

.succo_bg{
  background-image: url('../images/projects/succo-bank/succo-bank-1.png');
}

.trempplin_bg{
  background-image: url('../images/projects/trempplin/trempplin-14.png');
}

.xdw_bg{
  background-image: url('../images/projects/XDW/XDW-7.png');
}

.namma_kudla_bg{
  background-image: url('../images/projects/namma-kudla/namma-kudla-4.png');
}

.igadgets_bg{
  background-image: url('../images/projects/i-gadgets/i-gadgets-7.png');
}

.project_detail_overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project_detail_hero{
  height: 100vh;
}

.project_detail_hero h2{
  font-size: 3rem;
  padding: 5px;
  border-radius: 5px;
}

.project_sub_detail{
  padding: 30px 0;
}

.project_detail_loc{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.project_detail_loc i{
  font-size: 2rem;
}

.project_detail_loc p{
  font-weight: 600;
  font-size: 1.25rem!important;
}

.project_sub_card{
  border: 1px solid #b9cadb;
  padding: 15px;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #ffffffff;
}

.project_detail_descp_box h3{
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.project_detail_descp_box p{
  margin-bottom: 10px!important;
}

.project_sub_wrap{
  background-image: url('../images/project-detail/project-detail_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.project_detail_gallery{
  margin-bottom: 30px;
}

.project_detail_img_card{
  overflow: hidden;
}

.project_detail_img_card img{
  transition: transform 0.3s ease;
}


.project_detail_img_card:hover img{
  transform: scale(1.1);
}

.project_detail_gallery .no_padd{
  margin-bottom: 0!important;
}

.project_detail_btn{
  background: var(--color-ternary);
  font-weight: 500;
  font-size: 1.5rem;
  transition: transform 0.3s ease,background-color 0.3s ease;
  display: inline-block;
  text-align: center;
}

.back_to_projects{
  display: inline-block;
  margin: 15px 0;
  transition: color 0.3s ease;
}

.back_to_projects:hover{
  color: var(--color-secondary);
}

.project_detail_btn:hover{
  transform: scale(1.1);
  background: #d3a62c;
}

.consult_btn_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.threesixty_vr h3{
  text-decoration: underline;
  padding: 15px;
}

.form_item .error{
  color: #ff0000!important;
  font-size: 14px;
}

.video_interview_box{
  border-radius: 15px;
  position: relative;
  margin-bottom: 15px;
}

.video_interview_box img{
  border-radius: 15px;
  transition: filter var(--transition-threesec);
}

.video_interview_box:hover img{
  filter: blur(2px);
}

.video_interview_box .video-play-button{
  position: absolute;
  z-index: 10;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  top: 55%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

/* -----modal-form-start--- */
.modal-body .service_form{
  box-shadow: none;
  padding: 0;
}

.custom_modal .modal-title{
  font-size: 1.75rem!important;
}

.service_form input::placeholder,.service_form textarea::placeholder{
  color: #b5b5b5;
}

.hero_btn_box{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.hero_whatsapp_btn{
  background: #ffffff;
  border: 1px solid var(--color-ternary);
}

.hero_whatsapp_btn:hover{
  color: #25d366;
  background: #ffffff;

}

.hero_whatsapp_btn i{
  color: #25d366;
  margin-left: 5px;
  display: inline-block;
}

.hero_whatsapp_btn:hover i{
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both!important;
	        animation: heartbeat 1.5s ease-in-out infinite both!important;
}

.jello-horizontal {
  display: inline-block;
	-webkit-animation: jello-horizontal 0.9s both;
	        animation: jello-horizontal 0.9s both;
}

.vr_360 .vr_right_box{
  border-radius: 15px!important;
}

.vr_360 .vr_right_box iframe{
  border-radius: 15px!important;
}

@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


/* -----modal-form-end--- */

@media only screen and (min-width:768px) and (max-width:992px){
  .project_sub_card {
    min-height: 128px;
  }

  .project_detail_btn {
    font-size: 1rem;
  }

  }

  @media only screen and (min-width:992px) and (max-width:1199px){
    .project_detail_btn {
      font-size: 1.25rem;
  }
    
    }
/* ------project-detail-page-end------ */

/* --------------cost-estimator-start---------------- */

.project_estimator{
  font-size: 2.5rem!important;
}

.mb-6 {
  margin-bottom: 1.5rem;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.w-full {
  width: 100%;
}
.max-w-3xl {
  max-width: 48rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.estimate_btns button:nth-child(1),.estimate_btns button:nth-child(2),.estimate_btns button:nth-child(3){
  outline: none;
  border: none;
}

.estimate_btns button:nth-child(1){
  background: var(--color-quarternary);
}

.estimate_btns button:nth-child(2){
  background: var(--color-ternary);
  color: var(--text-color)!important;
}

.estimate_btns button:nth-child(3){
  background: var(--color-primary);
}


/* --------------cost-estimator-end---------------- */


