/*------------------------------------------------------------------
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;
    height: 100%;
    background-color: #040404;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    overflow-x: hidden;
    background: url("../images/hero/Background-image.png") repeat 0 0;
    -webkit-animation: bg-scrolling-reverse 0.92s infinite;
    -moz-animation: bg-scrolling-reverse 0.92s infinite;
    -o-animation: bg-scrolling-reverse 0.92s infinite;
    animation: bg-scrolling-reverse 0.92s infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}
@-moz-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}
@-o-keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}
@keyframes bg-scrolling-reverse {
    100% {
        background-position: 50px 50px;
    }
}
@-webkit-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}
@-moz-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}
@-o-keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}
@keyframes bg-scrolling {
    0% {
        background-position: 50px 50px;
    }
}
::-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: #040404;
    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 #C6F806;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #C6F806;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #C6F806;
        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 #C6F806;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    box-shadow: 0 0 50px 5px #c8f8067c;
}
.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: #C6F806;
    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(23 27 34 / 0%);
    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;
}
.main-hero {
    background-image: url(../images/hero/bottom-left.png);
    background-position: bottom left;
    background-repeat: no-repeat;
}
@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: #FFFFFF;
    border-radius: 30px;
}
.download .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 30px;
}
.images-down {
    background-color: #040404;
    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: #FFFFFF;
}
.download:hover .down-ander p {
    color: #FFFFFF;
    transition: all .55s;
}
.down-ander p {
    font-size: 16px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    color: #040404;
    padding-right: 25px;
    z-index: 1;
    transition: all .55s;
}
.down-ander::after {
    content: "";
    position: absolute;
    background-color: #040404;
    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: #0C4B54;
    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: #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: #040404;
    border-radius: 50%;
}
.list-link .name-tab {
    font-weight: 500;
    font-family: "Unbounded", serif;
    font-size: 16px;
    color: #040404;
    display: none;
    transition: all 0.35s ease-in-out;
}
.tabs-li:hover .name-tab {
    display: block;
    transition: all 0.35s ease-in-out;
    color: #040404;
}
.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;
}
/*----------------------- [ 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;
}
.copy-right a {
    color: #C6F806;
}
.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: #C6F806;
    border-color: #C6F806;
    transition: all ease-in-out .35s;
}
.social-design:hover img {
    filter: invert(100%);
}
.index-main-data {
    row-gap: 30px;
}
.index-support {
    font-size: 18px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    line-height: normal;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
}
.index-title {
    font-size: 64px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    line-height: normal;
    color: #FFFFFF;
    margin-top: 15px;
    width: 710px;
}
.index-title .data-lenth {
    color: #C6F806;
    position: relative;
}
.exterat {
    position: absolute;
    right: 5%;
    top: 45%;
}
.exterat img {
    width: 100%;
}
.index-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    max-width: 460px;
    width: 100%;
    color: #FFFFFF;
    margin-top: 30px;
}
.index-mega-send {
    margin-top: 60px;
}
.index-button .download {
    display: inline-flex;
    background-color: #C6F806;
}
.index-button .download .down-ander {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #C6F806;
    overflow: hidden;
    border-radius: 30px;
}
.index-button .down-ander::after {
    width: 20%;
}
.index-button .download .down-ander p {
    color: #0C4B54;
}
.index-button .download:hover .down-ander p {
    color: #C6F806;
    transition: all .55s;
}
.index-button .images-down {
    background: #0C4B54;
}
.index-button .down-ander::after {
    background-color: #0C4B54;
}
.image-index-data {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-main-index {
    position: relative;
    width: 100%;
}
.image-main-index img {
    animation: smoothMove 4s ease-in-out infinite alternate;
}
@keyframes smoothMove {
    from {
        transform: translateY(10px);
    }
    to {
        transform: translateY(0);
    }
}
.back-image {
    position: absolute;
    top: 0;
    z-index: -1;
    mix-blend-mode: soft-light;
    width: 100%;
}
.back-image .data-back-image {
    width: 100%;
    height: auto;
    animation: none;
}
.name-of-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 60px;
    left: -25px;
    width: 100%;
}
.name-of-time p {
    font-size: 24px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}
.name-of-time span {
    font-size: 15px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}
/* --------------------------------- About.html ---------------------------- */
.title-section {
    font-size: 48px;
    font-weight: 600;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #FFFFFF;
    margin-top: 15px;
}
.title-section .data-lenth-about {
    color: #C6F806;
    position: relative;
}
.exterat-about {
    width: 100%;
    position: absolute;
    left: 45%;
    top: 30px;
}
.exterat-about img {
    max-width: 150px;
}
.about-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFFFFF;
    margin-top: 15px;
}
.data-part {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 15px;
}
.tick-about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #C6F806;
    border-radius: 100%;
}
.tick-about img {
    max-width: 24px;
}
.data-direction {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFFFFF;
}
.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.about-image img {
    animation: smoothMove 4s ease-in-out infinite alternate;
}
.map-about {
    width: 100%;
    position: absolute;
    mix-blend-mode: soft-light;
    z-index: -1;
    top: 0;
    left: 0;
}
.map-about img {
    width: 100%;
    animation: none;
}
.exper-about {
    padding: 10px 20px;
    background-color: #FFF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    position: absolute;
    left: 0;
    bottom: 30%;
}
.exper-award {
    display: flex;
    align-items: center;
    justify-content: center;
}
.exper-award .award {
    max-width: 50px !important;
    animation: none;
    width: 100%;
}
.mega-counter {
    font-size: 26px;
    font-family: "Unbounded", serif;
    font-weight: 500;
    line-height: 32px;
    color: #000;
}
.mega-name {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 32px;
    color: #000;
}
/* --------------------------------- Resume.html ---------------------------- */
.all-set {
    overflow: auto;
}
.lawyer-resume {
    row-gap: 30px;
}
.section-heading-text {
    font-size: 48px;
    font-weight: 500;
    line-height: 64px;
    font-family: "Unbounded", serif;
    color: #FFF;
    margin-bottom: 20px;
}
.section-length {
    font-size: 18px;
    font-weight: 400;
    color: #FFFF;
    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 #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: #0C4B54;
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #C6F806;
}
.small_yellow_border_main {
    padding-left: 20px;
}
.bachelor {
    color: #C6F806;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 10px;
    font-family: "Unbounded", serif;
}
.cursus {
    color: #FFF;
    font-size: 18px;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    margin: 0;
    transition: all 0.3s;
    padding-bottom: 15px;
}
.desc-resume {
    color: #FFF;
    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: #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: #0C4B54;
    color: #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: "Data analysis";
    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: "Collaboration";
}
.progress-item.item-3::before {
    content: "Adaptability";
}
.progress-item.item-4::before {
    content: "Critical thinking";
}
.progress-item.item-4::before {
    content: "IT Consulting";
}
.progress-item.item-5::before {
    content: "Marketing";
}
.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: #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: #040404;
    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, #FFFFFF);
    overflow: hidden;
    border-radius: 6px;
}
.progress-fill {
    height: 6px;
    background: #C6F806;
    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-image: radial-gradient(at top right, #ffffff58 0%, #0C4B54 90%);
    background-color: #0C4B54;
    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: #FFFF;
    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;
    padding-top: 10px;
    font-family: "IBM Plex Sans", serif;
}
.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;
}
.education:hover .bachelor {
    color: #C6F806;
}
.service-detail:hover {
    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}
