:root {
    --primary_color: #28e98c;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
    color: #999999;
    background: #000;
    line-height: 1.7;
    overflow-x: hidden;
    height: 100vh;
}

.bg-white {
    background: #fff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-width {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
}

.theme-btn {
    background: var(--primary_color);
    color: #000000;
    display: block;
    text-align: center;
    padding: 11px 58px 10px 58px;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    justify-content: center;
    text-transform: uppercase;
    border: none;
    transition: .3s;
    cursor: pointer;
    border: 2px solid var(--primary_color);
}

.theme-btn i {
    font-size: 24px;
    margin-right: 10px;
    display: block;
    margin-bottom: 3px;
}

.theme-btn:hover {
    background: none;
    color: var(--primary_color);
}

.custom-container {
    max-width: 1130px;
    padding: 0 15px;
    margin: auto;
}

.subtitle {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    border: 1px solid #565656;
    padding: 9px 20px;
    border-radius: 30px;
    margin-bottom: 53px;
    display: inline-flex;
    align-items: center;
}

.subtitle i {
    margin-bottom: 1px;
    font-size: 14px;
    margin-right: 10px;
}

.page-loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader .bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}

.page-loader .bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    transform-origin: 50%;
    animation: bounceLoader 500ms alternate infinite ease;
}

/* Icon Menu */

.icon-menu {
    position: absolute;
    right: 68px;
    top: 60px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    border: 1px solid #575757;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: .3s;
    background: #1f1f1f;
    z-index: 99;
}

.icon-menu span {
    width: 20px;
    display: block;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.icon-menu:hover {
    border-color: var(--primary_color);
}

.icon-menu:hover span {
    background: var(--primary_color);
}

.page-section {
    overflow: hidden;
}

/* Menu */

.menu {
    flex-direction: column;
    border: 1px solid #575757;
    border-radius: 30px;
    position: fixed;
    right: 68px;
    top: 322px;
    /* width: 55px; */
    text-align: center;
    gap: 20px;
    padding: 24px 0;
    background: #1f1f1f;
    z-index: 20;
}

.menu li .scroll-to,
.menu li a {
    display: block;
    position: relative;
    /* padding: 10px 10px; */
    width: 55px;
    transition: .3s;
    color: #999999;
    cursor: pointer;
}

.menu li a.active,
.menu li a:hover,
.menu li .scroll-to.active,
.menu li .scroll-to:hover {
    color: var(--primary_color);
}

.menu li .scroll-to:hover span,
.menu li a:hover span {
    opacity: 1;
    visibility: visible;
}

.menu li .scroll-to i,
.menu li a i {
    font-size: 20px;
    display: block;
}

.menu li .scroll-to span,
.menu li a span {
    position: absolute;
    transition: .3s;
    font-size: 12px;
    background: #404042;
    right: 100%;
    color: #fff;
    display: block;
    padding: 3px 8px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
}

.menu li .scroll-to span::before,
.menu li a span::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #404042;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: rotate(54deg) skew(-8deg, -39deg);
    margin-top: -5px;
    z-index: -1;
}

/* Responsive Sidebar Menu */
.responsive-sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.responsive-sidebar-menu.active {
    opacity: 1;
    visibility: visible;
}

.global-color .inner .overlay,
.responsive-sidebar-menu .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #565656;
    opacity: 0.5;
}

.responsive-sidebar-menu .sidebar-menu-inner {
    max-width: 345px;
    width: 100%;
    margin-left: auto;
    background: #191919;
    height: 100%;
    overflow-x: hidden;
    padding-top: 50px;
    margin-right: -250px;
    transition: .3s;
}

