/*------------------------------------------------------------------
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;
    /* Chrome, Safari, Edge mate */
}
*, ::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: #FFF;
    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: #FFF;
    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 #0E0086;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #0E0086;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #0E0086;
        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 #0E0086;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #0d008632;
}
.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: #0E0086;
    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(255 255 255 / 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: #0E0086;
    border-radius: 30px;
}
.download .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0E0086;
    overflow: hidden;
    border-radius: 30px;
}
.images-down {
    background-color: #C6F806;
    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: #FFF;
}
.download:hover .down-ander p {
    color: #000;
    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: #C6F806;
    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;
    /* Hide menu */
}
.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: #0E0086;
}
.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 #0E0086;
    height: 100%;
    background-color: #240CF2;
    width: 100%;
    padding: 60px;
    margin-top: 40px;
    max-height: 695px;
    overflow: hidden;
    scrollbar-width: none;
}
.bg-line {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 567px;
    animation: smoothMove 6s ease-in-out infinite alternate;
    z-index: -1;
}
@keyframes smoothMove {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(2px);
    }
}
.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: #0E0086;
    border: 4px solid #0E0086;
    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: #FFF;
    border-radius: 50%;
}
.list-link .name-tab {
    font-weight: 500;
    font-family: "Unbounded", serif;
    font-size: 16px;
    color: #FFF;
    display: none;
    transition: all 0.35s ease-in-out;
}
.tabs-li:hover .name-tab {
    display: block;
    transition: all 0.35s ease-in-out;
    color: #FFF;
}
.tabs-li:hover {
    width: 180px;
    transition: all 0.35s ease-in-out;
}
.tabs-li.active {
    width: 180px;
}
.tabs-li.active .name-tab {
    display: block;
}
.extra-name-bold {
    font-size: 194px;
    text-align: center;
    font-weight: 800;
    font-family: "Unbounded", serif;
    color: #FFF;
    line-height: 165px;
    position: relative;
}
.man-image-all .man-set {
    position: absolute;
    left: 38%;
    top: 24%;
}
.man-set {
    position: relative;
}
.man-image-all .set-left {
    position: absolute;
    left: 34%;
    top: 55%;
    animation: tool1 5.5s ease-in-out infinite alternate;
}
@keyframes tool1 {
    100% {
        transform: translate3d(10px, -30px, 30px);
    }
}
.left-text {
    margin-top: 40px;
    max-width: 300px;
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
}
.set-right {
    position: absolute;
    right: 37%;
    top: 42%;
    z-index: 1;
    animation: tool2 5.5s ease-in-out infinite alternate;
}
@keyframes tool2 {
    100% {
        transform: translate3d(10px, 40px, 30px);
    }
}
.right-text {
    margin-top: 60px;
    margin-left: 125px;
    display: inline-flex;
    padding-top: 20px;
}
.ethan-crouse {
    font-size: 106px;
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    position: relative;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255 255 255);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
/*----------------------- [ Footer section ] -----------------------*/
.footer {
    padding: 25px 0;
}
.contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.copy-right {
    color: #000;
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
}
.copy-right a {
    color: #0E0086;
}
.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 #0E0086;
    transition: all ease-in-out .35s;
}
.social-design:hover {
    background-color: #0E0086;
    border-color: #0E0086;
    transition: all ease-in-out .35s;
}
.social-design img {
    transition: filter 0.3s ease;
}
.social-design:hover img {
    filter: brightness(0) invert(1);
}
/* --------------------------------- background Animation ---------------------------- */
#test {
    z-index: 0;
}
canvas {
    position: fixed;
    top: 0;
    z-index: -1;
    height: 100vh;
}
/* --------------------------------- About.html ---------------------------- */
.about-detail {
    align-items: center;
    justify-content: center;
}
.about-detail-box {
    text-align: left;
}
.hellow-leave {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
    margin-bottom: 10px;
}
.title-section {
    font-size: 48px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #FFF;
}
.detail-about {
    font-size: 18px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #FFF;
    margin-top: 20px;
}
.daial-about {
    row-gap: 10px;
    margin-top: 20px;
}
.direction-naem {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
.section-li {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.deatyil {
    font-size: 16px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
}
.main-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    text-align: end;
}
.image-about {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-about img {
    width: 100%;
    height: auto;
}
.client-review-box {
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.06);
    position: absolute;
    top: 40%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 15px;
    gap: 5px;
}
.review-star {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cleint-op {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #000;
    text-align: center;
}
/* --------------------------------- resume.html ---------------------------- */
.settle-hidden {
    overflow: auto;
}
.section-length {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
}
.education {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}
.education::before {
    content: "";
    border-left: 2px solid #FFF;
    position: absolute;
    top: 0;
    left: 11px;
    bottom: 0;
    z-index: -1;
}
.small_yellow_border {
    border: 2px solid #FFF;
    border-radius: 100%;
    padding: 5px;
    background-color: #240cf2;
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #C6F806;
}
.small_yellow_border_main {
    padding-left: 20px;
}
.bachelor {
    color: #FFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 10px;
    font-family: "Unbounded", serif;
}
.cursus {
    color: #FFF;
    font-size: 18px;
    line-height: 24px;
    font-family: "IBM Plex Sans", serif;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 15px;
}
.desc-resume {
    color: #FFFF;
    font-size: 16px;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    margin: 0;
    transition: all 0.3s;
}
.education:hover .bachelor {
    color: #C6F806;
    transition: all 0.3s;
}
.skill-set {
    padding: 60px 0;
    padding-bottom: 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: #240CF2;
    color: var(--1, #FFF);
    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: #FFF;
    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: "JavaScript";
}
.progress-item.item-3::before {
    content: "Bootstrap";
}
.progress-item.item-4::before {
    content: "React.js";
}
.progress-item.item-4::before {
    content: "SEO";
}
.progress-item.item-5::before {
    content: "Node.js";
}
.progress-item.item-6::before {
    content: "Kotlin";
}
.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: #FFF;
    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: #0E0086;
    margin-bottom: 4px;
    border-radius: 3px;
    background: #C6F806;
    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, #C6F806);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}
.progress-bg {
    height: 6px;
    background: var(--progressbar-bg, #f0f0f0);
    overflow: hidden;
    border-radius: 6px;
}
.progress-fill {
    height: 6px;
    background: #0E0086;
    width: 0%;
    border-radius: 6px;
}
.design-exper {
    row-gap: 30px;
}
.nolege {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
}
.knowledge-set {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: 15px;
    gap: 10px;
}
.west-class {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #FFF;
}
.knowledge-set i {
    color: #FFF;
    font-size: 20px;
}
.design-award {
    padding-top: 40px;
    padding-bottom: 10px;
}
.box-item {
    position: relative;
}
.mega-line {
    margin-top: 15px;
}
.design-data {
    margin-top: 40px;
    row-gap: 20px;
}
.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: #FFFF;
    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;
    margin-bottom: 10px;
}
.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: #000;
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-family: "IBM Plex Sans", serif;
}
.award-interior {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    font-family: "IBM Plex Sans", serif;
}
.award-winner-text {
    color: #0E0086;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    padding-top: 10px;
    font-family: "IBM Plex Sans", serif;
}
.flip-back-text {
    font-size: 18px;
    color: #000;
    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;
}
.education:hover .bachelor {
    color: #FADE3B;
}
/* --------------------------------- Services.html ---------------------------- */
.width-set {
    max-width: 850px;
    margin: auto;
    text-align: center;
}
.title-section span {
    color: #C6F806;
}
.title-desc {
    margin-top: 30px;
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    line-height: 32px;
}
.service-setting-box {
    margin-top: 70px;
    row-gap: 60px;
}
.services-box {
    padding: 20px;
    border-radius: 15px;
    background-color: #FFF;
    border: 3px solid #0E0086;
    position: relative;
    text-align: center;
}
.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    background-color: #FFF;
    border: 3px solid #0E0086;
    border-radius: 100%;
    position: absolute;
    top: -40px;
    left: 39%;
    margin-bottom: 35px;
}
.service-image img {
    width: 100%;
    max-width: 45px;
    transition: filter 0.3s ease;
}
.service-title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    margin-top: 35px;
}
.service-text {
    color: #0E0086;
}
.service-desc {
    font-size: 16px;
    font-weight: normal;
    line-height: normal;
    font-family: "IBM Plex Sans", serif;
    color: #0E0086;
    margin-top: 10px;
}
.services-box:hover img {
    filter: brightness(0) invert(1);
}
.services-box:hover .service-image {
    background-color: #0E0086;
    transition: all .3s ease;
}
/* Blog-page 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: #FFF;
    margin: auto;
    padding: 30px;
    width: 800px;
    height: 100vh;
    overflow: auto;
}
.popup-content a.close {
    color: #121212;
    display: flex;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    align-items: center;
    justify-content: end;
    background: none;
    margin: 0;
    padding: 0;
}
.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.blog-image-under {
    width: 100%;
    max-height: 450px;
    margin-bottom: 10px;
    overflow: hidden;
}
.blog-image-under img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
}
.image-under-title {
    font-size: 22px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #121212;
    margin-top: 20px;
}
.under-description {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 22px;
    color: #5D5D5D;
    margin-top: 15px;
}
.set-list {
    margin-top: 12px;
    row-gap: 10px;
}
.setlment {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.bloger-class {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #121212;
    line-height: 26px;
}
.setlment i {
    color: #121212;
}
.megnet {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    justify-content: start;
}
.client-sec {
    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: #FFF;
    border: none;
    color: #FFF;
    font-size: 1px;
}
li.slick-active button {
    background: #FFF;
    mix-blend-mode: normal;
}
li.slick-active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    padding: 15px 30px;
    border-radius: 20px;
    z-index: 9;
    position: relative;
    border: 2px solid #FFF;
}
.menu-service {
    position: relative;
}
.client-detail {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.client-image {
    width: 100%;
    max-width: 100px;
}
.client-image img {
    width: 100%;
    border-radius: 100%;
    height: auto;
}
.client-id .cleint-name-sort {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #FFF;
    line-height: 32px;
    margin-top: 25px;
}
.client-id span {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
}
.review-text {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
    margin-top: 15px;
}
/* --------------------------------- Portfolio.html ---------------------------- */
.width-port {
    text-align: center;
}
.portfolio-items {
    margin-top: 40px;
}
.portfolio-items .item-port {
    position: relative;
    padding: 0;
}
.item-port .img {
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    filter: blur(0);
    border-radius: 15px;
}
.item-port .img:hover .port-image {
    transform: scale(1.1);
    filter: blur(3px);
    transition: .3s ease-in-out;
}
.item-port .toil-port {
    display: none;
    transition: .3s ease-in-out;
}
.item-port:hover .toil-port {
    display: block;
    transition: .3s ease-in-out;
}
.item-port .img img {
    width: 100%;
    height: auto;
    transition: .3s ease-in-out;
}
.item-port .img a.link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
.item-port:hover .Desc-port {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: all .5s;
}
.Desc-port {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 5px 15px;
    background: transparent;
    transform: translateY(30px);
    opacity: 0;
    height: 100%;
    visibility: hidden;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Desc-port .port-name {
    font-size: 18px;
    font-weight: 32px;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    text-align: center;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 20px;
}
.port-name img {
    width: 100%;
    height: auto;
    max-width: 48px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(98%) saturate(7485%) hue-rotate(250deg) brightness(91%) contrast(111%);
}
.port-detail {
    margin-top: 10px;
    text-align: left;
}
.port-detail .project-name {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    color: #FFF;
}
.prt-image {
    row-gap: 20px;
    margin-top: 20px;
}
.port-detail .project-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    margin-top: 10px;
}
.imges-portfolio-blog {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}
.imges-portfolio-blog img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
iframe {
    border-radius: 30px;
    width: 100%;
}
/* Gallary-box-Design */
.card {
    background: transparent;
    border: none;
}
.img-gallery-magnific {
    row-gap: 20px;
}
.magnific-img {
    width: 100%;
    border-radius: 20px;
    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;
}
/* menuport */
.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: #0E0086;
    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: #FFF;
    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: #FFF;
    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: #121212;
}
.load-port:hover .icon-down {
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}
.content {
    display: none;
}
/* --------------------------------- Pricing.html ---------------------------- */
.pricing-main {
    padding-top: 40px;
    row-gap: 30px;
}
.pricing-box {
    background-color: #FFF;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid #0E0086;
}
.pricing-card-image {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.price-image {
    background-color: #FFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}
.pricing-card-image .setup {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #121212;
}
.class-pricing {
    font-size: 20px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #121212;
    line-height: 32px;
}
.decs-pricing {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    margin-top: 20px;
    color: #121212;
}
.price {
    margin: 15px 0;
}
.price-class {
    font-size: 44px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    line-height: 52px;
    color: #121212;
}
.price-class .month-port {
    font-size: 16px;
    font-family: "IBM Plex Sans", serif;
    font-weight: normal;
}
.what-incude {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #121212;
    margin-bottom: 15px;
}
.price-detail {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 8px;
}
.name-port {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #121212;
}
.price-detail i {
    color: #121212;
    font-size: 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: #0E0086;
    border-radius: 10px;
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.32);
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 20px;
    height: 100%;
}
.button-class a {
    font-size: 20px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    line-height: 28px;
    transition: .5s ease;
}
.button-class:hover a {
    color: #121212;
    transition: .5s ease;
}
.button-class::before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #C6F806;
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.button-class:hover::before {
    width: 100%;
    color: #121212;
}
/* --------------------------------- Blog.html ---------------------------- */
.blog-top {
    margin-top: 40px;
    row-gap: 30px;
}
.mega-bloges:hover .image-blogs img {
    transform: scale(1.1);
    filter: blur(3px);
    transition: .3s ease-in-out;
}
.image-blogs {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 10px;
}
.image-blogs img {
    width: 100%;
    height: auto;
}
.blog-name {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #FFF;
    line-height: 32px;
}
.desc-blog {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    margin-top: 5px;
}
.comment-name-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.bloger-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.bloger-images {
    max-width: 36px;
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.bloger-set {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
}
.blog-date {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
}
.post-coment {
    margin-top: 40px;
}
.heading-title-comment h3 {
    margin: 20px 0;
    color: #121212;
    font-family: "Unbounded", serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
}
.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: #121212;
    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: #121212;
    margin: 0;
}
.user_comment p {
    font-size: 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 20px;
    margin-top: 10px;
    color: #121212;
}
.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: #0E0086;
    display: inline-block;
}
.mega-comment-replay {
    margin-left: 100px;
}
.heading-title-comment {
    border-top: 1px solid #aaaaaa;
}
.post-coment .main-in p {
    font-size: 16px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #040404;
}
.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%;
}
.point-comee {
    width: 100%;
    margin-left: 15px;
}
.point-comee li {
    color: #AAAAAA;
    padding: 5px 0;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    list-style: disc;
}
.question {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 24px;
    margin: 20px 0;
    color: #FFF;
}
.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: #FFF;
    margin-bottom: 10px;
    margin-left: 20px;
}
.main-in input {
    border-radius: 15px;
    background: transparent;
    border: 2px solid #040404;
    width: 100%;
    height: 56px;
    padding: 15px 20px;
    color: #040404;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.ul-settle {
    margin-top: 15px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
.ul-settle .li-settle {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #121212;
    list-style-type: disc;
    margin-left: 20px;
}
/* --------------------------------- 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: #FFFF;
    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: #0E0086;
    border-radius: 20px;
    position: absolute;
    top: -35px;
}
.center-main-contact {
    color: #0E0086;
    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: #121212;
}
.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: #FFF;
    border: 2px solid #FFF;
}
.load-contact:hover .icon-down {
    transform: none;
}
/* 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;
}