<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primaryclr: #1B1B1B;
    --secondaryclr: #E1B262;
    --sec-typo-clr:#635B5B;
    --lightclr:#F9F8F5;
    --borderclr: #E4E4E4;
    --whiteclr:#fff;
    --font-face1:'Open Sans', sans-serif;
    --font-face2:'Space Grotesk', sans-serif;
}
ul{
    margin: 0;
    padding: 0;
}
body {
    background: var(--bs-white);
    font-family: var(--font-face1);
}

p {
    font-family: var(--font-face1);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--sec-typo-clr);
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-face2);
}
section{
    position: relative;
    padding: 100px 0;
}
.bg-primaryclr{
    background: var(--primaryclr);
}
.bg-secondaryclr{
    background: var(--secondaryclr);
}
.bg-lightclr{
    background: var(--lightclr);
}
.container {
    max-width: 1314px;
}
.form-control:focus{
    box-shadow: none;
}

.fillbtn{
    background: var(--secondaryclr) !important;
    border-radius: 0;
    border: none;
    padding: 17px 25px;
    color: var(--primaryclr);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-face2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-width: 175px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}
.fillbtn:hover{
    color: var(--bs-white);
}
.fillbtn::before {
    background: var(--primaryclr);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform: scale(1.42) rotate(0deg) transformX(-100%);
    visibility: hidden;
}
.fillbtn:hover::before {
    visibility: visible;
    transform-origin: center;
    animation: fillbtn 1s;
}
@keyframes fillbtn {
    0% {
        transform: scale(1.42) rotate(0deg) translateX(-100%);
    }
    33% {
        transform: scale(1.42) rotate(0deg) translateX(0%);
    }
    60% {
        transform: scale(1.42) rotate(0deg) translateX(50%);
    }
    100% {
        transform: scale(1.42) rotate(0deg) translateX(0%);
    }
    100% {
        transform: scale(1.42) rotate(0deg) translateX(0);
    }
}
.mainheading {
    margin-bottom: 30px;
}
.mainheading .titles{
    margin-right: 20px;
}
.mainheading h4 {
    color: var(--secondaryclr);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.mainheading h3{
    color: var(--primaryclr);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.themeBtn{
    position: relative;
    color: var(--primaryclr);
    font-family: var(--font-face2);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    border: none;
    outline: none;
    background: transparent;
    isolation: isolate;
    transition: all 0.3s ease-in-out;
}
.themeBtn img{
    margin-left: 8px;
    transform-origin: 50% 50%;
    animation: slide2 1s ease-in-out infinite;
}
.themeBtn:before{
    content: "";
    background: var(--secondaryclr);
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 38px;
    position: absolute;
    left: -12px;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.themeBtn:hover:before{
    width: calc(100% + 22px);
}
@keyframes slide2 {
    0%,
    100% {
      transform: translate(3px, 0);
    }
  
    50% {
      transform: translate(0, 0);
    }
}
.service-stroke {
    padding-top: 100px;
    padding-bottom: 40px;
}
.stroke-title {
    color: var(--bs-white);
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 1px var(--primaryclr);
    position: relative;
    margin: 0;
}
.stroke-title::after{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-fill-color: var(--primaryclr);
    width: 0;
    overflow: hidden;
/*    transition: .6s;
    animation: filltext 5s infinite;*/
}
@keyframes filltext {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.cricle-arrow{
    border: 1px solid var(--primaryclr);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}
.cricle-arrow:hover{
    background: var(--primaryclr);
}
::placeholder { 
    color: var(--sec-typo-clr) !important;
    opacity: 1; 
}
:-ms-input-placeholder { 
    color: var(--sec-typo-clr) !important;
}  
::-ms-input-placeholder {
    color: var(--sec-typo-clr) !important;
}

/*----------- Header Start -----------*/
header{
    background: var(--primaryclr);
}
header .navbar {
    border-bottom: 1px solid rgba(217,217,217,0.2);
    padding: 13px 0;
}
header .navbar .navbar-toggler{
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    color: var(--bs-white);
    font-family: var(--font-face2);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}
header .navbar .navbar-toggler .menu-icon{
    margin-left: 15px;
}
header .navbar .navbar-toggler:hover{
    color: var(--secondaryclr);
}
header .navbar .navbar-toggler svg path{
    transition: all 0.3s ease-in-out;
}
header .navbar .navbar-toggler:hover svg path{
    fill: var(--secondaryclr);
}
header .call-action {
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-right: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-face2);
}
header .call-action img {
    margin-right: 7px;
}
header .call-action:hover{
    color: var(--secondaryclr);
}
header .header-topline {
    font-size: 16px;
    color: var(--bs-white);
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-face2);
}
.header-main .container-fluid {
    max-width: 1844px;
}
.header-main div#offcanvasNavbar {
    z-index: 99999;
}
.fadeinout
{
  animation: fadeinout 2s infinite;
}

@keyframes fadeinout
{
  0%{
    opacity:0;
  }
  50%
  {
    opacity:1;
  }
  100%
  {
    opacity:0;
  }
}
header .offcanvas{
    background: var(--primaryclr);
}
header .offcanvas .btn-close{
   filter: brightness(0) invert(1);
   opacity: 1;
   box-shadow: none;
}

header .offcanvas .navbar-nav .nav-item .nav-link{
   color: var(--bs-white);
   font-size: 16px;
   font-weight: 500;
   text-transform: uppercase;
   font-family: var(--font-face2);
   padding: 15px 0;
   border-bottom: 1px solid rgba(255,255,255,0.1);
   transition: all 0.3s ease-in;
}
header .offcanvas .navbar-nav .nav-item .nav-link:hover, header .offcanvas .navbar-nav .nav-item .nav-link.active{
    color: var(--secondaryclr);
}
/* header .offcanvas-body {
    flex-grow: inherit;
} */
header .offcanvas-footer {
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
header .offcanvas-footer p{
    margin:15px 0 0;
    font-size: 14px;
    color: var(--bs-white);
    text-align: center;
}
/*----------- Header End -----------*/


/*----------- Banner Start -----------*/
.banner {
    background: url(../images/banner-bg.svg) no-repeat left -130px bottom / 25% var(--primaryclr);
    position: relative;
    padding: 148px 0 0;
}
.banner .owl-stage-outer {
    padding-top: 40px;
    padding-bottom: 200px;
}
.slide-bottom{
    overflow: hidden;
}
.slide-bottom .container-fluid{
    padding: 0;
}
.banner-cnt {
    position: relative;
    padding: 15px 100px 15px 0;
}
.banner-cnt h2 {
    color: var(--secondaryclr);
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-face1);
    text-transform: capitalize;
    margin-bottom: 10px;
    line-height: 30px;
}
.banner-cnt h1 {
    color: var(--bs-white);
    font-size: 65px;
    font-weight: 700;
    font-family: var(--font-face2);
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 83px;
}
.banner-cnt p {
    color: var(--bs-white);
    margin-bottom: 55px;
    max-width: 450px;
}
.banner-cnt .themeBtn{
    margin-left: 12.5px;
}
.banner-img{
    position: relative;
}
.banner-img img{
    height: 438px;
    object-fit: cover;
}
.banner-img span.outer-line {
    display: block;
    border: 1px solid var(--secondaryclr);
    width: 100%;
    height: 388px;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: -62px;
    transition: all 0.3s ease-in;
    max-width: 336px;
}
.slider_nav {
    display: flex;
    background: var(--primaryclr);
    max-width: 100%;
    flex: 1;
}
.slider_nav .btn{
    background: var(--primaryclr);
    transition: all 0.3s ease-in;
    padding: 26px 38px;
    border-radius: 0;
}
.slider_nav .btn.next-btn {
    background: var(--secondaryclr);
}
.slider_nav .btn:hover{
    background: var(--secondaryclr);
}
.slide-options {
    display: flex;
    align-items: center;
    background: var(--bs-white);
    padding: 25px 0;
    max-width: 886px;
    flex: 886px;
    padding-right: 40px;
}
.banner .owl-theme .owl-dots .owl-dot span {
    display: none;
}
.banner .owl-dots {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    margin: 0;
    counter-reset: list1;
    bottom: -58px;
}
.banner .owl-dots .owl-dot:before{
    counter-increment: list1;
    content: "0" counter(list1);
}
.banner .owl-dots .owl-dot span{
    background: none;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
}
.banner .owl-dots button.owl-dot {
    color: var(--primaryclr);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-face2);
    background: none;
    outline: none;
    border: none;
    margin-right: 35px;
}
.banner .owl-dots button.owl-dot.active {
    color: var(--secondaryclr);
    font-size: 25px;
}
.slide-progress-main {
    background: var(--primaryclr);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 347px;
    margin-left: auto;
    border-radius: 40px;
}
.slide-progress {
    width: 0;
    border-radius: 40px;
    max-width: 100%;
    height: 4px;
    background: var(--secondaryclr);
    border-radius: 10px;
}
.scroll-bottom {
    position: absolute;
    left: 30px;
    bottom: 40px;
}
.banner-container {
    padding: 0 20px 0 80px;
    max-width: 1406px;
    margin: 0 auto;
}
/*----------- Banner End -----------*/

