/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    text-transform: none;
    font-style: normal;
    background-color: #fff;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
   font-family: "Marcellus", serif;
}
h1 {
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 30px;
}
h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
/*************************
* Header start
*************************/
header.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.top-bar ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.top-bar ul li a{
    color: #fff;
}
.main-nav {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 30px;
}
.main-nav ul{
    display: flex;
    align-items: center;
    column-gap: 30px;
    border-top: 2px solid #999999;
    width: 350px;
    justify-content: space-between;
}
.main-nav ul li{
    padding: 10px 15px;
}
.main-nav ul li::after{
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    height: 2px;
    width: 0;
    transition: all 0.5s;
    background-color: #fff;
}
.main-nav ul li.active::after, .main-nav ul li:hover::after{
    width: 100%;
}
.main-nav ul li a{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
        display: flex
;
    align-items: center;
    column-gap: 5px;
}
.main-nav ul li a i {
    font-size: 14px;
    transition: all 0.5s;
}
.main-nav ul li:hover a i{
    transform: rotate(180deg);
}
.main-header-inner {
    padding: 15px 0;
    padding-top: 20px;
    position: relative;
}
.logo {
    max-width: 350px;
    padding-bottom: 20px;
}
.Primary-btn {
    padding: 8px 16px;
    color: #fff;
    display: inline-flex;
    column-gap: 20px;
    background: linear-gradient(152deg,rgba(237, 193, 62, 1) 0%, rgba(120, 91, 4, 1) 34%, rgba(120, 91, 4, 1) 56%, rgba(237, 193, 62, 1) 100%);
    background-size: 400% 400%;
    font-family: 'Marcellus';
    border-radius: 4px;
    align-items: center;
}
.Primary-btn:hover{
    background-position: right;
    transform: scale(1.05);
}
.Primary-btn i{
    transition: all 0.5s;
    transform: rotate(-45deg);
}
.Primary-btn:hover i{
    transform: rotate(0deg);
}
.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}
.header-menu-collaps span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: #fff;
}
.header-menu-collaps span:nth-child(2){
    width: 32px;
}
.header-menu-collaps span:nth-child(3){
    width: 16px;
}
/*************************
* banner start
*************************/
.banner-section{
    position: relative;
    height: 100vh;
}
.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / 79%) 0%, rgba(237, 221, 83, 0) 100%);
}
.banner-video{
    height: 100%;
}
.banner-video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*************************
* about start
*************************/
.about-section {
    padding: 100px 0;
    overflow: hidden;
}
span.sub-heading {
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #d8a50f;
}
span.sub-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -120px;
    height: 2px;
    width: 100px;
    background-color: #daa50f;
    transform: translateY(-50%);
}
.about-right h4 {
    margin-bottom: 10px;
}
ul.about-list {
    margin-bottom: 30px;
}
ul.about-list li {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 10px;
    font-size: 18px;
}
ul.about-list li i {
    color: #d8a50f;
}
.about-right {
    padding-left: 40px;
}
.first-image {
    height: 400px;
    width: 80%;
    overflow: hidden;
}
.first-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.first-image:hover img{
    transform: scale(1.1);
} 
.about-left {
    position: relative;
    height: 100%;
}
.sec-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 5px solid #fff;
    border-right: 0;
    overflow: hidden;
}
.sec-image img {
    transition: all 0.5s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.favicon-box {
    position: absolute;
    bottom: 0;
}
.sec-image:hover img {
    transform: scale(1.1);
}
/*************************
* service start
*************************/
.service-section {
    padding: 100px 0;
    background-color: #00000000;
    color: #000;
    background-image: url(../images/service-bg.png);
    background-position: center;
    padding-bottom: 200px;
}
.heading-box h2 span.bg {
    color: #d8a50f;
}
.heading-box h2 span.smoll {
    font-size: 16px;
    color: #000000;
    font-style: italic;
    font-family: 'Jost';
    padding: 5px 33px;
    border-radius: 32px;
    background: linear-gradient(90deg, rgb(19 19 19 / 23%) 0%, rgba(12, 18, 21, 0) 100%);
    max-width: 490px;
    line-height: 25px;
    display: inline-block;
    transform: translateY(  6px);
}
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 24px;
}
.service-header h4{
    margin-bottom: 0;
}
.service-header a{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #d8a50f;
    color: #fff;
    transform: rotate(-45deg);
}
.service-box {
    padding: 30px;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    width: 520px;
    border: 1px solid #d8a50f;
    overflow: hidden;
    transition: all 0.5s;
    margin: 0 16px;
    position: relative;
    background-color: #fafafa;
}
.service-slider .slick-list.draggable{
    padding-top: 24px;
}
.service-box:hover{
    transform: translateY(-10px);
        box-shadow: 0 0 15px #d8a50f;
}
.service-content p{
    margin-bottom: 0;
    display: -webkit-box;
  -webkit-line-clamp: 5;      
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-content {
    display: flex;
    align-items: end;
    column-gap: 20px;
}
.service-image {
    margin-left: -30px;
    margin-bottom: -30px;
    width: 56%;
    flex-shrink: 0;
    overflow: hidden;
}
.service-image img{
    transition: all 0.5s;
}
.service-box:hover .service-image img{
    transform: scale(1.1);
}
.service-box:hover .service-header a{
    transform: rotate(0);
}
.heading-box {
    margin-bottom: 40px;
}
.service-button{
    margin-bottom: 12px;
}
.service-slider {
    position: relative;
}
 .service-slider button.slick-arrow {
    position: absolute;
    top: -30px;
    left: 0;
    border: none;
    background-color: transparent;
    color: #d8a50f;
}
 .service-slider button.slick-next.slick-arrow{
    left: 50px;
 }
/*************************
* why-choose start
*************************/
.why-choose-section {
    padding: 100px 0;
}
.why-choose-details-box {
    margin-bottom: 24px;
}
.why-choose-details-box h4 {
    margin-bottom: 10px;
    font-weight: 500;
}
.why-choose-left {
    padding-right: 40px;
    position: sticky;
    top: 50px;
}
.why-choose-box {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    background: linear-gradient(128deg, rgba(0, 0, 0, 1) 4%, rgb(196 144 0 / 85%) 128%);
    background-size: 300% 300%;
    background-position: center;
    transition: all 0.5s;
     margin-bottom: 20px;
     height: 260px;
     
}
.why-choose-box:last-child{
    margin-bottom: 0;
}
.why-choose-box:hover{
    background-position: right;
}
.why-choose-box .icon {
    margin-bottom: 10px;
}
.why-choose-box h4 {
    margin-bottom: 12px;
}
.why-choose-box.two h4, .why-choose-box.two .icon{
    color: #daa50f;
}
/*************************
* counter start
*************************/
.counter-section {
    margin-bottom: -108px;
    position: relative;
    z-index: 1;
}
.counter-item {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    transition: all 0.5s;
    background: linear-gradient(128deg, rgba(0, 0, 0, 1) 4%, rgb(196 144 0 / 100%) 128%);
    background-size: 300% 300%;
    background-position: center;
}
.counter-item:hover{
    transform: scale(1.1);
}
.counter-item h4 {
    padding: 23px;
    display: inline-block;
    border: 4px solid #daa50f;
    border-radius: 12px;
    font-size: 40px;
    background-color: #daa50f75;
}
.counter-item:hover {
    background-position: right;
}
.counter-item p {
    margin-bottom: 0;
}
/*************************
* process start
*************************/
.process-section {
    background-color: #191b1e;
    padding: 100px 0;
    padding-top: 180px;
    color: #fff;
    position: relative;
        /* background-image: url(../images/process-bg.png);
    background-repeat: no-repeat;
    background-position: 37% 57%; */
}
.process-box {
    padding: 0 30px;
    text-align: center;
}
.process-box .icon {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 7px;
    border-radius: 100%;
    border: 1px solid #daa50f;
    background-color: #ffffff;
    color: #daa50f;
    font-size: 24px;
    transition: all 0.5s;
    position: relative;
}
.process-section svg.animated-path {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.process-box:hover .icon {
    box-shadow: 0px 2px 10px #d8a50f;
}
.process-box h4 {
    margin-bottom: 0px;
}
.row-gap-120 {
    row-gap: 64px;
}
.animated-path path {
  stroke-dasharray: 4000; 
  stroke-dashoffset: 4000;
  transition: stroke-dashoffset 2s ease-in-out;
}
.animated-path.active path {
  stroke-dashoffset: 0;
}
.animated-path {
    width: 1320px;
    height: auto;
    display: block;
}
/*************************
* testimonial start
*************************/
.testimonial-section {
    padding: 100px 0;
    background-image: url(../images/testi-bg.jpg);
    background-size: cover;
    overflow: hidden;
}
.testimonial-left ul {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 24px;
}
.testimonial-left ul li {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.testimonial-left ul li i {
    color: #d8a50f;
}
.testimonial-right {
    padding-left: 89px;
    position: relative;
}
.testimonial-head {
    display: flex;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 13px 40px 0px;
    background-color: rgb(255, 255, 255);
    transition: 500ms ease-in-out;
    margin-left: 40px;
}
.testimonial-image {
    margin-bottom: 0px;
    margin-right: 38px;
    margin-left: -40px;
    margin-top: 40px;
    flex-shrink: 0;
}
.testimonial-content {
    position: relative;
    overflow: hidden;
    padding: 40px;
    padding-right: 47px;
    padding-left: 0px;
}
.testimonial-image img {
    border: 5px solid #d9a81a;
}
.testimonial-content::before {
    content: "";
    width: 220px;
    height: 220px;
    background-image: linear-gradient(55deg, #d7c117 0%, #030108 100%);
    position: absolute;
    bottom: -96px;
    right: -86px;
    border-radius: 50%;
}
.testimonial-lower h4 {
    margin-bottom: 3px;
    font-size: 20px;
}
.testimonial-lower span {
    color: #d9a81a;
}
.testimonial-lower i {
    position: absolute;
    bottom: 27px;
    right: 30px;
    font-size: 45px;
    line-height: 1em;
    color: rgb(255, 255, 255);
}
.testimonial-right ul.slick-dots {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
        position: absolute;
    top: 50%;
    left: -55px;
    transform: translateY(-50%);
}
.testimonial-right ul.slick-dots::before {
    content: "";
    width: 4px;
    height: calc(100% + 74px);
    background-image: linear-gradient(0deg, rgb(235, 233, 240) 1%, rgb(217 168 26) 50%, rgb(235, 233, 240) 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.testimonial-right ul.slick-dots li button{
    font-size: 0;
    height: 15px;
    width: 15px;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid transparent;
}
.testimonial-right ul.slick-dots li.slick-active button{
    border-color: #d7c117;
}
.testimonial-box {
    margin: 10px 0;
}
/*************************
* cta start
*************************/
.cta-section {
    padding-bottom: 100px;
    margin-top: -140px;
}
.cta-section-inner {
    background-color: #191b1e;
    color: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background-image: url(../images/service-bg.png);
    background-size: cover;
}
.cta-section-inner .heading-box {
    margin-bottom: 24px;
}
.cta-button {
    display: flex;
    align-items: center;
    column-gap: 24px;
    justify-content: center;
}
/*************************
* footer start
*************************/
footer {
    padding-top: 60px;
    background-color: #ffffff80;
    background-image: url(../images/shape.png);
    background-blend-mode: overlay;
        background-repeat: no-repeat;
    background-position: bottom;
}
.about-footer {
    padding-right: 30px;
}
.footer-logo {
    margin-bottom: 24px;
}
ul.footer-social-media {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
ul.footer-social-media a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #d7c117;
    position: relative;
    color: #000;
}
ul.footer-social-media a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: #d7c117;
    transition: all 0.5s;
}
ul.footer-social-media a:hover::after{
    height: 100%;
    width: 100%;
}
ul.footer-social-media a i {
    position: relative;
    z-index: 1;
}
.footer-menu {
    display: flex;
    column-gap: 30px;
    justify-content: space-around;
}
.footer-menu ul li {
    margin-bottom: 15px;
}
.footer-menu ul li a {
    position: relative;
    color: #000;
    display: inline-block;
}
.footer-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #d8a50f;
    transition: all 0.5s;
}
.footer-menu ul li a:hover{
    color: #d8a50f;
}
.footer-menu ul li a:hover::after{
    width: 100%;
}
.news-latter-inner .form-control {
    border: 1px solid #d8a50f !important;
    border-radius: 6px;
    color: #000;
}
.news-latter-inner .form-group {
    position: relative;
}
.news-latter-inner button {
   position: absolute;
    top: 1px;
    right: 0px;
    border: none;
    background-color: #d8a50f;
    height: 44px;
    width: 46px;
    border-radius: 6px;
}
.news-latter-inner button i{
    transition: all 0.5s;
    transform: rotate(-45deg);
}
.news-latter-inner button:hover i{
    transform: rotate(0);
}
.footer-lower {
    margin-top: 40px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #00000073;
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #fff;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(119 119 119 / 20%);
}
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #000000;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #313131;
 }
 ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
 .svg-box svg path {
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: draw 3s forwards ease-in-out;
}
@keyframes draw {
    to {
      stroke-dashoffset: 0; 
    }
  }
  .loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.preloader {
    position: fixed;
    background-color: #0f110ff7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}
.svg-box {
    width: 1140px;
}
.heading-box h2 {
    font-family: "Alex Brush", cursive;
    font-size:32px;
}
.why-choose-lower {
    margin-top: 50px;
}
.megzin-section {
    padding: 60px 0;
}

.megzin-box:nth-child(2) {
    margin-top: 50px;
}
.megzin-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.megzin-btn{
    padding: 8px 16px;
    color: #fff;
    display: inline-flex;
    column-gap: 20px;
    background: linear-gradient(152deg,rgba(237, 193, 62, 1) 0%, rgba(120, 91, 4, 1) 34%, rgba(120, 91, 4, 1) 56%, rgba(237, 193, 62, 1) 100%);
    background-size: 400% 400%;
    font-family: 'Marcellus';
    border-radius: 4px;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 120%);
    opacity: 0;
}
.megzin-box:hover .megzin-btn{
    transform: translate(-50%, -50%);
    opacity: 1;
}
.cta-section-inner h3 span.bg {
    background: linear-gradient(128deg, rgba(189, 142, 0, 1) 0%, rgba(247, 238, 156, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.why-choose-box i{
        font-size: 24px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    color: #d8a50f;
}
.testimonial-left span.sub-heading::after {
    right: -120px;
}
.megzin-section span.sub-heading::after {
    right: -120px;
}
.process-box p{
    margin-bottom: 0px;
}

/* --- ==== about page ==== ----  */
.page-header-section {
    padding: 190px 0 100px;
    background-image: url(../images/about-bg.jpg);
    background-position: center;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.page-header-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0000008f;
}
ul.breadcrumb {
    column-gap: 30px;
    padding: 0;
    font-size: 18px;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    justify-content: center;
}
ul.breadcrumb li {
    position: relative;
}
ul.breadcrumb li a, ul.breadcrumb li span {
    color: #fff;
}
ul.breadcrumb li span, ul.breadcrumb li a:hover{
    color: #dfb537;
}
ul.breadcrumb li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -20px;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #dfb537;
}
ul.breadcrumb li:last-child::after{
    display: none;
}
span.sub-title, .page-header-section p {
    position: relative;
    z-index: 1;
}
.page-header-section h3 {
    font-family: "Alex Brush", cursive;
    margin-bottom: 10px;
    color: #dfb537;
}
.crafting-section {
    padding: 100px 0;
    position: relative;
    background-color: #191b1e;
    margin-bottom: 60px;
    color: #fff;
}
.crafting-right{
    padding-left: 50px;
}
.crafting-right span {
    margin-bottom: 20px;
    display: inline-block;
    font-size: 40px;
    font-family: 'Alex Brush';
    color: #d8a50f;
}
.crafting-right p {
    margin-bottom: 30px;
}
.crafting-left{
    position: absolute;
    left: 50px;
    top: 50px;
    width: 45%;
    height: 80%;
}
.craft-shape {
    position: absolute;
    right: 0;
    filter: brightness(50) invert(1) opacity(0.5);
    top: 0;
    transform: scaleX(-1);
}
.crafting-left img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}
.safe-section {
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}
.safe-2section{
    padding:100px 0;
}
.safe-left {
    padding-right: 50px;
}
.safe-left span{
    margin-bottom: 20px;
    display: inline-block;
    font-size: 32px;
    font-family: 'Alex Brush';
    color: #d8a50f;
}
.safe-right{
      position: absolute;
    right: 50px;
    top: 120px;
    width: 45%;
    height: 70%;
}
.safe-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.member-section {
    padding: 60px 0;
}
.member-image {
    max-width: 500px;
    margin: auto;
}
.member-section .heading-box span.sub-heading::after{
    display: none;
}
.heading-outer {
    display: flex;
    align-items: end;
    column-gap: 50px;
    margin-bottom: 30px;
}
.heading-outer .heading-box {
    margin-bottom: 0;
    flex-shrink: 0;
}
.heading-outer {
    display: flex;
    align-items: end;
    column-gap: 50px;
    justify-content: space-between;
}
.heading-outer .heading-box {
    margin-bottom: 0;
    flex-shrink: 0;
}
.heading-right {
    width: 50%;
}
.about-image {
    overflow: hidden;
    border-radius: 20px;
}
.about-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-left-two{
    position: relative;
}
.about-image:hover img{
    transform: scale(1.1);
}
.years {
    position: absolute;
    bottom: -48.8px;
    left: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.years h4 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-top: 10px;
}
.years p {
    margin-bottom: 0;
    padding: 15px;
    padding-top: 10px;
    background-color: #c49f4c;
    font-size: 18px;
    padding-bottom: 10px;
}
.about-right-two {
    position: relative;
    margin-left: 30px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 0 20px #00000061;
    border-radius: 20px;
}
.about-shape {
    position: absolute;
    top: 50px;
    right: -99px;
}
.about-item {
    display: flex;
    column-gap: 30px;
    margin-bottom: 24px;
}
.about-item:last-child{
    margin-bottom: 0;
}
.about-item .icon {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
    font-size: 24px;
    background-color: #c49f4c;
    color: #fff;
    position: relative;
    z-index: 1;
}
.about-content h4 {
    margin-bottom: 12px;
}
.about-right-two::after {
    content: "";
    position: absolute;
    left: 44px;
    top: 30px;
    width: 1px;
    height: 70%;
    border: 1px dashed #c49f4c;
}
.value-section {
    padding: 85px 0;
    background-color: #00000000;
    color: #000;
    background-image: url(../images/service-bg.png);
    background-position: center;
    overflow: hidden;
    position: relative;
}
.value-icon {
    border-radius: 12px;
    background-color: #fff;
    padding: 15px;
    grid-column: span 4;
        display: flex
;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 0px 10px #00000061);
}
.value-left {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
}
.customber-box {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    grid-column: span 4;
        margin-right: -40px;
    filter: drop-shadow(0px 0px 10px #00000061);
}
.circle-box {
    height: 150px;
    width: 150px;
    text-align: center;
    border-radius: 100%;
    border: 10px solid #c39f4b;
    padding: 30px;
}
.circle-box h5 {
    margin-bottom: 0;
    font-size: 28px;
}
.circle-box p {
    margin-bottom: 0;
    line-height: 20px;
}
.value-image-box {
    grid-column: span 8;
    grid-row: span 2;
    filter: drop-shadow(0px 0px 10px #00000061);
}
.value-right {
    position: relative;
    margin-left: 30px;
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 0 20px #00000061;
    border-radius: 20px;
}
.value-box {
    display: flex;
    column-gap: 24px;
    margin-bottom: 20px;
}
.value-box .icon {
    width: 50px;
    flex-shrink: 0;
}
.value-box h4 {
    margin-bottom: 10px;
}
.value-box:last-child {
    margin-bottom: 0;
}
.value-shape {
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    width: 774px;
    height: 108%;
    z-index: -1;
    top: 0;
}
.value-shape h4{
    font-size: 55px;
    font-weight: 600;
    opacity: 0.3;
}
.difrence-section {
    padding: 100px 0;
}
.difrence-left .heading-box{
    margin-bottom: 0;
}
.skillbar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.skillbar .skill-progress {
    width: 100%;
    height: 14px;
    background: #cbc3c3;
    border-radius: 99px;
    position: relative;
}
.skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color:#c39f4b ;
    border-radius: 99px;
}
.skills-progress-bar {
    margin-bottom: 20px;
}
.skills-progress-bar:last-child{
    margin-bottom: 0;
}
.difrence-img-1 {
    width: 380px;
    text-align: right;
    margin-bottom: auto;
}
.difrence-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 340px;
}
.difrence-image {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    height: 100%;
    margin-left: 50px;
}
figure.image-anime {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
        visibility: hidden;
        display: block;
}
figure.image-anime img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
    aspect-ratio: 1 / 1.097;
}
.team-section {
    padding-bottom: 60px;
}
.team-image {
    height: 340px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}
.team-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.team-image:hover img{
    transform: scale(1.1);
}
.team-content {
    text-align: center;
}
.team-content h4 {
    margin-bottom: 0;
    color: #dbab1f;
    font-family: 'Alex Brush';
    font-size: 30px;
}
.contact-info-section {
    padding: 80px 0;
}
span.sub-heading.after-none::after {
    display: none;
}
.contact-info-box {
    padding: 24px;
    border-radius: 12px;
    background-color: #f4e5c0;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.contact-info-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 12px #0000006a;
}
.contact-info-box .icon{
    height: 80px;
    width: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c39f4b;
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}
.contact-info-box h4{
    margin-bottom: 12px;
}
.contact-info-box a{
    color: #000;
    font-size: 18px;
}
.contact-form {
    padding: 30px;
    border-radius: 20px;
    background-color: #f4e5c0;
}
.form-group {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 24px;
    row-gap: 24px;
}
.form-group .form-control {
    padding: 10px 15px;
    border: none;
    background-color: #fff;
}
.contact-form .Primary-btn {
    border: none;
    transition: all 0.5s;
}
.contact-image {
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
}
.contact-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.contact-image:hover img{
    transform: scale(1.1);
}
.social-media ul {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: center;
}
.social-media {
    border-radius: 20px;
    background-color: #f4e5c0;
    padding: 20px 24px;
}
.social-media ul li a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    position: relative;
    background-color: #c39f4b;
}
.social-media ul li a:hover{
    background-color: #fff;
    color: #c39f4b;
}
.contact-right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.contact-form-section {
    padding-bottom: 100px;
}
.map-section {
    padding-bottom: 80px;
    position: relative;
}
.map-shape {
    position: absolute;
    top: 20px;
    right: 27%;
    width: 230px;
}
.map-image {
    margin-top: 120px;
    display: flex;
    justify-content: center;
}
.map-image{
    height:600px;
}
.value-image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 12px;
}
.megamenu {
    position: absolute;
    width: 100%;
    padding: 24px;
    left: 0;
    border-radius: 20px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
}
.main-nav ul li:hover .megamenu {
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.megamenu ul {
    border: none;
    width: 100%;
    column-gap: 0px;
}
.megamenu ul li a{
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #d8a50f;
    display: inline-block;
}
.service-menu-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}
.megamenu ul li a p {
    color: #000;
    text-align: center;
    margin-bottom: 0;
}
.megamenu ul li::after{
    display: none;
}
.capabilities-section {
    padding: 100px 0;
}
.capabilities-outer {
    display: flex;
    gap: 20px;
}
.capabilities-box {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #d9a817;
    position: relative;
    transition: all 0.5s;
    flex: 1;
}
.capabilities-box:hover{
    transform: translateY(-10px);
}
.capabilities-box .icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #a77e1b;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.capabilities-box .icon::after{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 0;
    width: 0;
    transition: all 0.5s;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translate(-50%, -50%);
}
.capabilities-box:hover .icon::after{
    height: 95%;
    width: 95%;
}
.capabilities-box .icon img {
    filter: brightness(110);
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}
.capabilities-box:hover .icon img{
    filter: brightness(0);
}
.capabilities-box h4 {
    margin-bottom: 0;
    font-size: 18px;
}
.capabilities-box span {
    position: absolute;
    top: -9px;
    right: 6px;
    color: #a77e1b;
    font-size: 50px;
    opacity: 0.1;
    font-weight: 600;
}
.service-section-two {
    padding: 100px 0;
    background-color: #191b1e;
    color: #fff;
    position: relative;
    background-image: url(../images/service-two-bg.jpg);
    background-position: center;
    background-blend-mode: overlay;
}
.service-shape {
    position: absolute;
    bottom: 0;
}
.service-shape img {
    filter: brightness(50) invert(1) opacity(0.5);
}
.service-box-two {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 24px;
    border: 1px dashed #d9b0347a;
    border-radius: 12px;
    transition: all 0.5s;
        margin-bottom: 30px;
}
.service-box-two:last-child{
    margin-bottom: 0;
}
.service-box-two:hover{
    border-color: transparent;
    background-color:#d9b03431 ;
}
.service-image-two {
    border-radius: 12px;
    overflow: hidden;
}
.service-image-two img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.service-image-two:hover img{
    transform: scale(1.1);
}
.service-two-left {
    position: sticky;
    top: 50px;
}
.service-right-two {
    overflow: hidden;
}
.safe-section.two .safe-right {
    right: auto;
    left: 50px;
}
.safe-section.two .safe-left {
    padding-right: 0px;
    padding-left: 50px;
}
.consept-section {
    padding-bottom: 100px;
}
.consept-left {
    position: sticky;
    top: 50px;
}
.consept-left span {
    display: inline-block;
    font-size: 30px;
    font-family: 'Alex Brush';
    color: #d8a50f;
}
.consept-right {
    padding-left: 50px;
}
.consept-item {
    display: flex;
    column-gap: 32px;
    /* position: sticky;
    top: 50px; */
    background-color: #fff;
}
.consept-item:last-child{
    margin-bottom: 0;
}
.safe-2section h2{
    margin-bottom: 0px;
}
.safe-three{
    padding: 100px 0px;
}
.safe-three h2{
    margin-bottom: 0px;
}
/* .consept-item:nth-child(2){
    top: 110px;
}
.consept-item:nth-child(3){
    top: 170px;
}
.consept-item:nth-child(4){
    top: 230px;
}
.consept-item:nth-child(5){
    top: 290px;
}
.consept-item:nth-child(6){
    top: 350px;
}
.consept-item:nth-child(7){
    top: 410px;
}
.consept-item:nth-child(8){
    top: 470px;
}
.consept-item:nth-child(9){
    top: 530px;
}
.consept-item:nth-child(10){
    top: 590px;
}
.consept-item:nth-child(11){
    top: 650px;
} */
.consept-paipline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.consept-list {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a77e1b;
    flex-shrink: 0;
    color: #fff;
}
.consept-list p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}
.consept-info {
    margin-bottom: 30px;
}
.consept-info h3 {
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 26px;
}
.stage-connector {
    height: 100%;
    border-left: 2px dashed rgb(167 126 27 / 44%);
    width: 2px;
}
.consept-item:last-child .stage-connector{
    display: none;
}
section.porfolio {
    padding: 100px 0 ;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    background:linear-gradient(152deg,rgba(237, 193, 62, 1) 0%, rgba(120, 91, 4, 1) 34%, rgba(120, 91, 4, 1) 56%, rgba(237, 193, 62, 1) 100%) ;
    margin:100px 0px;
}
section.porfolio::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: calc(100% - 50px);
    width: 588px;
    background-color: #191b1e;
    background-image: url(../images/service-bg.png);
        background-size: cover;
}
.project-btn{
    background: black !important;
}
.protfolio-left {
    position: absolute;
    top: 0;
    left: -50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.porfolio-slider {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-left: auto;
    transform: translateX(25%);
}
.portfolio-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.portfolio-content .porfolio-name {
    font-size: 22px;
}
.porfolio-box {
    margin-right: 48px;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
}
#slider-info {
    color: #fff;
    font-weight: 500;
    font-size: 25px;
}
.custom-btn button {
    background-color: transparent;
    border: 0;
}
.custom-btn {
    position: relative;
    z-index: 1;
    display: flex;
    column-gap: 15px;
}
.porfolio-slider .porfolio-name,
.porfolio-slider .porfolio-industry {
    display: none;
}
.lower-btn {
    margin-top: 35px;
}
.why-choose-section-two {
    padding-bottom: 100px;
}
.why-choose-section-two .icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #a77e1b;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.why-choose-section-two .icon img{
    filter: brightness(110);
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}
.why-choose-section-two .why-choose-box:hover .icon img{
    filter: brightness(0);
}
.why-choose-section-two .icon::after {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 0;
    width: 0;
    transition: all 0.5s;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translate(-50%, -50%);
}
.why-choose-section-two .why-choose-box:hover .icon::after {
    height: 95%;
    width: 95%;
}
.why-choose-section-two .why-choose-box{
    height: 100%;
}
.safe-section.three .safe-right {
    height: 100%;
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
}
.safe-section.three .safe-right video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
.crafting-right ul li {
    display: flex;
    column-gap: 10px;
    margin-bottom: 10px;
    align-items: baseline;
}
.crafting-right ul li i {
    color: #d5a20f;
}
.project-box {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ababab;
}
.project-box h4 {
    margin-bottom: 12px;
}
.project-box p {
    margin-bottom: 0;
}
.project-video {
    margin-bottom: 20px;
}
.project-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.project-section {
    padding-bottom: 100px;
}
.form-group  p{
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 0px;
    row-gap: 24px;
    width:100%;
}
.form-group  span{
    width:100%;
}
.form-group textarea{
    height: 100px;
}
.heading-box h3{
    font-size: 32px;
}
.porfolio-industry{
    margin-bottom: 20px;
    display: inline-block;
    font-size: 40px;
    font-family: 'Alex Brush';
    color: #d8a50f
}
.porfolio-image img{
    width: 499px;
   height: 427px !important;
}
.estimate-section {
    position: relative;
    overflow: hidden;
}
.top-step-outer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}
.top-step-outer .step-box {
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    background-color: #a77e1b;
    flex: 1;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.5s;
    position: relative;
}
.top-step-outer .step-box::after{
    top: 100%;
    left: calc(50% - 10px);
    content: '';
    width: 0;
    height: 0;
    border-top: solid 10px #a77e1b;
    border-left: solid 10px #fff0;
    border-right: solid 10px #fff0;
    position: absolute;
    border-radius: 20px;
    opacity: 0;
}
.top-step-outer .step-box.active::after{
    opacity: 1;
}
.top-step-outer .step-box.active {
    background-color: #fff;
    border-color: #a77e1b;
    color: #000;
}
.top-step-outer .step-box h4 {
    margin-bottom: 5px;
    font-size: 18px;
}
.top-step-outer .step-box p {
    font-size: 14px;
    margin-bottom: 0;
}
.estimate-box {
    margin-top: 30px;
    padding: 0;
}
.estimate-tow-box-outer {
    display: flex;
    align-items: center;
    column-gap: 100px;
}
.estimate-tow-box {
    position: relative;
    border: 3px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
}
.estimate-home-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}
.estimate-home-title h4 {
    margin-bottom: 0;
    color: #fff;
        font-size: 20px;
}
.estimate-tow-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(0deg, rgb(0 0 0 / 79%) 0%, rgba(237, 221, 83, 0) 100%);
}
.estimate-home-image img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.estimate-tow-box:hover .estimate-home-image img{
    transform: scale(1.1);
}
span.check-box {
    display: inline-block;
    height: 30px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    background-color: #000;
    flex-shrink: 0;
}
.estimate-box>h4{
    margin-bottom: 35px;
}
.estimate-tow-box.active span.check-box, .estimate-home-size.active span.check-box, .bedroom-box.active span.check-box{
    background-color: #a77e1b;
}
.estimate-home-size {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}
.estimate-home-size h4 {
    margin-bottom: 0;
}
.estimate-tow-box-outer.bedroom {
    column-gap: 24px;
}
.estimate-box-inner>h4{
    margin-bottom: 35px;
}
.facade.estimate-tow-box-outer {
    column-gap: 30px;
}
.estimate-tow-box-outer.bathroom {
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.estimate-tow-box-outer.bathroom .estimate-tow-box {
    width: 23%;
}
.estimate-tow-box-outer.AC {
    column-gap: 20px;
}
.estimate-tow-box-outer.bedroom-flooring {
    column-gap: 20px;
}
.estimate-tow-box-outer.thickness-stone-kitchen {
    column-gap: 40px;
}
.estimate-tow-box-outer.thickness-stone-etc {
    column-gap: 40px;
}
.estimate-tow-box-outer.install-solar {
    column-gap: 20px;
}
.estimate-lower-btn {
    margin-top: 35px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
}
.estimate-lower-btn button{
    border: none;
    transition: all 0.5s;
}
.estimate-lower-btn .Primary-btn i {
    transition: all 0.5s;
    transform: rotate(0deg);
}
.estimate-value-box>p {
    font-weight: 500;
}
.estimate-home-image {
    max-height: 340px;
}
.estimate-value-box p {
    margin-bottom: 8px;
}
.estimate-value-box p span {
    font-weight: 400;
    margin-left: 5px;
}
.estimate-form .form-control {
    border: 1px solid #000;
}
.estimate-form {
    padding-left: 50px;
}
.estimate-form .Primary-btn {
    transition: all 0.5s;
    border: none;
}
.estimate-tow-box.active {
    border-color: #a77e1b;
}
.estimate-details-outer .row {
    row-gap: 35px;
}
.estimate-details-box h4{
    margin-bottom: 24px;
}
.estimate-details-inner-box {
    display: inline-flex;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #a77e1b;
    cursor: pointer;
    transition: all 0.5s;
}
.modal-footer button{
    border: none;
    transition: all 0.5s;
}
.estimate-details-inner-box:hover, .estimate-details-inner-box.active{
    background-color: #a77e1b;
    color: #fff;
}
.estimate-details-inner-box h4{
    margin-bottom: 0;
    font-size: 16px;
}
.estimate-details-box .icon {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a77e1b;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-left: 9px;
}
.estimate-details-box .icon img {
    max-width: 30px;
}
.estimate-details-inner-box-outer {
    display: flex;
    align-items: center;
    gap: 12px;
        flex-wrap: wrap;

}
.estimate-details-inner-box-outer.facade .estimate-details-inner-box {
    width: 48%;
}
#estimate-back, #estimate-next{
    background: none;
    color: #000;
}
#estimate-back:hover, #estimate-next:hover{
        transform: scale(1.0);
}
.estimate-outer {
    background-color: #a77e1b2e;
    padding: 20px;
    border-radius: 20px;
}
.estimate-details-box {
    display: flex;
    align-items: flex-start;
    column-gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.estimate-details-box:last-child{
    margin-bottom: 0;
}
.estimate-details-box::after {
    content: "";
    position: absolute;
    top: 46px;
    left: 39px;
    height: 100%;
    border-right: 2px dashed #a77e1b;
}
.estimate-details-box:last-child::after{
    display: none;
}
.section-404 {
    background-image: url("../images/404-bg.jpg");
    background-attachment: inherit;
    background-size: cover;
    background-repeat: repeat;
    background-color: rgb(0, 0, 0);
    background-position: center center;
    display: flex;
    padding: 150px 0 100px;
    height: 100vh;
}
.content-404 h2 {
    font-size: 30vh;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 30px;
}