/*------------------------------------------------------------------
Project: Roofing
Author: The_Krishna
Last change: 25/06/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Site Image Animtion CSS
5.Whole Page scroll Aniamtion CSS
6.Small Header CSS
7.Main Header CSS
8.Main Slider Section CSS
9.Section Two CSS
10.Section Three CSS
11.Section Four CSS
12.Section Five CSS
13.Section Ads
14.Section Six CSS
15.Section Seven CSS
16.Marquee Section CSS
17.Section Eight CSS
18.Section Blog CSS
19.Footer CSS
20.Bottom To Top Button CSS
21.About Page CSS
22.Team Page CSS
23.Team Details Page CSS
24.Pricing Plan Page CSS
25.Our Client Page CSS
26.Testimonial Page CSS
27.FAQ Page CSS
28.404 Page CSS
29.Services Deatils Page CSS
30.Project Page CSS
31.Blog Page CSS
32.Blog details Page CSS 
33.Contact Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", sans-serif;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #2F84FF;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFF;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}
.page-loader p {
    font-size: 40px;
    font-weight: 700;
    color: #2F84FF;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-top: 20px;
}
.blob {
    width: 100px;
    display: grid;
    background: #fff;
}
.blob:before,
.blob:after {
    content: "";
    grid-area: 1/1;
    width: 45px;
    height: 45px;
    background: #2F84FF;
    animation: blob-rhf26m 2s infinite;
}
.blob:after {
    animation-delay: -1s;
}
@keyframes blob-rhf26m {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100%, 0);
    }
    50% {
        transform: translate(100%, 100%);
    }
    75% {
        transform: translate(0, 100%);
    }
    100% {
        transform: translate(0, 0);
    }
}
/*-----------------------[ 3.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
    clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 4.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* ----------------- Button CSS -------------- */
.quote-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2F84FF;
    color: #FFF;
    padding: 5px 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    font-style: normal;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.quote-btn .corner-box {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background-color: #FFF;
    transition: all 0.4s ease;
}
.quote-btn .btn-text {
    position: relative;
    z-index: 1;
}
.quote-btn .arrow {
    position: relative;
    margin-right: 10px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
    z-index: 1;
}
.quote-btn:hover .arrow {
    /*transform: rotate(45deg);*/
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(210deg) brightness(98%) contrast(98%);
}
.send_msg_btn:hover .arrow {
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(210deg) brightness(98%) contrast(98%);
}
.quote-btn:hover .corner-box {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
}
.quote-btn:hover .btn-text {
    color: #2F84FF;
}
/*-----------------------[ 6.Small Header CSS ]------------------------*/
.small-header {
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ffffff0f;
    position: relative;
    z-index: 1;
    background: #091217;
}
.quick-text-main {
    /*color: var(--5, #FFF);*/
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.quick-text-main a {
    /*color: var(--14, #2F84FF);*/
}
.small-header-sub-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.small-header-sub p {
    /*color: var(--5, #FFF);*/
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.small-header-sub p img {
    padding-right: 5px;
}
.small-header-sub {
    display: flex;
    align-items: center;
    gap: 40px;
}
.small-header-sub a p:hover {
    color: #2F84FF;
}
.small-header-media-main {
    display: flex;
    align-items: center;
}
.small-header-media-main a {
    padding: 12px;
    border-left: 2px solid #ffffff0f;
}
.small-header-media-main a img:hover {
    filter: brightness(0) saturate(100%) invert(31%) sepia(100%) saturate(1056%) hue-rotate(330deg) brightness(96%) contrast(109%);
}
/*-----------------------[ 7.Main Header CSS ]------------------------*/
header.main-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #f4f3f0;
}
.header-container {
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #ffffff0f;
}
.logo {
    width: 150px;
    transition: all 0.3s ease;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}
nav {
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links li {
    position: relative;
}
.nav-links li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}
.nav-links li a:hover {
    color: #2F84FF;
}
.nav-links li a:hover img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(340deg) brightness(98%) contrast(98%);
}
.dropdown-menu li a {
    /*color: var(--4, #222);*/
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bs-dropdown-border-radius: 0;
}
.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-menu li {
    margin: 0;
    padding: 0 15px;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}