/*----------- Services Start -----------*/
.services {
    position: relative;
    padding: 0;
}
.services .container{
    position: relative;
    isolation: isolate;
}
.service-item {
    padding: 0px 10px 100px;
}
.service-item h4 {
    font-size: 45px;
    line-height: 47px;
}
.service-item h5 {
    color: var(--primaryclr);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 23px;
}
.service-item p {
    color: var(--sec-typo-clr);
    line-height: 24px;
    margin-bottom: 30px;
}
.grid_lines {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin: 0px auto;
    list-style-type: none;
}
.grid_lines .grid_line {
    position: relative;
    width: 1px;
    height: 100%;
    display: inline-block;
    background-color: var(--borderclr);
    mix-blend-mode: difference;
}
#services h3.stroke-title {
    line-height: 102px;
}
/*----------- Services Start -----------*/

/*----------- About Start -----------*/
.about-us{
    background: #F9F8F6;
}
.about-us p{
    color: var(--sec-typo-clr);
}
.about-item{
    margin-top: 10px;
}
.about-item h4{
    color: var(--primaryclr);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-us .themeBtn{
    display: inline-flex;
    margin-left: 12px;
}
section.about-us .line {
    margin: 10px 0 20px;
}
span.line{
    margin: 10px 0 27px;
    display: block;
    height:0px;
    width:86px;
    border-bottom:2px solid var(--secondaryclr);
    -webkit-animation:line 3s infinite;
    -moz-animation:line 3s infinite; 
    -o-animation:line 3s infinite; 
    animation:line 3s infinite; 
    animation-fill-mode: forwards;
  }
@keyframes line {
    100% {
        width: 120px;
    }
}
.about-img {
    position: relative;
    padding-left: 33px;
}
.about-img &gt; img {
    max-width: 434px;
    width: 100%;
    height: 517px;
    object-fit: cover;
}
.about-cnt {
    background: var(--bs-white);
    border: 3px solid var(--secondaryclr);
    padding: 25px;
    width: 265px;
    position: absolute;
    right: 22px;
    bottom: 60px;
}
.about-cnt h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primaryclr);
    text-transform: uppercase;
    margin-bottom: 41px;
}
.about-cnt p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about-cnt h5 {
    font-size: 90px;
    font-weight: 700;
    color: var(--primaryclr);
    margin-bottom: 0;
    line-height: 63px;
    position: relative;
    isolation: isolate;
    display: inline-block;
}
.about-cnt h5:after{
    content: "";
    background: var(--secondaryclr);
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: -1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    opacity: 0.33;
}
/*----------- About End -----------*/

