/*
Theme Name: TS Chalar pro ltd
Author: ANIRBAN DAS
Version: 1.0
*/




@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;700&family=Rubik:wght@300;400;500;600;700;800&display=swap');

/*---------------------------------------
            UNIVERSAL STYLING
-----------------------------------------*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e2132b;
    --secendory-color: #1587e8;
    --yellow-color: #ffae00;
}

a {
    text-decoration: none;
}

h1 {
    font-family: 'Rubik', sans-serif;
}

img {
    vertical-align: middle;
}

body {
    font-family: 'Hind', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

@media screen and (min-width:991px) {
    .section__title {
        font-size: 48px;
        line-height: 1.1;
    }
}

.text-blue {
    color: var(--secendory-color);
}

.text-red {
    color: var(--primary-color);
}

.text-mute {
    color: #777;
}

.bg-red {
    background: var(--primary-color);
}

.bg-red:hover {
    background: var(--yellow-color);
}

.bg-yellow {
    background: var(--yellow-color);
}

.bg-yellows {
    background: var(--yellow-color);
}

.bg-yellow:hover {
    background: var(--primary-color);
}

.subheading {
    position: relative;
    /* position: absolute; */
    content: "";
    /* left: -10%; */
    top: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--secendory-color);
    width: 50px;
    height: 2px;
    margin-right: 10px;
}

/* cstm toggler */
#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: calc(4px * 3 + 11px * 2);
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: calc(4px / 2);
    background: var(--yellow-color);
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

/***** Tornado Animation *****/

.bar--top {
    bottom: calc(50% + 11px + 4px/ 2);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.35s) * .6;
}

.bar--middle {
    top: calc(50% - 4px/ 2);
    transition-property: opacity, transform;
    transition-delay: calc(0s + 0.35s * .3);
}

.bar--bottom {
    top: calc(50% + 11px + 4px/ 2);
    transition-property: top, transform;
    transition-delay: 0s;
}

#checkbox:checked+.toggle .bar--top {
    transform: rotate(-135deg);
    transition-delay: 0s;
    bottom: calc(50% - 4px/ 2);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}

#checkbox:checked+.toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}

/* cstm btn */
.button,
.button::after {
    padding: 10px 50px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: transparent;
    position: relative;
    border: 3px solid black;
}

.button::after {
    --move1: inset(50% 50% 50% 50%);
    --move2: inset(31% 0 40% 0);
    --move3: inset(39% 0 15% 0);
    --move4: inset(45% 0 40% 0);
    --move5: inset(45% 0 6% 0);
    --move6: inset(14% 0 61% 0);
    clip-path: var(--move1);
    content: 'QUOTE';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}

.button:hover::after {
    animation: glitch_4011 1s;
    text-shadow: 10 10px 10px black;
    animation-timing-function: steps(2, end);
    text-shadow: -3px -3px 0px var(--yellow-color), 3px 3px 0px var(--primary-color);
    background-color: transparent;
    border: 3px solid var(--yellow-color);
}

.button:hover {
    text-shadow: -1px -1px 0px var(--yellow-color), 1px 1px 0px var(--primary-color);
}

.button:hover {
    background-color: transparent;
    border: 3px solid var(--yellow-color);
    box-shadow: 0px 10px 10px -10px var(--yellow-color);
}

.cstm-btn-i {
    transition: .2s linear;
}

.cstm-btn:hover .cstm-btn-i {
    transform: translateX(10px);
}

@keyframes glitch_4011 {
    0% {
        clip-path: var(--move1);
        transform: translate(0px, -10px);
    }

    10% {
        clip-path: var(--move2);
        transform: translate(-10px, 10px);
    }

    20% {
        clip-path: var(--move3);
        transform: translate(10px, 0px);
    }

    30% {
        clip-path: var(--move4);
        transform: translate(-10px, 10px);
    }

    40% {
        clip-path: var(--move5);
        transform: translate(10px, -10px);
    }

    50% {
        clip-path: var(--move6);
        transform: translate(-10px, 10px);
    }

    60% {
        clip-path: var(--move1);
        transform: translate(10px, -10px);
    }

    70% {
        clip-path: var(--move3);
        transform: translate(-10px, 10px);
    }

    80% {
        clip-path: var(--move2);
        transform: translate(10px, -10px);
    }

    90% {
        clip-path: var(--move4);
        transform: translate(-10px, 10px);
    }

    100% {
        clip-path: var(--move1);
        transform: translate(0);
    }
}

