/*------------------------------------------------------------------
Project: Plumbing
Author: The_Krishna
Last change: 16/01/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Site Image Animtion CSS
4.Whole Page scroll Aniamtion CSS
5.Header CSS
6.Section One CSS
7.Section Two CSS
8.Section Three CSS
9.Section Four CSS
10.Section Five CSS
11.Section Six CSS
12.Section Seven CSS
13.Section Eight CSS
14.Section Nine CSS
15.Section Ten CSS
16.Footer Section CSS 
17.Bottom top button CSS
18.About Page CSS
19.Team Page CSS
20.Pricing Page CSS
21.Get Quote Page CSS
22.Client Page CSS
23.FAQ Page CSS
24.Error Page CSS
25.Coming Soon Page CSS
26.Services Page CSS
27.Project Page 2 CSS
28.Project Page 3 CSS
29.Single Project Page CSS
30.Blog Page CSS
31.Single Blog Page CSS
32.Contact Page CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", 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: #5c707c;
    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: #FFFFFF;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.page-loader .water-drop {
    height: 80px;
    width: 80px;
    border: 7px solid #535152;
    transform: rotate(45deg);
    border-radius: 0 50% 50% 50%;
    position: relative;
    animation: move 0.5s linear infinite alternate-reverse;
}
.page-loader .water-drop::before {
    content: "";
    position: absolute;
    height: 55%;
    width: 55%;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #535152;
    border-bottom-color: #535152;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes move {
    to {
        transform: translateY(15px) rotate(45deg);
    }
}
.page-loader p {
    font-size: 40px;
    font-weight: 700;
    color: #5c707c;
    font-family: "Outfit", serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-top: 20px;
}
/*-----------------------[ 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);
}
/*-----------------------[ 5.Header CSS ]------------------------*/
.small-header {
    background: #F5F6F7;
}
.small-header-sub-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-header-sub p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
}
.small-header-sub p:hover {
    color: #5c707c;
}
.small-header-sub p img {
    padding-left: 5px;
}
.small-header-sub {
    display: flex;
    align-items: center;
    gap: 60px;
}
.small-header-media-main {
    display: flex;
    align-items: center;
    gap: 15px;
}
header {
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 500;
    width: 100%;
    position: sticky;
    top: -50px;
}
.header-sub {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.book-appointbtn {
    color: var(--5, #FFF);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 20px;
    background: #535152;
    transition: all 0.3s ease-in-out;
}
.book-appointbtn:hover {
    background: #5c707c;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}
.media-contact-header {
    display: flex;
    align-items: center;
    gap: 48px;
}
.office-add {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.header-contact a,
.header-contact .enva {
    color: #535152;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.header-contact a p:hover {
    color: #5c707c;
}
.media-icon-bg {
    width: 36px;
    height: 36px;
    background-color: rgba(168, 169, 173, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.media-icon-bg:hover {
    background: #5c707c;
    border-radius: 30px 0 30px 30px;
}
.media-icon-bg:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(95deg) brightness(105%) contrast(101%);
}
.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #5c707c;
    padding: 6px 6px 6px 30px;
    border-radius: 30px 0px 30px 30px;
}
.headphone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-info {
    color: var(--5, #FFF);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.call-info a {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}
.contact-num-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #535152;
    border-radius: 30px 0 0 30px;
}
.header-menu-main .list-arrow-main {
    display: flex;
    align-items: stretch;
}
.header-menu-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -30px;
}
.header-menu-main {
    position: relative;
}
.header-menu-main::before {
    content: '';
    width: 50%;
    height: 62px;
    background: #535152;
    position: absolute;
    right: 0;
}
.main {
    -webkit-transition: all .5s ease-in-out;
    -webkit-transform-origin: 50% 0%;
    -webkit-transform: perspective(350px) rotateX(-90deg);
    position: absolute;
    top: 100%;
    right: 0;
    background: #535152;
    width: 220px;
    border-top: 3px solid #FFFFFF;
}
.main li a {
    width: 100%;
    -webkit-transition: all .5s ease-in-out;
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    padding: 10px 20px;
}
.main li a:hover {
    background: #5c707c;
}
.hov {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #FFF;
    padding: 18px 20px;
    cursor: pointer;
}
.hov:hover {
    background: #5c707c;
    color: #FFF;
}
.hov.active {
    background: #5c707c;
}
a.submenu-link.active {
    background: #5c707c;
}
.hov:hover .main {
    transform-origin: top;
    transform: perspective(350px) rotateX(0deg);
    transition: transform 0.6s ease-in-out;
}
.contact-menu a {
    color: #FFF;
}
.contact-menu-active {
    background: #5c707c;
}
.search-pop-serch-bar {
    position: relative;
}
.search-icon-circle {
    width: 48px;
    height: 48px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 6px 200px 6px 6px;
}
.search-pop-up {
    position: absolute;
    left: 0;
    background: #5c707c;
    padding: 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.search-pop-up.open {
    opacity: 1;
    transform: translateY(0);
}
.search-pop-up img {
    position: absolute;
    left: 35px;
    cursor: pointer;
}
.search-pop-up input {
    width: 250px;
    outline: none;
    border: none;
    background: #F5F6F7;
    padding: 10px 15px;
    color: #000;
    font-size: 18px;
    line-height: 24px;
}
.humburger,
.side-menu-logo,
.side-menu-media,
.search-bar-menu {
    display: none;
}
/*-----------------------[ 6.Section One CSS ]------------------------*/
.info {
    position: absolute;
    width: 100%;
    max-width: 1320px;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 1000;
    margin: 0 auto;
}
.slider-text {
    position: absolute;
    top: 50%;
    z-index: 10;
}

.text-slide {
    display: none;
    position: relative;
}
.text-slide.active {
    display: block;
}
.background-img-slider-SecOne {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 760px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slick-slide {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-main,
.slick-list,
.slick-track {
    height: 100%;
}
.slider-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 790px;
}
.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: 30px;
    right: 300px;
}
.NextArrow:before {
    content: url('../images/svg/right-arrow.svg');
    width: 36px;
    height: 36px;
}
.PrevArrow {
    position: absolute;
    bottom: 30px;
    right: 383px;
}
.PrevArrow:before {
    content: url('../images/svg/left-arrow.svg');
    width: 36px;
    height: 36px;
}
.quality {
    color: var(--3, #000);
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    max-width: 630px;
}
.residents {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 630px;
    padding-top: 20px;
}
.button-main {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 18px 30px;
    background: #5c707c;
    border-radius: 30px;
    display: inline-block;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
}
.button-main:hover {
    background: #535152;
    border-radius: 30px 0 30px 30px;
}
.provide {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--10, #5c707c);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.text-circle-main {
    width: 190px;
    height: 190px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.text-circle-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px dashed #F5F6F7;
    border-radius: 50%;
}
.text-circle-sub .circular-text {
    animation: rotate-animation 30s infinite linear;
}
@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.pip-circle {
    width: 90px;
    height: 90px;
    background: #F5F6F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
    padding: 100px 0;
}
.main-text-sec {
    color: var(--3, #000);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
}
.sec-two-row {
    margin: 40px 0 60px 0;
}
.pip-sec2 {
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.sec-two-img-group {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.yer-of-exp {
    color: var(--3, #000);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.yer-of-exp span {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    max-width: 90px;
}
.sec-two-img2 {
    max-width: 100%;
}
.sec-two-img3 {
    margin-top: 30px;
    max-width: 100%;
}
.sub-text-sec {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.sec-two-blue-check-box {
    margin: 30px 0;
    padding: 20px;
    background: #535152;
}
.blue-box-ul li {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 20px;
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.blue-box-ul li::before {
    content: url('../images/svg/check-svg.svg');
}
.sec-two-img4 {
    border-radius: 50%;
}
.jackson-deatils {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.jackson-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 70px;
    border-left: 2px solid rgba(168, 169, 173, 0.15);
}
.jackson {
    color: var(--11, #535152);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 10px;
}
.ceo-tel-box {
    padding-right: 30px;
}
.ceo-home-rakshak {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.jack-tel {
    color: #5c707c;
    padding-top: 10px;
    display: block;
}
.vision-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.vision {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 10px;
}
.vision-passage {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
    padding: 100px 0 170px 0;
    background: #F5F6F7;
}
.reasons {
    max-width: 630px;
}
.dui {
    max-width: 520px;
}
.sec-head-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.choose-us-row {
    gap: 24px 0;
    margin-top: -120px;
}
.why-choose-box {
    padding: 30px;
    background: var(--11, #535152);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.why-choose-box:hover {
    border-radius: 30px 0 30px 30px;
}
.why-choose-box:hover .rusted {
    color: #FFF;
}
.satisfa {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding: 20px 0 10px 0;
}
.rusted {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
}
.call-svg-main {
    width: 48px;
    height: 48px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5c707c;
}
.choose-call-box {
    display: flex;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}
.choose-call-box a {
    color: var(--10, #5c707c);
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 20px;
    background: #FFF;
    width: 100%;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.section-four {
    padding: 100px 0;
}
.our-services-sec {
    justify-content: center;
}
.services-plum {
    max-width: 815px;
    margin: 0 auto;
    text-align: center;
}
.services-box-col {
    position: relative;
}
.services-hov-box {
    background: #FFFFFF;
    padding: 20px;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.5s ease;
    z-index: 1;
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.services-box-col:hover .services-hov-box {
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.80) 100%);
    backdrop-filter: blur(5px);
    height: calc(100% - 30px);
}
.plumbing-repair {
    color: var(--11, #535152);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 10px;
}
.Porttitor {
    color: var(--4, #222);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.section-four-row {
    margin-top: 60px;
    margin-bottom: 70px;
}
.service-box-img {
    max-width: 100%;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    background-image: linear-gradient(rgba(162, 167, 171, 0.4) 0%, rgba(162, 167, 171, 0.4) 100%),
        url('../images/contact-page/fixing-kitchen-sink.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
.free-contact {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(242deg) brightness(102%) contrast(103%);
}
.freeplum {
    color: #FFF;
}
.sec-head-text-btns-group {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contact-us-btn {
    background: transparent;
    border: 2px solid #FFFF;
    margin: 0;
}
.contact-us-btn:hover {
    background: #5c707c;
    border: 2px solid transparent;
}
.get-quote-frr-btn {
    border: 2px solid transparent;
    margin: 0;
}
.get-quote-frr-btn:hover {
    background: transparent;
    border: 2px solid #FFFF;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.sec-six-pip-img {
    position: absolute;
    top: 0;
    right: 0;
}
.project-sec-row {
    margin-top: 60px;
}
.proejct-sec-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.project-imgs {
    max-width: 100%;
}
.overly-img-container {
    position: relative;
    overflow: hidden;
}
.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}
.project-text-name {
    padding: 20px;
    background: #FFFFFF;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    z-index: 2;
    color: var(--11, #535152);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    width: calc(100% - 40px);
    animation: fadeDown 0.5s ease forwards;
}
.overly-img-container:hover .overlay::before {
    opacity: 1;
}
.overly-img-container:hover .project-text-name {
    opacity: 1;
    animation: fadeUp 0.5s ease forwards;
}
@keyframes fadeUp {
    from {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
@keyframes fadeDown {
    from {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}
/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.sec-seven-row {
    margin-top: 60px;
}
.process-cir-main {
    width: 160px;
    height: 160px;
    background: #F5F6F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}
.process-cir-main:hover {
    background: #535152;
    border-radius: 100px 0 100px 100px;
}
.process-cir-main:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(95deg) brightness(105%) contrast(101%);
}
.process-text {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
}
.process-text-sub {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.form-col {
    background: #000;
    padding: 100px 110px;
}
.row.form-row {
    margin-bottom: -200px;
    margin-top: 100px;
    position: relative;
}
.orm-pipes-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.leo {
    color: #A8A9AD;
    padding-top: 20px;
}
.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: 48px;
    outline: none;
    padding: 12px;
    color: #A8A9AD;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}
.input-main input::placeholder {
    color: #A8A9AD;
}
.wrapper {
    width: 100%;
    cursor: pointer;
}
.formDropDown {
    position: relative;
    padding: 12px;
    background: rgba(168, 169, 173, 0.1);
    color: #A8A9AD;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.formDropDown-ul-list {
    display: none;
    margin-top: -1px;
    background: #FFF;
    padding-left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    z-index: 5;
    border: 1px solid #222;
}
.formDropDown-ul-list {
    display: none;
}
.formDropDown-ul-list li {
    border-bottom: 1px solid #FFF;
    padding: 10px 12px;
}
.formDropDown-ul-list a {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.form-row::before {
    content: url('../images/gat-qote-page/pipe-left.png');
    position: absolute;
    left: -172px;
    top: 4px;
}
.form-row::after {
    content: url('../images/gat-qote-page/pipe-right.png');
    position: absolute;
    right: -172px;
    top: 4px;
}
/*-----------------------[ 13.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 300px 0 100px 0;
    background: var(--12, #F5F6F7);
}
.testimonial-box {
    background: #FFF;
    padding: 30px;
    border: 2px solid rgba(168, 169, 173, 0.30);
    margin: 0 12px;
    margin-top: 60px;
    overflow: hidden;
}
.eget {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
}
.testimonial-eply-det {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid rgba(168, 169, 173, 0.3);
    width: 100%;
}
.eply-name {
    color: var(--11, #535152);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.eply-date {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.testimonilas-main .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.testimonilas-main li button {
    font-size: 0px;
    color: #A8A9AD;
    width: 10px;
    height: 10px;
    background: #A8A9AD;
    margin: 5px;
    border-radius: 50%;
}
.testimonilas-main .slick-active button {
    background: #5c707c !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px;
}
/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.section-nine {
    background: #FFF;
    padding: 100px 0;
}
.tellus {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}
.team-sec-row {
    margin-top: 60px;
}
.team-mem-datails {
    position: absolute;
    bottom: -2px;
    padding: 20px;
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.80) 100%);
    backdrop-filter: blur(5px);
    clip-path: polygon(100% 0, 15% 0, 0% 99%, 100% 100%);
    width: 100%;
    max-width: 330px;
}
.team-mem-datails h3 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 5px;
}
.team-mem-datails p {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}
.team-img-mem {
    width: 100%;
}
.team-box .team-img-mem {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.team-box:hover .team-img-mem {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
}
.share-btn-main {
    z-index: 20;
    position: absolute;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
}
.team-box .share {
    height: 48px;
    width: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5c707c;
}
.team-box:hover .submenu li:nth-child(1) {
    opacity: 1;
    top: -50px;
    transform: rotate(0deg);
    transition-delay: 0.08s;
}
.team-box .submenu li:nth-child(1) {
    transform: rotateX(45deg);
}
.team-box:hover .submenu li:nth-child(2) {
    opacity: 1;
    top: -100px;
    transform: rotate(0deg);
    transition-delay: 0.16s;
}
.team-box .submenu li:nth-child(2) {
    transform: rotateX(90deg);
}
.team-box:hover .submenu li:nth-child(3) {
    opacity: 1;
    top: -150px;
    transform: rotate(0deg);
    transition-delay: 0.24s;
}
.team-box .submenu li:nth-child(3) {
    transform: rotateX(135deg);
}
.team-box:hover .submenu li:nth-child(4) {
    opacity: 1;
    top: -200px;
    transform: rotate(0deg);
    transition-delay: 0.32s;
}
.team-box .submenu li:nth-child(4) {
    transform: rotateX(180deg);
}
.team-box .submenu li {
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    height: 48px;
    width: 48px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submenu li:hover {
    background: #5c707c;
}
.submenu li:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(95deg) brightness(105%) contrast(101%);
}
/*-----------------------[ 15.Section Ten CSS ]------------------------*/
.section-ten {
    padding-bottom: 170px;
}
.blog-sec-row {
    margin-top: 60px;
}
.blog-image-container {
    position: relative;
    overflow: hidden;
}
.blog-img {
    width: 100%;
}
.overlay-blog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 100%);
    transition: all 2s ease-in-out;
}
.blog-image-container:hover .overlay-blog {
    background: linear-gradient(180deg, rgba(255, 36, 36, 0.00) 0%, rgba(255, 36, 36, 0.90) 100%);
}
.text-overly-box {
    position: absolute;
    bottom: 0;
    padding: 30px;
    width: 100%;
}
.overlay-text {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 15px;
}
.hr-line {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    mix-blend-mode: soft-light;
}
.plum-text-blog {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}
/*-----------------------[ 16.Footer Section CSS ]------------------------*/
footer {
    background: #000000;
    padding: 100px 0 60px 0;
}
.logo-sec-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--12, #F5F6F7);
    margin-top: -170px;
}
.footer-logo-main {
    background: #535152;
    padding: 30px;
}
.morbi {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.useful-link-text {
    color: #5c707c;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 40px;
    margin-bottom: 10px;
}
.usefulLinks-List {
    padding-left: 0;
}
.usefulLinks-List li {
    padding: 10px 0;
}
.usefulLinks-List li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #FFF;
    transition: all 0.3s ease-in-out;
}
.usefulLinks-List li a:hover {
    color: #5c707c;
}
.footer-icons-main {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
}
.footer-icons-main:hover {
    background: #5c707c;
    border-radius: 50px 0 50px 50px;
}
.footer-icons-main img {
    width: 32px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(62deg) brightness(107%) contrast(100%);
}
.footer-media-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}
.copyright-main {
    padding: 15px 0;
    background: var(--4, #222);
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
/*-----------------------[ 17.Bottom top button CSS ]------------------------*/
.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 200;
    background: transparent;
    cursor: pointer;
}
.bottom-top-button .water-drop {
    width: 60px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(95%) saturate(7495%) hue-rotate(243deg) brightness(87%) contrast(103%);
    position: relative;
}
.arrow-drop {
    position: absolute;
    top: 34px;
    right: 12px;
    width: 35px;
}
/*-----------------------[ 18.About Page CSS ]------------------------*/
#about-bg {
    background-image: linear-gradient(to left, rgba(234, 233, 229, 1) 40.86%, rgba(234, 233, 229, 0) 50%), url(../images/about-page/page-header-img.jpg);
}
.page-img-header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}
.img-header-text {
    color: #000;
    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: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
#about-section-five {
    margin-top: 100px;
}
#about-section-seven {
    padding: 100px 0;
}
#about-testimonial {
    padding-top: 100px;
}
#about-section-nine {
    padding-top: 100px;
}
/*-----------------------[ 19.Team Page CSS ]------------------------*/
.team-page-row {
    gap: 24px 0;
}
.Singale-team-img {
    max-width: 100%;
}
.feugiat {
    padding-top: 20px;
}
.contact-team-main {
    padding: 30px 0 40px;
}
.contact-team-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-team-person a {
    max-width: 300px;
    width: 100%;
}
.contact-team-person h2 {
    max-width: 110px;
    width: 100%;
}
.contact-team-person h2,
.contact-team-person p {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.contact-team-person p {
    color: var(--4, #222);
    font-weight: 400;
}
.highQulity {
    color: var(--3, #000);
    font-size: 35px;
    font-weight: 600;
    line-height: 36px;
}
.single-team-page-row2 {
    margin-top: 70px;
}
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}
.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}
.progress-title {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}
.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-number-wrapper,
.progress-number-mark {
    color: #5c707c;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.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: #5c707c;
    width: 0%;
}
.experti-list {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}
.experti-list-ul li {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}
.experti-list-ul li::before {
    content: url('../images/svg/rosette-check.svg');
    position: relative;
    top: 4px;
}
/*-----------------------[ 20.Pricing Page CSS ]------------------------*/
.tabs-btn {
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.tabs-btn a {
    display: inline-block;
    background-color: #535152;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 132px;
    width: 100%;
    padding: 18px 0;
    text-align: center;
}
.monthly {
    border-radius: 0 30px 30px 0;
}
.yearly {
    border-radius: 30px 0 0 30px;
}
.tabContainer {
    width: 100%;
    position: relative;
}
.Tabcondent {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(20px);
}
.tabs-btn a.active {
    background-color: #5c707c;
    color: #FFFFFF;
}
.Tabcondent.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}
.plan-header {
    background: #FFF;
    padding: 30px 30px 40px;
    border-top: 2px solid rgba(168, 169, 173, 0.30);
    border-left: 2px solid rgba(168, 169, 173, 0.30);
    border-right: 2px solid rgba(168, 169, 173, 0.30);
}
.plan-body {
    background: #535152;
    padding: 30px;
    position: relative;
}
.plan-text {
    color: #5c707c;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.plan-price {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}
.plan-price sub {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}
.plan-body ul li {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    display: flex;
    gap: 10px;
}
.plan-body ul li:before {
    content: url('../images/svg/rosette-check-white.svg');
    position: relative;
    top: 7px;
}
.shape1 {
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    filter: brightness(0) saturate(100%) invert(13%) sepia(97%) saturate(5078%) hue-rotate(240deg) brightness(85%) contrast(110%);
}
.pricing-btn {
    margin-top: 20px;
}
.get-started-btn {
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}
.get-started-btn:hover {
    border: 2px solid #FFFF;
}
/*-----------------------[ 21.Get Quote Page CSS ]------------------------*/
#get-quote-blog {
    padding-top: 100px;
}
#get-qoute-working-process {
    padding-top: 100px;
}
/*-----------------------[ 22.Client Page CSS ]------------------------*/
.clients-main img {
    max-width: 100%;
}
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}
/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.testimonial-page-row {
    gap: 24px 0;
}
.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(168, 169, 173, 0.1);
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    color: #5c707c;
    background-color: rgba(255, 36, 36, 0.1) !important;
}
#accordionExample.accordion {
    --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
    padding: 0 0 30px 0;
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.accordion-button::after {
    background-image: url('../images/svg/down-arrow-black.svg');
    --bs-accordion-btn-icon-width: 2rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/down-arrow-red.svg');
}
.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}
/*-----------------------[ 24.Error Page CSS ]------------------------*/
.error-pge-img-main {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.error-pge-img {
    max-width: 100%;
    animation-name: hanging;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    transform-origin: center top;
    margin-top: -33px;
}
@keyframes hanging {
    0% {
        transform: rotate(7deg);
    }
    100% {
        transform: rotate(-7deg);
    }
}
/*-----------------------[ 25.Coming Soon Page CSS ]------------------------*/
.coming-soon-body {
    width: 100%;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 0px;
    right: 0px;
}
#coming-soon-header {
    position: fixed;
    top: 0;
    background: transparent;
    border-bottom: none;
}
#coming-soon-header .media-icon-bg {
    background-color: #FFFFFF;
}
#coming-soon-header .media-icon-bg:hover {
    background-color: #5c707c;
}
.coming-soon {
    width: 100%;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 0px;
    right: 0px;
}
.coming-soon-sec {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/coming-soon/coming-soon-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
#coming-soon-header {
    background: transparent;
    border-bottom: none;
    position: fixed;
    width: 100%;
    top: 10px;
}
.coming-soon-img1 {
    max-width: 100%;
    -webkit-box-reflect: below -75px linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.count-down {
    display: flex;
    gap: 55px;
    padding: 10px 0;
}
.count-down .box {
    padding: 5px;
    text-align: center;
}
.count-down .box h3 {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
}
.count-down .box span {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.coming-soon-box {
    padding: 10px 20px;
    color: var(--5, #FFF);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    background: var(--6, #3447E9);
    max-width: 243px;
    margin: 40px 0;
}
.our-website {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 50px;
}
.notified {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.coming-soon-subscribe {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-top: 20px;
}
.coming-soon-subscribe input {
    width: 100%;
    max-width: 330px;
    height: 54px;
    border: none;
    background: #FFF;
    font-size: 18px;
    color: #222222;
    padding: 10px 20px;
    outline: none;
}
.coming-soon-subscribe a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #5c707c;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}
.coming-soon-subscribe a:hover {
    background: #535152;
}
.coming-soon-subscribe-btn {
    position: absolute;
    left: 0;
    top: 0;
}
.count-down-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#rights-reserved h2,
#rights-reserved a {
    color: #FFFF;
}
#rights-reserved {
    position: absolute;
    bottom: 30px;
}
/*-----------------------[ 26.Services Page CSS ]------------------------*/
.services-page-row {
    gap: 100px 0;
}
.handyman-text {
    color: var(--3, #000);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    padding-top: 20px;
}
.fusce {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
}
.plumbing-services-img2 {
    margin: 40px 0;
    max-width: 100%;
}
.interdum {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.single-services-list-fetur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0 30px;
}
.plumbing-grid img {
    max-width: 100%;
    padding: 0 12px;
}
.plumbing-grid .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.plumbing-grid li button {
    font-size: 0px;
    color: #A8A9AD;
    width: 10px;
    height: 10px;
    background: #A8A9AD;
    margin: 5px;
    border-radius: 50%;
}
.plumbing-grid .slick-active button {
    background: #5c707c !important;
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px;
}
.single-services-black-box {
    background: #5c707c;
    padding: 30px;
}
.single-services-black-box h3 {
    color: var(--5, #FFF);
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}
.single-services-sub-box {
    background-image: linear-gradient(rgba(162, 167, 171, 0.4) 0%, rgba(162, 167, 171, 0.4) 100%), url(../images/services-page/other-services-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.single-services-sub-box ul {
    padding: 30px;
}
.single-services-sub-box ul li {
    padding: 15px 0;
    border-bottom: 2px solid #f8f9fa3b;
}
.single-services-sub-box ul li a {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-services-sub-box ul li a img {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}
.single-services-sub-box ul li a:hover {
    color: #5c707c;
}
.current-page-active {
    color: #5c707c !important;
}
.side-bar-img {
    width: 100%;
}
.ad-box {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.ad-box::before {
    content: '';
    width: 114%;
    height: 50px;
    background: #5c707c;
    position: absolute;
    top: 47%;
    right: -32px;
    transform: rotate(156deg);
}
.ad-details {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url('..//images/services-page/mic.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
    margin-top: -175px;
    text-align: center;
}
.logo-ad-details {
    position: absolute;
    top: 10px;
    right: 10px;
}
.frist-services {
    color: var(--5, #FFF);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    padding: 115px 0 30px;
}
.documents-box {
    background: rgba(168, 169, 173, 0.1);
    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: #5c707c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-main h3 {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.brochure-main h3:hover {
    color: #5c707c;
}
/*-----------------------[ 27.Project Page 2 CSS ]------------------------*/
.project2-box-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.project2-box-main:hover .project2-page-content {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    transform: perspective(600px) rotateY(0deg);
}
.project2-page-img-main {
    position: relative;
}
.project2-page-img-main a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.project2-page-img-main img {
    width: 100%;
    object-fit: cover;
}
.project2-page-content {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
    z-index: 1;
    padding: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-radius: 10px;
    overflow: hidden;
    transform: perspective(600px) rotateY(20deg);
}
.project2-page-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(18, 40, 225, 0.9);
    opacity: 0.9;
    z-index: -1;
}
.project2-page-title,
.project2-page-title a {
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}
.project2-page-info .tag {
    font-size: 18px;
    color: #FFFFFF;
}
.project2-page-btn {
    text-align: right;
}
.circle-btn {
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #5c707c;
}
.project-page-row {
    gap: 24px 0;
}
/*-----------------------[ 28.Project Page 3 CSS ]------------------------*/
.project3-box-main {
    padding: 30px;
    background-color: rgba(128, 128, 128, 0.06);
    transition: all 0.3s ease-in-out;
}
.project3-box-main:hover {
    border-radius: 30px;
}
.project3-box-img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}
.project3-box-main:hover .project3-box-img {
    border-radius: 30px;
}
.project3-text {
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    color: #535152;
    padding-top: 20px;
}
.project3-box-main:hover .project3-text {
    color: #5c707c;
}
.project3-text-sub {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000000;
}
/*-----------------------[ 29.Single Project Page CSS ]------------------------*/
.build {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    padding-bottom: 20px;
}
.nunc-text {
    color: #222222;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.single-project-img {
    margin: 30px 0 20px;
    max-width: 100%;
}
.sed {
    color: #000000;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    padding-bottom: 15px;
}
.liquam-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.liquam-grid-main img {
    width: 100%;
}
.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-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;
}
.diamond-next-btn h3:hover {
    color: #535152;
}
.diamond-btn {
    background: #5c707c;
}
.diamond-btn img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.diamond-next-btn:hover .diamond-btn {
    background: #535152;
}
.send-inquiry-form {
    padding: 30px;
    background: rgba(168, 169, 173, 0.1);
}
.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: #5c707c;
    font-size: 20px;
}
.single-project-media {
    margin-top: 30px;
    justify-content: center;
}
.send-inquiry-form {
    position: sticky;
    top: 180px;
}
.single-project-img video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
/*-----------------------[ 30.Blog Page CSS ]------------------------*/
.blog-page1-row {
    gap: 24px 0;
}
.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, 0.1);
}
.search-input {
    position: relative;
}
.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-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
#recent-post-box {
    margin-bottom: 20px;
    margin-top: 40px;
    background: #000000;
}
.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-text-main h2:hover {
    color: #5c707c;
}
/*-----------------------[ 31.Single Blog Page CSS ]------------------------*/
.single-blog-img1 {
    width: 100%;
}
.tag-date {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 20px;
    border-bottom: 2px solid #000;
}
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-date-sub p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.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 #5c707c;
    width: 60px;
}
.jordon {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    padding-right: 10px;
}
#single-blog-slider {
    margin-top: 30px;
}
.interdum {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.leave-replyfrom input {
    height: 60px;
    padding: 10px 15px;
    color: #000;
}
.input-main-blog input::placeholder {
    color: #000;
}
.single-blog3-row {
    justify-content: center;
}
/*-----------------------[ 32.Contact Page CSS ]------------------------*/
.map-iframe {
    width: 100%;
    height: 100%;
}
#contact-page-form {
    padding: 30px;
}
.search-input {
    position: relative;
}
#contact-page-form input {
    margin-bottom: 20px;
}
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;
}
/* HOTLINE */
.phonering-alo-phone {position:fixed;visibility:hidden;background-color:transparent;width:200px;height:200px;
 cursor:pointer;z-index:200000!important;left:0;bottom:0px;left:-0px;display:block;
 -webkit-backface-visibility:hidden;
 -webkit-transform:translateZ(0);
 transition:visibility .5s;
}
.phonering-alo-phone.phonering-alo-show {visibility:visible}
.phonering-alo-phone.phonering-alo-static {opacity:.6}
.phonering-alo-phone.phonering-alo-hover,.phonering-alo-phone:hover {opacity:1}
.phonering-alo-ph-circle {width:160px;height:160px;top:20px;left:20px;position:absolute;
 background-color:transparent;border-radius:100%;border:2px solid rgba(30,30,30,0.4);
 opacity:.1;
 -webkit-animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
 animation:phonering-alo-circle-anim 1.2s infinite ease-in-out;
 transition:all .5s;
 -webkit-transform-origin:50% 50%;
 -ms-transform-origin:50% 50%;
 transform-origin:50% 50%
}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle {
    -webkit-animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important;
    animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important
}
.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle {
    -webkit-animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important;
    animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important
}
.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone:hover .phonering-alo-ph-circle {
    border-color:#535152;
    opacity:.5
}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle {
    border-color:#0ee340;
    opacity:.5
}
.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle {
    border-color:#535152;
    opacity:.5
}
.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle {
    border-color:#ccc;
    opacity:.5
}
.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle {
    border-color:#75eb50;
    opacity:.5
}
.phonering-alo-ph-circle-fill {width:100px;height:100px;top:50px;left:50px;position:absolute;background-color:#000;
 border-radius:100%;border:2px solid transparent;
 -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
 animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
 transition:all .5s;
 -webkit-transform-origin:50% 50%;
 -ms-transform-origin:50% 50%;
 transform-origin:50% 50%
}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle-fill {
    -webkit-animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important;
    animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important
}
.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle-fill {
    -webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;
    animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;
    opacity:0!important
}
.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone:hover .phonering-alo-ph-circle-fill {
    background-color:rgba(39,45,107,0.5);
    opacity:.75!important
}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle-fill {
    background-color:rgba(39,45,107,0.5);
    opacity:.75!important
}
.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle-fill {
    background-color:rgba(0,175,242,0.5);
}
.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle-fill {
    background-color:rgba(204,204,204,0.5);
    opacity:.75!important
}
.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle-fill {
    background-color:rgba(117,235,80,0.5);
    opacity:.75!important
}
.phonering-alo-ph-img-circle {
    width:60px;
    height:60px;
    top:70px;
    left:70px;
    position:absolute;
    background:rgba(30,30,30,0.1) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAB/ElEQVR42uya7W3CMBCG31QM4A1aNggTlG6QbpBMkHYC1AloJ4BOABuEDcgGtBOETnD9c1ERCH/lwxeaV8oPFGP86Hy+DxMREW5Bd7gRjSDSNGn4/RiAOvm8C0ZCRD5PSkQVXSr1nK/xE3mcWimA1ZV3JYBZCIO4giQANoYxMwYS6+xKY4lT5dJPreWZY+uspqSCKPYN27GJVBDXheVSQe494ksiEWTuMXcu1dld9SARxDX1OAJ4lgjy4zDnFsC076A4adEiRwAZg4hOUSpNoCsBPDGM+HqkNGynYBCuILuWj+dgWysGsNe8nwL4GsrW0m2fxZBq9rW0rNcX5MOQ9eZD8JFahcG5g/iKT671alGAYQggpYWvpEPYWrU/HDTOfeRIX0q2SL3QN4tGhZJukVobQyXYWw7WtLDKDIuM+ZSzscyCE9PCy5IttCvnZNaeiGLNHKuz8ZVh/MXTVu/1xQKmIqLEAuJ0fNo3iG5B51oSkeKnsBi/4bG9gYB/lCytU5G9DryFW+3Gm+JLwU7ehbJrwTjq4DJU8bHcVbEV9dXXqqP6uqO5e2/QZRYJpqu2IUAA4B3tXvx8hgKp05QZW6dJqrLTNkB6vrRURLRwPHqtYgkC3cLWQAcDQGGKH13FER/NATzi786+BPDNjm1dMkfjn2pGkBHkf4D8DgBJDuDHx9BN+gAAAABJRU5ErkJggg==) no-repeat center center;
    border-radius:100%;
    border:2px solid transparent;
    -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin:50% 50%;
    -ms-transform-origin:50% 50%;
    transform-origin:50% 50%
}

.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-img-circle {
    -webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important;
    animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-img-circle {
    -webkit-animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important;
    animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important
}

.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone:hover .phonering-alo-ph-img-circle {
    background-color:#535152;
}

.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-img-circle {
    background-color:#535152;
}

.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-img-circle {
    background-color:#535152;
}

.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-img-circle {
    background-color:#37d088;
}

.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-img-circle {
    background-color:#75eb50
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
        -webkit-opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        -webkit-opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        -webkit-opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform:rotate(0) scale(.5) skew(1deg);
                transform:rotate(0) scale(.5) skew(1deg);
        opacity:.1
    }

    30% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.5
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg);
        opacity:.2
    }

    100% {
        -webkit-transform:rotate(0) scale(.7) skew(1deg);
                transform:rotate(0) scale(.7) skew(1deg);
        opacity:.2
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}