/*----------- Counter Start -----------*/
.countersecton {
    overflow: hidden;
    padding: 0;
}
.countersecton .outer-container {
    padding: 100px 119px;
    background: url(../images/banner-bg.svg) no-repeat left -130px bottom / contain, url(../images/banner-bg.svg) no-repeat right -130px bottom / contain var(--primaryclr);
    max-width: 1607px;
    margin-left: auto;
}
.countersecton .count-up{
    display: flex;
    align-items: center;
}
.countersecton .count-up .text-count {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--bs-white);
    font-size: 100px;
    font-weight: 700;
    font-family: var(--font-face2);
    line-height: 76px;
}
.countersecton .count-up p {
    color: var(--bs-white);
    font-size: 22px;
    margin: 0;
    max-width: 165px;
    position: relative;
    isolation: isolate;
    line-height: 30px;
}
.countersecton .count-up p:after {
    content: "";
    background: rgba(225, 178, 98, 0.33);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 76px;
    height: 76px;
    border-radius: 100%;
    top: 0;
    margin: auto 0;
}
/*----------- Counter End -----------*/

/*----------- Portfolio Start -----------*/
.portfolio .mainheading{
    margin-bottom: 50px;
}
.portfolio .portfolio-card{
    cursor: pointer;
    position: relative;
}
.portfolio .portfolio-card &gt; img {
    width: 852px;
    height: 384px;
    object-fit: cover;
    max-width: 852px;
}
.portfolio .owl-item.active.center .portfolio-card &gt; img {
    height: 468px;
}
.portfolio .portfolio-card .portfolio-cnt{
    transition: all 0.5s ease-in-out;
    text-align: center;
    background: var(--primaryclr);
    padding: 40px 55px;
    position: absolute;
    max-width: 525px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}
.portfolio .owl-item.active.center .portfolio-card:hover .portfolio-cnt {
    opacity: 1;
    visibility: visible;
}
.portfolio .portfolio-card .portfolio-cnt h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--bs-white);
    font-family: var(--font-face2);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 32px;
}
.portfolio .portfolio-card .portfolio-cnt .themeBtn{
    display: inline-flex;
    margin-top: 15px;
}
.portfolio .owl-item &gt; div {
    cursor: pointer;
    transition: margin 0.4s ease;
}
.portfolio .owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
.portfolio .owl-nav &gt; *{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;

}
.portfolio .owl-nav button.owl-next{
    background: url(../images/next.svg) no-repeat center center var(--primaryclr) !important ;
    background-size: 40px !important;
    width: 60px;
    height: 50px;
    transition: all 0.3s ease-in;
    right: 27.8%;
}
.portfolio .owl-nav button.owl-next:hover{
    background-color: var(--secondaryclr) !important;
}
.portfolio .owl-nav button.owl-prev{
    background: url(../images/prev.svg) no-repeat center center var(--primaryclr) !important;
    background-size: 40px !important;
    width: 60px;
    height: 50px;
    transition: all 0.3s ease-in;
    left: 27.8%;
}
.portfolio .owl-nav button.owl-prev:hover{
    background-color: var(--secondaryclr) !important;
}
.portfolio .owl-nav button.owl-prev span, .portfolio .owl-nav button.owl-next span{
    display: none;
}
/*----------- Portfolio End -----------*/

