.menu-icon {
    text-decoration: none;
}
.material-symbols-outlined {
    color: var(--gray);
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
}
.menu-icon > .material-symbols-outlined:hover {
    color: var(--lime);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
.section-btn {
    display: flex;
    border: 1px solid var(--gray);
    border-radius: 30px;
    background-color: var(--black2);
    height: 30px;
    width: 110px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    margin-bottom: 53px;
}
.section-btn > .material-symbols-outlined {
    color: var(--lime);
    font-size: 18px;
}
.section-btn-title {
    margin-left: 5px;
    font-size: 12px;
}
#intro-section > h1 {
    font-size: 78px;
    letter-spacing: -0.2px;
    line-height: 90px;
}
#intro-section > h2 {
    color: var(--gray);
}
#card {
    border: 1px solid var(--gray);
    border-radius: 30px;
}
#about-me-card {
    margin-top: 20px;
    margin-left: 15px;
}
#card-title {
    display: flex;
    justify-content: space-around;
}
#x-pic {
    border-radius: 150px;
    display: block;
    margin: 0 auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    width: 250px;
}
#xavier-text {
    width: 147px;
}
#card-subtitle > #email,
#card-subtitle > #location {
    text-align: center;
    font-size: 17px;
}
#card-icons {
    text-align: center;
    list-style: none;
}
#card-icons > li > a {
    text-decoration: none;
}
.card-logo {
    text-align: center;
    border: 1.5px solid var(--gray);
    border-radius: 50%;
    color: var(--gray);
    margin: 5px;
    padding: 10px;
    font-size: 25px;
}
.card-logo:hover {
    border-color: var(--lime);
    color: var(--lime);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
.mobile-sidebar-menu {
    opacity: 0;
    visibility: hidden;
    display: none;
}
@media (max-width: 766px) {
    body {
        grid-template-columns: 100vw;
        grid-template-rows: auto;
    }
    #about-me-card,
    #content {
        margin-left: 15px;
        margin-right: 30px;
    }
    #portfolio-section > .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #floating-menu {
        display: none;
    }
    #mobile-menu {
        position: fixed;
        background: var(--black);
        right: 30px;
        top: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid var(--gray);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        cursor: pointer;
        z-index: 100;
    }
    .bar {
        width: 20px;
        height: 1.5px;
        display: block;
        background: var(--white);
        transition: 0.3s;
    }
    .mobile-sidebar-menu.active {
        opacity: 1;
        visibility: visible;
        z-index: 100;
        display: unset;
    }
    .mobile-sidebar-menu {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        transition: 0.2s;
    }
    .mobile-sidebar-menu.active > .mobile-sidebar-inner {
        max-width: 345px;
        width: 100%;
        margin-left: auto;
        background: var(--black);
        height: 100%;
        padding-top: 50px;
        transition: 0.3s;
    }
    .mobile-sidebar-menu.active > #onclick-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: var(--black);
        opacity: 0.4;
    }
    .mobile-menu-items.active {
        width: 46%;
        margin: auto;
    }
    .mobile-menu-items > .list-items {
        list-style-type: none;
    }
    .list-items {
        padding: 0;
        margin: 0;
    }
    .list-items li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .list-items > li > a > .material-symbols-outlined {
        font-size: 17px;
        line-height: 1;
    }
    .list-items > li > a > .icon-text {
        font-size: 16px;
        line-height: 1;
    }
    .mobile-menu-items p,
    .list-items .icon-text {
        color: var(--gray);
    }
    .mobile-menu-items p {
        font-size: 19px;
    }
    .list-items .icon-text:hover {
        color: var(--white);
    }
    .icon .material-symbols-outlined {
        color: var(--lime);
        margin: 0;
        padding: 0;
    }
    .list-items > li > .icon {
        text-decoration: none;
        display: block;
    }
    .list-items > li > a {
        margin: 10px;
    }
    #social-mobile-menu > li {
        list-style-type: none;
    }
    #social-mobile-menu > li > a > i {
        font-size: 15px;
    }
}
@media (min-width: 767px) and (max-width: 999px) {
    body {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    #about-me-card,
    #content {
        margin-left: 15px;
        margin-right: 30px;
    }
    #xavier-text {
        width: 200px;
    }
    #floating-menu {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--gray);
        border-radius: 30px;
        gap: 20px;
        background-color: var(--black2);
        padding: 24px 0;
        width: 50px;
        z-index: 100;
        position: fixed;
        top: 25vh;
        right: 45px;
        text-align: center;
    }
}
@media (min-width: 1000px) {
    body {
        grid-template-columns: 350px 1fr;
        grid-template-rows: 1fr;
    }
    #about-me-card {
        grid-column: 1;
        grid-row: 1;
        overflow: hidden;
        margin-right: 20px;
        margin-left: 10px;
    }
    #content {
        overflow-y: scroll;
        padding: 5px;
        grid-column: 2;
        grid-row: 1;
    }
    #floating-menu {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--gray);
        border-radius: 30px;
        gap: 20px;
        background-color: var(--black2);
        padding: 24px 0;
        width: 50px;
        z-index: 100;
        position: fixed;
        top: 25vh;
        right: 45px;
        text-align: center;
    }
    section {
        margin-right: 60px;
    }
    section > p {
        margin-right: 80px;
    }
}
::-webkit-scrollbar-track {
    background: var(--black2);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--lime);
    border-radius: 10px;
    border: 3px solid var(--black2);
}
section {
    margin-top: 50px;
    margin-bottom: 130px;
    line-height: 30px;
}
#about-section > h1 {
    line-height: 60px !important;
}
#about-section > p {
    color: var(--gray);
}
section > h1 {
    font-size: 48px;
}
#services-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.services-item {
    padding: 10px;
    width: 33.33%;
    border: 1px solid var(--gray);
    border-radius: 20px;
    min-width: 170px;
    max-width: 250px;
}
.services-item:hover {
    border-color: var(--lime);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
.services-item > p {
    color: var(--gray);
}
.services-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.services-title > .material-symbols-outlined {
    color: var(--lime);
}
#skills-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.skills-item {
    text-align: center;
}
.skills-outline {
    padding: 20px;
}
.skills-outline > p {
    font-size: 30px;
    color: var(--lime);
    margin: 0;
}
.skills-item > p {
    font-weight: 600 !important;
}
.skills-outline:hover {
    border: 1px solid var(--gray2);
    border-radius: 100px;
    border-color: var(--lime);
    transition-property: border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
.skills-outline > img {
    width: 80px;
}
#contact-form {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(5, auto);
    gap: 30px;
}
label {
    display: block;
}
#budget-container {
    grid-row: 3;
    grid-column: 1 / 3;
}
#budget {
    width: 90%;
}
#message-container {
    grid-row: 4;
    grid-column: 1 / 3;
}
#message {
    width: 90%;
}
input,
textarea,
select {
    border: none;
    outline: none;
    background: none;
    color: var(--gray);
    font-size: 16px;
}
textarea {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
}
textarea:focus {
    color: var(--lime);
    transition-property: color;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    transition-delay: 0s;
}
textarea:focus::placeholder {
    color: #fff0;
}
.input-heading {
    color: var(--gray);
}
sup {
    color: var(--lime);
}
.btn-container {
    grid-row: 5;
    grid-column: 1 / 3;
}
.label-char > i,
.input-heading > i {
    font-size: 15px;
}
p,
h2 {
    font-weight: 200;
}
body {
    display: grid;
    margin: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Inter', 'sans-serif';
    scroll-behavior: smooth;
    background-color: var(--black2);
    color: var(--white);
}
#bg-vid {
    position: fixed;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}