.cstm-btn {

    color: #fff;
    border: 0;
    padding: 15px 30px;
    border-radius: 7px;
}

/* custom button */
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #b1dae7;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--secendory-color);
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--secendory-color);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #b1dae7;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

/* cstm btn2 */
.ta {
    border: none;
    background: none;
}

.ta span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
}

.ta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.ta:hover svg {
    transform: translateX(0);
}

.ta:active svg {
    transform: scale(0.9);
}

.hover-underline-animation {
    position: relative;
    color: #592e1f;
    padding-bottom: 20px;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #592e1f;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.ta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/*---------------------------------------
            HEADER STYLING
-----------------------------------------*/
.topnav {
    background: var(--yellow-color);
}

.topnav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 10px 0;
}

.topnav ul li a {
    color: #fff;
}

.topnav-contacts li:first-child:before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="25" height="25" viewBox="0 0 24 24"%3E%3Cpath fill="%23e2132b" d="M12 14c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4zm0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2z"%2F%3E%3Cpath fill="%23e2132b" d="M11.42 21.814a.998.998 0 0 0 1.16 0C12.884 21.599 20.029 16.44 20 10c0-4.411-3.589-8-8-8S4 5.589 4 9.995c-.029 6.445 7.116 11.604 7.42 11.819zM12 4c3.309 0 6 2.691 6 6.005c.021 4.438-4.388 8.423-6 9.73c-1.611-1.308-6.021-5.294-6-9.735c0-3.309 2.691-6 6-6z"%2F%3E%3C%2Fsvg%3E');
    top: 5px;
    left: -5px;
}

.topnav-contacts li:nth-child(2):before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="25" height="25" viewBox="0 0 20 20"%3E%3Cpath fill="%23e2132b" d="M18 7.373V14.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5V7.373l7.746 4.558a.5.5 0 0 0 .508 0L18 7.373ZM15.5 4a2.5 2.5 0 0 1 2.485 2.223L10 10.92L2.015 6.223A2.5 2.5 0 0 1 4.5 4h11Z"%2F%3E%3C%2Fsvg%3E');
    top: 5px;
    left: -5px;
}

.topnav-contacts li:last-child:before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="25" height="25" viewBox="0 0 24 24"%3E%3Cpath fill="%23e2132b" d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25c1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57c.11.35.03.74-.25 1.02l-2.2 2.2Z"%2F%3E%3C%2Fsvg%3E');
    top: 5px;
    left: -5px;
}

.topnav-social li a i {
    transition: .2s linear;
}

.topnav-social li a i:hover {
    transform: scale(1.4);
}

.navbar {
    background: #000000 !important;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: var(--yellow-color) !important;
}