/*----------- Testimonials Start -----------*/
.testimonials{
    background: url(../images/pattern1.svg) no-repeat center center / cover var(--primaryclr);
}
.testimonials .owl-carousel {
    margin-top: 40px;
}
.client-card{
    background: #222224;
    border-left: 3px solid var(--secondaryclr);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    position: relative;
}
.client-card .client-profile {
    text-align: center;
    margin-top: 11px;
}
.client-card .client-profile .client-img{
   width: 116px;
   height: 116px;
   border-radius: 50%;
   overflow: hidden;
}
.client-card .client-profile .client-img img{
   width: 100%;
}
.client-card .client-profile svg{
    margin-top: -30px;
}
.client-card .client-msg {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 30px;
    margin-left: 30px;
    padding-top: 18px;
    padding-bottom: 24px;
}
.client-card .client-msg p{
    color: var(--whiteclr);
}
.client-card .client-msg h4{
    color: var(--bs-white);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-face2);
    text-transform: capitalize;
    margin-bottom: 3px;
}
.client-card .client-msg .p-small {
    color: var(--bs-white);
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0;
}
.client-card .client-msg .star-rating {
    margin: 20px 0;
}
.client-card .client-msg .quotes-img {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.testimonials .owl-dots{
    text-align: center;
    margin-top: 20px;
}
.testimonials .owl-dots .owl-dot{
    background: var(--secondaryclr);
    width: 12px;
    height: 3px;
    border-radius: 10px;
    margin: 0 2px;
}
.testimonials .owl-dots .owl-dot.active{
    background: var(--bs-white);
    width: 25px;
}
/*----------- Testimonials End -----------*/

/*----------- Contact Start -----------*/
.contact-us{
    overflow: hidden;
}
.contact-us .mainheading {
    margin-bottom: 50px;
}
.left-content-col {
    max-width: 550px;
    padding-right: 60px;
}
.right-content-col {
    max-width: 100%;
    flex: 1;
    background: var(--lightclr);
    position: relative;
}
.right-content-col:after{
    content: "";
    background: var(--lightclr); 
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
}
.contact-info .contact-types {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}
.contact-info .contact-types .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 82px;
    height: 82px;
    background: var(--lightclr);
    border-radius: 5px;
}
.contact-info .contact-types .text-cnt {
    margin-left: 26px;
}
.contact-info .contact-types .text-cnt .p-info{
    font-size: 14px;
    font-weight: 400;
    color: var(--secondaryclr);
    margin-bottom: 0px;
}
.contact-info .contact-types .text-cnt .p-hard{
    font-family: var(--font-face2);
    font-size: 20px;
    font-weight: 700;
    color: var(--primaryclr);
    margin-bottom: 0;
}
.contact-info .contact-types .text-cnt .p-hard a{
    font-family: var(--font-face2);
    font-size: 20px;
    font-weight: 700;
    color: var(--primaryclr);
    margin-bottom: 0;
    transition: all 0.3s ease-in;
}
.contact-info .contact-types .text-cnt .p-hard a:hover{
    color: var(--secondaryclr);
}
.form-design {
    padding: 90px 0 90px 116px;
}
.form-design .form-group {
    margin-bottom: 30px;
}
.form-design .form-group .form-label {
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-face1);
    color: var(--primaryclr);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 11px;
}
.form-design .input-box{
    position: relative;
    display: flex;
    align-items: center;
}
.form-design .input-box .form-control {
    border: none;
    border-bottom: 1px solid var(--sec-typo-clr);
    border-radius: 0;
    background: transparent;
    padding: 0px 0 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primaryclr);
}
.form-design .input-box .form-control::placeholder{
    color: var(--sec-typo-clr);
}
.form-design .col-md-6, .form-design .col-12 {
    margin-top: 0;
}
.form-design .input-box .form-icon{
    position: absolute;
    left: 0;
    top: 3px;
    z-index: 1;
}

.input-box textarea.form-control{
    height: 80px;
    resize: none;
}
.form-design .themeBtn{
    margin-top: 55px;
    margin-left: 12px;
}
/*----------- Contact End -----------*/

/*----------- Blog Start -----------*/
.blog{
    background: var(--primaryclr);
}
.blog-card{
    color: var(--whiteclr);
    position: relative;
}
.blog-card h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
    font-weight: 700;
}
.blog-card .blog-img{
    display: block;
    overflow: hidden;
}
.blog-card .blog-img img{
    display: block;
    width: 100%;
    transition: all 0.3s ease-in;
}
.blog-card .blog-img:hover img{
    transform: scale(1.1);
}
.blog-card .blog-detail {
    padding-top: 25px;
}
.blog-card .blog-detail .date{
    margin-bottom: 10px;
    font-family: var(--font-face2);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondaryclr);
    text-transform: uppercase;
}
.blog-card .blog-detail a{
    font-family: var(--font-face2);
    font-size: 24px;
    font-weight: 600;
    color: var(--bs-white);
    transition: all 0.3s ease-in;
    display: inline-block;
}
.blog-card .blog-detail a:hover{
    color: var(--secondaryclr);
}
/*----------- Blog End -----------*/

