@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

html {
    font-size: 18px;
}
body{
    font-family:  "Figtree", Arial, Helvetica, sans-serif;
    font-optical-sizing: auto;
    text-wrap: pretty;
}
body::before{
    content: "";
    position: absolute;
    top: -6rem;
    left: 0;
    width: 100%;
    height: 116%;
    background: radial-gradient(circle at right, #ffebbb -13%, transparent 27%);
    pointer-events: none;
    z-index: 1;
}

.container {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
}
h1 {
    font-weight: 600;
}
h1::after, h2::after {
    content:".";
    color: #ffd801;
    font-size: 3rem;
    line-height: 0;
}
/* h2{
    font-size: 2.75rem;  
} */
/* h3{
    font-size:2rem;
} */

CF
li {
    list-style: none;
}
p {
    color:#5f6368;
    margin-bottom: 0 !important;
}
a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    position: relative;
}
.read-more {
    font-size: 0.875rem;
}
.read-more:hover{
    color: #000;
}
.read-more:hover::after {
    width: 100%;
    background-color:#ffd801;
    transition: width 0.3s;
    
}
.read-more::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color:#ffd801;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
    width: 30%;
}

.highlight-text {
    display: inline-block;
    padding: 0.5rem 1rem;
    background:rgba(255, 216, 1, 0.55);
    position: relative;
    color: #000;
  }
  
  .highlight-text::before {
    content: '';
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: rgba(255, 216, 1, 0.55);
    transform: skew(0, -2deg);
    transform-origin: top left;
  }
  
  .highlight-text::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: rgba(255, 216, 1, 0.55);
    transform: skew(0, -2deg);
    transform-origin: bottom right;
  }
  

/* header */
    .navbar-toggler:focus {
        box-shadow: unset;
    }
    header {
        position: sticky;
        top: 0;
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }
    .navbar-nav .nav-item .nav-link:hover{
        color: #000;
    }
    .nav-item .nav-link:hover::after {
        width: 80%;
    }
    .nav-item .nav-link::after {
        content: "";
        display: block;
        width: 0;
        height: 4px;
        background-color:#ffd801 ;
        position: absolute;
        bottom: 0;
        left: 10px;
        transition: width 0.3s;
    }
    .navbar-nav .nav-item .nav-link {
        /* font-size: 1.25rem; */
        display: inline-block;
        position: relative;
        margin: 0 1.25rem;
    }
    .hamburger {
        width: 30px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }
    .hamburger-line {
        right:0;
        height: 0.125em;
    }
   
    .hamburger-line:nth-child(3) {
        /* top: 0.75em; */
        width: 0.625em;
        
    }

    .offcanvas.offcanvas-start{
        background-clip: border-box;
    }
    .offcanvas.offcanvas-start {
        top: 6.2rem !important;
    }
.offcanvas-backdrop {
    top: 5rem;
}
    .offcanvas-backdrop.show {
        margin-top: 4.25rem;
		
    }
    .hamburger-line {
        width: 100%;
        height: 4px;
        background-color: #000;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
		transform: translateY(0px) rotate(-45deg);
       
    }

    .hamburger.active .hamburger-line:nth-child(3) {
         opacity: 0;
    }
    header.scrolled {
        position: fixed;
        z-index: 1000;
        width: 100%;
        background: #ffffff;
        top: 0;
        animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-80px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* banner section */
    
    .home-banner-section {
        background-color: #000;
        color: #fff;
    }

    .blog-banner-section {
        background-color: #fff7e3;
        
    }
/*     .home-banner-section h1{
        font-size: 3rem;
    }
     */
    .page-container{
        background: #fcf8f5;  
    }

    .btn {
        position: relative;
        display: inline-block;
        padding: 0.625rem 2rem;
        cursor: pointer;
        text-align: center;
        transition: all 500ms ease;
        z-index: 1;
        border-radius: 50px ;
        overflow: hidden;
		border: none !important;
    outline: none;
    }
    .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        transition: all 0.7s ease;
        transform-origin: 0 50%;
        transform: scaleX(0.2);
        border-radius: 50px;
    }
    .btn:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }
    .btn-primary,
    .wpcf7-submit{
        background-color: #000 !important;
        color: #fff ;
        
        border: 2px solid #000;

    }
    .btn-primary:hover,
     .wpcf7-submit:hover{
        color: #000;
		border: none !important;
    }
    .btn-primary::before{
        background-color: #ffd801;
    }
.wpcf7-submit::before{
        background-color: #ffd801 !important;
    }

    .btn-secondary{
        background-color: #ffd801;
        border: 2px solid #ffd801;
        color: #000 ;
    }
    .btn-secondary:hover{
        background-color: #000;
        color: #fff;
        border-color:  #ffd801 !important;
    }

    .btn-secondary::before {
        background-color: #000;
    }

    .btn-white-outline {
        background-color: #fff !important;
        color: #000;
        border:2px solid #ffd801;
    }
    .btn-white-outline:hover {
        background-color: #ffd801;
        color: #000;
        border:2px solid #ffd801;
    }

    .btn-white-outline::before {
        background-color: #ffd801;
    }