/* --------------------------------- Services.html ---------------------------- */
.title-data-mag {
    max-width: 850px;
    margin: auto;
}
.title-data-mag span {
    color: #C6F806;
}
.title-meg-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
    text-align: center;
    margin-top: 30px;
}
.service-data {
    margin-top: 40px;
    row-gap: 30px;
}
.services-box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    padding: 25px;
    border-radius: 20px;
    background-color: #0C4B54;
    background-image: radial-gradient(at top right, #ffffff32 0%, #0C4B54 70%);
    transition: all .3s ease-in-out;
    box-shadow: 0px 5px 15px 0px #04040436;
}
.services-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-icon img {
    width: 100%;
    max-width: 48px;
}
.services-name {
    font-size: 20px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 32px;
    margin-top: 20px;
    color: #C6F806;
}
.service-desc {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
    margin-top: 15px;
}
.service-learn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #C6F806;
    margin-top: 10px;
}
.service-learn i {
    transition: all .3s ease-in-out;
    font-size: 20px;
}
.learn-meg {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #C6F806;
}
.services-box:hover .service-learn i {
    margin-left: 3px;
    transition: all .3s ease-in-out;
}
.services-box:hover {
    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}
.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: #0C4B54;
    margin: auto;
    padding: 30px;
    width: 800px;
    height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.popup-content a.close {
    color: #FFFFFF;
    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);
}
.popup-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}
.popup-image img {
    width: 100%;
}
.service-title-popup {
    font-size: 30px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 38px;
    color: #C6F806;
}
.service-title-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFFFFF;
    margin-top: 15px;
}
.feature {
    margin-top: 15px;
}
.service-ul {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.service-li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.service-li i {
    color: #FFF;
    font-size: 20px;
    line-height: normal;
}
.service-model {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
}
.accordion {
    margin-top: 5px;
}
.accordion-item {
    background-color: transparent;
    border: none;
}
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: none;
}
.accordion button {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #FFFFFF;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #C6F806;
}
.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #C6F806;
    border: 1px solid #C6F806;
}
.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.accordion button[aria-expanded='true'] {
    color: #C6F806;
}
.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 15px;
}
.client-data {
    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: #C6F806;
    mix-blend-mode: normal;
}
li.slick-active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #C6F806;
    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;
}
.slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px;
    border-radius: 25px;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(21px);
    background: linear-gradient(180deg, #ffffff33 0.5544714163988829%, #ffffff2e 100%);
    mix-blend-mode: overlay;
}
.top-level {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quete-1 img {
    width: 100%;
    max-width: 120px;
}
.desc-client {
    font-size: 18px;
    font-weight: 500;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
    margin-top: 20px;
}
.review {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;
    margin-top: 15px;
    width: 100%;
}
.review i {
    font-size: 20px;
    color: #F0BB40;
}
.client-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    margin-top: 15px;
    width: 100%;
}
.client-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    overflow: hidden;
}
.client-image img {
    width: 100%;
    object-fit: cover;
}
.client-name {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}
.client-memo {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 30px;
    color: #FFFF;
}
.client-dies {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
}
/* --------------------------------- Portfolio.html ---------------------------- */
.portfolio-data {
    row-gap: 30px;
    margin-top: 40px;
}
.portfolio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-image: radial-gradient(at top right, #ffffff58 0%, #0C4B54 90%);
    padding: 10px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}