/*----------- Footer Start ------------*/
footer {
    background: var(--bs-white);
    padding: 77px 0 0;
    border-top: 1px solid var(--borderclr);
}
.newsletter {
    background: var(--lightclr);
    border-radius: 10px;
    padding: 65px 67px 65px 70px;
}
.newsletter h4{
    color: var(--secondaryclr);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.newsletter h5{
    color: var(--primaryclr);
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.newsletter-group {
    display: flex;
    align-items: center;
}
.form-input {
    width: 100%;
    position: relative;
    margin-right: 15px;
}
.form-input .form-control {
    background: var(--bs-white);
    border: 1px solid var(--borderclr);
    border-radius: 0;
    height: 61px;
    padding: 5px 15px 5px 45px;
    font-size: 14px;
}
.form-input .form-icon {
    position: absolute;
    left: 20px;
    top: 17px;
}
.footer-nav {
    padding: 60px 0;
}
.footer-nav .nav li a{
    font-family: var(--font-face2);
    font-size: 18px;
    font-weight: 500;
    color: var(--primaryclr);
    text-transform: capitalize;
    margin-right: 32px;
    transition: all 0.3s ease-in-out;
}
.footer-nav .nav li a:hover{
    color: var(--secondaryclr);
}
.social-link{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    gap: 15px;
}
.social-link li a {
    background: var(--lightclr);
    width: 44px;
    height: 44px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.social-link li a:hover{
    background: var(--secondaryclr);
}
.footer-bottom {
    padding: 15px 0;
    background: var(--bs-white);
    border-top: 1px solid var(--borderclr);
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom .f-logo {
    text-align: center;
}
.footer-bottom .f-link {
    text-align: right;
}
.footer-bottom .f-link a{
    color: var(--primaryclr);
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-left: 40px;
    transition: all 0.3s ease-in;
}
.footer-bottom .f-link a:hover{
    color: var(--secondaryclr);
}
.request-call {
    position: fixed;
    right: -4px;
    top: 45%;
    z-index: 999;
    transform: rotate(90deg) translate(0%, -100%);
}
.request-call a {
    padding: 12px 16px 12px 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: var(--secondaryclr);
    max-width: fit-content;
}
.icon-request {
    background: var(--whiteclr);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.call-info .call-text {
    display: block;
    font-family: var(--font-face2);
    color: var(--whiteclr);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 18px;
}
.call-info .call-number {
    color: var(--primaryclr);
    font-family: var(--font-face2);
    font-weight: 700;
    font-size: 20px;
    line-height: 14px;
    display: block;
    margin-top: 6px;
}
/*----------- Footer End ------------*/

/*----------- About US Page Start -----------*/
.inner-page-banner {
    padding: 126px 0;
    text-align: center;
    background: var(--primaryclr);
    overflow: hidden;
}
.inner-page-banner:before,
.inner-page-banner:after{
    position: absolute;
    content: '';
    background: url(../images/shape-banner.svg);
    bottom: 0;
    max-width: 803px;
    width: 100%;
    height: 407px;
    z-index: 9;
    background-repeat: no-repeat;
}
.inner-page-banner:before {
    left: -256px;
}
.inner-page-banner:after {
    right: -162px;
}
.inner-page-banner p {
    color: var(--whiteclr);
    max-width: 560px;
    margin: 0 auto;
}
.breadcrump {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    color: var(--secondaryclr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 16px;
}
.breadcrump li a{
    color: var(--secondaryclr);
    transition: all 0.4s ease-in-out;
}
.breadcrump li a:hover {
    color: var(--whiteclr);
}
.inner-banner .stroke-title {
    -webkit-text-stroke: 1px rgb(255 255 255 / 50%);
    margin-bottom: 40px;
    -webkit-text-fill-color: transparent;
    line-height: 56px;
}
.inner-banner {
    position: relative;
    z-index: 9999;
}
.list-detail {
    margin-top: 40px;
}
.list-detail li:not(:last-child) {
    margin-bottom: 15px;
}
.contactus {
    margin-top: 50px;
}
.list-detail .check-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 178, 98, 0.13);
    border-radius: 5px;
    margin-right: 10px;
}
.list-detail li {
    font-weight: 600;
    font-family: var(--font-face2);
}
.overlay-img {
    padding: 10px;
    background: var(--whiteclr);
    max-width: fit-content;
}
.pb-180{
    padding-bottom: 180px;
}
.overlay-img {
    padding: 10px;
    background: var(--whiteclr);
    max-width: fit-content;
    position: absolute;
    right: 0;
    bottom: -81px;
}
.overlay-img img {
    height: 267px;
    max-width: 400px;
    object-fit: cover;
    width: 100%;
}
.about-interior-wrapcontent {
    padding-left: 18px;
}
.why-choose-us .mainheading {
    margin-bottom: 100px;
}
.why-choose-us .about-item {
    margin-top: 0;
}
.why-choose-us .row {
    row-gap: 118px;
}
.why-choose-us .about-item p {
    margin: 0;
    max-width: 354px;
}
.team-memberblock-img img {
    max-width: 305px;
    width: 100%;
    height: 391px;
    object-fit: cover;
}
.team-memberblock {
    transition: all 0.6s ease-in-out;
    position: relative;
    overflow: hidden;
    display: block;
}
.team-memberblock:hover .hoverblock{
    opacity: 1;
    visibility: visible;
    transform: unset;
}
.hoverblock {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsl(0deg 0% 11% / 90%);
    clip-path: polygon(0 46%, 100% 18%, 100% 100%, 0% 100%);
    padding: 150px 74px 50px;
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.6s ease-in-out;
    transform: translateY(100%);
}
.hoverblock h6 {
    font-family: var(--font-face2);
    color: var(--whiteclr);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 26px;
    margin-bottom: 7px;
}
.hoverblock .founder {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondaryclr);
    text-transform: uppercase;
    font-family: var(--font-face2);
    line-height: 18px;
    display: block;
}
.talented-team {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--borderclr);
}
.rating-testimonial {
    padding-top: 50px;
}
.rating-wrapblock .icon {
    background: var(--lightclr);
    min-width: 98px;
    max-width: 98px;
    flex: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rating-wrapcontent {
    max-width: 100%;
    flex: 1;
    padding-left: 38px;
}
.rating-wrapcontent .average {
    color: var(--sec-typo-clr) !important;
    line-height: 24px;
    margin-bottom: 0;
}
.star-ratings .number {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    font-family: var(--font-face2);
    color: var(--primaryclr);
}
.star-ratings {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.stars li:not(:last-child) {
    margin-right: 6px;
}
.stars {
    line-height: 20px;
}
.review {
    font-weight: 700;
    font-family: var(--font-face2);
    color: var(--primaryclr);
    padding-top: 6px;
    border-top: 1px solid var(--borderclr);
}
.rating-wrapblock {
    background: var(--whiteclr);
    padding: 20px 50px 20px 30px;
    border: 1px solid var(--borderclr);
}
.testimonials-slider {
    margin-top: 10px;
}
.testimonials-itemblock .block-img img {
    width: 116px;
    object-fit: cover;
    height: 116px;
    border-radius: 100%;
}
.block-img {
    max-width: 116px;
    flex: 116px;
}
.testimonials-content {
    max-width: 100%;
    flex: 1;
    padding-left: 20px;
}
.testimonials-content p {
    margin: 25px 0 0;
    color: var(--sec-typo-clr);
}
.testimonials-content .name {
    font-size: 18px;
    display: block;
    line-height: 23px;
    margin-bottom: 4px;
    font-family: var(--font-face2);
    color: var(--primaryclr);
    font-weight: 700;
}
.our-team .mainheading {
    margin-bottom: 50px;
}
.testimonials-slider .owl-dots {
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
    margin: 0 4px;
    width: 7px;
    height: 7px;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--secondaryclr);
}
.project .contact .themeBtn:before {
    background: var(--whiteclr);
}
.project .titles p {
    margin-top: 10px;
}
.project {
    padding: 70px 0;
}
.work-process:before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background: var(--primaryclr);
    height: 503px;
}
.work-process .container {
    z-index: 9;
}
.work-process:after {
    position: absolute;
    content: '';
    background: url(../images/banner-bg.svg);
    left: -138px;
    max-width: 506px;
    width: 100%;
    height: 247px;
    z-index: 1;
    background-repeat: no-repeat;
    top: 0;
}
.videocenter {
    padding: 10px;
    background: var(--whiteclr);
    max-width: 958px;
    box-shadow: 6px 6px 33px rgba(27, 27, 27, 0.14);
    margin: 20px auto 0;
}
.videograph:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: rgba(27, 27, 27, 0.48);
}
.videograph {
    position: relative;
}
.playbutton {
    padding: 0;
    border: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}
.faq-block {
    margin-top: 20px;
    padding: 40px;
    background: var(--lightclr);
}
.accordion-button {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    padding: 20px 20px 20px 30px;
    color: var(--primaryclr) !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: var(--whiteclr) !important;
}
.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--borderclr) !important;
}
.accordion-body {
    padding: 0 30px 30px 30px;
    color: var(--sec-typo-clr);
    max-width: 1103px;
    line-height: 27px;
}
.accordion-button::after {
    background-color: var(--lightclr);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-position: center center;
    background-image: url('data:image/svg+xml,&lt;svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path d="M1.93103 18.1487L10.0429 9.99994L1.93103 1.85119" stroke="%23E1B262" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/&gt;&lt;/svg&gt;');
    background-size: 12px;
}
.accordion-button:not(.collapsed)::after{
    background-size: 20px;
    background-color: var(--secondaryclr);
    background-image:url('data:image/svg+xml,&lt;svg width="20" height="12" viewBox="0 0 20 12" fill="none" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path d="M1.85132 1.93115L10.0001 10.0431L18.1488 1.93115" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/&gt;&lt;/svg&gt;');
} 
.our-brand-logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.brand-logo-item:nth-child(4n) a {
    border-right: 0;
}
.brand-logo-item a {
    padding: 65px;
    text-align: center;
    border-right: 1px solid var(--borderclr);
    border-bottom: 1px solid var(--borderclr);
}
.brand-logo-item img {
    transition: all 0.4s ease-in-out;
    filter: grayscale(1);
}
.brand-logo-item a{
    display: block;
}
.brand-logo-item:hover img{
    filter: grayscale(0);
}
.brand-logo-item:last-child a, .brand-logo-item:nth-last-child(2) a, .brand-logo-item:nth-last-child(3) a, .brand-logo-item:nth-last-child(4) a{
    border-bottom: 0;
}
/*----------- About US Page End -----------*/

