.Skills {
    background-image: linear-gradient(45deg, #a06bff, #7070e0);
    padding: 7rem 1.8rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    overflow: hidden;
}
.skills-title {
    font-size: 1.5rem;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto 3rem;
    position: relative;
}
.skills-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .25rem;
    background-color: var(--identifi-color);
    bottom: -.3rem;
    left: 50%;
    transform: translateX(-50%);
}
.skills-sections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1rem;
}
.skills-sections > div {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    transform: translate3d(var(--mainDAOS-N), 0, 0);
    opacity: 0;
}
.skills-sections [id^="skills-item-"] h3 {
    text-align: center;
    color: #4A3F90;
}
.table-skills [name="skills-img"] {
    width: 2.5rem;
}
.table-skills tr {
    display: flex;
    align-content: end;
    gap: 1rem;
    margin-top: 1.2rem;
    align-items: center;
    position: relative;
}
.table-skills {
    border-left: .4rem solid var(--identifi-color);
    padding-left: 1.2rem;
    margin-left: 1.2rem;
}
.table-skills tr::before {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    left: 0;
    transform: translateX(-2.1rem);
    border-radius: 50%;
    background-color: var(--identifi-color);
}
/* ======================================================================================== */
.Projects {
    background: linear-gradient(45deg, #2F68BB, #6FA3BF);
    padding: 7rem 1.8rem 1.2rem;
    font-size: 1rem;
    overflow: hidden;
    color: #fff;
}
.title-projects {
    width: fit-content;
    margin: 0 auto 3rem;
    gap: 1.2rem;
    transform: translate3d(0, var(--mainDAOS-N), 0);
    opacity: 0;
}
.title-project-text {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3c1ba4;
}
.projects-wheel {
    width: 5rem;
    height: 5rem;
    border: .6rem solid var(--identifi-color);
    border-radius: 50%;
    position: relative;
    animation: spinner-projects-wheel 3s linear infinite;
}
.projects-wheel::after {
    content: "";
    position: absolute;
    background-color: #5cbeff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
[class^="projects-item-wheel-"] {
    background-color: var(--identifi-color);
    width: 162.5%;
    height: 1.25rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
[class^="projects-item-wheel-"]:nth-child(1){ transform: translate(-50%, -50%) rotate(45deg); }
[class^="projects-item-wheel-"]:nth-child(2){ transform: translate(-50%, -50%) rotate(90deg); }
[class^="projects-item-wheel-"]:nth-child(3){ transform: translate(-50%, -50%) rotate(135deg); }
.projects-content-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1rem;
}
.projects-content-item-img {
    width: 40%;
}
.projects-content-item-img img {
    width: 100%;
    border-radius: 0.75rem;
}
.projects-content-item-info {
    width: 60%;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.projects-content-item-info h3 {
    gap: 1rem;
}
.projects-btn-go {
    display: inline-block;
    width: 75%;
    padding: .3rem;
    background: #216bd7;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    box-shadow: 3px 3px 0px 0px #000;
    margin-top: .75rem;
    cursor: pointer;
    transition: all .1s ease;
}
.projects-btn-go:hover {
    transform: scale(0.95);
}
.fire-img {
    width: 2.5rem;
    padding: .25rem;
    background-color: rgba(137, 43, 226, 0.7);
    border-radius: 50%;
}
/* ======================================================================================== */
.Contact {
    min-height: 84vh !important;
    background-image: linear-gradient(45deg, #ecd1c6, #D8B4A6);
    padding: 7rem 1.8rem 1.2rem;
    font-size: 1rem;
    overflow: hidden;
}
.contact-send-message {
    width: 37.5rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: .4rem;
    transform: translate3d(0, var(--mainDAOS-N), 0);
    opacity: 0;
}
.contact-send-message h2 {
    text-align: center;
    color: #000;
}
.contact-send-message form {
    display: flex;
    flex-flow: column;
    width: 100%;
}
.contact-send-message form label {
    margin-top: 1.5rem;
    font-weight: bold;
}
.contact-send-message form h5 {
    margin-top: .3rem;
    color: #9f401b;
}
.contact-send-message form input, .contact-send-message form textarea {
    width: 100%;
    height: 2.5rem;
    padding: .5rem;
    font-size: 0.9rem;
    border-radius: .2rem;
    border: 1px solid #838383;
    outline: none;
    margin-top: .2rem;
}
.contact-send-message form input:focus, .contact-send-message form textarea:focus {
    box-shadow:  0 0 0 .25rem rgb(159 64 27 / 21%)
}
.contact-send-message form textarea  {
    height: 5rem;
    max-width: 100%;
}
.contact-send-message form button {
    margin-top: 2rem;
    min-height: 2.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: #cf774a;
    color: #fff;
    font-weight: bold;
    border: 2px solid rgb(172, 79, 46);
    border-radius: .2rem;
    transition: all .5s ease;
    padding: .2rem 0;
}
.contact-send-message form button:hover {
    background-color: rgb(179, 80, 45);
}
.contact-send-message form h4 {
    text-align: center;
    margin-top: 1.2rem;
}
.send-btn-loader {
    display: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: transparent;
    border: .25rem solid;
    border-color: #fff transparent #fff #fff;
    animation: send-btn-loader 1s linear infinite;
}
#send-message.active .send-btn-loader { display: block; }
#send-message.active .send-btn-send { display: none; }
@keyframes send-btn-loader {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
/* ======================================================================================== */
footer {
    padding: 1.25rem;
    font-size: 1rem;
    background-color: var(--nav-color);
    width: 100%;
    min-height: 15vh;
    color: var(--main-color);
    text-align: center;
    box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.2);
}
.Note {
    margin-top: 1rem;
    font-size: .8rem;
    color: #e6e6e6;
}