.portfolio-box:hover {
    transition: all .3s ease-in-out;
    transform: translateY(-10px);
}
.portfolio-image {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}
.portfolio-image .data-image-port {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.portfolio-name {
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 30px;
    color: #FFF;
}
.portfolio-content-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}
.portfolio-content-data img {
    max-width: 34px;
    width: 100%;
    filter: none;
}
.portfolio-box:hover .portfolio-content-data {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease-in-out;
}
.portfolio-box:hover .portfolio-image .data-image-port {
    filter: blur(2px);
    transition: all .3s ease-in-out;
}
.image-data-mega {
    row-gap: 20px;
    margin-top: 20px;
}
.port-images {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}
.port-images img {
    width: 100%;
}
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: #C6F806;
    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: #0C4B54;
    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: #0C4B54;
    z-index: 1;
}
.load-main::after {
    content: "";
    position: absolute;
    background-color: #0C4B54;
    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: #C6F806;
}
.load-port:hover .icon-down {
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}
.content {
    display: none;
}
/* --------------------------------- Pricing.html ---------------------------- */
.pricing-data {
    row-gap: 30px;
    margin-top: 40px;
}
.pricing-box {
    width: 100%;
    padding: 20px;
    background-image: radial-gradient(at top right, #ffffff58 0%, #0C4B54 90%);
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
.pricing-box:hover {
    transition: all .3s ease-in-out;
    transform: translateY(-10px);
}
.plan-name {
    font-size: 16px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    line-height: 30px;
    color: #C6F806;
}
.plan-price {
    font-size: 36px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 64px;
    color: #FFF;
    padding: 10px 0;
}
.plan-price span {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: normal;
}
.plan-desc {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
    padding-top: 5px;
}
.plan-ul {
    padding: 20px 0;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
}
.plan-li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.plan-li i {
    color: #C6F806;
    font-size: 20px;
    line-height: normal;
}
.plan-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 30px;
    color: #FFF;
}
.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    font-family: "Unbounded", serif;
    line-height: 30px;
    padding: 10px;
    color: #000;
    border-radius: 10px;
    position: relative;
    background-color: #FFF;
    overflow: hidden;
}
.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: #C6F806;
    opacity: 0;
    z-index: 1;
    transition: all 0.5s;
}
.pricing-box:hover .plan-button {
    color: #0C4B54;
}
.pricing-box:hover .plan-button::before {
    left: 0;
    right: 0;
    opacity: 1;
}
.plan-button p {
    z-index: 2;
}
.service-offer {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFFF;
    padding-top: 10px;
}
/* --------------------------------- Blog.html ---------------------------- */
.meg-seven {
    max-width: 900px;
}
.blog-main {
    margin-top: 40px;
    row-gap: 30px;
}
.blog-box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    background-image: radial-gradient(at top right, #ffffff58 0%, #0C4B54 90%);
    overflow: hidden;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}