/*------------ Service page Start --------------*/
.service-pg .titles p {
    margin-bottom: 0;
    margin-top: 20px;
}
.service-pg .solutions {
    margin-top: 60px;
    padding-bottom: 100px;
}
.pt-100{
    padding-top: 100px;
}
.service-pg .service-item {
    padding: 0px 20px 0;
}
.service-pg .solutions .row {
    row-gap: 70px;
}
.step-process {
    margin-top: 20px;
}
.process-icon {
    background: #FBF5EB;
    width: 116px;
    height: 116px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-process-block {
    padding: 30px 20px 20px;
    border: 1px solid var(--borderclr);
}
.step-process-block h3 {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    line-height: 32px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
}
.step-process-block .process-tagline {
    text-align: center;
    color: var(--sec-typo-clr);
    line-height: 21px;
    background: var(--lightclr);
    padding: 5px 24px;
    max-width: fit-content;
    margin: 0 auto;
}
.step-process-block .list-detail {
    margin-top: 35px;
    padding: 0 13px 24px;
    border-bottom: 1px solid var(--borderclr);
    margin-bottom: 24px;
}
.step-process-block .list-detail li{
    font-weight: 400;
    color: var(--primaryclr);
    font-family: var(--font-face1);
    font-size: 14px;
}
.expert-btn {
    width: 100%;
    display: block;
    background: var(--primaryclr);
    color: var(--whiteclr);
    text-transform: uppercase;
    font-family: var(--font-face2);
    border-radius: 0;
    padding: 14.5px 20px;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
}
.expert-btn:hover{
    background: var(--secondaryclr);
}
/*------------ Service Page End --------------------*/

/*--------- Portfolio page Start -------------*/
.portfolio-wrapper {
    margin-top: 60px;
}
.portfolio-wrapper .row {
    row-gap: 25px;
}
.portfolio-main .portfolio-card .portfolio-cnt{
    max-width: 494px;
}
.portfolio-main .portfolio-card:hover .portfolio-cnt{
    opacity: 1;
    visibility: visible;
}
.portfolio-main .portfolio-card &gt; img{
    height: 407px;
    width: 100% !important;
}
.pagination-global{
    margin-top: 50px;
}
.pagination-global .page-link {
    padding: 0;
    color: var(--primaryclr);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #F1F1F1;
    font-weight: 700;
    font-family: var(--font-face2);
    font-size: 13px;
}
.pagination-global .pagination {
    gap: 5px;
    flex-wrap: wrap;
}
.pagination-global .pagination .page-item.active .page-link,
.pagination-global .pagination .page-item .page-link:hover {
    background: var(--secondaryclr);
    border-color: var(--secondaryclr);
    color: var(--whiteclr);
}
.pagination-global .pagination .page-item .page-link:hover svg path{
    fill: var(--whiteclr);
}
/*--------- Portfolio page End -------------*/

/*--------- Contact Us Page Start -------------*/
.connect-with-us .leftblock {
    max-width: 425px;
    flex: 425px;
    padding: 77px 30px;
}
.connect-with-us .contact-info .contact-types .text-cnt {
    margin-left: 15px;
}
.connect-with-us .leftblock .mainheading {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 19%);
}
.connect-with-us .contact-info .contact-types .icon{
    width: 68px;
    height: 68px;
}
.connect-with-us .contact-info .contact-types .text-cnt .p-hard, .connect-with-us .contact-info .contact-types .text-cnt .p-hard a {
    color: var(--whiteclr);
    font-size: 18px;
    line-height: 23px;
}
.connect-with-us .contact-info .contact-types {
    border: 0;
    margin-top: 35px;
}
.connect-with-us .rightblock {
    max-width: 100%;
    flex: 1;
    padding: 70px 50px;
}
.connect-with-us .rightblock h3 {
    margin-bottom: 15px;
    line-height: 51px;
}
.connect-with-us .rightblock p {
    margin: 0;
    color: var(--sec-typo-clr) !important;
    max-width: 606px;
}
.connect-with-us .leftblock .mainheading p {
    font-size: 14px;
    line-height: 20px;
}
/*--------- Contact Us Page End -------------*/

