@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
/***** General CSS *****/
body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #000;
    font-size: 'Montserrat';
}
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #000;
}

a:hover {
    transition: all 0.2s ease-in-out;
}

img {
    object-fit: cover;
    max-width: 100%;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    transition: all 0.5s ease;
    outline: none;
}

select,
input,
textarea {
    appearance: auto;
}

/***** Font Files *****/
@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Jersey";
    src: url(../fonts/Jersey.ttf);
    font-weight: 400;
    font-style: normal;
}


/***** Custom Classes *****/
select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
    color: #575757;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
    padding: 80px 0;
}

.flexRow,
.flexCol {
    display: flex;
    align-items: center;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 800;
}

h1 {
    font-size: 65px;
    line-height: 1;
    color: #b3ab9c;

}

h2 {
    font-size: 60px;
    line-height: 1;
    color: #000;
}

h3 {
    font-size: 51px;
    line-height: 1.2;
    color: #000;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
}

h5 {
    font-size: 22px;
    line-height: 1.2;
    color: #000;
}

h6 {
    font-size: 16px;
    color: #fff;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #000;
    font-family: "Montserrat", serif;
    opacity: 70%;
}

.white{
    color: #fff;
}

.black{
    color: #000;
}

.brown{
    color: #b3ab9c;
}
.gray{
    color: #262626;
}

.gray-bg{
    background-color: #262626;
}

.rajdhani{
    font-family: "Rajdhani", sans-serif;
}
.montserrat{
     font-family: "Montserrat", serif;
}
/* Menu */
.nav ul {
    list-style: none;
    text-align: center;
}

.nav ul li a {
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    transition: all 0.5s;
    position: relative;
}

section.header .nav.stroke {
    display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 0%;
    content: ".";
    color: transparent;
    background: #fff;
    height: 2px;
    transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
    width: 100%;
}


.nav.stroke ul li a.active:after {
    width: 100%;
}

.nav.stroke ul li a.active::before {
    height: 100%;
}

.nav.stroke ul li a.active {
    color: #fff !important;
}

/* Buttons Css Start*/

/* Buttons */
.theme-btn {
    font-family: 'Montserrat';
    border-radius: 8px;
    color: #fff;
    z-index: 1;
    position: relative;
    font-size: 14px;
    box-shadow: unset;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    border: 1px solid #ffff;
    text-transform: uppercase;
    height: auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 0px 15px;
    font-weight: 600;
    gap: 19px;
    background: transparent;
    margin: 0;
    box-shadow: 0 0 20px 0 #00000021;
}

.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 8px;
    background-color: #262626;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.theme-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background-color: #b0a899;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    z-index: -2;
}


.theme-btn:hover {
    border: 1px solid rgb(255 255 255);
    background: transparent;
    color: rgb(255 255 255);
    background: #fff;
}

.theme-btn:hover::before {
    width: 100%;
}

.theme-btn i {
    background: var(--primary-color);
    width: 15px;
    background: #000;
    height: 15px;
    font-size: 16px;
    clip-path: polygon(40% 50%, 25% 10%, 100% 50%, 25% 90%);
}


.theme-btn span {
    width: 49px;
    height: 49px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.theme-btn:hover span {
    background: #fff;
}
/* Buttons Css End*/


/* Loader start */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 1s ease;
    flex-direction: column;
    gap: 5px;
}

#loader.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

img.loader {
    width: 10vw;
}

/* Loader end */


/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#style-6::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

#style-6::-webkit-scrollbar-thumb {
    background-color: #a49b89;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, .2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, .2) 50%,
            rgba(255, 255, 255, .2) 75%,
            transparent 75%,
            transparent)
}

.scrollbar {
    overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
    object-fit: scale-down;
    display: block;
    width: fit-content;
}

ul#menu {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 9%;
}

ul#menu a {
    color: #fff;
    transition: 0.3s ease-in-out;
    font-family: montserrat;
    font-weight: 500;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
section.header {
    background: #262626;
    padding: 20px 0;
}

h1 span {
    display: block;
    font-size: 45px;
}

/* Header end*/

/* Banner */
.banner_sec {
    position: relative;
    z-index: 1;
}


.banner_sec::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 89%;
    z-index: -1;
    content: '';
    background-color: #262626;
}

.banner_text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    padding: 100px 0;
    gap: 15px;
    border-radius: 8px;
}

.banner-slider .slick-list {
    height: 100%;
}

