/* Custom Css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700&display=swap');

.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.montserrat-samibold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.montserrat-ragular {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Fonts */
:root {
    --default-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --nav-font: 'Poppins', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #ff9280;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #ff3c3c;
    /* Color for headings, subheadings and title throughout the website */
    --heading-para: #272727;
    --para-color: #4a4a4a;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --subheader-color: #141414;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --dark-icon-color: #770508;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --top-header: #f88379;
    --light-background: #f5f5f5;
    --list-color: #444444;
    --dark-red: #d45d48;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--para-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--subheader-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
}

.btn-red,
.btn-dark:hover {
    color: var(--background-color);
    background-color: var(--heading-color);
    font-family: var(--nav-font);
    font-weight: 500;
    border-color: var(--heading-color);
}

.btn-dark,
.btn-red:hover {
    color: var(--background-color);
    background-color: var(--subheader-color);
    font-family: var(--nav-font);
    font-weight: 500;
    border-color: var(--subheader-color);
}

.section-gap {
    padding: 90px 0;
}

.footer-form .form-control::-webkit-input-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* Chrome/Opera/Safari */
 color: rgb(216, 216, 216) !important;
  font-size:14px;
  font-family:var(--default-font);
  font-weight: 300 !important;
}
.footer-form .form-control::-moz-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 19+ */
color: rgb(216, 216, 216) !important;
  font-size:14px;
  font-family:var(--default-font);
  font-weight: 300 !important;
}
.footer-form .form-control:-ms-input-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* IE 10+ */
color: rgb(216, 216, 216) !important;
  font-size:14px;
  font-family:var(--default-font);
  font-weight: 300 !important;
}
.footer-form .form-control:-moz-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 18- */
color: rgb(216, 216, 216) !important;
  font-size:14px;
  font-family:var(--default-font);
  font-weight: 300 !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    padding: 10px 0;
    transition: all 0.5s;
   z-index: 1000;
    top: 0;
}

.scrolled.header,
.inner-page-header {
    background-color: var(--top-header);
}

.header.scrolled {
    position: fixed !important;
    top: 0;
}

.navmenu ul li a {
    color: var(--background-color);
    margin: 0 20px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.navmenu ul li a::after,
.navmenu ul li a.active::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--background-color);
    transition: all 0.3s ease-in-out 0s;
}

.navmenu ul li a:hover::after,
.navmenu ul li.current-menu-item a::after {
    width: 100% !important;
}

.header a.logo img {
    width: 280px;
    transition: all ease-in-out 0.5s 0s;
}

.header.scrolled a.logo img {
    width: 210px;
}

img.banner-laptop {
    position: absolute;
    top: 13vw;
    right: 8vw;
    width: 100%;
    max-width: 25vw;
}