.nav-links li:hover .dropdown-menu li {
    transform: translateX(0);
    opacity: 1;
}
.nav-links li:hover .dropdown-menu li:nth-child(1) {
    transition-delay: 0.1s;
}
.nav-links li:hover .dropdown-menu li:nth-child(2) {
    transition-delay: 0.15s;
}
.nav-links li:hover .dropdown-menu li:nth-child(3) {
    transition-delay: 0.2s;
}
.nav-links li:hover .dropdown-menu li:nth-child(4) {
    transition-delay: 0.25s;
}
.dropdown-menu li a {
    padding: 8px 0;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-size: 17px;
}
.dropdown-menu li a:hover {
    color: #2F84FF;
    padding-left: 5px;
}
.menu-toggle {
    display: none;
    z-index: 1002;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: #2F84FF;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}
.menu-toggle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu-toggle:hover {
    color: #007bff;
}
.overlay,
.mobile-quote-btn,
.menu-logo {
    display: none;
}
/*-----------------------[ 8.Main Slider Section CSS ]------------------------*/
.hero-slider-section {
    position: relative;
}
.hero-slider-section {
    position: relative;
    height: calc(935px - 120px);
    overflow: hidden;
    z-index: 1;
}
.hero-slider-container {
    height: 100%;
}
.hero-slide {
    position: relative;
    height: 100%;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    max-width: 850px;
}
.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #091217 0%, rgba(9, 18, 23, 0.00) 50.05%),
        linear-gradient(103deg, #091217 0.21%, rgba(9, 18, 23, 0.90) 48.8%, rgba(9, 18, 23, 0.00) 100%);
}
.slider-main,
.slick-list,
.slick-track {
    height: 100%;
}
.slide-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.slide-content .provide {
    transition-delay: 0.2s;
}
.slide-content .quality {
    transition-delay: 0.3s;
}
.slide-content .residents {
    transition-delay: 0.5s;
}
.slide-content .btn-cutomer-main {
    transition-delay: 0.7s;
}
.slick-active .slide-content,
.slick-active .slide-content .provide,
.slick-active .slide-content .quality,
.slick-active .slide-content .residents,
.slick-active .slide-content .btn-cutomer-main {
    opacity: 1;
    transform: translateY(0);
}
.sec-one-slider-btn {
    width: 80px;
    height: 80px;
    background: #FFFF;
    border: 0 none;
    text-align: center;
    color: #FFF;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}
.NextArrow {
    position: absolute;
    bottom: 0;
    right: 325px;
}
.NextArrow:before {
    content: url('../images/svg/right-arrow.svg');
    width: 36px;
    height: 36px;
}
.PrevArrow {
    position: absolute;
    bottom: 0;
    right: 415px;
}
.PrevArrow:before {
    content: url('../images/svg/left-arrow.svg');
    width: 36px;
    height: 36px;
}
.provide {
    /*color: var(--5, #FFF);*/
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.quality {
    /*color: var(--5, #FFF);*/
    font-size: 80px;
    font-weight: 700;
    line-height: 100px;
    text-transform: uppercase;
}
.residents {
    /*color: var(--5, #FFF);*/
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-top: 20px;
    padding-left: 20px;
    border-left: 10px solid #2F84FF;
    max-width: 820px;
}
.btn-cutomer-main {
    display: flex;
    align-items: center;
    margin-top: 65px;
    gap: 80px;
}
.cutomer-img-main {
    position: relative;
}
.cutome2 {
    position: absolute;
    left: 50px;
    top: 0;
}
.cutome3 {
    position: absolute;
    left: 100px;
    top: 0;
}
.cutomer-img-main-text {
    display: flex;
    align-items: center;
    gap: 120px;
}
.cutomer-img-main img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.cutomers-text-main h2 {
    /*color: var(--5, #FFF);*/
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.cutomers-text-main p {
    /*color: var(--5, #FFF);*/
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cutomers-text-main p::before {
    content: url(../images/svg/star.svg);
}
/*-----------------------[ 9.Section Two CSS ]------------------------*/
.image-Photo {
    max-width: 100%;
}
.timate-box-main-head {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 975px;
    background: #F5F6F7;
    margin-top: -110px;
    z-index: 10;
    position: absolute;
    left: 0;
}
.timate-box-main {
    text-align: center;
}
.timate-box-main p {
    color: #091217;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
}
.timate-box-main h2 {
    /*color: var(--13, #091217);*/
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    text-transform: uppercase;
}
.timate-box-main h2 sup {
    /*color: var(--14, #2F84FF);*/
    font-weight: 400;
}
.aboutText {
    color: #2F84FF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.about-row {
    padding-top: 200px;
    padding-bottom: 100px;
}
.business {
    color: #091217;
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    padding-top: 10px;
}
.hardest {
    color: #091217;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.hardest-space {
    padding-top: 10px;
}
.multi-qustions-main {
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    padding-top: 10px;
    margin-bottom: 30px;
}
.qution-text {
    color: #091217;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.qution-text::before {
    content: url('../images/svg/check-mark.svg');
    width: 32px;
    height: 32px;
    background-color: #2F84FF;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*box-shadow: 0px 8px 15px rgba(248, 56, 57, 0.80);*/
    flex-shrink: 0;
}
.secTwo-img-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.secTwo-img-main img {
    max-width: 100%;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
}
.bluer-roofing {
    color: #F5F6F7;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: 3.2px;
    transform: rotate(90deg);
    position: absolute;
    left: -105px;
    top: 230px;
    z-index: 1;
}
.card-call-now-main {
    background: #091217;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 40px;
    animation: 5s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
        -moz-transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}
.card-call-now-main div {
    display: flex;
    align-items: center;
    gap: 10px;
    /*color: var(--5, #FFF);*/
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.card-call-now-main a {
    /*color: var(--14, #2F84FF);*/
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 10px;
    display: block;
    transition: all 0.3s ease-in-out;
}
.card-call-now-main a:hover {
    color: #FFF;
}
/*-----------------------[ 10.Section Three CSS ]------------------------*/
.section-three {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/home/roofer-man.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    height: 600px;
    position: relative;
    padding: 100px 0;
}
.latest-code {
    color: #FFF;
}
.latest-hardest {
    padding-top: 20px;
    /*color: var(--8, #A8A9AD);*/
    max-width: 630px;
}
.benefits-slider .slick-arrow {
    width: 48px;
    height: 48px;
    font-size: 0;
    background: #2F84FF;
    border-radius: 50%;
    box-shadow: 0px 8px 15px rgba(248, 56, 57, 0.80);
}
.benefits-slider .slick-prev {
    position: absolute;
    top: 40px;
    right: 60px;
    z-index: 5;
}
.benefits-slider .slick-next {
    position: absolute;
    right: 0;
    top: 40px;
}
.benefits-slider .slick-prev::before {
    content: url('../images/svg/left-white-arrow.svg');
}
.benefits-slider .slick-next::before {
    content: url('../images/svg/right-white-arrow.svg');
}
.fade-down {
    animation: fadeDown 0.8s ease forwards;
}
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-----------------------[ 11.Section Four CSS ]------------------------*/
.services-slider-img {
    width: 100%;
}
.services-slider-box:hover .circle-svg {
    background: #2F84FF;
}
.services-slider.slick-initialized.slick-slider {
    margin-top: -250px;
}
.services-slider-box.slick-slide {
    margin: 0 15px;
}
.circle-svg {
    width: 100px;
    height: 100px;
    background: #091217;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -55px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.circle-svg img {
    width: 100%;
    max-width: 64px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}
.services-slider-box:hover .circle-svg img {
    transform: rotateY(180deg);
}
.circle-box-main {
    /*border-right: 2px solid var(--12, #F5F6F7);*/
    /*border-bottom: 2px solid var(--12, #F5F6F7);*/
    /*border-left: 2px solid var(--12, #F5F6F7);*/
    /*background: var(--5, #FFF);*/
    padding: 0 30px 30px 30px;
}
.circle-box-main h2 {
    /*color: var(--13, #091217);*/
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-top: 30px;
}
.circle-box-main p {
    /*color: var(--4, #222);*/
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 10px;
}
.read-more-btn {
    margin-top: 30px;
}
.services-slider-box:hover .corner-box {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
}
.services-slider-box:hover .btn-text {
    color: #2F84FF;
}
.services-slider-box:hover .arrow {
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(340deg) brightness(98%) contrast(98%);
}
/*-----------------------[ 12.Section Five CSS ]------------------------*/
.section-five {
    padding: 100px 0;
    overflow: hidden;
}
.haassle-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 5px 0;
    /*border-bottom: 2px solid #F5F6F7;*/
}
.haassle-box-sub h2 {
    /*color: var(--13, #091217);*/
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.haassle-box-sub p {
    /*color: var(--4, #222);*/
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.why-choose-img1-main {
    display: flex;
    align-items: center;
    justify-content: end;
}
.why-choose-img1 {
    max-width: 100%;
}
.why-choose-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
}
/*-----------------------[ 13.Section Ads ]------------------------*/
.ads-section {
    padding: 100px 0;
    background: #091217;
}
.satistication-container {
    display: flex;
    align-items: center;
    gap: 110px;
}
.satistication {
    color: #FFF;
    font-weight: 500;
    /*max-width: 770px;*/
}
.satistication span {
    font-weight: 700;
    animation: redFade 2s infinite;
}
@keyframes redFade {
    0%,
    100% {
        opacity: 1;
        color: #2F84FF;
    }
    50% {
        opacity: 1;
        color: #fff;
    }
}
.arrrowVector {
    position: absolute;
    right: -130px;
    bottom: -50px;
    animation: 3s ease 0s normal none infinite running moveLeftRight;
}
.call-detl {
    display: flex;
    align-items: center;
    gap: 20px;
}
.call-detl .img-main-call {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2F84FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-detl .img-main-call img {
    width: 48px;
}
.call-detl p {
    /*color: var(--5, #FFF);*/
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}
.call-detl a {
    /*color: var(--14, #2F84FF);*/
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
}
.call-detl a:hover {
    color: #FFF;
}
/*-----------------------[ 14.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
}
.tbas-btn-heading-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}
.tbas-btn-heading-main div {
    max-width: 630px;
}
.total-count {
    background: #2F84FF;
    width: 18px;
    height: 18px;
    color: #FFF;
    font-size: 10px;
    position: absolute;
    top: -18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.total-count.tab-active {
    /*background: var(--13, #091217);*/
    color: #FFF;
}
.tab-btn-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tab-btn {
    padding: 10px 20px;
    /*background: var(--12, #F5F6F7);*/
    /*color: var(--13, #091217);*/
    transition: all 0.3s ease-in-out;
    display: block;
}
.tabContainer {
    overflow: hidden;
    position: relative;
}
.Tabcondent {
    position: absolute;
    width: 50%;
    height: 50%;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.tab-btn.tab-active {
    /*background: var(--14, #2F84FF);*/
    color: #FFFF;
}
.tab-btn:hover {
    color: #FFF;
    background: #2F84FF;
}
.Tabcondent.tab-active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all ease-in-out 0.6s;
    position: relative;
}
.img-group-project {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
.img-group-project2 {
    margin-top: 0;
    margin-bottom: 30px;
}
.project-card {
    position: relative;
    overflow: hidden;
    display: block;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-horizontal-img {
    min-height: 300px;
}
.project-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(9, 18, 23, 0.8);
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
.project-card:hover .project-overlay {
    opacity: 1;
    transform: scale(1);
}
.icon-box {
    align-self: flex-end;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-content::before {
    content: '';
    height: calc(100% - 40px);
    border-left: 2px solid #2F84FF;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.text-content::after {
    content: '';
    width: calc(100% - 30px);
    border-bottom: 2px solid #2F84FF;
    position: absolute;
    left: 10px;
    bottom: 30px;
}
.text-content {
    color: #fff;
    padding: 0 15px 25px;
}
.text-content h3 {
    /*color: var(--5, #FFF);*/
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.text-content p {
    /*color: var(--5, #FFF);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 8px;
}
/*-----------------------[ 15.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
}
.future-box-main {
    /*background: var(--12, #F5F6F7);*/
    padding: 40px 40px 58px 40px;
}
.future-box-main .business {
    max-width: 440px;
    padding-bottom: 40px;
}
.future-box-main .cutomers-text-main h2 {
    /*color: var(--13, #091217);*/
}
.future-box-main .cutomers-text-main p {
    /*color: var(--14, #2F84FF);*/
}
.contact-us-future-btn {
    margin-top: 40px;
}
.section-sevenRow {
    justify-content: space-between;
}
.slider-qut-per-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.slider-qut-per-main .slider-person img {
    border-radius: 50%;
}
.emper {
    /*color: var(--4, #222);*/
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}
.jack-detail-main {
    margin-top: 50px;
}
.jack-detail-main h3 {
    /*color: var(--14, #2F84FF);*/
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.jack-detail-main p {
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.FutureNextArrow,
.FuturePrevArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    /*background: var(--12, #F5F6F7);*/
}
.FuturePrevArrow::before {
    content: url('../images/svg/left-arrow.svg');
    filter: brightness(0) saturate(100%) invert(30%) sepia(57%) saturate(3453%) hue-rotate(341deg) brightness(99%) contrast(96%);
    width: 40px;
    height: 40px;
}
.FuturePrevArrow {
    position: absolute;
    right: 100px;
    bottom: 0;
    z-index: 10;
}
.FutureNextArrow::after {
    content: url('../images/svg/right-arrow.svg');
    filter: brightness(0) saturate(100%) invert(30%) sepia(57%) saturate(3453%) hue-rotate(341deg) brightness(99%) contrast(96%);
    width: 40px;
    height: 40px;
}
.FutureNextArrow {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.fuures-slider-box {
    margin: 0 12px 0 0;
}
/*-----------------------[ 16.Marquee Section CSS ]------------------------*/
.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    margin-top: 60px;
}
.logos-slide {
    animation: slide-ltr 50s linear infinite;
}
@keyframes slide-ltr {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.marquee-content {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
}
.marquee-img-main {
    margin: 0 17px;
}
/*-----------------------[ 17.Section Eight CSS ]------------------------*/
.section-eight {
    background-image: linear-gradient(to bottom, rgba(9, 18, 23, 0.7), rgba(9, 18, 23, 0.7)), url('../images/home/sec-form-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
.trust-conter-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 60px;
}
.trust-conter-main h2 {
    color: #fff;
}
.trust-conter-main p {
    /*color: var(--8, #A8A9AD);*/
}
.form-box {
    padding: 30px;
    background: #FFF;
}
.nedd-help-form {
    margin-top: 30px;
}
.nedd-help-form input {
    width: 100%;
    padding: 10px 15px;
    /*background: var(--12, #F5F6F7);*/
    border: none;
    outline: none;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.nedd-help-form input::placeholder {
    color: #A8A9AD;
}
.couter-form-row {
    justify-content: space-between;
}
/*-----------------------[ 18.Section Blog CSS ]------------------------*/
.blog-section {
    padding: 100px 0;
}
.recent-artical {
    text-align: center;
}
.blog-home-row {
    padding-top: 60px;
}
.blog-box-home-main {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.blog-box-home-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}
.blog-box-home-main:hover::before {
    opacity: 1;
}
.blog-img {
    width: 100%;
    transition: transform 0.5s ease, filter 0.4s ease;
}
.blog-box-home-main:hover .blog-img {
    transform: scale(1.03);
    filter: brightness(0.95);
}
.date-blog-main {
    position: relative;
}
.date-blog {
    /*color: var(--8, #A8A9AD);*/
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 8px 12px;
    /*background: var(--12, #F5F6F7);*/
    transform: rotate(-90deg);
    width: fit-content;
    position: absolute;
    left: -45px;
    top: 65px;
    transition: all 0.4s ease;
}
.blog-box-home-main:hover .date-blog {
    background: #2F84FF;
    color: #FFF;
    left: -40px;
}
.blog-content-hed {
    margin: 20px 0 20px 60px;
    transition: transform 0.3s ease;
}
.blog-box-home-main:hover .blog-content-hed {
    transform: translateX(8px);
}
.blog-roofing-text {
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-box-home-main:hover .blog-roofing-text {
    color: #2F84FF;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.blog-roofing-text::before {
    content: url('../images/svg/home.svg');
    transition: transform 0.3s ease;
}
.blog-box-home-main:hover .blog-roofing-text::before {
    transform: translateX(-3px);
    filter: brightness(0) saturate(100%) invert(34%) sepia(98%) saturate(2680%) hue-rotate(338deg) brightness(96%) contrast(103%);
}
.haiRated {
    /*color: var(--13, #091217);*/
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    transition: all 0.3s ease;
}
.arrow-red-blog {
    padding-top: 20px;
    transition: transform 0.4s ease;
}
.blog-box-home-main:hover .arrow-red-blog {
    transform: translateX(10px);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation: arrowPulse 1.2s infinite alternate;
}
@keyframes arrowPulse {
    0% {
        transform: translateX(12px) scaleX(1.2);
    }
    100% {
        transform: translateX(16px) scaleX(1.3);
    }
}
/*-----------------------[ 19.Footer CSS ]------------------------*/
footer {
    background: #091217;
    padding-top: 100px;
}
.working-hours {
    /*color: var(--5, #FFF);*/
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 20px;
}
.timing-hrw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #ffffff0f;
}
.timing-hrw p {
    /*color: var(--8, #A8A9AD);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.footer-row-quick {
    justify-content: space-between;
}
.quicklinks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.quicklinks-main ul li a {
    /*color: var(--8, #A8A9AD);*/
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}
.quicklinks-main ul li a:hover {
    color: #2F84FF;
}
.footer-img-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.footer-img-group .footer-imgs {
    width: 100%;
}
.img-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: block;
}
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-instagram {
    width: 40px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.img-container:hover .img-overlay {
    opacity: 1;
}
.img-container:hover .brand-instagram {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}
.media-logo-call-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    /*background: var(--4, #222);*/
    margin-top: 60px;
    margin-bottom: 40px;
}
.media-logo-call-footer .call-detl {
    border-radius: 50px;
    /*background: var(--14, #2F84FF);*/
    padding: 10px 50px 10px 10px;
}
.media-logo-call-footer .call-detl .img-main-call {
    /*background: var(--13, #091217);*/
}
.media-logo-call-footer .call-detl a {
    color: #FFFFFF;
}
.footer-med-icons-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-med-icons {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.footer-med-icons:hover {
    background: #2F84FF;
}
.footer-med-icons img {
    width: 32px;
}
.copyrights-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
    padding: 40px 0px;
}
.copyrights-main p,
.copyrights-main a {
    color: #A8A9AD;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.copyrights-main a:hover {
    color: #2F84FF;
}
/*-----------------------[ 20.Bottom To Top Button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 30px;
    background: #2F84FF;
}
.nav-links>li>a.active {
    filter: brightness(0) saturate(100%) invert(50%) sepia(72%) saturate(7400%) hue-rotate(342deg) brightness(101%) contrast(95%);
}
.dropdown-menu li a.active {
    color: #2F84FF !important;
}
/*-----------------------[ 21.About Page CSS ]------------------------*/
.heroSection {
    /*background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/about/header-bg.jpg');*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    background: #000;
    padding: 60px 0;
}
.section-about-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.img-header-text {
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
}
.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}
.breadcrumb-group a {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
/*-----------------------[ 22.Team Page CSS ]------------------------*/
.section-team-two {
    padding: 100px 0;
}
.team-cards {
    position: relative;
    z-index: 1;
    background-color: #F5F6F7;
    overflow: hidden;
    transition: all 500ms ease;
    border-radius: 20px 20px 0 0;
}
.team-row {
    gap: 40px 0;
}
.team-images-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: url('../images/team/roofing-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 150px 0;
    border-bottom: 7px solid #2F84FF;
}
.team-images-main img {
    transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-images-main img {
    transform: scale(1.05);
}
.team-contact {
    position: relative;
    padding: 30px;
}
.team-card-title a {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    display: block;
    color: #091217;
    transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-card-title a {
    color: #2F84FF;
}
.team-card-designation {
    font-size: 16px;
    font-weight: 400;
    color: #606060;
    transition: all 0.4s ease-in-out;
}
.team-cards:hover .team-card-designation {
    color: #091217;
}
.team-card-hover {
    position: absolute;
    bottom: 37px;
    right: 30px;
}
.team-card-hover-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #2F84FF;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.team-cards:hover .team-card-hover-btn {
    transform: rotate(90deg);
}
.team-card-hover-social {
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 3;
    margin: 0;
    opacity: 0;
    padding-bottom: 10px;
    transform: scaleY(0);
    transition: all 0.3s linear;
    transform-origin: bottom center;
}
.team-card-hover-social a {
    width: 40px;
    height: 40px;
    background-color: #2F84FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 500ms ease;
}
.team-card-hover-social a:hover {
    background-color: #091217;
}
.team-card-hover-social a+a {
    margin-top: 10px;
}
.team-cards:hover .team-card-hover-social {
    opacity: 1;
    transform: scaleY(1);
}
/*-----------------------[ 23.Team Details Page CSS ]------------------------*/
.team-details-section {
    padding: 100px 0;
}
.team-details-col1 {
    padding-right: 0;
    display: flex;
    flex-direction: column;
}
.team-details-col1 .team-details-img {
    flex-grow: 1;
}
.team-details-main-col2 {
    padding-left: 0;
}
.team-details-col2 {
    background: #091217;
    padding: 50px;
    height: 100%;
}
.contact-team-main {
    padding: 30px 0;
    border-top: 1px solid #ffffff47;
    border-bottom: 1px solid #ffffff47;
    margin-top: 30px;
}
.feugiat {
    color: #A8A9AD;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 10px;
}
.contact-team-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-team-person h2 {
    max-width: 110px;
    width: 100%;
}
.contact-team-person h2,
.contact-team-person p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.contact-team-person a {
    max-width: 300px;
    width: 100%;
}
.contact-team-person p {
    /*color: var(--4, #A8A9AD);*/
    font-weight: 400;
}
.team-person-media-main {
    position: absolute;
    bottom: 20px;
    left: 30px;
}
.team-person-media-main a {
    width: 50px;
    height: 50px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.team-person-media-main a:hover {
    background: #2F84FF;
}
.team-person-media-main a:hover img {
    filter: none;
}
.team-person-media-main a img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(72%) saturate(7400%) hue-rotate(342deg) brightness(101%) contrast(95%);
}
.quam {
    color: #091217;
}
/* ------------- Progress Bar ----------- */
.single-team-page-row2 {
    padding-top: 60px;
}
.home-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-img-col img {
    width: 100%;
}
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}
.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}
.progress-title {
    /*color: var(--3, #091217);*/
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.progress-number-wrapper,
.progress-number-mark {
    color: #2F84FF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.progress-content-outter {
    height: 4px;
    border-radius: 2px;
    background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
    height: 4px;
    border-radius: 2px;
    background-color: #2F84FF;
    width: 0%;
}
/*-----------------------[ 24.Pricing Plan Page CSS ]------------------------*/
.pricing-plans-row {
    margin-top: 60px;
}
.asd {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border: 2px solid #2F84FF;
}
.featured {
    border: 2px solid #2F84FF;
    transform: scale(1.05);
}
.popular-tag {
    background: #2F84FF;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 12px;
}
.price {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
    color: #091217;
}
.price span {
    font-size: 18px;
    color: #2F84FF;
    font-weight: 500;
}
.pricing-btn {
    width: 100%;
    margin-top: 30px;
}
.features li {
    padding-bottom: 10px;
    display: flex;
    gap: 10px;
    font-size: 18px;
    line-height: 28px;
}
.features li::before {
    content: url(../images/svg/rosette-check-white.svg);
}
/*-----------------------[ 25.Our Client Page CSS ]------------------------*/
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}
.clients-main img {
    max-width: 100%;
}
/*-----------------------[ 26.Testimonial Page CSS ]------------------------*/
.testimonial-col .slider-person img {
    width: 70px;
}
.testimonial-row {
    gap: 30px 0;
}
.testimonial-col .qotestion {
    width: 70px;
}
.testimonial-col .emper {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.testimonial-col .jack-detail-main {
    margin-top: 30px;
}
.testimonial-col .fuures-slider-box {
    background: #F5F6F7;
    padding: 30px;
    margin: 0;
}
/*-----------------------[ 27.FAQ Page CSS ]------------------------*/
.testimonial-page-row {
    gap: 24px 0;
}
.pulm-multi-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulm-multi {
    max-width: 100%;
}
#accordionExample {
    margin-top: 40px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-button:focus {
    box-shadow: none;
}
#accordionExample .accordion-button {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: rgba(47, 132, 255, 0.1);
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    color: #2F84FF;
    background-color: rgba(47, 132, 255, 0.1) !important;
}
#accordionExample.accordion {
    --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
    padding: 0 15px 30px 15px;
    /*color: var(--4, #091217);*/
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.accordion-button::after {
    background-image: url('../images/svg/drop-down-arrow.svg');
    --bs-accordion-btn-icon-width: 2rem;
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(4323%) hue-rotate(216deg) brightness(97%) contrast(101%);
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/drop-down-arrow.svg');
    /*filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(340deg) brightness(98%) contrast(98%);*/
    filter: brightness(0) saturate(100%) invert(29%) sepia(93%) saturate(2216%) hue-rotate(210deg) brightness(98%) contrast(98%);
}
/*-----------------------[ 28.404 Page CSS ]------------------------*/
.furthe {
    max-width: 700px;
    margin: 20px auto;
}
.error-container {
    text-align: center;
}
.error-img {
    max-width: 100%;
}
.error-img-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
}
/*-----------------------[ 29.Services Deatils Page CSS ]------------------------*/
.services-page-row {
    gap: 30px 0;
}
.layers-img1 {
    width: 100%;
    margin: 30px 0;
}
.fusce {
    color: #091217;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.serice-process-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}
.layers-img2 {
    max-width: 100%;
    border-radius: 10px;
}
.process-box {
    padding: 20px;
    /*background: var(--12, #F5F6F7);*/
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.process-box img {
    max-width: 64px;
    width: 100%;
}
.process-box h3 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
    color: #091217;
}
.process-box p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #091217;
    padding-top: 5px;
}
.ourServicesPrcoes {
    /*color: var(--13, #091217);*/
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin: 30px 0;
}
.roofing-services-list-main {
    padding: 40px;
    background-image: url('../images/team/roofing-img.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.all-service-text {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    color: #FFF;
    text-align: center;
    padding: 30px;
    background: #091217;
}
.service-list-arow-main {
    padding: 14px 20px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.service-list-arow-main:hover {
    background: #2F84FF;
}
.service-list-arow-main.active {
    background: #2F84FF;
}
.service-list-arow-main.active img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(211deg) brightness(102%) contrast(101%);
}
.service-list-arow-main.active p {
    color: #FFF;
}
.service-list-arow-main:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(211deg) brightness(102%) contrast(101%);
}
.service-list-arow-main p {
    color: #091217;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-list-arow-main:hover p {
    color: #FFF;
}
.card-adds-main {
    margin-top: 40px;
}
.adds-img-home {
    width: 100%;
}
.roofing-person {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
}
.adds-details-main {
    background: #091217;
    padding: 30px;
    border-top: 5px solid #2F84FF;
    text-align: center;
}
.adds-details-main h3 {
    font-size: 35px;
    line-height: 45px;
    color: #FFF;
    font-weight: 700;
    text-align: center;
}
.documents-box {
    background: #F5F6F7;
    padding: 20px;
    margin-top: 40px;
}
.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF;
    margin-bottom: 20px;
}
.brochure {
    width: 60px;
    height: 60px;
    background: #2F84FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-main h3 {
    /*color: var(--3, #091217);*/
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
/*-----------------------[ 30.Project Page CSS ]------------------------*/
.project2-pRow {
    gap: 30px 0;
}
.project-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: block;
}
.hover-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    color: #2F84FF;
    padding: 20px;
    transition: bottom 0.5s ease-in-out;
    height: 100%;
    display: flex;
    align-items: flex-end;
}
.project-img-wrapper:hover .hover-overlay {
    bottom: 0;
}
.project-img {
    width: 100%;
}
.overlay-content p {
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.overlay-content h3 {
    color: #2F84FF;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}
.overlay-content .arrow-box {
    width: 50px;
    height: 50px;
    background: #2F84FF;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-content .arrow-box img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(58deg) brightness(105%) contrast(95%);
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 50px;
}
.diamond-btn {
    background: #2F84FF;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diamond-btn img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7488%) hue-rotate(58deg) brightness(105%) contrast(95%);
    width: 35px;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}
.diamond-next-btn h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.send-inquiry-form {
    padding: 30px;
    background: #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}
.project-info-text {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
    text-align: center;
}
.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0;
}
.project-info-main p:nth-child(1) {
    color: #222222;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.project-info-main p:nth-child(2) {
    color: #2F84FF;
    font-size: 20px;
}
.project-details-icon {
    margin-top: 30px;
    justify-content: center;
}
.project-details-icon .footer-med-icons {
    background: #2F84FF;
    width: 50px;
    height: 50px;
}
.project-details-icon .footer-med-icons img {
    width: 30px;
}
.no-side-bar-row-project {
    justify-content: center;
}
/*-----------------------[ 31.Blog Page CSS ]------------------------*/
.blog-page1-row {
    gap: 30px 0
}
.blog-standard-main {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F6F7;
}
.blog-standard-main .blog-content-hed {
    margin: 20px 20px 20px 20px;
    width: 100%;
}
.blog-standard-main .date-blog {
    transform: rotate(0);
    position: absolute;
    left: 15px;
    top: 15px;
    background: #2F84FF;
    color: #FFF;
}
.blog-standard-main .date-blog-main {
    position: unset;
}
.blog-standard-main.blog-box-home-main:hover .date-blog {
    background: #2F84FF;
    color: #FFF;
    left: 15px;
}
.search-box-main {
    padding: 20px;
    background: #F5F6F7;
}
.search-input input {
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    padding: 18px 15px;
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.search-input {
    position: relative;
}
.search-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
#recent-post-box {
    margin-bottom: 20px;
    margin-top: 40px;
}
.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.recent-post-text-main p {
    /*color: var(--4, #222);*/
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.recent-post-text-main h2 {
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}
.recent-post-main .recent-post-text-main h2:hover {
    color: #2F84FF;
}
/*-----------------------[ 32.Blog details Page CSS ]------------------------*/
.single-blog-img1 {
    width: 100%;
}
.tag-date {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 20px;
}
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-date-sub p {
    color: #091217;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.psum {
    margin-top: 20px;
}
.qoute-box {
    padding: 40px;
    background: rgba(168, 169, 173, 0.15);
    margin: 35px 0;
    position: relative;
}
.qoute-box h2 {
    /*color: var(--3, #000);*/
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic;
}
.line_client {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.line {
    border-top: 2px solid #FF2424;
    width: 60px;
}
.jordon {
    color: #091217;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px;
}
.interdum {
    color: #091217;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.blog-slider-grid {
    margin-top: 30px;
}
.blog-slider-grid img {
    max-width: 100%;
    padding: 0 12px;
}
.req-form-main {
    margin-top: 30px;
}
.input-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.input-main input {
    background: rgba(168, 169, 173, 0.1);
    border: none;
    height: 60px;
    outline: none;
    padding: 12px;
    color: #091217;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}
.singl-blog3-col {
    justify-content: center;
}
/*-----------------------[ 33.Contact Page CSS ]------------------------*/
.contact-box-main {
    border: 2px solid #F5F6F7;
    padding: 30px;
    text-align: center;
    overflow: hidden;
}
.contact-email-text {
    color: #091217;
    margin-top: 15px;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.contact-email-text-email,
.contact-email-text-email p {
    color: #2F84FF;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.contact-email-text-email p:hover {
    color: #091217;
}
.dots-asd {
    z-index: -1;
}
.contact-box-page {
    width: 60px;
    height: 60px;
    background: #2F84FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.contact-box-page img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(97%) contrast(112%);
    width: 30px;
}
.contact-box-row {
    margin-bottom: 100px;
}
#contact-page-form input {
    margin-bottom: 20px;
}
#contact-page-form {
    padding: 50px;
    position: relative;
}
textarea {
    width: 100%;
    height: 120px;
    padding: 15px 20px;
    /*color: var(--4, #222);*/
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    border: none;
    outline: none;
    margin-bottom: 30px;
    resize: none;
}
.send-message-text {
    padding-bottom: 20px;
    font-size: 40px;
    padding-top: 0;
}
.map-iframe {
    width: 100%;
    height: 100%;
}

.text-justify{
    text-align: justify;
}

.send_msg_btn{
    padding: 15px;
}


.custom-bg{
    background: #fbfbfb;
}