/*---------- Blog Start -------------*/
.blogitems-wrap .row{
    row-gap: 32px;
}
.blog-g h3 {
    color: var(--primaryclr);
}
/*---------- Blog End -------------*/

/*---------- Protfolio Detail Start -----------*/
.property-gallery .row {
    row-gap: 24px;
}
.height-full img {
    height: 370px;
    object-fit: cover;
    width: 100%;
}
.property-image {
    position: relative;
}
.height-half img {
    height: 173px;
    object-fit: cover;
    width: 100%;
}
.dim-bg:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(16 40 70 / 60%);
}
.property-image a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:18px;
    color: var(--whiteclr);
    font-family: var(--font-face2);
    font-weight: 700;
}
.portfolio-frame{
    margin-top: 40px;
}
.project-information {
    padding: 30px 42px 27px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.top-sticky{
    position: sticky;
    top: 20px;
}
.project-information h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primaryclr);
    line-height: 23px;
    padding-bottom: 10px;
    margin-bottom: 24px;
    position: relative;
}
.project-information h5:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 68px;
    background: var(--secondaryclr);
}
.project-information ul li {
    font-family: var(--font-face2);
    color: var(--primaryclr);
    display: flex;
    flex-wrap: wrap;
}
.project-information .content-left {
    font-weight: 700;
    max-width: 133px;
    flex: 133px;
    position: relative;
}
.project-information .content-right {
    max-width: 100%;
    flex: 1;
    padding-left: 25px;
}
.project-information ul li:not(:last-child) {
    margin-bottom: 33px;
}
.project-information .content-left:before {
    content: ':';
    right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    font-weight: 500;
}
.share-link h6 {
    color: var(--whiteclr);
    margin: 0 24px 0 0;
}
.share-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 5px;
}
.share-link .social-link li a {
    width: 36px;
    height: 36px;
}
.share-link .social-link li a img {
    max-height: 16px;
}
.share-link .social-link{
    gap: 20px;
}
.see-our-portfolio p {
    margin-bottom: 30px;
    color: var(--sec-typo-clr);
}
.see-our-portfolio h3 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 32px;
    font-size: 25px;
    margin-bottom: 18px;
}
.see-our-portfolio h5 {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 23px;
    font-size: 18px;
    margin-bottom: 20px;
}
.see-our-portfolio .list-detail {
    margin-bottom: 50px;
}
.see-our-portfolio p:last-child {
    margin-bottom: 0;
}
/*---------- Protfolio Detail End -----------*/

/*------- Testimonial Page Start ---------------*/
.testimonials-grid .row{
    row-gap: 36px;
}
.testimonial-g:before {
    background: url(../images/pattern-2.svg);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    opacity: 8%;
}
.testimonials-grid {
    position: relative;
}

.write-your-review .rating-testimonial {
    padding: 20px;
    background: var(--lightclr);
}

