/*------------------------------------------------------------------
Project:Pro Grow
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.index.html
    1.Default css
    2.Header section 
    3.Footer section 
2.About.html 
    1.Default css
    2.Header section 
    3.Footer section
3.Resume.html
    1.education
    2.coding skill
    3.design skill
    4.award skill 
4.services.html
    1.experience 
    2.popups
    3.testimonials 
5.portfolio.html 
    1.portfolio
    2.loadmore 
6.pricing.html 
    1.blogs section 
7.Blogs.html
8.Contact.html
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:
Content:#FFF
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    cursor: none;
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-family: "Unbounded", serif;
    font-family: "IBM Plex Sans", serif;
    font-family: "Archivo Black", serif;
    height: 100%;
    background-color: #BFB9AE;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
    border-radius: 20px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
.container {
    width: 1290px;
    margin: auto;
    padding: 0;
}
.animate-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all ease-in-out;
}
.animate-section-very {
    opacity: 0;
    transform: translateY(60px);
    transition: all ease-in-out;
}
/*------------ Loader --------------*/
.loader-mask {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    background-color: #BFB9AE;
    z-index: 99999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader::before,
.loader::after {
    position: absolute;
    content: "";
    height: 8em;
    width: 8em;
    border: 1em solid #351A01;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #351A01;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #351A01;
        transform: scale(1);
        opacity: 0;
    }
}
/*--------------- cursor --------------*/
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 99999;
    pointer-events: none;
}
.cursor div {
    position: absolute;
    display: grid;
    place-items: center;
}
.cursor div div {
    border: 1px solid #351A01;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #351a0183;
}
.cursor div:nth-child(1),
.cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
}
.cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
}
.cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
}
.cursor div:nth-child(2) div {
    background: #351A01;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}
/* -------------------[ Header section ]----------------- */
#header-main.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding-bottom: 20px;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(12.5px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: none;
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
}
@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
.header {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}
.header .logo {
    z-index: 999;
}
.header .logo img {
    width: 100%;
}
.download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background-color: #351A01;
    border-radius: 30px;
}
.download .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #351A01;
    overflow: hidden;
    border-radius: 30px;
}
.images-down {
    background-color: #F4EEE4;
    height: 48px;
    width: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.download-nav:hover .down-ander p {
    color: #351A01;
}
.download:hover .down-ander p {
    color: #351A01;
    transition: all .55s;
}
.down-ander p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #FFFFFF;
    padding-right: 25px;
    z-index: 1;
    transition: all .55s;
}
.down-ander::after {
    content: "";
    position: absolute;
    background-color: #F4EEE4;
    width: 21%;
    height: 100%;
    border-radius: 30px;
    z-index: 0;
    left: 0;
    transition: all .55s;
}
.download:hover .down-ander::after {
    transition: all .55s;
    width: 100%;
}
.main-header-menu {
    display: none;
}
.download-nav {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background-color: #000;
    border-radius: 30px;
}
.download-nav .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.download-nav:hover .down-ander::after {
    transition: all .55s;
    width: 100%;
}
.menu-option, .close-menu {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
}
.menu-icon {
    position: relative;
    display: none;
}
.close-menu {
    display: none;
}
.menu-option {
    display: none;
}
/* -------------------[ Hero section ]----------------- */
.main-hero {
    position: relative;
    width: 100%;
    border-radius: 48px;
    border: 4px solid #121212;
    height: 100%;
    background-color: #F4EEE4;
    width: 100%;
    padding: 60px;
    margin-top: 40px;
    max-height: 695px;
    overflow: hidden;
    scrollbar-width: none;
}
.main-menu {
    position: relative;
}
.main-padding {
    padding: 60px;
}
.tabs-ul {
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 1;
}
.tabs-ul {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.tabs-li {
    background-color: #121212;
    border: 4px solid #121212;
    border-radius: 30px;
    display: flex;
    align-items: start;
    justify-content: start;
    width: 56px;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
}
.list-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    gap: 15px;
}
.imag-list {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 50%;
}
.list-link .name-tab {
    font-weight: 500;
    font-family: "Unbounded", serif;
    font-size: 16px;
    color: #FFFFFF;
    display: none;
    transition: all 0.35s ease-in-out;
}
.tabs-li:hover .name-tab {
    display: block;
    transition: all 0.35s ease-in-out;
    color: #FFFFFF;
}
.tabs-li:hover {
    width: 180px;
    transition: all 0.35s ease-in-out;
}
.tabs-li.active {
    width: 180px;
}
.tabs-li.active .name-tab {
    display: block;
}
.index-title {
    font-size: 64px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    letter-spacing: 4px;
    color: #351A01;
    text-transform: uppercase;
    text-align: center;
}
.lawyer-name {
    font-size: 96px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    color: #351A01;
    max-width: 570px;
}
.type-wrap {
    font-size: 20px;
    font-weight: 400;
    font-family: "Unbounded", serif;
    color: #505050;
    margin-top: 10px;
}
.typed {
    color: #351A01;
}
.index-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #505050;
    max-width: 300px;
}
.index-desc-first {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #505050;
    max-width: 100%;
    display: none;
}
.mega-hirsd .download {
    display: none;
}
.right-design {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100%;
    margin-bottom: 100px;
}
.hire-design {
    bottom: 60px;
    position: absolute;
    right: 60px;
}
.image-lawyer {
    width: 100%;
    height: auto;
}
.data-setle {
    position: relative;
}
.main-mega-text {
    /* text-align: center; */
    font-family: "Unbounded", serif;
    font-size: 220px;
    line-height: 220px;
    letter-spacing: 4px;
    font-weight: 700;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    background: -webkit-linear-gradient(-90deg,
            #ffffff 0%,
            #f4eee4 100%);
    ;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
    color: #F4EEE4;
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
}
.left-design {
    margin-bottom: 85px;
}
.image-lawyer img {
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-10px);
    }
    100% {
        transform: translatey(0px);
    }
}
/*----------------------- [ Footer section ] -----------------------*/
.footer {
    padding: 25px 0;
}
.contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.copy-right {
    color: #FFFFFF;
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
}
.copy-right a {
    color: #351A01;
    font-family: "IBM Plex Sans", serif;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social-design {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    transition: all ease-in-out .35s;
}
.social-design:hover {
    background-color: #351A01;
    border-color: #351A01;
    transition: all ease-in-out .35s;
}
/* --------------------------------- background Animation ---------------------------- */
#canvas {
    position: fixed;
    top: 0px;
    z-index: -1;
    height: 100vh;
}
/* --------------------------------- About.html ---------------------------- */
.about-law {
    row-gap: 25px;
}
.title-section {
    font-size: 48px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #351A01;
}
.section-descr {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 26px;
    color: #505050;
    margin-top: 15px;
}
.design-activity {
    margin: 30px 0;
    row-gap: 20px;
}
.lawyer-ul {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    flex-direction: column;
}
.lawyer-li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.lawyer-clasd {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #505050;
    line-height: 32px;
}
.button-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    background-color: #351A01;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all .3s;
}
.button-about img {
    transform: rotate(-45deg);
    transition: all .3s;
}
.button-about:hover img {
    transform: rotate(0deg);
    transition: all .3s;
}
.button-about:hover {
    background-color: #000;
    transition: all .3s;
}
.images-area {
    align-items: end;
    justify-content: end;
    height: 100%;
}
.image-list-1 {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}
.image-list-1 img {
    width: 100%;
    object-fit: cover;
}
.images-area {
    row-gap: 20px;
}
.data-lable {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.exper-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #351A01;
    padding: 20px;
    border-radius: 20px;
}
.mega-counter {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 44px;
    color: #FFF;
}
.mega-name {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #FFF;
    text-align: center;
}
/* --------------------------------- Resume.html ---------------------------- */
.mega-hero {
    overflow: auto;
}
.lawyer-resume {
    row-gap: 30px;
}
.section-heading-text {
    font-size: 48px;
    font-weight: 500;
    line-height: 64px;
    font-family: "Unbounded", serif;
    color: #351A01;
    margin-bottom: 20px;
}
.section-length {
    font-size: 18px;
    font-weight: 400;
    color: #505050;
    line-height: 30px;
    font-family: "IBM Plex Sans", serif;
}
.education {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}
.education::before {
    content: "";
    border-left: 2px solid #505050;
    position: absolute;
    top: 0;
    left: 11px;
    bottom: 0;
    z-index: -1;
}
.small_yellow_border {
    border: 2px solid #505050;
    border-radius: 100%;
    padding: 5px;
    background-color: #F4EEE4;
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #351A01;
}
.small_yellow_border_main {
    padding-left: 20px;
}
.bachelor {
    color: #351A01;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 10px;
    font-family: "Unbounded", serif;
}
.cursus {
    color: #505050;
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 15px;
}
.desc-resume {
    color: #505050;
    font-size: 16px;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    margin: 0;
    transition: all 0.3s;
}
.main-hero-frelance {
    overflow: auto;
}
.small_yellow_border_main:hover .bachelor {
    color: #505050;
    transition: all 0.3s;
}
.skill-set {
    padding-top: 60px;
}
.data-text {
    padding-top: 80px;
}
#progress {
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 60px;
}
.progress-item {
    width: 146px;
    height: 146px;
    display: flex;
    font-size: 0;
    border-radius: 50%;
    animation: .4s ease-out reverse;
    position: relative;
}
.progress-item::after {
    content: attr(data-value);
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    margin: 8px;
    border-radius: 50%;
    background: #F4EEE4;
    color: #351A01;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    font-family: "Unbounded", serif;
}
.progress-item::before {
    content: "HTML,CSS";
    position: absolute;
    text-align: center;
    color: #000;
    bottom: 0;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
}
.progress-item.item-2::before {
    content: "Workout";
}
.progress-item.item-3::before {
    content: "Strength";
}
.progress-item.item-4::before {
    content: "Fitness";
}
.progress-item.item-4::before {
    content: "Modern";
}
.progress-item.item-5::before {
    content: "Achievement";
}
.progress-item.item-6::before {
    content: "Cardio";
}
.design-top {
    margin-top: 30px;
}
.progressbar-item {
    margin-bottom: 15px;
}
.progress-bar {
    margin: 0 0 10px;
    overflow: visible;
    background: transparent;
}
.progress-number {
    padding-bottom: 7px;
    position: relative;
    margin: 5px 0;
    font-size: 16px;
    line-height: 15px;
    font-weight: 400;
    color: #FFF;
    font-family: "IBM Plex Sans", serif;
}
.progress-title {
    z-index: 100;
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    font-weight: 400;
    color: #505050;
    margin: 0;
}
.progress-number-mark {
    font-size: 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 1;
    padding: 6px 4px 4px;
    border-radius: 3px;
    color: #FFF;
    margin-bottom: 4px;
    border-radius: 3px;
    background: #351A01;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
}
.down-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--progress-number-bg, #351A01);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}
.progress-bg {
    height: 6px;
    background: var(--progressbar-bg, #6c6c6c);
    overflow: hidden;
    border-radius: 6px;
}
.progress-fill {
    height: 6px;
    background: #351A01;
    width: 0%;
    border-radius: 6px;
}
.design-exper {
    row-gap: 30px;
}
.resume-ul {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
.resume-li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.resume-li .service-resume {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #505050;
    line-height: 32px;
}
.resume-li i {
    font-size: 24px;
    color: #505050;
}
.mega-know {
    row-gap: 10px;
}
.about-h1 {
    display: none;
}
.design-data {
    margin-top: 30px;
    row-gap: 30px;
    padding-bottom: 10px;
}
.box-item {
    position: relative;
}
.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}
.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;
}
.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;
}
.flip-box-front, .flip-box-back {
    background-size: cover;
    background-position: center;
    min-height: 180px;
    -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;
    background: #351A01;
    border-radius: 20px;
}
.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;
}
.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    padding: 20px;
    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%;
}
.years-award-img {
    display: flex;
    justify-content: space-between;
}
.winner-award {
    padding: 0 0 20px;
}
.award-yer {
    color: #7D7D7D;
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-family: "IBM Plex Sans", serif;
}
.award-interior {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    font-family: "IBM Plex Sans", serif;
}
.award-winner-text {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    font-family: "IBM Plex Sans", serif;
    padding-top: 10px;
}
.flip-back-text {
    font-size: 18px;
    color: #FFF;
    line-height: 28px;
    text-align: center;
    font-family: "IBM Plex Sans", serif;
}
.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;
}
/* --------------------------------- Services.html ---------------------------- */
.section-title {
    font-size: 48px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #351A01;
}
.set-width {
    max-width: 850px;
    margin: auto;
}
.section-detail {
    font-size: 18px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    margin-top: 30px;
    color: #555555;
}
.service-detail {
    margin-top: 40px;
    row-gap: 40px;
}
.box-design {
    position: relative;
}
.services-box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border: 2px solid #351A01;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
.services-box:hover {
    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}