/* Stats */

.stats {
	background-color:rgba(239, 239, 240, 1);
}
    .stat-number {
        font-size: 3rem;
        font-weight: 600;
    }

    .our-services-section .card p {
        font-size: 1.063rem;
}
    .services-card {
        background: #FFD801;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 216, 1, 0.1) 100%);
    }
    .services-card1 {
        background: #FFD801;
        background: linear-gradient(180deg, rgba(255, 216, 1, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    }
    .go-arrow svg{
        position: absolute;
        top: 7px;
        left: 5px;
    }
    .go-corner {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 32px;
        height: 32px;
        overflow: hidden;
        top: 0;
        right: 0;
    }

/* services section */

    .our-services-section .card {
        display: block;
        position: relative;
        height: 100%;
        padding: 3.875rem 1.25rem 1.313rem;
        z-index: 0;
        overflow: hidden;
    }

    .our-services-section .card:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -20px;
        right: -20px;
        background: rgba(255,216,1,0.4);
        height: 3.625rem;
        width: 3.625rem;
        border-radius: 50px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.4s ease-out;
    }

    .our-services-section .card:hover:before {
        transform: scale(21);
    }
    .service-pill {
        color: #111;
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: 300;
        border:1px solid rgba(0, 0, 0, 0.04);
        background-color:  rgba(0, 0, 0, 0.04);
        padding: 0.5rem 0.75rem;
        margin:0 0.125rem .5rem;
        display: inline-block;
      }
      .service-pill:hover { 
        background-color: #fff;
        border:1px solid rgba(0, 0, 0, 0.1);
      }
      .sub-text {
        font-size:1.5rem;
      }
/* Mission & Vision */

    .mission-vision {
/*         background-color: rgba(255,216,1,0.05); */
		background-color: rgba(239, 239, 240, 1);
    }

    .mission-vision .card {
        box-shadow: 0 6px 9px 0 rgba(0,0,0,0.03)
    }

/* Our Process */

    .our-process .card p {
        margin-bottom: 0;
    }

    .our-process .card {
        position: relative;
        padding: 2rem 3rem 2rem 2rem;
        background:#ffffff;            /* card color */
        border-radius: 1rem;
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        overflow: hidden;    
    }

    .our-process .card:hover { 
        transform: translateY(-4px); 
    }

    .our-process .card::before {
        content: attr(data-step);      /* pulls number (1-8, etc.) from HTML */
        position: absolute;
        top: 50%;                      /* center vertically */
        left: 80%;                     /* center horizontally */
        transform: translate(-50%,-50%);
        font: 900 10rem/1 "figtree", sans-serif; /* HUGE weight & size */
        color:#1A1A1A;                 /* dark base */
        opacity: 0.05;                 /* faint / watermark effect */
        pointer-events: none;          /* keeps it non-interactive */
        user-select: none;
    }
    .icon-wrap {
        background-color: #ffd801;
        border-radius: 25px;
        width: 3rem;
        height: 3rem;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .icon-wrap img {
        width: 1.75rem;
    }
/* slider section */

    .home-slider-section p{
        font-size: 1.25rem;
    }
    .home-slider-carousel .item {
        display: flex;
        justify-content: center;
        align-items: center;
        /* height: 75px;  */
        margin: 0 1rem;
        opacity: 0.5;
    }
    .home-slider-carousel .item:hover {
      
        opacity: 0.8;
    }
	.owl-stage {
		display:flex;
		align-items:center;
	}

/* About section */

    .text-lighter{
        color: rgba(26,26,26,0.5);
        position: relative;
    }

/* Faq-section */
    .faq-section{
        position: relative;
        background: white; 
    }
    .faq-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top left, #ffebbb -4%, transparent 31%), 
        radial-gradient(circle at top right, #ffebbb -5%, transparent -5%), 
        radial-gradient(circle at bottom left, #ffebbb -20%, transparent -5%), 
        radial-gradient(circle at bottom right, #ffebbb -7%, transparent 15%);
        pointer-events: none; 
    }

    .accordion.block:has(.acc-btn.active) {
        background-color: rgba(255,255,255,1);
    }
    .accordion-box .block {
        position: relative;
        margin-bottom: 1.25rem;
        border: 1px solid #111;
        border-radius: 27px;
        padding: 0 1.75rem;
        list-style-type: none;
    }
    .accordion-box .block .acc-btn .icon-outer {
        position: absolute;
        top: 13px;
        right: 30px;
        font-size: 1.25rem;
        color: #111;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
        transition: all 500ms ease;
        z-index: 1;
    }

    .accordion-box .block .acc-btn h4 {
        color: #111;
        padding: 0.875rem 0.438rem;
        cursor: pointer;
        transition: all 500ms ease;
        margin-bottom: 0;
    }
    .accordion-box .block .acc-content {
        position: relative;
        display: none;
        border-top: 1px solid #111;
        padding-top: 1.125rem;
        padding-bottom: 2rem;
    }
    .accordion-box .block .acc-content.current {
        display: block;
    }
    .accordion-box .block .acc-btn.active .icon-outer svg {
        position: relative;
        transform: rotate(180deg);
    }
    .accordion .acc-btn .icon-outer svg {
        transition: transform 0.3s ease-in-out;
    }



/* Blog */


.blog-article p {
    margin-bottom: 1rem !important;
	line-height: 1.875rem;
}
.blog-article h2, .blog-article h3 {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}
.blog-article ul li {
    position: relative;
    padding-left: 1rem;
    color:#5f6368;
	margin-top: 0.625rem !important;
}
.entry-meta{
	display:none;
}
.blog-article ul {
    margin: 2rem !important;
    padding: 0;
/*     margin-bottom: 1rem; */
	
}
.blog-article ul li:before {
    content: ".";
    color: #ffd801;
    font-size: 3rem;
    line-height: 0;
    position: absolute;
    top:0;
    left:0;
}
.blog-article blockquote {
    position: relative;
    padding-left: 0.5rem;
    color:#5f6368;
    font-style: italic;
    font-size: 0.875rem;
}
.blog-article blockquote:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background-color:#ffd801;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.3s;
    width: 3px;
}
.post-navigation{
	display:none;
}
.blog-article img {
	max-width:100%;
	height:auto;
}
.blog-listing-image {
	padding:0.5rem;
}
.blog-image img, .blog-listing-image img {
	border-radius:20px;
}
.blog-image img{
	width:100%;
	height:auto;
}
.blog-article ul li{
	list-style:none;
}

/* pre-footer-section */

    .pre-footer-container{
        background: #000;
        color: #fff;
    }
    .pre-footer-section p {
        color: rgba(255, 255, 255, 0.6);
    }
   .footer-section .copyright a{
	color:#111 !important;
}

/* Connect with us */

    .connect-with-us .card {
        border-radius: 1rem;
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        overflow: hidden;    
    }
.connect-with-us {
	background-color: rgba(239, 239, 240, 1);
	}


.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* footer */

    .footer-container{
        border-top: 2px solid #000;
    }
   
    .footer-section a{
        text-decoration: none;
        color: #212529;
        font-weight: 300;
        text-decoration: none;
    }
    .footer-content svg{
        width: 1.5rem;
    }
    .footer-links li {
        font-size: 0.944rem;
        padding-top: 0.75rem;
		list-style:none;
    }
    .copyright {
        font-weight: 300;
        font-size: 0.899rem;
    }
    .footer_logo-mask {
        position: relative;
        width: 100%;
        aspect-ratio: 1199 / 237;
        /* background: #f2eeea; */
        /* background: url(../images/ferweve_logo.png) no-repeat; */
        overflow: hidden;
        transition: all 1s cubic-bezier(.165,.84,.44,1);
        transform-origin: bottom;
        -webkit-mask-image: url('../images/ferweve_logo.png');
        mask-image: url('../images/ferweve_logo.png');
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        image-rendering: crisp-edges;
    }


.footer_logo-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 70rem;
    height: 70rem;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    transition: opacity 1s cubic-bezier(.165,.84,.44,1);
    transform: translate3d(calc(var(--mouse-x, -35rem) - 35rem), calc(var(--mouse-y, -35rem) - 35rem), 0);
    background: radial-gradient(circle at center, #bdb8b2 0, hsla(30, 24%, 93%, 0) 100%);
}

/* container spans the whole viewport */
#bubble-wrap{
    position: fixed;
    inset: 0;                          /* top/right/bottom/left:0 */
    pointer-events: none;              /* ignore mouse clicks */
    z-index: -1;                       /* sit behind content */
    overflow: hidden;
  }
  
  /* base bubble style */
  .bubble{
    position: absolute;
    width: 14px;                       /* default size; JS randomises */
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 216, 1, 0.55); /* brand yellow @ 35% opacity */
    filter: blur(1px);                 /* subtle softness */
    animation: float linear infinite;
  }
  
  /* keyframes for upward+sideways drift */
  @keyframes float{
    0%   { transform: translateY(0)   translateX(0)   scale(1);   }
    100% { transform: translateY(-140vh) translateX(60px) scale(1.15); }
  }


.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.875rem;
    font-weight: normal;
    display: block;
}
.swal-button-container {
    display: none;
	border:none;
}