.banner-slider .slick-track {
    height: 100%;
}

.banner-left-box {
    position: relative;
    z-index: 1;
}

.banner-left-box::before {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    content: '';
    background: #b1ac9f;
    width: 100vw;
    height: 100%;
}

.banner-slider .slick-slide{
    margin: 0;
}

img.banner-img {
    height: 690px;
    object-position: -100px 0;
}

.banner_text p {
    width: 90%;
}

.banner_text * {
    margin: 0;
}
p.banner-tag-line {
    width: 100%;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 10px 0;
    background: #262626;
    opacity: 1;
    color: #fff;
    position: relative;
    z-index: 1;
    width: 105%;
}
a.move-down {
    writing-mode: sideways-rl;
    letter-spacing: 10px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

p.banner-tag-line::before{
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    z-index: -1;
    border-left: 12px solid transparent;
    border-right: 0px solid transparent;
    border-top: 10px solid #262626;
    content: '';
}

p.banner-tag-line::after{
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    z-index: -1;
    border-left: 0px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #262626;
    content: '';
}

.banner-slider-box {
    position: relative;
    z-index: 1;
}

.banner-slider-box::before {
    position: absolute;
    top: 50%;
    right: -0.5%;
    width: 5%;
    height: 101%;
    transform: translateY(-50%);
    background: #fff;
    content: '';
    z-index: -1;
}

ul.banner-slider-nav button {
    width: 90px;
    height: 80px;
    background: #a49b89;
    border: none;
    padding: 0;
}

ul.banner-slider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
    background: #a39b8a;
}
button.next-slide1 {
    border-left: 1px solid #ffffff8f !important;
}

ul.banner-slider-nav button i{
    color: #fff;
}
.hdr_btn {
    justify-content: end;
    display: flex;
}

.banner-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    position: unset;
    width: auto;
    flex-direction: column;
}

.banner-progress-bar {
    height: 250px;
    width: 4px;
    background: #ddd;
    position: relative;
    flex-grow: 1;
    border-radius: 10px;
}

.banner-progress-bar-fill {
    height: 100%;   /* ❌ ye fix height hai */
    background-color: #b3ab9c;
    width: 100%;      /* ❌ ye horizontal fill ke liye tha */
    transition: width 0.4s ease-in-out;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
span.ball {
    width: 10px;
    height: 10px;
    display: block;
    background: #b3ab9c;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.span-p {
    font-size: 21px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
    font-family: "Rajdhani", sans-serif;

}
.banner-progress-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: end;
    gap: 5%;
    padding: 30px 0 0 0;
}

/* Banner end*/

/* section About Us start */

img.about-img {
    height: 600px;
    border-radius: 5px;
}

.about-text {
    padding: 40px 30px;
    margin: 0 0 30px -20%;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}


@keyframes gradients {
    0% {
        background-position: 0 0;
    }

    25% {
        background-position: 50% 0;
    }

    50% {
        background-position: 90% 0;
    }

    60% {
        background-position: 60%;
    }

    75% {
        background-position: 40%;
    }

    100% {
        background-position: 0 0;
    }
}

.sec-img {
    position: relative;
    overflow: hidden;
}

.sec-img:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.sec-img:hover::before {
    height: 250%;
    transition: ease-out;
    transition-duration: 0.5s;
    background-color: transparent;
}

.about-text::before {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 60%;
    height: 90%;
    background: #a49b89;
    content: '';
    z-index: -2;
    border-radius: 5px;
}

.about-text::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: '';
    z-index: -1;
    border-radius: 5px;

}
/* section About Us end */
/* section Service start */
.service-heading-box {
    background: #262626;
    padding: 20px 0;
}

.service-heading-box h2 {
    margin: 0;
}

img.service-img {
    height: 500px;
}

.service-card {
    margin: 20px 0;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    perspective: 1000px; /* 3D effect enable */
}

.service-card-image a {
    display: flex;
    position: relative;
    z-index: 1;
}
.service-card-image a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    content: '';
    background: linear-gradient(0deg, rgba(164, 155, 137, 1) 0%, rgba(0, 0, 0, 0) 100%);
    transition: 0.3s ease-in-out;
}
.service-card:hover a::before {
    top: 100%;
    transition: 0.3s ease-in-out;
}

.service-card-text {
    position: absolute;
    bottom: 20px;
    left: 50%;                 /* center horizontally */
    transform: translateX(-50%); /* bilkul center */
    width: 94%;
    z-index: 99;
    padding: 7% 3%;
    backface-visibility: hidden;
}
.service-card-text.text-left {
  opacity: 1;   /* default show */
}