.blob {
    width: 20vw;
    height: 18vw;
    background: #ff1f1f;
    background: -webkit-linear-gradient(90deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    background: linear-gradient(90deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF1F1F", endColorstr="#FF9CA7", GradientType=1);
    border-radius: 50%;
    position: absolute;
    top: 13vw;
    right: 10vw;
    animation: blobMove 8s ease-in-out infinite;
}

.blob-two {
    width: 22.50vw;
    height: 18vw;
    background: #ff1f1f;
    background: -webkit-linear-gradient(270deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    background: -moz-linear-gradient(270deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    background: linear-gradient(270deg, rgba(255, 31, 31, 0.17) 0%, rgba(255, 156, 167, 0.28) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF1F1F", endColorstr="#FF9CA7", GradientType=0);
    border-radius: 50%;
    position: absolute;
    top: 12vw;
    right: 9vw;
    animation: blobMove 8s ease-in-out infinite;
}

.blob-two {
    animation: blobMovenew 8s ease-in-out infinite;
}

@keyframes blobMovenew {

    0%,
    100% {
        border-radius: 60% 30% 20% 60% / 40% 50% 30% 50%;
        transform: translate(0, 0) scale(1);
    }

    33% {
        border-radius: 20% 40% 50% 20% / 50% 40% 30% 60%;
        transform: translate(15px, -20px) scale(1.05);
    }

    66% {
        border-radius: 20% 60% 40% 60% / 30% 40% 50% 40%;
        transform: translate(-15px, 20px) scale(0.95);
    }
}


@keyframes blobMove {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
        transform: translate(0, 0) scale(1);
    }

    33% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        border-radius: 50% 50% 70% 30% / 60% 50% 50% 40%;
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.container-fluid {
    max-width: 1600px;
}

.banner-content {
    top: 11vw;
}
section.banner.home-banner h1.small-seo-text {
   font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    text-transform: capitalize;
}


.banner-content h1 span, section.banner.home-banner .banner-content h2 span {
    display: block;
    font-weight: 300;
    color: var(--subheader-color);
    font-size: 40px;
    letter-spacing: 2px;
    text-shadow: none;
}

.banner-content h1, section.banner.home-banner .banner-content h2{
    font-size: 66px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 5px 6px 0px #ffe6e4;
}

.banner-content p {
    padding-right: 10%;
    font-size: 16px;
}

.call-to-btn a.btn {
    border-width: 2px;
    border-radius: 30px;
    padding: 10px 25px;
}

section.banner.home-banner {
    margin-bottom: 8vw;
}

/* Row BOX Block */
.ourfocus {
    background-color: var(--light-background)
}

.focus-icon {
    height: 72px;
    width: 72px;
    border-radius: 3px;
    background: #fff4f2;
    background: -webkit-linear-gradient(121deg, rgba(255, 244, 242, 1) 0%, rgba(255, 84, 87, 1) 100%);
    background: -moz-linear-gradient(121deg, rgba(255, 244, 242, 1) 0%, rgba(255, 84, 87, 1) 100%);
    background: linear-gradient(121deg, rgba(255, 244, 242, 1) 0%, rgba(255, 84, 87, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF4F2", endColorstr="#FF5457", GradientType=0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.focus-box {
    background: #fff;
    margin: 15px;
    padding: 40px 25px;
    max-width: 280px;
    position: relative;
    box-shadow: 0px 0px 25px rgba(255, 156, 167, 0.2);
    transition: all ease-in-out 0.3s 0s;
}

.focus-box .focus-icon {
    color: var(--background-color);
    font-size: 36px;
}

.focus-box .focus-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.focus-box .focus-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.focus-box::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffff42;
    box-shadow: 0px 0px 15px rgb(255 156 167 / 20%);
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
    transition: all ease-in-out 0.3s 0s;
}

.focus-box:hover::after {
    top: 0px;
    left: 0px;
    box-shadow: 0px 0px 15px rgb(255 156 167 / 20%);
}

.focus-box:hover {
    box-shadow: 0px 0px 15px rgb(255 156 167 / 40%);
    margin-top: -10px;
}

.ourfocus-top {
    margin-top: -200px;
    padding-bottom: 30px;
}

.focus-box {
    padding: 30px 20px;
    min-height: 280px;
}

.digital-block {
    padding: 50px 0px 20px;
}

.heading-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.heading-box h2 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.heading-box p {
    font-size: 18px;
    line-height: normal;
}

.digital-box {
    padding: 30px 60px 10px 30px;
    border-left: 10px solid #ff755d;
    box-shadow: -6px 7px 20px rgb(0 0 0 / 15%);
    position: relative;
    transition: all ease-in-out 0.3s 0s;
}

.digital-box:hover {
    box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
}

.sub-small-header h3 {
    color: var(--subheader-color);
    font-family: var(--default-font);
    font-weight: 600;
    margin-bottom: 15px;
}

.sub-small-header p strong {
    color: var(--heading-color);
    font-weight: 600;
}

strong {
    font-weight: 600;
}

.sub-small-header p {
    font-size: 18px;
}

.digital-box ul li {
    font-size: 14px;
    color: var(--list-color);
    line-height: 1.3;
}

.digital-box ul li span {
    color: var(--dark-icon-color);
    font-size: 20px;
}

img.img-right-red {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* service tab */
.service-nav {
    background-color: var(--dark-red);
    padding: 60px 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 25%;
    min-width: 300px;
}

div#nav-tabContent {
    width: 75%;
    z-index: 2;
}

.service-nav .nav-tabs {
    border: 0;
    position: relative;
}

.service-nav .nav-tabs::after {
    background-color: #ffffff50;
    width: 6px;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    border-radius: 10px;
    z-index: 1;
}

.service-nav .nav-tabs .nav-link {
    color: #fff;
    border: 0;
    font-size: 17px;
    opacity: 0.5;
    position: relative;
    z-index: 2;
}

.service-nav .nav-tabs .nav-item.show .nav-link,
.service-nav .nav-tabs .nav-link.active {
    background-color: transparent !important;
    opacity: 1;
}

.tabpanel-service {
    background-color: var(--background-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-nav .nav-tabs .nav-link img {
    width: 60px;
    margin: 30px 0;
}

#nav-tab .slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 0;
    background-color: var(--background-color);
    border-radius: 3px;
    transition: top 0.3s ease, height 0.3s ease;
    z-index: 10;
}

img.img-web-design {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    z-index: -1;
}

ul.service-list {
    max-width: 800px;
    padding: 40px 0 0 60px;
}

ul.service-list li {
    width: 50%;
    margin-bottom: 10px;
    position: relative;
}

ul.service-list li::after {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    content: "";
    background-color: var(--default-color);
    top: 6px;
    left: -22px;
    position: absolute;
    border: 3px solid #fff;
    z-index: 3;
}

ul.service-list li::before {
    width: 22px;
    height: 22px;
    border-radius: 30px;
    content: "";
    background-color: var(--default-color);
    top: 1px;
    left: -27px;
    position: absolute;
    border: 3px solid #fff;
    z-index: 3;
}

/* One Step to web site */
.whyus-home {
    background-image: url(../../images/why-us-bg.jpg);
    padding-bottom: 50px;
    position: relative;
    z-index: 100;
    background-position: center;
    background-attachment: fixed;
}

.whyus-home.background-image {
    background-image: url(../../images/dev-background.jpg);
}

.growth-block {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.growth-block h2 {
    font-size: 46px;
    font-weight: 300;
}

.growth-block h3 {
    font-size: 50px;
    color: #fff;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.box-growth {
    display: flex;
    margin: 120px 0;
}

.growth-block p {
    font-weight: 400 !important;
    font-size: 18px;
}

.box-growth .inner {
    width: 500px;
    height: 200px;
    line-height: 200px;
    font-size: 3em;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    padding-top: 40px;
    border: 5px solid #1c1c1c;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.box-growth .inner:first-child {
    background-color: indianred;
    color: #ffffff;
    transform-origin: right;
    transform: perspective(900px) rotateY(0deg);
    line-height: 1 !important;
    background-image: url(../../images/screen-1.jpg);
    background-size: cover;

}

.box-growth .inner:last-child {
    background-color: lightcoral;
    color: #f8ff06;
    transform-origin: left;
    transform: perspective(900px) rotateY(-60deg);
    line-height: 1 !important;
    background-image: url(../../images/screen-2.jpg);
    background-size: cover
}

.box-growth .inner span {
    position: absolute;
    animation: marquee 8s linear infinite;
}

.box-growth .inner:first-child span {
    animation-delay: 4.0s;
    left: -100%;
}

@keyframes marquee {
    from {
        left: 100%;
    }

    to {
        left: -100%;
    }
}

.whyus-home::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: #000000;
    background: -webkit-linear-gradient(182deg, rgba(0, 0, 0, 0) 41%, rgba(255, 136, 136, 0.9) 100%);
    background: -moz-linear-gradient(182deg, rgba(0, 0, 0, 0) 41%, rgba(255, 136, 136, 0.9) 100%);
    background: linear-gradient(182deg, rgba(0, 0, 0, 0) 41%, rgba(255, 136, 136, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FF8888", GradientType=0);
    z-index: -1;
}

.heading-box.light-heading h2,
.heading-box.light-heading p {
    color: var(--background-color);
}

.blob-flower {
    width: 100%;
    height: 180px;
    background: var(--background-color);
    border-radius: 50% 70% 50% 60% / 60% 50% 70% 50%;
    animation: morph 4s infinite ease-in-out;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 70% 30% / 40% 70% 30% 60%;
    }

    50% {
        border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%;
    }

    100% {
        border-radius: 60% 40% 70% 30% / 40% 70% 30% 60%;
    }

}

.blob-flower-two {
    width: 100%;
    height: 180px;
    background: #322424;
    border-radius: 51% 66% 86% 60% / 64% 59% 53% 55%;
    animation: morphth 5s infinite ease-in-out;
    top: 9px;
    transform: rotate(-16deg);
}

@keyframes morphth {
    0% {
        border-radius: 51% 66% 86% 60% / 64% 59% 53% 55%;
    }

    50% {
        border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%;
    }

    100% {
        border-radius: 51% 66% 86% 60% / 64% 59% 53% 55%;
    }

}

.flower-text {
    position: absolute;
    top: 0;
    padding: 15px;
}

.flower-text img.tub-image-small {
    max-width: 80px;
    margin-left: auto;
    display: block;
    margin-right: 15px;
    margin-top: 4px;
    margin-bottom: 10px;
}

.flower-text p {
    color: #fff;
    text-align: center;
    padding: 0 10px;
}

.swiper.template-swiper {
    padding-bottom: 50px;
}

.swiper-pagination.modify-dots {
    bottom: 0;
    text-align: right;
}

.swiper-pagination.modify-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--background-color) !important;
    opacity: 1;
}

.swiper-pagination.modify-dots .swiper-pagination-bullet-active {
    width: 50px;
    height: 8px;
    border-radius: 3px;
}

.price-details {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #FD5D5E;
    background: -webkit-linear-gradient(180deg, #ff8d8d 0%, rgba(40, 40, 40, 0.9) 100%);
    background: -moz-linear-gradient(180deg,  #ff8d8d 0%, rgba(40, 40, 40, 0.9) 100%);
    background: linear-gradient(180deg,  #ff8d8d 0%, rgba(40, 40, 40, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FD5D5E", endColorstr="#282828", GradientType=0);
    text-align: center;
    padding-top: 15%;
    transition: all ease-in-out 0.3s 0s;
}

.image-price.position-relative {
    border-radius: 7px;
    overflow: hidden;
}

.image-price:hover .price-details {
    bottom: 0
}

.price-details h4,
.price-details p {
    color: #fff;
}

.price-details h4 {
    font-size: 20px;
    line-height: 1.8;
}

.price-details h4 span {
    font-size: 40px;
    font-weight: 500;
}

.price-details p {
    font-size: 20px;
}

a.btn.btn-white {
    padding: 0 !important;
    top: -28px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 100;
    text-align: left;
}

/* Why to Us reason */
img.reason-right {
    position: absolute;
    bottom: 0;
    right: 10px;
    max-width: 32vw;
    z-index: -1;
}

ul.list-unstyled.reasonto-list li {
    background: #fff;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.1);
    padding: 20px 80px 20px 20px;
    max-width: 470px;
    width: 49%;
    overflow: hidden;
    transition: all 0.36s ease-in-out 0s;
    margin-bottom: 30px;
}

ul.list-unstyled.reasonto-list li:hover {
    background: #ffb9ab00;
    background: -webkit-linear-gradient(130deg, #ffe1db 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(130deg, #ffe1db 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(130deg, #ffe1db 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
}

ul.list-unstyled.reasonto-list li h4,
p.small-header {
    font-size: 20px;
    color: var(--subheader-color);
    font-weight: 600;
}
p.small-header {
    font-family: var(--heading-font);
    margin-bottom: 5px;
}
ul.list-unstyled.reasonto-list li p {
    font-size: 15px;
    margin-bottom: 0;
}

ul.list-unstyled.reasonto-list li .reason-icon {
    position: absolute;
    right: 20px;
    font-size: 30px;
    bottom: 0;
    width: 70px;
    height: 75px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    text-align: center;
    color: #fff;
    background: #ffb9ab;
    background: -webkit-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
    color: var(--dark-icon-color);
    transition: all 0.36s ease-in-out 0s;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.list-unstyled.reasonto-list li:hover .reason-icon {
    right: -21px;
    font-size: 30px;
    background: #ffe6e6;
    bottom: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 16px solid #ffeeee;
}

ul.list-unstyled.reasonto-list li::after {
    width: 120px;
    height: 120px;
    background-color: #fff6f6;
    position: absolute;
    content: "";
    bottom: -26px;
    right: -26px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: all 0.36s ease-in-out 0s;
}

ul.list-unstyled.reasonto-list li:hover::after {
    opacity: 1;
}

.reason-text {
    max-width: 346px;
}

/* testimonial */
.testimonial-home {
    background: var(--light-background)
}

.testimonial-box {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.25);
    margin: 15px;
    border-radius: 6px;
    transition: all 0.36s ease-in-out 0s;
    min-height: 400px;
}

.wave-wrapper {
    position: absolute;
    width: 100%;
    right: 0;
    height: 100%;
    bottom: 0;
    display: flex;
    justify-content: end;
    align-items: end;
    opacity: 0.2;
}

.testimonial-box.position-relative>p {
    margin-bottom: 7vw;
}

.testimonial-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.profile-img {
    width: 72px;
    height: 72px;
    overflow: hidden;
    margin: 0 15px 25px 0;
    border-radius: 50%;
    min-width:72px;
}

.profile-name p {
    margin: 0;
    font-weight: 600;
}

.profile-name {
    margin-top: 12px;
}

p.pro-location {
    font-weight: 400;
    color: var(--dark-red);
}

.testimonial-box>p {
    font-size: 15px;
}

img.left-quote {
    position: absolute;
    top: 108px;
    left: 8px;
    opacity: 0.05;
    width: 60px;
}

img.right-quote {
    position: absolute;
    bottom: 80px;
    right: 110px;
    opacity: 0.05;
    width: 60px;
}

.swiper.testimonial-swiper .swiper-slide.swiper-slide-next {
    margin-top: -70px;
}

.swiper.testimonial-swiper .swiper-slide {
    transition: all 0.36s ease-in-out 0s;
    padding-top: 25px;
    padding-bottom: 30px;
}

.swiper.testimonial-swiper .swiper-slide.swiper-slide-next .wave-wrapper {
    opacity: 1;
}

.swiper-pagination.modify-dots.dots-testimonial {
    text-align: center;
}

.swiper-pagination.modify-dots.dots-testimonial span {
    background-color: var(--default-color) !important;
}

section.client-icon {
    background-color: #ffefec;
    padding: 25px 0px;
    border-top: 1px solid #ffd0d3;
}

.client-icon img {
    max-width: 100px;
    margin: auto;
    display: block;
    filter: grayscale(100%);
}

section.client-icon:hover .client-icon img {
    filter: grayscale(0%);
    transition: 0.3s ease;
}

/* Contact Block */
.contact-topblock {
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.09);
    padding: 30px 0;
}

.contact-icon {
    background: transparent;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    color: var(--dark-icon-color);
    min-width: 48px;
}

.contact-icon::after {
    background: #ffb9ab;
    background: -webkit-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    border-radius: 5px;
    transition: all 0.36s ease-in-out 0s;

}

.contact-topblock:hover .contact-icon::after {
    transform: rotate(45deg);
}

.contact-details p a {
    color: var(--heading-para);
    font-size: 14px;
    font-family: var(--default-font);
    font-weight: 400;
}

.footer {
    background-color: var(--heading-para);
    padding: 70px 0 0 0;
}

p.about-text {
    font-size: 14px;
    color: #ffcdcd;
    margin-top: 20px;
    padding-right: 60px;
}

.usefull-link {
    margin-top: 25px;
}

.usefull-link h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.usefull-link ul li a {
    color: #ffd7d7;
}

.usefull-link ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.usefull-link ul li {
    width: 50%;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: var(--top-header);
    margin-top: 40px;
    padding: 15px 0;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 400;
}

a#scroll-top {
    position: fixed;
    bottom: 15px;
    background: var(--dark-red);
    right: 15px;
    z-index: 1010;
    font-size: 30px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--background-color);
    visibility: hidden;
    opacity: 0;
}

.scroll-top.active {
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-form .form-control {
    border-radius: 0;
    padding: 6px 15px;
    font-size: 14px;
}

.submit-control {
    border-radius: 5px !important;
    background-color: var(--default-color) !important;
    color: var(--background-color) !important;
    border-color: var(--default-color);
    padding: 6px 0 !important;
}
.footer-form .wpcf7-form p{
    margin-bottom: 5px !important;
}
.usefull-link h3,
.usefull-link ul li a {
    position: relative;
}

.usefull-link h3::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 4px;
    bottom: -10px;
    left: 0;
    background-color: var(--default-color);
    border-radius: 3px;
}

.usefull-link ul li a::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-color: var(--default-color);
    transition: all 0.3s ease-in-out 0s;
}

.usefull-link ul li a:hover::after {
    width: 100px;
}

/* Humbergar Munu */
.mobile-nav-icon {
    position: fixed;
    top: 15px;
    right: 15px;
    display: none;
    z-index: 1200;
}

.hamburger .line {
    width: 30px;
    height: 4px;
    background-color: #ecf0f1;
    display: block;
    margin: 3px auto;
   
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-2px) rotate(90deg);
    -ms-transform: translateY(-2px) rotate(90deg);
    -o-transform: translateY(-2px) rotate(90deg);
    transform: translateY(-2px) rotate(90deg);
}

/* -----------------ABout Us Page STyle---------- */
.inner-header-gap {
    padding-top: 80px;
}

.banner-image.about-banner {
    padding-top: 3vw;
}

.banner-image.about-banner .business-man-right {
    position: absolute;
    top: 1vw;
    right: 9vw;
}
.business-man-right img {
    max-width: 550px;
    width: 100%;
}
.grow-about-text {
    position: absolute;
    right: 8vw;
    bottom: -17px;
    font-size: 130px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    z-index: 10;
}

.grow-about-duplicate {
    position: absolute;
    right: 8.4vw;
    bottom: -35px;
    font-size: 130px;
    line-height: 1;
    font-weight: 700;
    color: #797979;
    transform: skewX(14deg) scaleY(0.6);
    filter: blur(0px);
    z-index: 5;
    letter-spacing: 0;
}

.grow-about-duplicate span,
.grow-about-text span {
    font-size: 86px;
    margin-right: 30px;
}

.focus-left-image {
    border: 15px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    width: 34vw;
    max-width: 550px;
    transition: all 0.3s ease-in-out 0s;
}

img.focus-two-img {
    position: absolute;
    bottom: 14%;
    right: 0;
    border: 10px solid #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.focus-light-block:hover .focus-left-image {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.focus-light-block:hover img.focus-two-img {
    bottom: 16%;
    right: 15%;
}

.icon-focus.d-flex .icon-f {
    margin-right: 25px;
    width: 90px;
    height: 90px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
    z-index: 10;
}

.icon-focus.d-flex .icon-f img {
    width: 60px;
    position: relative;
}

.icon-focus.d-flex {
    margin-bottom: 30px;
}

.focud-content {
    margin-bottom: 50px;
}

.icon-focus.d-flex .icon-f::after {
    background: #FFF2F0;
    background: -webkit-linear-gradient(309deg, rgba(255, 242, 240, 1) 0%, rgba(255, 188, 177, 1) 100%);
    background: -moz-linear-gradient(309deg, rgba(255, 242, 240, 1) 0%, rgba(255, 188, 177, 1) 100%);
    background: linear-gradient(309deg, rgba(255, 242, 240, 1) 0%, rgba(255, 188, 177, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF2F0", endColorstr="#FFBCB1", GradientType=0);
    position: absolute;
    top: 10px;
    left: 10px;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.focud-content:hover .icon-f::after {
    top: -10px;
}

.icon-focus.d-flex .icon-f::before {
    background: #ffb9ab;
    background: -webkit-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.about-bg-one {
    background-image: url(../../images/about-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.etablish_box img {
    max-width: 70px;
}

.etablish_box {
    width: 180px;
    height: 180px;
    border: 1px solid #fff;
    position: relative;
    padding: 13px;
    transition: all 0.3s ease-in-out 0s;
}

.about-etablish ul {
    max-width: 550px;
    margin-left: auto;
}

p.etabl-text span {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    font-family: var(--heading-font);
    display: block;
}

p.etabl-text {
    margin: 10px 0 0 0;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
}

.about-etablish ul li:nth-child(2),
.about-etablish ul li:nth-child(3),
.about-etablish ul li:nth-child(5) {
    margin-left: -1px;
}

.about-etablish ul li:nth-child(4),
.about-etablish ul li:nth-child(5) {
    margin-top: -1px;
}

.about-etablish ul li:nth-child(5) .etablish_box::after {
    display: none;
}

.about-etablish ul li:last-child .etablish_box {
    width: 360px;
}

.about-etablish ul li .etablish_box::after {
    width: 50px;
    height: 50px;
    background-color: var(--background-color);
    content: "";
    top: -1px;
    right: -1px;
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    transition: all 0.3s ease-in-out 0s;
    z-index: -3;
}

.about-etablish ul li .etablish_box::before {
    background-color: #ff755d9c;
    width: 0%;
    height: 0%;
    content: "";
    top: 2%;
    left: 2%;
    position: absolute;
    z-index: -1;
    margin: auto;
    transition: all 0.3s ease-in-out 0s;
}

.about-etablish ul li:hover .etablish_box::before {
    width: 97%;
    height: 96%;
}

.etbls-icon {
    min-height: 74px;
}

.about-etablish ul li .etablish_box:hover::after {
    width: 60px;
    height: 170px;
}

p.text-establish {
    background: #fff;
    height: 100%;
    padding: 10px;
    position: relative;
    z-index: 1;
    font-family: var(--heading-font);
    font-weight: 500;
}

img.wall-logo {
    position: absolute;
    left: 36px;
    top: 70px;
    width: 300px;
}

.process-icon img {
    max-width: 54px;
    position: relative;
    z-index: 10;
}
.work-process{
    margin-bottom: 70px;
}

.work-process .process-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    z-index: 5;
    margin-right: 30px;
}

.work-process .process-icon::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #ffb9ab;
    background: -webkit-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
    z-index: -2;
    border-radius: 10px;
    opacity: 0.4;
}

.work-process .process-icon::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #ffb9ab;
    background: -webkit-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: -moz-linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    background: linear-gradient(190deg, rgba(255, 185, 171, 1) 0%, rgba(255, 243, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFB9AB", endColorstr="#FFF3F0", GradientType=0);
    z-index: -1;
    border-radius: 10px;
    transform: rotate(60deg);
    transition: all 0.3s ease-in-out 0s;
}
.work-process:hover .process-icon::before {
     transform: rotate(360deg);
}
.why-we-img::after{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffd3d4;
    content: "";
    top: -30px;
    left: -30px;
    z-index: -1;
}

.why-we-img {
    margin-left: 30px;
}




.technology-use{
background: #fff7f7;
background: -webkit-linear-gradient(133deg, rgba(255, 247, 247, 1) 24%, rgba(255, 231, 231, 1) 54%, rgba(255, 240, 240, 1) 87%);
background: -moz-linear-gradient(133deg, rgba(255, 247, 247, 1) 24%, rgba(255, 231, 231, 1) 54%, rgba(255, 240, 240, 1) 87%);
background: linear-gradient(133deg, rgba(255, 247, 247, 1) 24%, rgba(255, 231, 231, 1) 54%, rgba(255, 240, 240, 1) 87%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF7F7", endColorstr="#FFF0F0", GradientType=0);
}
.techno-left ul li {
    display: flex;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
    transition: all ease-in-out 0.3s 0s;
    margin-bottom: 35px;
        max-width: 590px;
}
.techno-left ul li:hover{
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);  
}
.techno-icon {
    width: 120px;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFBCBC;
background: -webkit-linear-gradient(133deg, rgba(255, 188, 188, 1) 0%, rgba(255, 242, 242, 1) 100%);
background: -moz-linear-gradient(133deg, rgba(255, 188, 188, 1) 0%, rgba(255, 242, 242, 1) 100%);
background: linear-gradient(133deg, rgba(255, 188, 188, 1) 0%, rgba(255, 242, 242, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFBCBC", endColorstr="#FFF2F2", GradientType=0);;
}
.techno-icon img {
    width: 60px;
}
.techno-text {
    padding: 15px 20px;
}
.techno-right {
    position: relative;
}
.techno-left{
    position: relative;
}
.techno-left::after{
position: absolute;
width: 5px;
height: 100%;
background-color: #fff;
content: "";
right: 0;
top: 0;
border-radius: 30px;
}
.technology-name {
    background: #ffefef;
    padding: 15px;
}

.technology-name ul {
    display: flex;
    flex-wrap: wrap;
}

.technology-name ul li {
    padding: 6px 12px;
    background: #fff;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333333;
    border-radius: 3px;
}

/* SERVICE PAGE */
.banner-image.service-banner img{
    width: 100%;
    max-width: 75vw;
    display: block;
    margin-left: auto;
}
.service-bg-one{
        background-image: url(../../images/service-bg-one.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.provide-service {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 0px;
  max-width: 100%;
}

.provide-service .flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.provide-service .flip-box-front,
.provide-service .flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 250px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.provide-service .flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.provide-service .flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.provide-service .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.provide-service .flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.provide-service .flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 15px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.provide-service .flip-box-header {
  font-size: 28px;
  color: var(--default-color);
}
/* .flip-box-back{
    background-color: #6e0202;
} */
.provide-service .flip-box p {
  font-size: 18px;
  line-height: 1.5em;
  color: var(--dark-icon-color);
  font-weight: 500;
}
.flip-box-back .inner p {
  color: var(--background-color);
   font-size: 18px;
}

.provide-service .flip-box-img {
  margin-top: 25px;
}
.service-we-provide {
    max-width: 928px;
}
.service-we-provide ul li{
    width: 33%;
}
.service-we-provide ul li {
    width: 33%;
    padding: 5px;
}
.inner-image img {
    max-width: 60px;
    margin-bottom: 20px;
}
.why-box-text .choose-text{
        width: calc(50% - 30px);;
    transition: all 0.3s ease-in-out 0s;
    max-width: 600px;
}
.why-box-text .choose-text:hover{
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.09);
}
.why-box-text .choose-text::after{
    background-color: var(--default-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
}
.why-box-text .choose-text::before{
    background-color: var(--default-color);
    position: absolute;
    top: 18px;
    left: 0;
    width: 20px;
    height: 25px;
    content: "";
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.why-box-text {display: flex;flex-wrap: wrap;justify-content: space-between;}
.enquery-service {
    display: flex;
    margin: 40px auto;
    align-items: center;
}

.enquery-service .enqury-img {
    width: 50%;
}

.enquery-service .enquery-form {
    width: 50%;
    padding: 20px;
        max-width: 480px;
    margin: auto;
}
.service-form .form-control{
    border-radius: 3px;
    border-color: #c5c5c5;
        background: transparent;
        color: #fff;
}
.service-form  input[type=submit]{
background-color: var(--default-color);
border-radius: 30px;
color: var(--heading-para);
padding: 10px 0;
max-width: 200px;
}
.service-bg-two{
   background-image: url(../../images/service-bg-two.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.service-section.bg-white.p-4.position-relative {
    min-height: 300px;
}
.position-absolute.serv-icon {
    bottom: 20px;
}
.enquery-service{
    background-color: var(--heading-para);
}
.service-form .form-control::-webkit-input-placeholder, .form-control[type=file]:not(:disabled):not([readonly]){
 color: #ffffff;
}
.service-form .form-control::-moz-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 19+ */
 color: #ffffff;
}
.service-form .form-control:-ms-input-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* IE 10+ */
 color: #ffffff;
}
.service-form .form-control:-moz-placeholder, .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 18- */
 color: #ffffff;
}

/* PACKAGE Page */
.banner-image.package-banner .business-man-right {
    position: absolute;
    top: 1vw;
    right: 9vw;
}
span.qulity-image {
    display: inline-block !important;
    position: relative;
    top: -12px;
    width: 50px;
    height: auto;
}

span.qulity-image img {
    width: 100%;
}
.custom-service .focus-box::after{
   box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
   background-color: #7979790e;
}
.custom-service .focus-box:hover {
    box-shadow: none;
    margin-top: 15px !important;
}
.custom-service .package-text .focus-text h4{
    color: var(--heading-color);
        font-size: 18px;
    font-weight: 600;
}
.custom-service .package-text .package-icon img{
max-width: 72px;
}
.custom-service .package-text .focus-text p.price-tag {
    color: var(--heading-para);
    font-size: 18px !important;
    margin-top: 15px;
    font-weight: 600;
}
.package-bg-one{
        background-image: url(../../images/package-bg-one.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.work-process.package-info .process-icon{
width: 80px;
height: 80px;
min-width: 80px;
}
.work-process.package-info .process-icon img{
    max-width: 48px;
}
.work-process.package-info p{
    font-size: 16px;
    line-height: 1.7;
}
.work-process.package-info{
    padding: 20px;
    background-color: #0000003f;
    box-shadow: 0 8px 15px rgba(0,0,0,0.05); 
    transition: all 0.3s ease-in-out 0s;
    margin-bottom: 0;
}
.work-process.package-info:hover{
    background-color: #00000093;
     box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
}
span.bottom-icon {
    font-size: 24px;
    margin-left: 20px;
}
.arrow-btn{
    padding: 5px 15px;
    display: flex;
    align-items: center;
}
.package-details {
    min-height: 800px;
    max-width: 360px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 22px 70px rgba(0, 0, 0, 0.12);
    padding:30px 20px;
    margin: auto;
     z-index: 1;
     transition: all 0.3s ease-in-out 0s;
}
.package-details:hover{
     box-shadow: 0px 6px 13px rgba(0, 0, 0, 0.20);
    }
img.package-top {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    left: 0;
}
img.package-bottom {
    position: absolute;
   bottom: 0;
    z-index: -1;
    width: 100%;
    left: 0;
}
.package-details .package-header h3{
    color: #fff;
    font-size: 22px;
}
.package-details .package-header p{
    color: var(--heading-para);
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.package-header {
    margin-bottom: 6vw;
    margin-top: 1vw;
}
.package-details ul li {
    margin-bottom: 15px;
}
.package-details ul {
    margin-left: 10px;
    margin-bottom: 70px;
}
span.t-cond {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 15px;
    color: var(--dark-icon-color);
}


.modal-form .form-control::-webkit-input-placeholder, .modal-form .form-control[type=file]:not(:disabled):not([readonly]){
 color: var(--heading-para);
}
.modal-form .form-control::-moz-placeholder, .modal-form .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 19+ */
 color:var(--heading-para);
}
.modal-form .form-control:-ms-input-placeholder, .modal-form .form-control[type=file]:not(:disabled):not([readonly]) { /* IE 10+ */
 color: var(--heading-para);
}
.modal-form .form-control:-moz-placeholder, .modal-form .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 18- */
 color:var(--heading-para);
}
.modal-content.modal-packages-fm {
    padding: 25px;
    border-radius: 0;
}
.enquery-form.modal-form .service-form input[type=submit] {
    max-width: 100%;
}
.modal-close-btn {
    position: absolute;
    background: #ffb8b8;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.package-block{
    background-color: var(--light-background);
}
.pk-choose-mg{
    margin-left: 30px;
    margin-top: 30px;
}
.pk-choose-mg::after{
    width: 100%;
    height: 100%;
    background-color: #ffd5d5;
    position: absolute;
    content: "";
    left: -30px;
    top: -30px;
    z-index: -1;   
    transition: all 0.3s ease-in-out 0s;
}
.pk-choose-mg:hover:after{
    left: 30px;
    top: 30px; 
}
.choose-box {
    max-width: 600px;
    margin-left: auto;
}
.choose-box .accordion-button {
    background: #ff7575;
    color: #fff;
    font-size: 18px;
    font-family: var(--default-font);
    border-radius: 7px !important;
    font-weight: 500;
   height: 64px;
}
.choose-box .accordion-item {
    border: 0 !important;
        background-color: #fff7f7;
    margin-bottom: 15px;
}
.choose-box .accordion-body {
    font-size: 16px;
}
.choose-box .accordion-button span {
    font-size: 12px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

/* Portfolio Page */
.portfolio-banner picture img {
    max-width: 900px;
    margin-left: auto;
    display: block;
    padding-top: 5vw;
}
.banner-image.position-relative.portfolio-banner{
    background: #fff5f5;
background: -webkit-linear-gradient(90deg, rgba(255, 245, 245, 1) 0%, rgba(255, 219, 219, 1) 100%);
background: -moz-linear-gradient(90deg, rgba(255, 245, 245, 1) 0%, rgba(255, 219, 219, 1) 100%);
background: linear-gradient(90deg, rgba(255, 245, 245, 1) 0%, rgba(255, 219, 219, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFF5F5", endColorstr="#FFDBDB", GradientType=1);
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--heading-para);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0.9;
}
.portfolio-overlay small {
       font-size: 18px;
    margin-bottom: 30px;
    display: block;
    color: var(--default-color) !important;
}
.portfolio-item .btn {
      position: absolute;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:var(--heading-color);
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
    font-size: 36px;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}
ul#portfolio-flters li.active {
    background:var(--default-color) !important;
    color: #fff !important;
    border-color: var(--default-color);
}
ul#portfolio-flters li {
   min-width: 150px;
}
.portfolio-back{
        background-image: url(../../images/portfolio-back.jpg);
        background-repeat: no-repeat;
        background-size: cover;
}
.categories-box {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    position: relative;
}
/* .filter-icon {
    position: absolute;
    font-size: 22px;
    color: #ffffff;
    top: 20px;
    right: 29px;
    background: #f55;
    width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 3px;
    padding-top: 3px;
    display: none;
} */
.template-select ul{
    gap: 20px;
    padding: 0;
}
.categories-box h3 {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 15px;
    color: var(--heading-para);
}
#categoryFilters li{
    margin-right: 20px;
    margin-bottom: 15px;
    min-width: 18%;
}
#categoryFilters li .form-check-input {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border-color: var(--list-color);
   
}
.form-check-input:checked[type=checkbox]{
 background-image: url(../../images/icons/white-double-tick.png);
 background-repeat: no-repeat;
}
.form-check-input:checked {
    background-color:var(--list-color);
    border-color: var(--list-color)
}
#categoryFilters li label {
    display: inline-block;
   line-height: 1.6;
    margin-left: 5px;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}
.template-select ul li {
    width: 22.5%;
    background: var(--light-background);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
   
}
.template-box h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    background: #fff;
    padding: 15px;
    margin-top: 22px;
}
.price-details a {
    background: #fff;
    margin: 15px 0;
    padding: 8px 18px;
    display: inline-block;
    border-radius: 30px;
    color: #000;
}
.position-absolute.banner-content.inner-banner-content.w-100.privicy-banner {
    top: 6vw;
}
.pryvacy-content p strong{
    font-size: 24px;
    margin-top: 44px !important;
    display: block;
    color: #000;
}
.pryvacy-content p {
    font-size: 16px;
    color: #575757;
}
.pryvacy-content h2 {
    font-size: 24px;
    margin-top: 44px !important;
    display: block;
    color: #ee8b8b;
}
.banner-image.contact-banner picture img{
    max-width: 50vw;
    margin-left: auto;
    display: block;
}
.banner-image.contact-banner::after{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
background: #ffdede;
background: -webkit-linear-gradient(90deg, rgba(255, 222, 222, 1) 0%, rgba(255, 255, 255, 1) 28%);
background: -moz-linear-gradient(90deg, rgba(255, 222, 222, 1) 0%, rgba(255, 255, 255, 1) 28%);
background: linear-gradient(90deg, rgba(255, 222, 222, 1) 0%, rgba(255, 255, 255, 1) 28%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFDEDE", endColorstr="#FFFFFF", GradientType=1);
z-index: -1;
}
.banner-image.contact-banner .banner-content{
    top: 6vw;
}
.process-icon .bi{
    font-size: 32px;
    color: var(--dark-icon-color);
}
.contact-details .work-process{
    background-color: #ffffff42;
    border-radius: 10px;
}
.contact-details .work-process h4 {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid;
    font-family: var(--default-font);
}
.social-link a{
    font-size: 28px;
    margin-right: 15px;
    color:#fff;
}
.contact-details .work-process p{
    font-size: 14px;
    color: #ffffff;
}
.contact-form-area {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    height: 100%;
}
.contact-form-area h3{
    font-weight: 500;
    font-size: 20px;
    font-family: var(--heading-color);
}
.contact-form {
    padding: 25px;
    background: #f5f5f5;
    margin-top: 30px;
}
.contact-form input[type=submit] {
    background-color: var(--default-color);
    color: var(--background-color);
    padding: 10px 0;
     border-color:var(--default-color);
     text-transform: uppercase;
     font-size: 18px;
}
.contact-form .form-control{
   height: 50px;
    border-radius: 3px;
    border-color: #8c8c8c;
    background: transparent;
}
.footer-form .form-control{
   border-radius: 3px;
    border-color: #8c8c8c;
    background: transparent;  
    color: #8c8c8c;
}
.contact-form textarea.form-control{
    height: auto;
}
.contact-form input[type=file] {
  margin-left: -2px !important;
  height: 50px;
}

.contact-form input[type=file]::-webkit-file-upload-button {
 height: 50px;
}

.contact-form .form-control::-webkit-input-placeholder, .contact-form .form-control[type=file]:not(:disabled):not([readonly]){
 color: #444444;
}
.contact-form .form-control::-moz-placeholder, .contact-form  .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 19+ */
 color: #444;
}
.contact-form .form-control:-ms-input-placeholder,  .contact-form .form-control[type=file]:not(:disabled):not([readonly]) { /* IE 10+ */
 color: #444;
}
.contact-form .form-control:-moz-placeholder,  .contact-form .form-control[type=file]:not(:disabled):not([readonly]) { /* Firefox 18- */
 color: #444;
}
.communication {
    position: relative;
    margin-left: -100px;
    background:#f88379;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}
.communication p {
    color:var(--light-background);
    font-size: 22px;
    line-height: 1.8 ;
    font-weight: 400;
}
.communication p strong{
    color: var(--heading-para);
}
.modal-form .form-control{
    border-radius: 0 !important;
    font-size: 14px;
}
.protfolio-box {
    max-height: 430px;
}
ul#portfolio-filters {
    background: #fff;
    display: block;
}

ul#portfolio-filters li.active {
    background-color:var(--default-color);
    color: #fff;
}

ul#portfolio-filters li {
    padding: 10px  15px !important;
    margin: 0 !important;
     border-radius: 0;
}
.banner-overlap-content {
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}
p.template-description {
    font-size: 18px;
    line-height: 1.6;
}
.banner-overlap-content h3 {
    font-size: 60px !important;
    color: #fff;
    line-height: 1;
}

.banner-overlap-content h3 strong {
    color: var(--heading-color);
    font-size: 80px;
    font-weight: 800;
}
p.price-tag {
    color: #fff;
    font-size: 38px;
    margin-top: 25px;
    font-weight: 700;
}
p.price-tag strong{
    font-size:26px;
    font-weight: 500;
}
.feature-box{
    background-color: var(--light-background);
    padding: 15px;
}
.feature-box p{
    background-color: var(--heading-para);
    color:#fff;
    padding: 7px 15px;
    font-size: 18px;
}
.feature-box ul li{
    margin-bottom: 10px;
}
.dynamic-feature p{
background-color: var(--dark-icon-color);
color: var(--heading-para);
}
.feature-box ul li span {
    margin-right: 3px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    position: relative;
    top: 3px;
}
a.btn.btn-preview-live {
    width: 100%;
    background: var(--default-color);
    max-width: 400px;
    margin: auto;
    display: block;
    color: var(--heading-para);
    padding: 13px;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; 
    transition: all 0.2s ease-in-out 0s;
}
a.btn.btn-preview-live span{
    position: relative;
    z-index: 10;
}
a.btn.btn-preview-live::after{
   content: "";
    position: absolute;
width: 100%;
    height: 200px;
    background-color: var(--heading-para);
    top: -67px;
    left: -120%;
    border-radius: 67%;
    opacity: 0;
    transition: all 0.2s ease-in-out 0s;
}
a.btn.btn-preview-live:hover{
    color: #fff;
}
a.btn.btn-preview-live:hover::after{
   opacity: 1;
   left: -20%;
   z-index: 2;
}

.charge-icon {
    width: 150px;
    background: #fff;
    height: 150px;
    padding: 20px;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.charges-box {
    max-width: 350px;
    margin: auto;
    text-align: center;
    background: #ffbfba;
    padding: 30px 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 15px;
}

.charges-box p {
    min-height: 50px;
}


    .owl-image {
       width: 150px;
    position: absolute;
    top: -205px;
    z-index: 10;
    left: 0;
    right: 0;
    margin: auto;
    }

    .owl-face {
        position: absolute;
        top: -11px;
        width: 153px;
        right: -2px;
    }

    .owl-face img {
        width: 100%;
        display: block;
        animation: headTilt 3s infinite;
        transform-origin: center center;
    }

    .owl {
        display: flex;
        justify-content: center;
        gap: 30px;
        position: absolute;
        top: 52px;
        z-index: 10101;
        width: 126px;
        left: 17px;
        animation: headTilt 3s infinite;
    }

    .eye {
        width: 42px;
        height: 60px;
        border-radius: 39% 30% 34% 30%;
        position: relative;
        overflow: hidden;
    }

    .pupil {
        width: 22px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        top: 0px;
        left: 6px;
        transition: transform 0.05s linear;
    }

    .pupil img {
        width: 22px;
    }

    /* Tilt animation */
    @keyframes headTilt {
        0% {
            transform: rotate(0deg);
        }

        /* Center */
        20% {
            transform: rotate(-5deg);
        }

        /* Tilt left */
        40% {
            transform: rotate(0deg);
        }

        /* Back to center */
        60% {
            transform: rotate(5deg);
        }

        /* Tilt right */
        80% {
            transform: rotate(0deg);
        }

        /* Back to center */
        100% {
            transform: rotate(0deg);
        }

        /* End at center */
    }

    .btn-close.position-absolute {
        opacity: 1;
        top: -10px;
        right: -13px;
        background-color: #dd6b6b;
        border-radius: 50%;
        padding: 14px;
    }
    .modify-modal-width{
        max-width: 960px;
        margin-top: 260px;
    }
#welcomeModal .modal-content .modal-body p{
    font-size: 20px;
    line-height: 1.6;
}

p.thankyou {
    font-size: 28px !important;
    font-weight: 700;
    color: #000;
}