.responsive-sidebar-menu.active .sidebar-menu-inner {
    margin-right: 0;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap {
    width: 46%;
    margin: auto;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap p {
    font-size: 18px;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    transform: translateY(0);
    background: none;
    border-radius: 0;
    border: none;
    margin-bottom: 30px;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a:hover span {
    color: #fff;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a i {
    margin-bottom: 2px;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a span {
    position: relative;
    right: 0;
    opacity: 1;
    visibility: visible;
    color: #999999;
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a span::before {
    display: none
}

.responsive-sidebar-menu .sidebar-menu-inner .menu-wrap .menu li a.active span {
    color: #fff;
}

.responsive-sidebar-menu .sidebar-menu-inner .global-color-option,
.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social {
    width: 46%;
    margin: auto;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul {
    gap: 15px;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a {
    color: #999999;
    transition: .3s;
    font-size: 16px;
}

.responsive-sidebar-menu .sidebar-menu-inner .sidebar-social ul li a:hover {
    color: var(--primary_color);
}

/* Header */

.header-area {
    background: #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 25px 0;
}

.header-area .logo {
    display: block;
}

.header-area .logo img {
    display: block;
}

.header-area nav {
    transition: .3s;
}

.header-area nav .nav-menu {
    gap: 25px;
    display: flex;
}

.header-area nav .nav-menu li {
    position: relative;
}

.header-area nav .nav-menu li .toggle-sub-dropdown,
.header-area nav .nav-menu li .toggle-dropdown {
    display: none;
    width: 35px;
    text-align: center;
}

.header-area nav .nav-menu li .dropdown {
    position: absolute;
    left: 0;
    width: 200px;
    background: #000;
    box-shadow: 1px 6px 20px rgb(0 0 0 / 20%);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    padding: 5px 0;
}

.header-area nav .nav-menu li .dropdown li a {
    padding: 8px 15px;
    line-height: 1.2;
}

.header-area nav .nav-menu li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
}

.header-area nav .nav-menu li .dropdown li .dropdown {
    left: 100%;
    top: 0;
}

.header-area nav .nav-menu li a {
    color: #fff;
    display: block;
    transition: .3s;
    padding: 8px 0;
}

.header-area nav .nav-menu li a:hover {
    color: var(--primary_color);
}

.header-area .header-right .show-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 30%);
    margin-left: auto;
}

.header-area nav .close-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
}

/* - Section Header */

.section-header h1 {
    font-size: 48px;
    line-height: 60px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 33px;
}

.section-header h2 span {
    color: var(--primary_color);
    font-weight: 300;
}

/* Left Sidebar */

.left-sidebar {
    max-width: 485px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #565656;
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
    z-index: 10;
}

.ashar-main .left-sidebar {
    display: none;
}

.left-sidebar>img.me {
    border-radius: 30px;
    display: block;
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
}

.left-sidebar .sidebar-header {
    margin-bottom: 25px;
}

.left-sidebar .sidebar-header .designation {
    max-width: 170px;
    text-align: right;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.left-sidebar h2 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 300;
}

.left-sidebar .address {
    margin-bottom: 30px;
}

.left-sidebar .copyright {
    font-size: 14px;
    text-align: center;
    margin-bottom: 45px;
}

.left-sidebar .social-profile {
    gap: 8px;
    margin-bottom: 40px;
}

.left-sidebar .social-profile li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border: 2px solid #565656;
    border-radius: 50%;
    color: #999999;
    font-size: 20px;
    transition: .3s;
}

.left-sidebar .social-profile li a:hover {
    color: var(--primary_color);
    border-color: var(--primary_color);
}

.left-sidebar .theme-btn {
    width: 100%;
}

/* Hero Section */

.hero-section {
    padding: 68px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3;
}

.hero-section .hero-content h1 {
    font-size: 60px;
    letter-spacing: -1.2px;
    line-height: 70px;
    margin-bottom: 43px;
    font-weight: 300;
}

.hero-section .hero-content h1 span {
    color: var(--primary_color);
}

.hero-section .hero-content>p {
    max-width: 480px;
    margin-bottom: 31px;
}

.hero-section .hero-content .go-to-project-btn {
    width: 175px;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 50%;
    border: 1px solid #575757;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
}

.hero-section .hero-content .go-to-project-btn img {
    display: block;
    animation: rotating 6s infinite linear;
}

.hero-section .hero-content .go-to-project-btn i {
    position: absolute;
    color: #fff;
    font-size: 40px;
    display: block;
}

.hero-section .hero-content .facts {
    gap: 100px;
    margin-top: 55px;
}

.hero-section .hero-content .facts h1 {
    font-size: 72px;
    color: var(--primary_color);
    line-height: 56px;
    margin-bottom: 38px;
}

.hero-section .hero-content .facts p {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

/* Home 3 */

.home1-page,
.home5-page,
.home6-page {
    background: #000;
}

.home-3 {
    overflow: hidden;
}

.home-3:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.home1-page .menu,
.home5-page .menu,
.home6-page .menu,

.home1-page .icon-menu,
.home5-page .icon-menu,
.home6-page .icon-menu {
    background: #000000;
}

/* Home 5 */

body .body-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home2-page .body-overlay,
.home3-page .body-overlay {
    opacity: 0.1;
}

.home1-page .body-overlay,
.home4-page .body-overlay,
.home5-page .body-overlay {
    opacity: 0.3;
}

/* About */
.about-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.about-area .about-content p {
    line-height: 30px;
    max-width: 610px;
}

/* Resume */

.resume-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.resume-area .resume-content .resume-timeline .item {
    position: relative;
    padding-left: 74px;
    padding-bottom: 0px;
    margin-bottom: 4rem !important;
}

.resume-area .resume-content .resume-timeline .item:last-child {
    padding-bottom: 0;
}

.resume-area .resume-content .resume-timeline .item:last-child::after {
    height: calc(100% - 10px);
}

.resume-area .resume-content .resume-timeline .item::after {
    content: '';
    background: #333333;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

.resume-area .resume-content .resume-timeline .item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #656565;
    border-radius: 50%;
    left: -6px;
    top: 7px;
    transition: .3s;
}

.resume-area .resume-content .resume-timeline .item .date {
    display: block;
    margin-bottom: 28px;
    transition: .3s;
}

.resume-area .resume-content .resume-timeline .item h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #fff;
    margin: 30px 0 10px 0;
}

.resume-area .resume-content .resume-timeline .item h2 a {
    color: #fff;
    display: block;
}

.resume-area .resume-content .resume-timeline .item p {
    font-size: 0.9em;
    color: #999999;
    margin-bottom: 18px;
}

.resume-area .resume-content .resume-timeline .item p:last-child {
    margin-bottom: 0;
}

.resume-area .resume-content .resume-timeline .item:hover::before {
    background: var(--primary_color);
}

.resume-area .resume-content .resume-timeline .item:hover .date {
    color: var(--primary_color);
}

/* Services */
.services-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.services-items .service-item {
    border: 1px solid #565656;
    border-radius: 20px;
    transition: .3s;
    position: relative;
    padding: 44px 48px 41px 48px;
    margin-bottom: 10px;
}

.services-items .service-item:last-child {
    margin-bottom: 0;
}

.services-items .service-item h2 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #fff;
}

.services-items .service-item h2 a {
    color: #fff;
    transition: .3s;
}

.services-items .service-item:hover {
    border-color: var(--primary_color);
}

.services-items .service-item:hover h2 a {
    color: var(--primary_color);
}

.services-items .service-item p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 0;
}

