/*.word-line {overflow: hidden;}
.skew-up {opacity: 0;}*/

/* Hero Section */
.hero {
    padding: 5rem 0 0 2rem;
    display: flex;
    align-items: center;
}

/* Heading */
.hero h1 {
    font-family: 'tf2build';
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

/* Flower icon */
.flower {
    font-size: 4rem;
    color: #ffd600;
    margin-bottom: 0;
}

/* Paragraph */
.hero p {
    color: rgb(0 0 0 / 80%);
    max-width: 85%;
    font-size: 14px;
}

/* Button */
.btn-outline-custom {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.85rem;
    margin: 0 0 3rem 0;
}
.btn-outline-custom:hover, .btn-outline-custom:focus, .btn-outline-custom:active{
    border: 1px solid rgba(0, 0, 0, 0.25);
}
/*.btn-outline-custom:hover {
    background: #000;
    color: #fff;
}*/

/* Image wrapper */
.hero-img {
    position: relative;
    display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-img img {
    max-width: 100%;
}

/* Responsive */
@media (max-width: 1440px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        max-width: 60%;
        margin: 0 0 10px 0;
    }
}
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        max-width: 90%;
        margin: 0 0 10px 0;
    }
}
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        max-width: 90%;
        margin: 0 0 10px 0;
    }
}
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding: 5rem 0 0 0;
    }
    .hero h1 {
        text-align: center;
        font-size: 28px;
    }
    .hero p {
        max-width: 60%;
        margin: 0 auto 10px auto;
    }
    .btn-outline-custom{
        margin: 0 0 30px 0;
    }
}
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 5rem 0 0 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        max-width: 60%;
        margin: 0 auto 10px auto;
    }
}
@media (max-width: 575px) {
    .hero {
        text-align: center;
        padding: 3rem 0 0 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        max-width: 70%;
        margin: 0 auto 10px auto;
        font-size: 12px;
    }
}
@media (max-width: 425px) {
    .hero {
        text-align: center;
        padding: 3rem 0 0 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        max-width: 80%;
        margin: 0 auto 10px auto;
        font-size: 12px;
    }
}
@media (max-width: 375px) {
    .hero {
        text-align: center;
        padding: 3rem 0 0 0;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.4;
    }

    .hero p {
        max-width: 80%;
        margin: 0 auto 10px auto;
        font-size: 12px;
    }
}
@media (max-width: 320px) {
    .hero {
        text-align: center;
        padding: 3rem 0 0 0;
    }

    .hero h1 {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero p {
        max-width: 100%;
        margin: 0 auto 10px auto;
        font-size: 12px;
    }
}
@media (min-width: 768px) {
    .hero p {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .hero {
    text-align: left;
    padding: 5rem 0 0 2rem;
  }
   .hero h1 {
    text-align: left;
   }
   .hero p {
    margin: 0 0 10px 0;
    font-size: 14px;
  }
}


.services-section {
    background: whitesmoke;
    padding: 5rem 2rem;
}

/* this is for marquee style */
/*.servicesSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}*/

/* Big Editorial Heading */
.services-title {
    font-family: 'tf2build';
    font-size: 2.5rem;
    line-height: 1;
    color: #333;
}

/* Right Content */
.services-right p {
    font-size: 14px;
    max-width: 260px;
    margin-bottom: 10px;
}

.services-btn {
    display: inline-block;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/* Cards Layout */
.service-item {

}

.service-item img {
    width: 100%;
    display: block;
  height: auto;
  background: rgba(0, 0, 0, 0.03);
    transition: 0.5s ease;
    margin: 0 0 15px 0;
}

/* Label (minimal like design) */
.service-label {
    color: #333;
    font-weight: 600;
    font-size: 18px;
}
.service-text{
    color: #333;
    font-size: 14px;
}

/* Hover */
.service-item:hover img {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width:1440px){
    .services-title {
        font-size: 32px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:1200px){
    .services-title {
        font-size: 28px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:1024px){
    .services-title {
        font-size: 28px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:992px){
    .services-title {
        font-size: 28px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:768px){
    .services-section {
        padding: 3rem 1rem;
    }
    .services-title {
        font-size: 24px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:575px){
    .services-section {
        padding: 3rem 1rem;
    }
    .services-title {
        font-size: 24px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:425px){
    .services-section {
        padding: 3rem 1rem;
    }
    .services-title {
        font-size: 24px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:375px){
    .services-section {
        padding: 3rem 1rem;
    }
    .services-title {
        font-size: 24px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}
@media (max-width:320px){
    .services-section {
        padding: 3rem 1rem;
    }
    .services-title {
        font-size: 24px;
    }
    .service-label {
	    font-size: 16px;
	    margin: 0 0 10px 0;
    }
    .service-text {
	    font-size: 12px;
	    max-width: 80%;
    }
}



/* process section css starts */
.process-section{
    padding: 5rem 2rem 0 2rem;
}
.process-section-left {
    display: flex;
    flex-wrap: wrap;
}
.process-section-left-row-1, .process-section-left-row-2{
    width: 100%;
}
.process-section-left-row-2{
    display: flex;
    align-items: flex-end;
}
.process-section-left img{
    max-width: 500px;
}
.process-section-left h2 {
    font-family: 'tf2build';
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
    margin: 0 0 15px 0;
}
.process-section-left p {
	color: #333;
	font-size: 14px;
	margin: 0 0 80px 0;
}
.process-section-right-row {
	padding: 0 0 10px 0;
    margin: 0 0 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.process-section-right-row h2 {
    font-size: 24px;
    font-weight: 400;
}
@media (max-width:1440px){
    .process-section-left h2 {
        font-size: 32px;
    }
    .process-section-left p {
        max-width: 30%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
    }
}
@media (max-width:1200px){
    .process-section-left h2 {
        font-size: 28px;
    }
    .process-section-left p {
        max-width: 45%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
    }
    .process-section-left img {
        max-width: 400px;
    }
}
@media (max-width:1024px){
    .process-section-left h2 {
        font-size: 28px;
    }
    .process-section-left p {
        max-width: 45%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
    }
    .process-section-left img {
        max-width: 350px;
    }
}
@media (max-width:992px){
    .process-section-left h2 {
        font-size: 28px;
    }
    .process-section-left p {
        max-width: 45%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
    }
    .process-section-left img {
        display: none;
    }
    .process-section-right img{
        max-width: 50%;
    }
    .process-section-left-row-1, .process-section-left-row-2 {
        height: auto;
    }
}
@media (max-width:768px){
    .process-section{
        padding: 3rem 1rem 0 1rem;
    }
    .process-section-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .process-section-right img{
        max-width: 50%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
        margin: 0 0 4px 0;
    }
    .process-section-left p {
        max-width: 28%;
    }
}
@media (max-width:575px){
    .process-section{
        padding: 3rem 1rem 0 1rem;
    }
    .process-section-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .process-section-right img{
        max-width: 100%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
        margin: 0 0 4px 0;
    } 
    .process-section-left p {
        max-width: 39%;
    }
}
@media (max-width:425px){
    .process-section-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .process-section-right img{
        max-width: 100%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
        margin: 0 0 4px 0;
    } 
    .process-section-left p {
        max-width: 55%;
    }
}
@media (max-width:375px){
    .process-section-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .process-section-right img{
        max-width: 100%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
        margin: 0 0 4px 0;
    } 
    .process-section-left p {
        max-width: 60%;
    }
}
@media (max-width:320px){
    .process-section-left h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .process-section-right img{
        max-width: 100%;
    }
    .process-section-right-row h2 {
        font-size: 18px;
        margin: 0 0 4px 0;
    }
    .process-section-left p {
        max-width: 75%;
    }
}
@media (min-width:992px){
    .process-section-left img {
        display: block;
    }
    .process-section-right img {
        display: none;
    }
}
/* process section css ends */


/* case studies section css starts */
.case-studies-section{
    background: rgba(255, 203, 166, 0.25); /* rgba(255, 207, 168, 0.25) */
    padding: 5rem 2rem;
}
.case-studies-section .main-title {
    font-family: 'EpilogueBold';
    font-size: 2.5rem;
    line-height: 1.1;
    color: #333;
    margin: 0 0 40px 0;
}
.case-study-card .main-img{
    margin: 0 0 30px 0;
  display: block;
  height: 300px;
  background: rgba(0, 0, 0, 0.03);
}
.case-study-card h2{
    display: flex;
  margin: 0;
  font-size: 24px;
  align-items: flex-end;
}
/* case studies section css starts */


/* why us section css starts */
.why-us-section{
    background: rgba(255, 203, 166, 0.25);
    padding: 5rem 2rem;
}
.why-us-section .main-title {
    font-family: 'tf2build';
    font-size: 2.5rem;
    line-height: 1.1;
    color: #333;
    margin: 0 0 400px 0;
}
.why-us-text-container{
    display: flex;
    flex-wrap: wrap;
}
.why-us-text{
    background: rgba(255, 255, 255, 0.9);
    width: max-content;
  display: block;
  padding: 15px 30px;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  border-radius: 30px;
  font-size: 16px;
  margin-right: 15px;
}
.why-us-section img{
    width: 100%;
    display: block;
}
@media (max-width:1440px){
    .why-us-section .main-title {
        font-size: 32px;
        line-height: 1.4;
        margin: 0 0 40px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 15px;
    }
}
@media (max-width:1200px){
    .why-us-section .main-title {
        font-size: 28px;
        line-height: 1.4;
        margin: 0 0 40px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 15px;
    }
}
@media (max-width:1024px){
    .why-us-section .main-title {
        font-size: 28px;
        line-height: 1.4;
        margin: 0 0 40px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 15px;
    }
}
@media (max-width:992px){
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 15px;
    }
}
@media (max-width:768px){
    .why-us-section{
        padding: 3rem 1rem;
    }
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 15px;
    }
}
@media (max-width:575px){
    .why-us-section{
        padding: 3rem 1rem;
    }
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 0;
    }
}
@media (max-width:425px){
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 0;
    }
}
@media (max-width:375px){
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 0;
    }
}
@media (max-width:320px){
    .why-us-section .main-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 30px 0;
    }
    .why-us-text {
        font-size: 12px;
        margin-right: 0;
    }
}
/* why us section css ends */


/* cta section css starts */
.cta-section {
    padding: 5rem 0 0 0;
    position: relative;
}
.cta-section img{
    width: 100%;
    height: auto;
  display: block;
}
.cta-section-content{
    max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.cta-section-content h2{
    font-family: 'tf2build';
    font-size: 2.5rem;
  line-height: 1.2;
  color: #333;
  text-align: center;
}
.cta-section-content p{
    margin: 0 0 50px 0;
    font-size: 14px;
}
.cta-section-content a, .cta-section-content a:hover, .cta-section-content a:focus, .cta-section-content a:active{
    padding: 10px 25px;
  border: 1px solid black;
  border-radius: 30px;
  color: black;
  text-decoration: none;
    display: block;
  width: 150px;
  margin: 0 auto;
  font-size: 14px;
}
@media (max-width:1440px){
    .cta-section-content {
	    padding: 50px 0;
    }
    .cta-section-content h2 {
        font-size: 28px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 50px auto;
    }
}
@media (max-width:1200px){
    .cta-section {
        padding: 10rem 0 0 0;
    }
    .cta-section-content {
	    padding: 0; /* 50px 0 */
    }
    .cta-section-content h2 {
        font-size: 28px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 50px auto;
    }
}
@media (max-width:1024px){
    .cta-section {
        padding: 10rem 0 0 0;
    }
    .cta-section-content {
	    padding: 0; /* 50px 0 */
    }
    .cta-section-content h2 {
        font-size: 28px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}
@media (max-width:992px){
    .cta-section {
        padding: 8rem 0 0 0;
    }
    .cta-section-content {
	    padding: 0; /*50px 0*/
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}
@media (max-width:768px){
    .cta-section {
        padding: 10rem 0 0 0;
    }
    .cta-section-content {
	    padding: 0; /* 50px 0 */
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}
@media (max-width:575px){
    .cta-section {
        padding: 0; /* 3rem 1rem */
    }
    .cta-section-content {
	    padding: 40px 0 0 0; /* 50px 0 */
	    position: relative;
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}
@media (max-width:425px){
    .cta-section-content {
	    padding: 40px 0 0 0; /* 50px 0 */
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 70%;
        margin: 0 auto 30px auto;
    }
}
@media (max-width:375px){
    .cta-section-content {
	    padding: 40px 0 0 0; /* 50px 0 */
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
    max-width: 70%;
    margin: 0 auto 20px auto;
    }
}
@media (max-width:320px){
    .cta-section-content {
	    padding: 50px 0 0 0;
    }
    .cta-section-content h2 {
        font-size: 24px;
    }
    .cta-section-content p {
        font-size: 12px;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }
}
/* cta section css ends */