.nav-item {
    padding: 0 10px;
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.dropdown-item {
    padding: 10px 15px;
}

.dropdown-item:hover {
    background: var(--yellow-color);
    color: #fff !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.stickyy {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
    padding: 0;
    /* margin-bottom: 300px !important; */
}

.m-top {
    margin-top: 91px;
}

@media screen and (max-width:768px) {
    .m-top {
        margin-top: 84px;
    }
}

/*---------------------------------------
            BAnner STYLING
-----------------------------------------*/
.banner-content-bg {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('./assests/images/slider-1.jpg')no-repeat center/cover;
}

.banner-content-bg .d-flex {
    height: 80vh;
}

.banner-content-bg h1 {
    color: #fff;
}

@media screen and (min-width:991px) {
    .banner-content-bg h1 {
        font-size: 5em;
    }
}

/*---------------------------------------
            About STYLING
-----------------------------------------*/
.float-about {
    position: relative;
}

.about-float-img {
    position: absolute;
    background: #fff;
    padding: 15px;
    top: 22%;
    right: 0%;
    border-radius: 50%;
}

.about-float-img img {
    border-radius: 50%;
}

@media screen and (min-width:991px) {
    .about-img1:before {
        position: absolute;
        content: "";
        left: -13px;
        bottom: -20px;
        width: 208px;
        height: 208px;
        background: var(--primary-color);
        -webkit-clip-path: polygon(0 1%, 0% 100%, 100% 100%);
        clip-path: polygon(0 1%, 0% 100%, 100% 100%);
        z-index: -1;
    }
}

@media screen and (max-width:768px) {
    .about .d-flex {
        justify-content: center;
    }

    .jus-center {
        justify-content: center;
    }

    .resident-img {
        background: transparent !important;
    }
}

/*---------------------------------------
            WHAT WE DO STYLING
-----------------------------------------*/
.what-do-bg {
    background: url('./assests/images/features-bg.jpg')no-repeat center/cover;
}

.resident-img {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}

.resident-img img {
    transition: all .2s linear;
}

.resident:hover .resident-img {
    transform: translateY(-15px);
}

/*---------------------------------------
            WHAT WE OFFER STYLING
-----------------------------------------*/
.offer-bg {
    background: var(--primary-color);
}

@media screen and (min-width:991px) {
    .offer-bg {
        height: 68vh;
    }
}

.flaticon-paint-1 {
    display: inline-block;
    font-size: 30px;
    color: #ffffff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--secendory-color);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}

.service-card-body {
    background: #fff;
    padding-top: 60px !important;
    padding: 20px;
    margin: 0 15px !important;
    position: relative;
    transform: translateY(-30px);
}

.flaticon-paint-1 {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-img {
    overflow: hidden;
}

.service-card-img img {
    transition: all .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-card-img img {
    transform: scale(1.2);
}

.service-card:hover .flaticon-paint-1 {
    top: -60px;
}

@media screen and (max-width:768px) {
    .services-img img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
}

/*---------------------------------------
            SKILL STYLING
-----------------------------------------*/
.skill-bg {
    background: url('./assests/images/skill-shape-1.png');
    background-attachment: fixed;
}

@media screen and (min-width:991px) {
    .skill-bg {
        padding-top: 250px;
    }
}

.border-skill {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
}

.border-skill p {
    line-height: 1.8;
}

.circle_percent {
    font-size: 140px;
    width: .8em;
    height: .8em;
    position: relative;
    background: #eee;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin: 20px;
}

.circle_inner {
    position: absolute;
    left: 0;
    top: 0;
    width: .8em;
    height: .8em;
    clip: rect(0 1em 1em 0.5em);
}

.round_per {
    position: absolute;
    left: 0;
    top: 0;
    width: .8em;
    height: .8em;
    background: #fc8459;
    /* border-radius: 10px; */
    clip: rect(0 1em 1em 0.5em);
    transform: rotate(180deg);
    transition: 1.05s;
}

.percent_more .circle_inner {
    clip: rect(0 0.5em 1em 0em);
}

.percent_more:after {
    position: absolute;
    left: 42px;
    top: 0em;
    right: 0;
    bottom: 0;
    background: #fc8459;
/*     border-radius: 10px; */
    content: "";
}

.circle_inbox {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fff;
    z-index: 3;
    border-radius: 50%;
}

.percent_text {
    position: absolute;
    font-size: 25px;
    left: 50%;
    top: 50%;
    font-weight: 700;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/*---------------------------------------
              SKILL STYLING
-----------------------------------------*/
.service-cards {
    position: relative;
    overflow: hidden;
}

.service-cards-content {
    position: absolute;
    bottom: -30%;
    left: 10%;
    transition: all .2s linear;
}

.services-img {
    position: relative;
}

.service-cards:hover .services-img:before {
    opacity: 1;
}

.services-img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    box-shadow: inset 4px -79px 55px 0px rgba(0, 0, 0, 0.75);
    transition: all .2s linear;
    opacity: 0;
}

.service-cards:hover .service-cards-content {
    bottom: 0;
}

.service-card-img img {
    width: 100%;
}

/*---------------------------------------
              WHY CHOOSE STYLING
-----------------------------------------*/
.why-choose-card {
    background: var(--primary-color);
    padding: 20px;
    transition: .2s linear;
}

@media screen and (min-width:991px) {
    .why-choose-us .container {
        max-width: 100%;
        padding: 0;
        padding-left: 40px !important;
    }
}

.why-choose-img img {
    height: 105vh;
    width: 100%;
    object-fit: cover;
}

.why-choose-card:hover {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/*---------------------------------------
            TESTIMONIAL STYLING
-----------------------------------------*/
.testi-img img {
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    z-index: 1;
}

.testi-img {
    position: relative;
}

.testi-img:before {
    position: absolute;
    content: "";
    left: 50%;
    top: -10px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 140px;
    height: 70px;
    border-top-left-radius: 110px;
    border-top-right-radius: 110px;
    background: var(--yellow-color);
    z-index: 0;
}

.testimonial .slick-list {
    padding: 30px 0;
}

.testimonial-card {
    background: #faf7f3;
    border-radius: 6px;
    padding: 40px 20px;
	min-height: 500px !important;
}

.testimonial-wrapper-content {
    padding: 0 10px;
}
.service .slick-dots li button::before{
font-size: 40px;
}
.blog-card-body{
height: 210px !important;
}
.service-cards{
	margin: 0 10px;
}
/*---------------------------------------
              VIDEO STYLING
-----------------------------------------*/
.video-img img {
    height: 90vh;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.video-img {
    position: relative;
}

.video-img:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #00000058;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.v-icon {
    /* box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); */
    transition: all .2s linear;
}

.v-icon:hover {
    transform: scale(1.2);
}

.video {
    z-index: 999;
    position: relative;

}

@media screen and (max-width:768px) {
    .video-img img {
        height: 50vh;
    }
}

/*---------------------------------------
            Contact HOME STYLING
-----------------------------------------*/
.contact-form-home {
    background: var(--secendory-color);
    position: relative;
    z-index: 0;
    margin-top: -30px;
}



.contact-form-bg {
    background: url('./assests/images/map.png')no-repeat center/cover;
    background-attachment: fixed;
}

.contact-form-home-inner input,
.contact-form-home-inner textarea {
    background: transparent;
    border: 1px solid #b5b4b4;
    border-radius: 0;
    padding: 18px;
    color: #fff !important;
}

.contact-form-home-inner input:focus,
.contact-form-home-inner textarea:focus {
    background: transparent;
}

.contact-form-home-inner input::placeholder,
.contact-form-home-inner textarea::placeholder {
    color: #fff;

}

.contact-home-img1 img {
    transform: rotate(-10deg);
    box-shadow: 10px 10px 8px 0px rgba(0, 0, 0, .5);
}

.contact-home-img2 {
    margin-top: 100px !important;
    margin-left: 20px;
}

/*---------------------------------------
            BLOG STYLING
-----------------------------------------*/
.blog-bg {
    background: var(--yellow-color);
}

.blog-card-body {
    background: #FFF;
    padding: 30px;
    position: relative;
}

.blog-card-body .admin {
    background: #24c373;
    color: #fff;    
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 0;
}

.blog-card-body-float {
    position: absolute;
    top: -5%;
    right: 5%;
    width: 10px !important;
}

.blog-card-body-float .f-span {
    position: absolute;
    right: 40px;
    top: -35px;
    font-weight: 700;
    font-size: 25px;
    color: #ffffff;
    height: 70px;
    width: 70px;
    text-align: center;
    background: #fc8459;
    padding-top: 11px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    line-height: 1;
    text-transform: capitalize;

}

.blog-card-body-float .date {
    font-size: 20px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
}

.blog-card-img {
    overflow: hidden;
}

.blog-card-img img {
    transition: all .2s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.2);
}

/*---------------------------------------
            Footer STYLING
-----------------------------------------*/
.footer-bg {
    background: #000000;
}

.footer-sub {
    position: relative;
}

.footer-sub:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 200px;
    background: var(--yellow-color);
    bottom: -20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    color: #777;
}

footer ul li a:hover {
    color: #fff;
}

.quick {
    line-height: 2;
}

.f-con li {
    margin-bottom: 10px;
}

.f-con li:first-child:before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="25" height="25" viewBox="0 0 256 256"%3E%3Cpath fill="%23e2132b" d="M200 224h-49.46A266.56 266.56 0 0 0 174 200.25c27.45-31.57 42-64.85 42-96.25a88 88 0 0 0-176 0c0 31.4 14.51 64.68 42 96.25A266.56 266.56 0 0 0 105.46 224H56a8 8 0 0 0 0 16h144a8 8 0 0 0 0-16ZM56 104a72 72 0 0 1 144 0c0 57.23-55.47 105-72 118c-16.53-13-72-60.77-72-118Zm112 0a40 40 0 1 0-40 40a40 40 0 0 0 40-40Zm-64 0a24 24 0 1 1 24 24a24 24 0 0 1-24-24Z"%2F%3E%3C%2Fsvg%3E');
    top: 10px;
    left: -5px;
}

.f-con li:nth-child(2):before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="%23e2132b" d="M18 7.373V14.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 2 14.5V7.373l7.746 4.558a.5.5 0 0 0 .508 0L18 7.373ZM15.5 4a2.5 2.5 0 0 1 2.485 2.223L10 10.92L2.015 6.223A2.5 2.5 0 0 1 4.5 4h11Z"%2F%3E%3C%2Fsvg%3E');
    top: 5px;
    left: -5px;
}

.f-con li:last-child:before {
    position: relative;
    content: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 24 24"%3E%3Cpath fill="%23e2132b" d="M6.62 10.79c1.44 2.83 3.76 5.15 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25c1.12.37 2.32.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57c.11.35.03.74-.25 1.02l-2.2 2.2Z"%2F%3E%3C%2Fsvg%3E');
    top: 5px;
    left: -5px;
}

.footer-bg input,
.footer-bg input:focus {
    background: #374853;
    border: 0;
    border-radius: 0;
    padding: 15px;
    color: #ffff !important;
}

.footer-bg input::placeholder {
    color: #fff;
}

footer .face,
footer .insta {
    background: #374853;
    color: #fff;
    padding: 10px 13px;
    transition: .2s linear;
}

footer .face:hover,
footer .insta:hover {
    transform: scale(1.1);
}

.inner-banner-bg {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('./assests/images/inner-banner.jpg')no-repeat center/cover;
    background-position: unset;
    background-attachment: fixed;
}

.inner-banner-bg .d-flex {
    height: 60vh;
}

@media screen and (max-width:768px) {
    .social-icon {
        margin-bottom: 20px;
    }
}

@media screen and (min-width:991px) {
    .inner-ser {
        padding-top: 200px !important;
    }

    .inner-banner-bg {
        background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('./assests/images/inner-banner.jpg')no-repeat center/cover;
        background-position: bottom;
        background-attachment: fixed;
    }
}

.contact-map iframe {
    width: 100%;
    height: 60vh;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.inner-single-img img {
    height: 100%;
    width: 100%;
}

.inner-single-img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.single-blog-img img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.grid-item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.filter-button button {
    background: transparent;
    border: 0;
    padding: 10px 15px;
}

.activeC {
    background: var(--yellow-color) !important;
    color: #fff;
}

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

.filter-img img {
    transition: all .2s linear;
}

.grid .col-md-3:hover .filter-img img {
    transform: scale(1.2);
}

.filter-a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00000056;
    padding: 50px 100px;
    color: #fff;
    font-size: 50px;
    opacity: 0;
    transition: all .2s linear;
}

.filter-a:hover {
    color: var(--yellow-color);
}

.grid .col-md-3:hover .filter-a {
    opacity: 1;
}

.grid .col-md-3:hover .filter-img img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: #000000b9;
    z-index: 999999;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #525252 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 15px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--yellow-color);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #ffae00c0;
}