.services-items .service-item .projects {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}

.services-items .service-item:hover .projects {
    text-decoration: underline;
}

.services-items .service-item i {
    position: absolute;
    font-size: 30px;
    color: var(--primary_color);
    top: 45px;
    right: 50px;
}

/* Skills */
.skills-area {
    padding-top: 90px;
    padding-bottom: 40px;
}

.skills .skill {
    margin-bottom: 50px;
}

.skills .skill .skill-inner {
    border: 2px solid #565656;
    border-radius: 85px;
    padding: 54px 0 48px 0;
    margin-bottom: 20px;
    transition: .3s;
}

.skills .skill:hover .skill-inner {
    border-color: var(--primary_color);
}

.skills .skill .skill-inner img {
    display: block;
    margin: auto auto 29px auto;
}

.skills .skill .skill-inner h1 {
    font-size: 30px;
    color: var(--primary_color);
    font-weight: 300;
    margin: 0;
}

.skills .skill p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* Portfolio */

.portfolio-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.portfolio-items .portfolio-item {
    margin-bottom: 62px;
}

.portfolio-items>div:last-child .portfolio-item {
    margin-bottom: 0;
}

.portfolio-items .portfolio-item .portfolio-item-inner {
    height: 370px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    margin-bottom: 30px;
}

.portfolio-items .portfolio-item.portfolio-full .portfolio-item-inner {
    height: 410px;
}

.portfolio-items .portfolio-item .portfolio-item-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    bottom: 20px;
    left: 20px;
}

.portfolio-items .portfolio-item .portfolio-item-inner .portfolio-categories li a {
    display: block;
    font-size: 14px;
    background: #fff;
    color: #000;
    padding: 7px 20px;
    border-radius: 19px;
    transition: .3s;
}

.portfolio-items .portfolio-item:hover .portfolio-item-inner .portfolio-categories li a {
    background: #1f1f1f;
    color: #fff;
}

.portfolio-items .portfolio-item h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

