/*------------------------------------------------------------------
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: #121212;
    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: #121212;
    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 #FADE3B;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #FADE3B;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #FADE3B;
        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 #FADE3B;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #FADE3B44;
}
.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: #FADE3B;
    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 / 15%);
    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: #000000;
    border-radius: 30px;
}
.download .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
    border-radius: 30px;
}
.images-down {
    background-color: #FADE3B;
    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: #000;
}
.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: #FADE3B;
    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: #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 #FFFFFF;
    height: 100%;
    background-color: #F7C822;
    width: 100%;
    padding: 60px;
    margin-top: 40px;
    max-height: 695px;
    overflow: hidden;
    scrollbar-width: none;
}
.main-menu {
    position: relative;
}
.main-set-hidden {
    overflow: scroll;
}
.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: #FFFFFF;
    border: 4px solid #FFF;
    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: #000;
    border-radius: 50%;
}
.list-link .name-tab {
    font-weight: 500;
    font-family: "Unbounded", serif;
    font-size: 16px;
    color: #000;
    display: none;
    transition: all 0.35s ease-in-out;
}
.tabs-li:hover .name-tab {
    display: block;
    transition: all 0.35s ease-in-out;
    color: #000;
}
.tabs-li:hover {
    width: 180px;
    transition: all 0.35s ease-in-out;
}
.tabs-li.active {
    width: 180px;
}
.tabs-li.active .name-tab {
    display: block;
}
.title-name-word, .title-counter {
    font-size: 24px;
    font-weight: 400;
    font-family: "Unbounded", serif;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.back-set {
    background-image: url(../images/hero/fashin-back.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    opacity: 0.4;
}
.title-section-index {
    font-size: 96px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    color: #000;
    text-align: left;
}
.index-desc {
    font-size: 20px;
    font-family: "Unbounded", serif;
    font-weight: normal;
    color: #000;
}
.bottom-index-main {
    padding-top: 112px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}
.images-model {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 45px;
    overflow: hidden;
}
.model-descr {
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    font-weight: 500;
    line-height: 30px;
    color: #000;
    max-width: 300px;
}
.right-div {
    position: absolute;
    background-color: #E6033A;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-flex;
    padding: 60px;
    max-width: 410px;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: -1;
}
.text-design-fashion {
    transform: rotate(90deg);
}
.text-animation-fation {
    margin: 0;
    text-align: center;
    color: transparent;
    font-size: 100px;
    font-family: "Archivo Black", serif;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 80px;
}
.text-animation-fation:nth-child(4) {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.10);
    transform: translateY(-145px);
    background: #E6033A;
    position: relative;
    z-index: 7;
}
.text-animation-fation:nth-child(3) {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
    transform: translateY(-90px);
    background: #E6033A;
    position: relative;
    z-index: 8;
}
.text-animation-fation:nth-child(2) {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.40);
    transform: translateY(-45px);
    position: relative;
    background-clip: text;
    background: #E6033A;
    position: relative;
    z-index: 9;
}
.text-animation-fation:nth-child(1) {
    color: white;
    -webkit-text-stroke: none;
    background: #E6033A;
    position: relative;
    z-index: 10;
}
.women-main-image {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: auto;
    position: relative;
}
.center-text {
    position: absolute;
    bottom: 5%;
    right: 0;
}
.image-round {
    background-image: url(../images/hero/round-text.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 180px;
    height: 180px;
    max-width: 100%;
    position: relative;
    animation: textRotation 8s linear infinite;
}
@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}
.mega-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mega-arrow img {
    width: 100%;
    max-width: 60px;
    transition: all .3s ease;
}
.center-text:hover .mega-arrow img {
    transform: rotate(45deg);
    transition: all .3s ease;
}
/*----------------------- [ 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-weight: 500;
    font-family: "IBM Plex Sans", serif;
}
.copy-right a {
    color: #FADE3B;
    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: #FADE3B;
    border-color: #FADE3B;
    transition: all ease-in-out .35s;
}
/* --------------------------------- background Animation ---------------------------- */
canvas {
    position: fixed;
    top: 0;
    z-index: -1;
    height: 100vh;
}
/* --------------------------------- About.html ---------------------------- */
.about-text {
    text-align: left;
}
.sect-about {
    align-items: center;
    justify-content: center;
}
.section-title {
    font-size: 48px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #000;
}
.title-desc {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #000;
    line-height: 32px;
    padding-top: 20px;
}
.about-detail {
    margin-top: 20px;
}
.detail-ul {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
.dettail-li {
    display: flex;
    align-items: center;
    justify-content: start;
}
.detail-title {
    font-size: 16px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #000;
}
.detail-name {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #000;
    margin-left: 5px;
}
.background-set {
    overflow: hidden;
    width: 100%;
    border: 2px dashed hsl(0, 0%, 0%);
    border-radius: 300px;
    padding: 20px;
    max-width: 100%;
}
.background-set img {
    width: 100%;
    height: auto;
    border-radius: 410px;
}
.resume-desc {
    margin-bottom: 20px;
}
/* --------------------------------- resume.html ---------------------------- */
.menu-resume {
    row-gap: 30px;
}
.education {
    display: flex;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}
.education::before {
    content: "";
    border-left: 2px solid #121212;
    position: absolute;
    top: 0;
    left: 11px;
    bottom: 0;
    z-index: -1;
}
.small_yellow_border {
    border: 2px solid #121212;
    border-radius: 100%;
    padding: 5px;
    background-color: #F7C822;
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #E6033A;
}
.small_yellow_border_main {
    padding-left: 20px;
}
.bachelor {
    font-size: 20px;
    font-family: "Unbounded", serif;
    color: #121212;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 10px;
}
.cursus {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    margin: 0;
    color: #121212;
    padding-bottom: 15px;
    transition: all 0.3s;
}
.desc-resume {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #121212;
    margin: 0;
    transition: all 0.3s;
}
.main-hero-frelance {
    overflow: auto;
}
.small_yellow_border_main:hover .bachelor {
    color: #E6033A;
    transition: all 0.3s;
}
/* skill-set */
.skillsets {
    padding-top: 60px;
}
.coding-dot {
    padding-bottom: 0px;
}
#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: #F7C822;
    color: var(--1, #000);
    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: "Marichyasana";
    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: "Yoga Outfits";
}
.progress-item.item-3::before {
    content: "Exercise Manuals";
}
.progress-item.item-4::before {
    content: "Yoga Equipment";
}
.progress-item.item-4::before {
    content: "Asanas";
}
.progress-item.item-5::before {
    content: "Meditation";
}
.progress-item.item-6::before {
    content: "Prenatal";
}
.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: #000000;
    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: #000;
    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, #000000);
    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: #E6033A;
    width: 0%;
    border-radius: 6px;
}
.design-exper {
    row-gap: 30px;
    padding-top: 80px;
}
.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: #000;
}
.knowledge-set i {
    color: #000;
    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;
}
.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: #000000;
    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: #E6033A;
    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 span {
    color: #E6033A;
}
.max-width-text {
    max-width: 850px;
    margin: auto;
    width: 100%;
}
.services-section {
    margin-top: 40px;
    padding-bottom: 60px;
}
.service-boxes {
    row-gap: 30px;
}
.main-services-design {
    border: 2px solid #121212;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.service-title {
    font-size: 22px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #121212;
    line-height: 36px;
}
.service-descr {
    font-size: 18px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #121212;
}
.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: #E6033A;
    mix-blend-mode: normal;
}
li.slick-active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #E6033A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 9;
    position: relative;
}
.menu-service {
    position: relative;
}
.menu-service:before {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    background-color: transparent;
    pointer-events: none;
    border-radius: 20px;
    border: 2px solid #121212;
}
.client-images {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    border-radius: 50%;
}
.client-images img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.review {
    padding: 5px 0;
    display: flex;
    gap: 5px;
}
.review img {
    width: 20px;
}
.review-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #121212;
    margin-top: 10px;
    text-align: center;
}
.client-name {
    color: #121212;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    padding-top: 20px;
    font-family: "Unbounded", serif;
}
.kello {
    color: #121212;
    font-size: 16px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
}
/* --------------------------------- Portfolio.html ---------------------------- */
.portfolio-items {
    margin-top: 40px;
}
.port-item-box:hover .data-port {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.image-box {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.image-box img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.under-portfolio-design {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.port-item-box:hover .under-portfolio-design 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;
}
.under-portfolio-design 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;
}
.port-item-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;
}
.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;
}
.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: #121212;
    margin: auto;
    padding: 30px;
    width: 800px;
    height: 100vh;
    overflow: auto;
}
.popup-content a.close {
    color: #FFF;
    float: right;
    font-size: 30px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    width: 100%;
}
.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.image-settle {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.image-settle img {
    width: 100%;
}
.open-market {
    font-size: 24px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 36px;
    margin-top: 15px;
    color: #FFF;
}
.open-detail {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #ffffffa4;
    margin-top: 10px;
}
.data-pack {
    max-height: 300px;
}
.mega-ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
}
.mega-li {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #ffffffa4;
    list-style: circle;
    margin-left: 20px;
}
.data-sort {
    row-gap: 25px;
}
iframe {
    border-radius: 30px;
    width: 100%;
}
.magnific-img {
    border-radius: 20px;
}
.image-popup-vertical-fit img {
    width: 100%;
    border-radius: 20px;
}
.img-gallery-magnific {
    row-gap: 20px;
}
.card {
    border-radius: 20px;
}
.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: #000000;
    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: #FADE3B;
    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: #FADE3B;
    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-section {
    padding-top: 40px;
    row-gap: 20px;
}
.box-pricing {
    background-color: #FFF;
    border-radius: 30px;
}
.pricing-detail {
    padding: 25px;
    row-gap: 20px;
}
.plan-name {
    font-size: 24px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #000000;
}
.plan-price {
    margin-top: 10px;
    font-size: 48px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    color: #000000;
    line-height: normal;
}
.plan-price span {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
}
.detail-button {
    margin-left: auto;
    text-align: end;
}
.buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    padding: 18px 20px;
    background-color: #F7C822;
    color: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    z-index: 1;
}
.buy-now::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    background-color: #E6033A;
    border-radius: 20px;
    left: -100%;
    top: 0;
    transition-duration: .3s;
    color: #FFF;
    z-index: -1;
}
.buy-now:hover::before {
    transition-duration: .3s;
    transform: translate(100%, 0%);
    border-radius: 0;
}
.buy-now:hover {
    color: #FFF;
    transition-duration: .3s;
}
.buy-now:hover img {
    filter: invert(1);
    transition-duration: .3s;
}
.buy-now:active {
    transform: translate(5px, 5px);
    transition-duration: .3s;
}
.basic-detail {
    background-color: #000;
    padding: 10px 20px;
}
.basic-detail .important-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    text-align: center;
    line-height: 24px;
}
.important-detail span {
    color: #F7C822;
}
.detail-explaing {
    padding: 20px;
}
.afftable-value {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    line-height: 32px;
    padding-bottom: 10px;
}
.mega-afftable {
    padding-bottom: 0px;
}
.detail-explaing {
    padding: 20px;
    row-gap: 10px;
}
/* --------------------------------- Blog.html ---------------------------- */
.blog-page {
    margin-top: 40px;
    row-gap: 30px;
}
.blog-box {
    background-color: #000;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    justify-content: start;
}
.image-blog {
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-height: 230px;
    border-radius: 10px;
}
.image-blog img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all .3s;
}
.text-blog {
    padding-top: 15px;
    text-align: center;
}
.read-blog {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    margin-bottom: 8px;
}
.blog-title {
    font-size: 18px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    color: #FFF;
    line-height: 28px;
    margin-bottom: 8px;
}
.blog-box:hover .image-blog img {
    transform: scale(1.1);
    transition: all .3s;
}
.post-coment {
    margin-top: 40px;
}
.heading-title-comment h3 {
    margin-left: 0px !important;
    color: #FFF;
    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: #FFF;
    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: #AAAAAA;
    margin: 0;
}
.user_comment p {
    font-size: 16px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 20px;
    margin-top: 10px;
    color: #FFF;
}
.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: #F7C822;
    display: inline-block;
}
.mega-comment-replay {
    margin-left: 100px;
}
.heading-title-comment {
    border-top: 1px solid #FFF;
    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: #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: #FFFFFF;
    border: none;
    width: 100%;
    height: 56px;
    padding: 15px 20px;
    color: #121212;
    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;
}
.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: #FFF;
}
.comment-bloger-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.blog-detail-explain {
    font-size: 18px;
    font-weight: 400;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #FFF;
    margin-top: 20px;
}
.blog-design-mega-point {
    font-size: 22px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 28px;
    margin-top: 20px;
    color: #FFF;
}
.bloger-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 15px;
}
.bloger-li {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    color: #FFF;
    line-height: 24px;
    list-style: circle;
    margin-left: 20px;
}
.bloger-blog-image {
    row-gap: 20px;
    margin: 20px 0;
}
.images-bloger-data {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.images-bloger-data img {
    width: 100%;
}
/* --------------------------------- 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: #000;
    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: #E6033A;
    border-radius: 20px;
    position: absolute;
    top: -35px;
}
.center-main-contact {
    color: #E6033A;
    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: #000;
    color: #FFF;
}
.blog-contact p {
    color: #000;
}
.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;
}