.service-card-text.text-right {
  opacity: 0;   /* default hidden */
}
p.service-para {
    color: #fff;
}
.text-left p.service-para {
    margin: 0;
}

.service-card-text.text-right::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #262626;
    transition: 0.3s ease-in-out;
    z-index: -1;
    border-radius: 5px;
}


/* Scrollable para */
.para-scroll {
    max-height: 150px;
    overflow-y: auto;
}
.para-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}
.para-scroll::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}
.para-scroll::-webkit-scrollbar-thumb {
    background-color: #a49b89;
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, .2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, .2) 50%,
        rgba(255, 255, 255, .2) 75%,
        transparent 75%,
        transparent
    );
}
.para-scroll.active {
    padding: 10px;
    box-shadow: 0 0 6px 0 #ffffff46;
    margin: 0 0 10px 0;
}

.service-card-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: "Rajdhani", sans-serif;
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    display: flex;
}
span.number1 {
    position: relative;
    z-index: -8;
}


/* section Service end */


/* section why-sec  start */
.why-top-text {
    padding: 0 0 0 50px;
}

img.why-img1 {
    height: 480px;
}

img.why-img2 {
    height: 350px;
}
.why-bottom-text {
    padding: 50px 0 0 0;
}
/* section why-sec  end */

/* section  repair-sec start */

.repair-sec{
    position: relative;
    z-index: 1;
    padding: 0 0 80px 0;
}
.repair-sec::before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 92%;
    z-index: -2;
    content: '';
    background-image: url(../images/repair-bg.jpg);
    background-size: cover;
    background-position: center;
}
.repair-sec::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 92%;
    z-index: -1;
    content: '';
    background-color: #262626f5;
}

img.repair-img {
    height: 730px;
    border: 4px solid #a49b89;
}
.repair-text {
    padding: 0 0 0 30px;
}

.repair-text p {
    color: #fff;
}
.repair-text h2 {
    font-size: 58px;
}

ul.repair-list {
    column-count: 2;
}