.portfolio-items .portfolio-item h2 a {
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.portfolio-items .portfolio-item:hover h2 a {
    border-color: #ffffff;
}

/* Testimonial */
.testimonial-item .testimonial-item-inner {
    border: 2px solid #565656;
    border-radius: 30px;
    padding: 50px 50px 43px 50px;
}

.testimonial-item .testimonial-item-inner .author {
    gap: 16px;
    margin-bottom: 45px;
}

.testimonial-item .testimonial-item-inner .author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-item .testimonial-item-inner .author h3 {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
}

.testimonial-item .testimonial-item-inner .author p {
    color: #999999;
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
}

.testimonial-item .testimonial-item-inner .author p span {
    color: var(--primary_color);
}

.testimonial-item .testimonial-item-inner>p {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 27px;
}

.testimonial-item .testimonial-item-inner .project-btn {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav {
    margin-top: 50px;
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav .testimonial-nav {
    gap: 15px;
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav .testimonial-nav button {
    width: 45px;
    height: 45px;
    display: block;
    background: none;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #565656;
    font-size: 18px;
    color: #fff;
    transition: .3s;
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav .testimonial-nav button:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav .testimonial-nav #testimonial-slide-count {
    font-size: 13px;
    color: #666666;
    font-weight: 300;
}

.testimonial-area .testimonial-slider-wrap .testimonial-footer-nav .testimonial-nav #testimonial-slide-count .left {
    color: #fff;
}

/* Pricing Table */
.pricing-area {
    padding-top: 90px;
    padding-bottom: 90px;
}

.pricing-table-items .pricing-table {
    border: 1px solid #565656;
    border-radius: 30px;
    padding: 37px 40px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}

.pricing-table-items .pricing-table:hover {
    border-color: var(--primary_color);
}

.pricing-table-items .pricing-table .pricing-table-header {
    border-bottom: 1px solid #555555;
    padding-bottom: 20px;
    margin-bottom: 34px;
}

.pricing-table-items .pricing-table .pricing-table-header .top {
    margin-bottom: 30px;
}

.pricing-table-items .pricing-table .pricing-table-header h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header .top p {
    font-size: 13px;
    line-height: 20px;
    color: #999999;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header h1 {
    font-size: 42px;
    color: var(--primary_color);
    font-weight: 300;
    margin: 0;
}

.pricing-table-items .pricing-table .pricing-table-header h1 span {
    font-size: 24px;
    color: #999999;
}

.pricing-table-items .pricing-table ul {
    margin-bottom: 80px;
}

.pricing-table-items .pricing-table ul li {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

.pricing-table-items .pricing-table ul li:last-child {
    margin-bottom: 0;
}

.pricing-table-items .info {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    margin: 60px 0 0 0;
}

.pricing-table-items .info a {
    color: var(--primary_color);
    text-decoration: underline;
}

/* Contact */
.contact-area {
    padding-bottom: 50px;
}

.contact-area .contact-content h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 60px;
}

.contact-area .contact-content #required-msg {
    color: #fc4545;
    font-size: 14px;
    margin-bottom: 31px;
    display: none;
}

.contact-area .contact-content #required-msg.show {
    display: block;
}

.contact-area .contact-content .contact-form .input-group {
    margin-bottom: 34px;
}

.contact-area .contact-content .contact-form .input-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2px;
}

.contact-area .contact-content .contact-form .input-group label sup {
    color: #fc4545;
    font-size: 12px;
    top: 0;
}

.contact-area .contact-content .contact-form .input-group label span {
    color: #999999;
    text-transform: none;
}

.contact-area .contact-content .contact-form .input-group select,
.contact-area .contact-content .contact-form .input-group textarea,
.contact-area .contact-content .contact-form .input-group input {
    display: block;
    color: #fff;
    width: 100%;
    border-bottom: 1px solid #575757 !important;
    background: #9d9d9d36;
    font-size: 18px;
    transition: .2s;
    padding: 0.8rem 0.6rem !important;
    border: none;
}

.contact-area .contact-content .contact-form .input-group textarea {
    height: 140px;
    border-bottom: 1px solid #555555;
    resize: none;
}

.contact-area .contact-content .contact-form .input-group select {
    display: block;
    margin-left: -5px !important;
    font-weight: 300;
}

.contact-area .contact-content .contact-form .input-group select:focus,
.contact-area .contact-content .contact-form .input-group textarea:focus,
.contact-area .contact-content .contact-form .input-group input:focus {
    outline: none;
    box-shadow: none;
    border-color: #555555;
}