.image-services {
    overflow: hidden;
    max-width: 48px;
    width: 100%;
}
.image-services img {
    width: 100%;
}
.services-title {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #351A01;
}
.services-desc {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #505050;
}
/* popup-services  */
/* Services-Popup Design */
.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(131deg, rgba(9, 16, 26, 0.28) 0%, rgba(9, 16, 26, 0.28) 100%);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
}
.popup-content {
    background-color: #F4EEE4;
    margin: auto;
    padding: 30px;
    width: 800px;
    height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.popup-content a.close {
    color: #351A01;
    float: right;
    font-size: 30px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    text-align: end;
}
.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.image-layert-services {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}
.data-analytics {
    max-height: 224px;
}
.image-layert-services img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.blog-services-h2 {
    font-size: 34px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 44px;
    color: #351A01;
    margin-bottom: 15px;
}
.service-detail-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #505050;
    margin-bottom: 12px;
}
.design-services {
    row-gap: 30px;
    margin-bottom: 10px;
}
.services-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-bottom: 20px;
}
.services-li {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    margin-left: 20px;
    color: #505050;
    list-style: disc;
}
.data-client {
    padding-top: 60px;
}
.autoplay {
    padding-top: 30px;
}
.slick-slide {
    margin: 0 10px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    align-items: baseline;
}
.slick-dots li button {
    width: 10px;
    height: 12px;
    border-radius: 100%;
    background: #505050;
    border: none;
    color: #505050;
    font-size: 1px;
}
li.slick-active button {
    background: #351A01;
    mix-blend-mode: normal;
}
li.slick-active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #351A01;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-box-service {
    padding: 20px 20px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    border: 2px solid #351A01;
    border-radius: 20px;
}
.slider-box {
    position: relative;
}
.images-client-detail {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.box-client-images {
    overflow: hidden;
    border-radius: 100%;
}
.box-client-images img {
    width: 100%;
    max-width: 82px;
    height: 80px;
}
.client-detail {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.client-detail .client-p {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #351A01;
}
.client-detail .client-span {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #505050;
}
.review-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #505050;
    margin-top: 20px;
}
/* --------------------------------- Portfolio.html ---------------------------- */
.portfolio-section {
    margin-top: 40px;
    row-gap: 30px;
}
.port-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
    max-height: 245px;
}
.port-set-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.portfolio-box:hover .port-set-icon img {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.port-set-icon img {
    max-width: 48px;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.wg-box-content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.portfolio-box:hover .wg-box-content-overlay {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.port-image img {
    width: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.portfolio-box:hover .data-port {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.portfolio-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #505050;
}
.port-name {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 40px;
    color: #351A01;
}
.view-port {
    font-size: 16px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 38px;
    color: #505050;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
}
.view-port i {
    font-size: 18px;
    margin-left: 3px;
}
.line-port {
    content: " ";
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: #351A01;
    bottom: -3px;
}
iframe {
    border-radius: 30px;
    width: 100%;
}
.img-gallery-magnific {
    row-gap: 20px;
}
.magnific-img {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.magnific-img a {
    width: 100%;
}
.magnific-img a img {
    overflow: hidden;
    width: 100%;
}
.mfp-image-holder .mfp-content {
    max-width: 500px;
    z-index: 100000;
}
.popup-sgallery {
    display: flex;
    align-items: end;
    flex-direction: column;
}
.card {
    background: transparent;
    border: transparent;
}
.menu-port {
    width: 200px;
    margin-top: 40px !important;
    margin: auto;
}
.load-port {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 7px 6px 6px;
    background-color: #351A01;
    border-radius: 30px;
}
.load-port .load-main {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-right: 22px;
}
.load-down {
    background-color: #F4EEE4;
    height: 48px;
    width: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    transition: all .60s;
}
.load-main p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #FFF;
    z-index: 1;
}
.load-main::after {
    content: "";
    position: absolute;
    background-color: #F4EEE4;
    width: 25%;
    height: 100%;
    border-radius: 30px;
    z-index: 0;
    left: 0;
    transition: all .55s;
}
.load-port:hover .load-main::after {
    transition: all .55s;
    width: 100%;
}
.load-port:hover p {
    transition: all .60s;
    color: #351A01;
}
.load-port:hover .icon-down {
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}
.content {
    display: none;
}
/* --------------------------------- Pricing.html ---------------------------- */
.pricing-plan {
    row-gap: 30px;
    margin-top: 40px;
}
.flip-data .pricing-card .front {
    position: relative;
    z-index: 1;
    background-image: url(../images/pricing/pricing-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-radius: 10px;
}
.flip-data .pricing-card .front-1 {
    position: relative;
    z-index: 1;
    background-image: url(../images/pricing/pricing-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-radius: 10px;
}
.flip-data .pricing-card .front-1::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
}
.flip-data .pricing-card .front::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
}
.flip-data .pricing-card .front-2 {
    position: relative;
    z-index: 1;
    background-image: url(../images/pricing/pricing-3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-radius: 10px;
}
.flip-data .pricing-card .front-2::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
}
.detail-box {
    z-index: 1;
    position: relative;
}
.plan-option {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: normal;
    color: #F4EEE4;
    padding-bottom: 8px;
}
.plan-exper {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #F4EEE4;
}
.price-plan {
    font-size: 48px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #F4EEE4;
    line-height: normal;
    margin: 20px 0;
}
.price-plan-under {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
}
.pricing-line {
    width: 100%;
    height: 1px;
    background-color: #F4EEE4;
    margin-bottom: 20px;
}
.extra-mail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #F4EEE4;
    margin-bottom: 20px;
}
.button-class {
    padding: 12px 14px 12px 14px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: #F4EEE4;
    border-radius: 10px;
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.32);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
}
.button-class a {
    font-size: 20px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #351A01;
    line-height: 28px;
    transition: .5s ease;
}
.button-class:hover a {
    color: #000;
    transition: .5s ease;
}
.button-class::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.button-class:hover::before {
    width: 100%;
    color: #FFF;
}
.query-line {
    margin-top: 30px;
    margin-bottom: 20px;
}
.query-design {
    font-size: 22px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 38px;
    color: #FFF;
}
.all-mision {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
}
.pricing-detail {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}
.all-mision {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
}
.pricing-price p span {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #F4EEE4;
}
/* --------------------------------- Blog.html ---------------------------- */
.blog-data-main {
    margin-top: 40px;
    row-gap: 30px;
}
.blog-box {
    position: relative;
    border-radius: 15px;
    transition: all 0.4s ease;
    background: #F4EEE4;
    -webkit-transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    overflow: hidden;
    transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.blog-box:hover {
    transform: translateY(-10px);
}
.blog-box .blog-image {
    width: 100%;
    max-height: 245px;
    overflow: hidden;
}
.blog-box .blog-image img {
    width: 100%;
}
.blog-detail-extra {
    padding: 20px 10px;
}
.blog-name {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #351A01;
}
.blog-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #505050;
    margin-top: 8px;
}
.bloger-name-div {
    position: relative;
    height: 25px;
    overflow: hidden;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.data-name-blog {
    position: absolute;
    left: 0;
    margin: 0;
    bottom: 0;
    font-family: "IBM Plex Sans", serif;
    font-size: 16px;
    font-weight: 500;
    color: #505050;
    transition: all 0.3s ease;
}
.data-name-blog span {
    color: #351A01;
}
.data-name-blog:nth-of-type(2) {
    opacity: 0;
    transform: translateY(150%);
    transition: all 0.3s ease;
}
.blog-box:hover .data-name-blog:first-of-type {
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s ease;
}
.blog-box:hover .data-name-blog:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
.post-coment {
    margin-top: 40px;
}
.heading-title-comment h3 {
    margin-left: 0px !important;
    color: #351A01;
    font-family: "Unbounded", serif;
    font-weight: 500;
    margin: 0;
    margin-top: 15px;
    font-size: 22px;
}
.user-comment {
    margin-top: 30px;
    display: flex
}
.user-image {
    width: 15%;
}
.user-image img {
    width: 100%;
    max-width: 70px;
}
.user-detail {
    width: 100%;
    margin-left: 15px;
}
.user_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.user_name h4 {
    color: #351A01;
    font-size: 20px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    margin: 0;
}
.user_date h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "IBM Plex Sans", serif;
    color: #505050;
    margin: 0;
}
.user_comment p {
    font-size: 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 20px;
    margin-top: 10px;
    color: #505050;
}
.user_reply a {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "IBM Plex Sans", serif;
    text-transform: capitalize;
    margin-top: 15px;
    color: #351A01;
    display: inline-block;
}
.mega-comment-replay {
    margin-left: 100px;
}
.heading-title-comment {
    border-top: 1px solid #351A01;
    margin-bottom: 40px;
    margin-top: 40px;
}
.post-coment .main-in p {
    font-size: 16px;
    font-family: "IBM Plex Sans", serif;
}
.post-coment .contact-main {
    width: 245px !important;
}
.post-coment .contact-main .load-main::after {
    width: 20% !important;
}
.post-coment .contact-main:hover .load-main::after {
    transition: all .55s;
    width: 100% !important;
}
.post-coment .load-port:hover .load-main::after {
    transition: all .55s;
    width: 100%;
}
.question {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 24px;
    margin: 20px 0;
    color: #505050;
}
.contact-info {
    margin-top: 0px;
    row-gap: 30px;
}
.main-in p {
    font-size: 18px;
    text-align: left;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    font-family: "IBM Plex Sans", serif;
    color: #505050;
    margin-bottom: 10px;
    margin-left: 20px;
}
.main-in input {
    border-radius: 15px;
    background: #351A01;
    border: none;
    width: 100%;
    height: 56px;
    padding: 15px 20px;
    color: #FFFF;
    font-family: "IBM Plex Sans", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.userblogs-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
}
.bloger-images, .bloger-comment {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.bloger-settle {
    border-radius: 10px;
    width: 100%;
    max-width: 36px;
}
.bloger-name-blog {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #351A01;
}
.comment-bloger-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
/* --------------------------------- Contact.html ---------------------------- */
.contact-detail-2 {
    margin-top: 76px;
    color: #FFF;
    row-gap: 60px;
}
.main-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-color: #351A01;
    border-radius: 20px;
    padding: 20px;
    height: 130px;
}
.box-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    text-align: center;
    background-color: #505050;
    border-radius: 20px;
    position: absolute;
    top: -35px;
}
.center-main-contact {
    color: #FFF;
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    text-transform: uppercase;
    line-height: 18px;
    margin-top: 30px;
}
.main-box p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 10px;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
}
.second-contact {
    padding: 60px 0;
}
.second-contact .contact-info {
    margin-top: 40px;
    row-gap: 30px;
}
.menu-contact {
    width: 215px !important;
}
iframe {
    border-radius: 30px;
    width: 100%;
}
.blog-contact input {
    background-color: #351A01;
}
.blog-contact p {
    color: #000;
}
.load-contact:hover .icon-down {
    transform: rotate(0deg) !important;
    transition: transform 0.6s ease-in-out;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}