.rating-wrapblock{
    padding: 20px 30px 20px 28px;
}
.write-your-review .testimonials-itemblock {
    text-align: center;
}
.quote-center img {
    margin: 25px auto 0;
    max-width: 45px;
}
.write-your-review .testimonials-content .title {
    color: var(--secondaryclr);
    font-size: 12px;
    line-height: 9px;
    display: block;
    margin-top: 8px;
}
.write-your-review .block-img {
    margin: 0 auto 20px;
}
.write-your-review .testimonials-slider {
    margin-top: 30px;
}
.write-your-review .rating-wrapcontent{
    padding-left: 26px;
}
.write-your-review .stars li:not(:last-child) {
    margin-right: 4px;
}
.write-your-review .mainheading p {
    max-width: 606px;
    margin-bottom: 40px;
}
.overall-ratings h6 {
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 14px;
}
.overall-ratings {
    margin-bottom: 50px;
}
.overall-ratings li {
    border-radius: 5px;
    width: 36px;
    height: 36px;
    background: var(--lightclr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*------- Testimonial Page End ---------------*/

/*------------ Blog details Start ---------------*/
.blog-detail-wrapper &gt; img {
    width: 100%;
    height: 513px;
    object-fit: cover;
    margin-bottom: 33px;
}
.blog-date {
    display: block;
    font-size: 14px;
    color: var(--secondaryclr);
    font-family: var(--font-face2);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 18px;
}
.blog-detail-wrapper h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 32px;
}
.blog-detail-wrapper h5 {
    font-weight: 700;
    margin-top: 40px;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 20px;
}
.blog-detail-wrapper .list-detail {
    margin: 30px 0 40px;
}
blockquote {
    position: relative;
    margin: 40px 0;
    padding: 30px 20px 30px 30px;
    background: var(--lightclr);
    border-left: 3px solid var(--secondaryclr);   
}
blockquote figure {
    line-height: 27px;
    color: var(--sec-typo-clr);
    margin: 0;
    font-style: italic;
    font-weight: 400;
}
blockquote:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/quote.svg);
    background-repeat: no-repeat;
    width: 115px;
    height: 99px;
    background-size: cover;
    margin: auto;
    opacity: 15%;
}
.project-concept h5 {
    margin-top: 0;
}
.p-con{
    margin-bottom: 40px;
}
.share-it {
    border: 1px solid var(--borderclr);
    margin: 40px 0;
    padding: 12px 12px 12px 21px;
}
.share-it h6{
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
}
.share-it .social-link li a {
    background-color: var(--whiteclr);
}
.share-it .social-link li a:hover{
    background-color: var(--secondaryclr);
}
.share-it .social-link{
    gap: 20px;
}
.comment-wrapper {
    padding-top: 50px;
    border-top: 1px solid var(--borderclr);
    padding-bottom: 61px;
    border-bottom: 1px solid var(--borderclr);
}
.comment-block-inner {
    display: flex;
    flex-wrap: wrap;
}
.comment-block {
    margin-top: 40px;
}
.blockimg {
    max-width: 80px;
    min-width: 80px;
    flex: 80px;
}
.blockimg img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.comment-block-detail {
    flex: 1;
    max-width: 100%;
    padding-left: 20px;
}
.comment-block-detail .name-date .authorname {
    font-family: var(--font-face2);
    font-weight: 700;
    color: var(--primaryclr);
    font-size: 18px;
    line-height: 23px;
}
.comment-block-detail .name-date .date,
.commentreply {
    color: var(--secondaryclr);
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    display: block;
}
.comment-block-detail .name-date {
    margin-bottom: 10px;
}
.comment-block-detail .content {
    color: var(--sec-typo-clr);
    line-height: 27px;
    margin-bottom: 11px;
}
.comment-block &gt; .comment-block {
    margin-left: 68px;
}
#commentbox {
    margin-top: 40px;
}
#commentbox h3 {
    margin-bottom: 52px;
}
#commentbox .form-group {
    margin-bottom: 52px;
}
#commentbox .input-box textarea.form-control{
    height: 92px;
}
.blog-detail-sidebar .border-box {
    padding: 30px 20px;
    border: 1px solid Var(--borderclr);
    margin-bottom: 30px;
}
.blog-detail-sidebar .border-box h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    padding-bottom: 8px;
    margin-bottom: 0;
    position: relative;
}
.blog-detail-sidebar .border-box h4:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 89px;
    height: 3px;
    background: var(--secondaryclr);
}
.recent-post .post-details &gt; *:not(:last-child) {
    margin-bottom: 20px;
}
.recent-post .post-details &gt; *{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid Var(--borderclr);
}
.recent-post .post-details &gt; *:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}
.post-details {
    margin-top: 30px;
}
.recent-post .post-details &gt; *:hover .post-title{
    font-weight: 700;
}
.recent-post .post-img {
    max-width: 100px;
    flex: 100px;
}
.recent-post .post-title {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
    flex: 1;
    padding-left: 16px;
    font-family: var(--font-face2);
    font-weight: 400;
    color: var(--primaryclr);
    font-size: 18px;
    line-height: 23px;
}
.listing-type ul {
    margin-top: 10px;
}
.listing-type ul li:last-child a{
    border-bottom: 0;
    padding-bottom: 0;
}
.listing-type ul li a{
    transition: all 0.4s ease-in-out;
    padding: 20px 0;
    border-bottom: 1px solid Var(--borderclr);
    font-family: var(--font-face2);
    font-weight: 400;
    display: block;
    font-size: 18px;
    line-height: 23px;
    color: var(--primaryclr);
}
.listing-type ul li a:hover {
    text-indent: 10px;
    color: var(--secondaryclr);
}
.tags ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}
.tags ul li {
    max-width: fit-content;
}
.tags ul li a {
    transition: all 0.4s ease-in-out;
    font-family: var(--font-face2);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--primaryclr);
    padding: 15px 28px;
    display: block;
    background: var(--lightclr);
}
.tags ul li a:hover{
    background: var(--primaryclr);
    color: var(--secondaryclr);
}
.callerbox {
    margin-bottom: 30px;
    border: 1px solid Var(--borderclr);
    padding: 16px 20px;
    background: var(--primaryclr);
}
.callerbox .outerbox {
    padding: 55px 20px;
    border: 1px solid var(--borderclr);
    background-image: url(../images/modern.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}
.callerbox .outerbox:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #1B1B1B;
    opacity: 77%;
}
.callerbox-data h4 {
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 18px;
}
.callerbox-data p {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 19px;
}
.call-details .icon-request {
    background: var(--secondaryclr);
    border-radius: 5px;
    margin-right: 15px;
}
.call-details .call-info .call-text{
    color: var(--secondaryclr);
    font-weight: 600;
    font-size: 18px;
}
.call-details .call-info .call-number {
    color: var(--whiteclr);
    font-size: 25px;
    line-height: 18px;
    margin-top: 11px;
}
.detail-shortimg img {
    width: 100%;
}
















</pre></body></html>