.contact-area .contact-content .contact-form .input-group textarea::placeholder,
.contact-area .contact-content .contact-form .input-group input::placeholder {
    color: #666666;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment {
    position: relative;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment label {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment label i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

.contact-area .contact-content .contact-form .input-group.upload-attachment input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.contact-area .contact-content .contact-form .input-group.submit-btn-wrap {
    margin-bottom: 0;
    margin-top: 18px;
}

/* Comment Form */
.comment-form {
    padding-top: 20px;
}

.comment-form h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.comment-form form .input-group {
    margin-bottom: 20px;
}

.comment-form form .input-group input,
.comment-form form .input-group textarea {
    font-size: 14px;

    display: block;
    color: #fff;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    transition: .2s;
    padding-bottom: 3px;
}

.comment-form form .input-group input:focus,
.comment-form form .input-group textarea:focus {
    outline: none;
    box-shadow: none;
}

.comment-form form .input-group textarea {
    height: 180px;
    border-bottom: 1px solid #555555;
    resize: none;
}

/* Footer */
.footer-area {
    background: #1f1f1f;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../images/bg-shape.png') center no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.footer-area .footer-widget-item h3 {
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 20px;
}

.footer-area .footer-widget-item p {
    color: #cccccc;
    font-size: 15px;
}

.footer-area .footer-widget-item .social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.footer-area .footer-widget-item .social-links li a {
    color: #ccc;
    font-size: 18px;
    transition: .3s;
}

.footer-area .footer-widget-item .social-links li a:hover {
    color: #fff;
}

.footer-area .footer-widget-item .social-links li a i {
    display: block;
}

.footer-area .footer-widget-item.footer-links ul li+li {
    margin-top: 15px;
}

.footer-area .footer-widget-item.footer-links ul li a {
    color: #ccc;
    font-size: 15px;
    display: block;
    transition: .3s;
}

.footer-area .footer-widget-item.footer-links ul li a:hover {
    color: #fff;
}

.footer-area .footer-widget-item.footer-contact-widget ul li {
    display: block;
}

.footer-area .footer-widget-item.footer-contact-widget ul li+li {
    margin-top: 15px;
}

.footer-area .footer-widget-item.footer-contact-widget ul li .title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    position: relative;
    z-index: 1;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.footer-area .footer-widget-item.footer-contact-widget ul li .sub-title {
    color: #cccccc;
    font-size: 15px;
}

/* Extra */

@keyframes rotating {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceLoader {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

.glitch {
    position: relative;
    display: inline-block;
    color: #000;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #4fff2c;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #3d3d3d, 2px 2px #1F1F1F;
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(5px, 9999px, 75px, 0);
    }

    25% {
        clip: rect(65px, 9999px, 91px, 0);
    }

    50% {
        clip: rect(90px, 9999px, 86px, 0);
    }

    75% {
        clip: rect(40px, 9999px, 70px, 0);
    }

    100% {
        clip: rect(82px, 9999px, 82px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(15px, 9999px, 100px, 0);
    }

    25% {
        clip: rect(8px, 9999px, 35px, 0);
    }

    50% {
        clip: rect(78px, 9999px, 70px, 0);
    }

    75% {
        clip: rect(12px, 9999px, 92px, 0);
    }

    100% {
        clip: rect(49px, 9999px, 14px, 0);
    }
}

#cursor {
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#typed-text {
    display: inline-block;
    text-align: left;
}

a.go-to-project-btn.scroll-to.scroll-animation {
    margin-bottom: -180px;
}

.shine-effect:hover {
    transform: scale(0.97);
}

.shine-effect {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    transition: .3s ease-in-out;
    margin-bottom: 1rem;
}

.shine-effect img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.shine-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    animation: shine-animation 4s infinite ease-in-out 3s;
}

@keyframes shine-animation {
    0% {
        left: -130%;
        top: 0;
    }

    50% {
        left: 130%;
        top: 0;
    }

    100% {
        left: -130%;
        top: 0;
    }
}

img.IcoImg {
    width: 50px;
    float: right;
    height: auto !important;
    object-fit: contain;
}

.skill img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(1);
    transition: .3s ease-in-out;
}

.skill:hover img {
    filter: initial;
}

.Footer {
    margin: 50px 0 -40px 0;
    border-top: 1px solid #1f1f1f;
    padding-top: 20px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #1f1f1f;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #1f1f1f;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-image: -webkit-gradient(linear,
            left bottom,
            left top,
            color-stop(0.44, rgb(40 233 140 / 46%)),
            color-stop(0.72, rgb(32 185 111)),
            color-stop(0.86, rgb(40 233 140)));
}

.left-sidebar .sidebar-header>img {
    width: 140px;
}

a.close-button {
    color: #fff;
    border: 1px solid #fff;
    padding: 0.4rem 1rem;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 20px;
}

.mt-10 {
    margin-top: 2rem;
}

.section-header h1 span {
    color: #28d883;
}

img.bg-image {
    background: #353535;
    padding: 2rem;
    object-fit: contain !important;
}   

.testimonial-item .testimonial-item-inner .author img {
    height: 60px !important;
    width: 60px !important;
}

.testimonial-item .testimonial-item-inner {
    padding-bottom: 1.4rem !important;
}