.fixed-blog {
    /*Main propeties*/
    position: sticky;
    top: 100px;
    border-top: 2px solid var(--yellow-color);
    position:-webkit-sticky;
}

.recent-blog-content {
    color: #000000;
}

.recent-blog-card:hover .recent-blog-content {
    color: var(--yellow-color);
}
.float-call-now i{
    background: #ffae00;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    transition: .2s linear;
	    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999999999;
}
.float-call-now i:hover{
    background: #e2132b;
    color: #fff;
    transform: scale(1.1);
}
.float-call-now-p{
	background: #ffae00;
	padding: 10px ;
}
.float-call-now-p a{
	color: #fff;
}
.float-call-now-p a:hover{
	color: #e2132b;
}
#buzz {
  animation-name: buzz;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes buzz {
  1% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  2% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  4% {
    transform: translate(2px, 1px) rotate(-1deg);
  }
  5% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  6% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  7% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  9% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  10% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  11% {
    transform: translate(2px, 1px) rotate(-1deg);
  }
  12% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  13% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  14% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
  15% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  16% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  17% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  18% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  19% {
    transform: translate(2px, 1px) rotate(-1deg);
  }
  20% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  21% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  22% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  23% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  24% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  25% {
    transform: translate(2px, 1px) rotate(-1deg);
  }
  26% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  27% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
.side-contact .col-md-4 .text-center{
    background: #ffae0054;
    height: 200px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border-radius: 7px;
	transition: all .2s linear;
}
.side-contact a{
	color: #fff;
}
.side-contact .col-md-4 .text-center:hover{
	background : #ffae00;
}
.float-call-now-p .d-flex{
	font-size: 20px;
	font-weight: 700px;
}


/* location buttons */
.location-services-btn .btn {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 50px;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  border: none;
  outline: none;
}

.location-services-btn .btn svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location-services-btn .btn svg rect {
  stroke-width: 3;
  stroke-dasharray: 0,0;
  stroke-dashoffset: 0;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.location-services-btn .btn span {
  background: rgba(255,130,130,1);
  background: linear-gradient(to right,  rgba(255,130,130,1) 0%,rgba(225,120,237,1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-services-btn .btn:hover svg rect {
  stroke-width: 4;
  stroke-dasharray: 196, 543;
  stroke-dashoffset: 437;
}
.location-service p{
	color: #808080;
}