.blog-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
}
.blog-desc {
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bloge-name {
    font-size: 18px;
    font-weight: normal;
    font-family: "Unbounded", serif;
    line-height: 30px;
    margin-top: 10px;
    color: #C6F806;
}
.bloging-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-comment {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFF;
}
.blog-comment .comment {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
}
.bloging-detail {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
    margin-top: 8px;
}
.popup-blog-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.blog-date-popup {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
}
.blog-date-popup .comment {
    font-size: 16px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
}
.bloging-ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    margin-top: 10px;
}
.bloging-li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
}
.bloging-images img {
    max-width: 24px;
}
.bloging-desc {
    font-size: 18px;
    font-weight: normal;
    font-family: "IBM Plex Sans", serif;
    line-height: 24px;
    color: #FFF;
}
.post-coment {
    margin-top: 40px;
}
.heading-title-comment h3 {
    margin-left: 0px !important;
    color: #C6F806;
    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: #FFF;
    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: #C6F806;
    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: #FFFF;
    margin-bottom: 10px;
    margin-left: 20px;
}
.main-in input {
    border-radius: 15px;
    background: #000;
    border: none;
    width: 100%;
    height: 56px;
    padding: 15px 20px;
    color: #FFF;
    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: #FFF;
}
.comment-bloger-design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.blog-box:hover {
    transition: all .3s ease-in-out;
    transform: translateY(-10px);
}
/* --------------------------------- 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-image: radial-gradient(at top right, #ffffff58 0%, #0C4B54 90%);
    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: #C6F806;
    border-radius: 20px;
    position: absolute;
    top: -35px;
}
.center-main-contact {
    color: #C6F806;
    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: #FFFF;
    color: #040404;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blog-contact p {
    color: #FFF;
}
.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;
}