#bg-vid-container {
    background-image: url(/images/bg.mp4);
    background-color: var(--black);
    background-size: cover;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
:root {
    --white: #ffffff;
    --gray: #999999;
    --gray2: #565656;
    --gray1: #333333;
    --gray3: #cccccc;
    --gray4: #aaaaaa;
    --lime: #28e98c;
    --black: #080808;
    --black2: #1a1a1a;
    --teal: #006060;
    --lightteal: #008080;
    --purple: #800080;
    --navy: #000080;
    --cyan: #17a2b8;
    --violetred: #c71585;
    --red: #ff0000;
    --orange: #ffa500;
    --green: #006400;
}
.wave-group {
    position: relative;
}
.wave-group .input {
    font-size: 16px;
    padding: 17px 10px 10px 5px;
    display: block;
    width: 200px;
    border: none;
    border-bottom: 1px solid var(--gray2);
    background: #fff0;
}
.wave-group .input:focus {
    outline: none;
}
.wave-group .label {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    display: flex;
}
.wave-group .label-char {
    transition: 0.5s ease all;
    transition-delay: calc(var(--index) * 0.05s);
}
.wave-group .input:focus ~ label .label-char,
.wave-group .input:valid ~ label .label-char {
    transform: translateY(-20px);
    font-size: 14px;
    color: var(--lime);
}
.wave-group .bar {
    position: relative;
    display: block;
    width: 200px;
}
.wave-group .bar:before,
.wave-group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: var(--lime);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.wave-group .bar:before {
    left: 50%;
}
.wave-group .bar:after {
    right: 50%;
}
.wave-group .input:focus ~ .bar:before,
.wave-group .input:focus ~ .bar:after {
    width: 113px;
}
#hire-me-container {
    display: flex;
    justify-content: center;
    margin: 15px 0 15px 0;
}
.hire-me-btn {
    font-size: 15px;
}
.contact-btn-txt {
    font-size: 15px;
}
.button {
    height: 50px;
    width: 200px;
    position: relative;
    background-color: #fff0;
    cursor: pointer;
    border: 1px solid var(--lime);
    overflow: hidden;
    border-radius: 30px;
    color: var(--lime);
    transition: all 0.5s ease-in-out;
}
.btn-txt {
    z-index: 1;
    letter-spacing: 4px;
    font-family: 'Inter', 'sans-serif';
}
.type1::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: var(--lime);
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}
.button:hover {
    box-shadow: 1px 1px 200px #252525;
    color: var(--black);
    border: none;
}
.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}
.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    height: 100%;
    width: 100%;
}
.widget {
    width: 100%;
    max-width: 350px;
    height: 452px;
    border: 1px solid var(--gray);
    background-color: #fff;
    opacity: 0.85;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 7px 30px 0 rgb(50 50 50 / 0.32);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.widget__photo {
    width: 100%;
    height: 200px;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform: scale(1);
}
.moviedash-pic {
    background: url(../images/moviedash.png);
}
.nutriv3-pic {
    background: url(../images/nutriv3-2.png);
}
.equip-pic {
    background: url(../images/equip.png);
}
.urbanliving-pic {
    background: url(../images/urbanliving.png);
}
.ims-pic {
    background: url(../images/bakery.png);
}
.ares-pic {
    background: url(../images/ares.jpeg);
}
.forecast-pic {
    background: url(../images/ml.jpg);
}
.widget__photo:after {
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0 0 0 / 0.6);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 10;
}
.widget__details {
    padding: 30px;
    position: relative;
}
.widget__badges {
    position: absolute;
    right: 30px;
    top: 30px;
    text-decoration: none !important;
}
.widget__badge {
    font-size: 12px;
    display: inline-block;
    border: 1px solid #ccc;
    color: gray;
    width: 40px;
    text-align: center;
    padding-top: 5px;
    border-radius: 3px;
    text-decoration: none !important;
}
.widget__badge.widget__badge--rating {
    background-color: var(--lime);
    border-color: var(--lime);
    color: #fff;
}
.gh-link {
    color: inherit;
}
.gh-icon-portfolio {
    font-size: 22px !important;
    margin: 0;
}
.widget__name {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    width: 100%;
    padding: 0 80px 0 0;
}
.widget__type {
    font-size: 12px;
    color: #666;
}
.widget__info span {
    color: #777;
    font-size: 14px;
    display: block;
    width: 100%;
    margin-bottom: 4px;
}
.widget__info span:first-of-type {
    margin-top: 15px;
}
.widget__table {
    width: 100%;
    font-size: 12px;
}
.widget__table tr td {
    color: #777;
    line-height: 20px;
}
.widget__table tr td:first-child {
    color: #999;
}
.widget__overlay {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    height: 100%;
    background-color: rgb(0 0 0 / 0.6);
}
.widget__button {
    cursor: pointer;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    margin: 0 auto;
    padding: 10px 0;
    width: 70%;
    background-color: var(--lime);
    border-radius: 4px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    left: 0;
    right: 0;
    top: -40px;
}
.widget:hover .widget__button {
    top: 32px;
}
.widget:hover .widget__photo {
    height: 100px;
    transform: scale(1.3);
}
.widget:hover .widget__photo:after {
    opacity: 1;
}
.widget:hover .widget__overlay {
    visibility: visible;
    opacity: 1;
}