ul.repair-list li {
    padding: 0 0 0 40px;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

ul.repair-list li p {
    margin: 0;
    text-transform: uppercase;
    opacity: 1;
}

ul.repair-list li::before {
    position: absolute;
    top: 50%;
    background-image: url(../images/check.png);
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    content: '';
    left: 0;
    background-position: center;
    background-size: unset;
    background-repeat: no-repeat;
}
/* section  repair-sec end */


/*testimonial_sec start*/

.testimonial_sec{
    padding: 80px 0 50px 0;
}

.testimonial_top_bar h2 {
    text-align: center;
}
.testimonial_top_bar p{
    text-align: center;
    color: #666666;
    margin: 0 auto;
    width: 60%;
}
.testimonial_top_bar{
    
    padding: 30px 0 0 0;
}
.checked {
  color: #fd8f00;
}

.testimonial_boxspan{
    color: #f3b15c;

}

.testimonial_slider{

}
.testimonial_box{

padding: 50px 44px;

height: 340px;

position: relative;
}
.testimonial_box i{
    
position: absolute;
    
color: #000000;
    
top: -7%;
    
padding: 20px;
    
border-radius: 50%;
    
background-color: #ffffff;
}
.testimonial_box p{
    
padding: 0;
    
font-family: 'Poppins';
}
.profile{
    
padding: 30px 0;
    
display: flex;
    
align-items: center;
    
gap: 20px;
}
.profile img{
    
width: 70px;
    
height: 70px;
    
border-radius: 50%;
    
border: 2px solid #fff;
}
.profile_text p{

margin: 0;

padding: 0;
}
.profile_text h6{
    
margin: 0;
    
font-family: "Rajdhani", sans-serif;
    
text-transform: uppercase;
    
color: #000;
}
.profile_text p{
    
padding: 0;
    
text-transform: uppercase;
    
font-family: "Rajdhani", sans-serif;
    
font-weight: 700;
}

.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box i{
    background-color: #a49b89;
    color: #fff;
}
.testimonial_slider .slick-slide.slick-current.slick-active .profile_text p{
    
padding: 0 !important;
    
font-family: "Rajdhani", sans-serif;
    
font-weight: 700;
}
.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box  p{
    padding: 30px 0 26px 0;
}
.testimonial_slider .slick-slide.slick-current.slick-active .testimonial_box {box-shadow: 1px 1px 20px 14px #0000001f;background: #a49b89;border-radius: 10px;}

.testimonial_slider .slick-slide.slick-current.slick-active  {
    width: 11% !important;
}
.testimonial_slider .slick-slide.slick-current.slick-active +.slick-slide.slick-active  {
    width: 7% !important;
}
.testimonial_slider .slick-slide.slick-current.slick-active +.slick-slide.slick-active +.slick-slide.slick-active {
    width: 7% !important;
}
.testimonial_slider .slick-list.draggable {
    height: 463px;
    padding: 60px 0;
}
.testimonial_slider .slick-active{
    opacity: 1;
}

.testimonial_slider .slick-slide.slick-current.slick-active +.slick-slide.slick-active  .testimonial_box{

background-color: #11171a;

border-radius: 10px;
}
.testimonial_slider .slick-slide.slick-current.slick-active +.slick-slide.slick-active +.slick-slide.slick-active .testimonial_box{
background-color: #e5e5e5;

}

.testimonial_slider .slick-prev:before {
    background-repeat: no-repeat;
    width: 39px;
    transform: rotate(180deg);
    content: '' !important;
    background-image: url(../images/rightarrow.png);
    display: block;
    height: 20px;
}
.testimonial_slider .slick-prev.slick-arrow{left: -4%;}

.testimonial_slider .slick-next:before {
    background-repeat: no-repeat;
    width: 39px;
    content: '' !important;
    background-image: url(../images/rightarrow.png);
    display: block;
    height: 20px;
}

.profile i {
    position: relative;
    top: 0;
    left: 0;
    background-color: #000000 !important;
    border: 1px solid #fff;
    color: #fff !important;
}

.testimonial_slider .slick-slide.slick-active +.slick-slide.slick-active .testimonial_box p {
    color: #fff;
    margin: 0 0 10px;
    line-height: 2;
}

.testimonial_slider .slick-slide.slick-active +.slick-slide.slick-active .testimonial_box h6 {
    color: #fff;
}

.testimonial_slider .slick-slide.slick-current.slick-active +.slick-slide.slick-active +.slick-slide.slick-active .testimonial_box {
    background-color: #11171a;
    border-radius: 10px;
}

p.headline {
    color: #000;
    opacity: 1;
    text-transform: uppercase;
}

/*testimonial_sec end*/



/*blog start*/
section.blog {
    padding: 0 0 80px 0;
}

.blog-txt {
    margin-bottom: 40px;
}

.blog-txt h2 {
    margin-bottom: 10px;
    color: #111111;
}

.blog-txt p {
    font-size: 14px;
    margin: 0 auto;
    width: 73%;
}

.blog-img {
    position: relative;
    overflow: hidden;
    transition: 0.3s ease-in-out;

}

.blog-img:hover{
    overflow: visible;
}

.blog-img:hover .blog-detail{
    left: 30px;
    transition: 0.3s ease-in-out;
}

.blog-img img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.blog-detail {
    padding: 27px 11px;
    background: #91897a;
    position: absolute;
    bottom: -40px;
    left: -100%;
    box-shadow: 0 0 4px #80808073;
    width: 87%;
    height: auto;
    border-radius: 10px;
    transition: 0.3s ease-in-out;

}

.blog-detail h5 {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
    width: 75%;
}

.blog-detail h5 {
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: normal;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
    /* width: 75%; */
    width: 100%;
    text-transform: capitalize;
}

.blog-detail h5 span {
    display: block;
}

.alignlist {
    display: flex;
    gap: 10px;
    justify-content: end;
    text-align: end;
    margin-left: 0;
}

.icons i {
    border: solid 1px #ffffff3b;
    border-radius: 20px;
    color: #ffffff3b;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons {
    display: flex;
    align-items: center;
    gap: 17px;
}

.blog-slider .slick-active {
    opacity: 1;
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before {
    display: block;
    content: "";
    background: url(../images/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1 !important;
    width: 75px;
    height: 45px;
    transition: 0.35s ease-in-out;
}

.blog-slider .slick-prev,
.blog-slider .slick-next {
    width: 75px;
    height: 45px;
    z-index: 2;
    bottom: -90px;
    top: unset;
}

.blog-slider .slick-prev {
    left: 0;
    right: 0px;
    /* transform: rotate(180deg); */
    margin: 0 auto;
    display: block;
    bottom: -90px;
    width: 18%;
}

.blog-slider .slick-next {
    right: 300px;
    width: 27%;
}

.blog-slider .slick-prev:before {
    transform: rotate(180deg);
}

.blog-slider .slick-prev:hover:before,
.blog-slider .slick-next:hover:before {
    filter: brightness(0);
}

.icons p {
    margin: 0;
}
.blog-detail p {
    color: #ffff;
}
/*blog end*/



/*contact_sec start*/

.contact_sec {
    padding: 50px 0;
    margin-bottom: 0;
    background: #262626;
}

.contact_box {
    background-color: #262626;
    height: 100%;
}

.contact_box:hover i {
    background-color: #917d6e;
}

.contact_box:hover {
    background-color: #fff;
}

.contact_box  {
    gap: 9px;
    display: flex;
    padding: 20px 10px;
    align-items: center;
    color: white;
    border: 1px solid #ffffff29;
    height: 100%;
}

.contact_box.cont-box-dif {
    background: #ffffff;
}

.contact_box.cont-box-dif i {
    background: #917d6e;
}

.contact_box i {
    padding: 16px;
    background-color: #515151;
    font-size: 20px;
    border-radius: 10px;
}

.contact_box_text {
    color: white;
}

.contact_box_text p {
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact_box_text h6 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}


/*contact_sec end*/

/* Footer  */

footer.main_footer {
    background: #262626;
    padding: 60px 0 0%;
}

.footer_details h5 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10%;
    text-transform: uppercase;
    font-family: 'Blender';
}

.footer_details.adrxs {
    width: 80%;
    margin: 0 auto;
}

.footer_details {
    width: 100%;
}

.footer_details p {
    color: #ffff;
    width: 80%;
}

.footer_details.linkks>ul {
    display: block;
    justify-content: space-between;
    column-count: 2;
}

.footer_details.linkks {
    width: 100%;
    padding: 0 0 110px 13%;
}

.footer_details.adrxs ul li {
    margin-bottom: 20px;
}

.footer_details.adrxs ul li a i {
    margin-right: 15px;
}

.footer_bottm {
    background: #262626;
    border: 1px solid #494949;
    border-bottom: 0;
    padding: 20px 0;
    margin-top: 0;
    border-left: 0;
    border-radius: 0;
}

.footer_bottm p {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 15px;
}

.ftr_line {
    position: relative;
    padding: 0 0 120px 19px;
}

.ftr_line:after {
    position: absolute;
    content: "";
    background: #2f2f2f;
    height: 100%;
    width: 2px;
    top: 0;
    right: 0;
}

.footer_details.abt-ftr.ftr_line h5 {
    font-size: 46px;
    font-family: 'Blender';
}

.footer_details ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
    font-family: 'Montserrat';
}

footer .follow ul {
    justify-content: start;
}
html {
    overflow-x: hidden;
}
.contact_box:hover p {
    color: #000;
    opacity: 1;
}

.contact_box:hover h6 {
    color: #000;
    opacity: 1;
}

.contact_box.cont-box-dif p {
    color: #000;
    opacity: 1;
}

.contact_box.cont-box-dif h6 {
    color: #000;
}

.service-link a{
        color: #fff;
        text-transform: uppercase;
        font-size: 13px;
        margin-bottom: 3px;
        display: block;
        font-family: 'Montserrat';
}
img.ftr-logo {
    object-fit: scale-down;
    width: auto;
    margin: 0 0 20px 0;
}

footer.main_footer h6 {
    font-size: 20px;
}

.contact_box_text a {
    color: #ffff;
}

.contact_box.cont-box-dif a {
    color: #000;
}


.contact_box:hover a {
    color: #000 !important;
}

ul.hdr-social-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.hdr-social-list li a i{
    color: #ffffff38;
}

ul.hdr-social-list li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ffffff38;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    margin: 0;
}

ul.hdr-social-list li a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -2;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

ul.hdr-social-list li a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    content: '';
    z-index: -1;
    background-color: #91897a;
    transition: 0.3s ease-in-out;
}

ul.hdr-social-list li a:hover::before {
    height: 100%;
    transition: 0.3s ease-in-out;
}

ul.hdr-social-list li a:hover i{
    transition: 0.3s ease-in-out;
    color: #fff;
}

/* Footer end */

/* section start */
/* section end */

/* section start */
/* section end */

/* section start */
/* section end */

/* Home Page end*/