 html, body {
        overflow-x: hidden;
    }

    .about {
        position: fixed;
        z-index: 10;
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        transition: all 0.2s ease;
    }

        .about .bg_links {
            width: 40px;
            height: 40px;
            border-radius: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 100%;
            backdrop-filter: blur(5px);
            position: absolute;
        }

        .about .logo {
            width: 40px;
            height: 40px;
            z-index: 9;
            background-image: url(https://rafaelavlucas.github.io/assets/codepen/logo_white.svg);
            background-size: 50%;
            background-repeat: no-repeat;
            background-position: 10px 7px;
            opacity: 0.9;
            transition: all 1s 0.2s ease;
            bottom: 0;
            right: 0;
        }

        .about .social {
            opacity: 0;
            right: 0;
            bottom: 0;
        }

            .about .social .icon {
                width: 100%;
                height: 100%;
                background-size: 20px;
                background-repeat: no-repeat;
                background-position: center;
                background-color: transparent;
                display: flex;
                transition: all 0.2s ease, background-color 0.4s ease;
                opacity: 0;
                border-radius: 100%;
            }

            .about .social.portfolio {
                transition: all 0.8s ease;
            }

                .about .social.portfolio .icon {
                    background-image: url(https://rafaelavlucas.github.io/assets/codepen/link.svg);
                }

            .about .social.dribbble {
                transition: all 0.3s ease;
            }

                .about .social.dribbble .icon {
                    background-image: url(https://rafaelavlucas.github.io/assets/codepen/dribbble.svg);
                }

            .about .social.linkedin {
                transition: all 0.8s ease;
            }

                .about .social.linkedin .icon {
                    background-image: url(https://rafaelavlucas.github.io/assets/codepen/linkedin.svg);
                }

        .about:hover {
            width: 105px;
            height: 105px;
            transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
        }

            .about:hover .logo {
                opacity: 1;
                transition: all 0.6s ease;
            }

            .about:hover .social {
                opacity: 1;
            }

                .about:hover .social .icon {
                    opacity: 0.9;
                }

                .about:hover .social:hover {
                    background-size: 28px;
                }

                    .about:hover .social:hover .icon {
                        background-size: 65%;
                        opacity: 1;
                    }

                .about:hover .social.portfolio {
                    right: 0;
                    bottom: calc(100% - 40px);
                    transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
                }

                    .about:hover .social.portfolio .icon:hover {
                        background-color: #698fb7;
                    }

                .about:hover .social.dribbble {
                    bottom: 45%;
                    right: 45%;
                    transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
                }

                    .about:hover .social.dribbble .icon:hover {
                        background-color: #ea4c89;
                    }

                .about:hover .social.linkedin {
                    bottom: 0;
                    right: calc(100% - 40px);
                    transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
                }

                    .about:hover .social.linkedin .icon:hover {
                        background-color: #0077b5;
                    }


    .cards {
      /*  width: 100%;*/
        display: flex;
            /*    justify-content: center;*/
            /*    align-items: center; */
    }

        .cards .card {
            height: 550px;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0px 20px 30px -10px rgba(0, 0, 0, 0.1);
           /* max-width: 300px;*/
            min-width: 260px;
            overflow: hidden;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            position: relative;
            transition: all 0.4s ease;
            margin: 0 10px;
			
    margin-bottom: 5%;
        }

            .cards .card:before {
                height: 190px;
                width: calc(100% + 100px);
                content: "";
                position: absolute;
                background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);
                border-radius: 4px 4px 100% 100%;
                transition: all 0.4s ease-out;
                top: 0;
            }

            .cards .card .close {
                width: 18px;
                height: 18px;
                position: absolute;
                z-index: 2;
                cursor: pointer;
                background-image: url("https://rafaelalvucas.github.io/assets/icons/misc/cross.svg");
                background-size: 80%;
                background-repeat: no-repeat;
                background-position: center;
                top: 0;
                right: 0;
                margin: 10px;
                padding: 5px;
                transition: all 0.2s ease;
            }

                .cards .card .close:hover {
                    background-size: 100%;
                    opacity: 0.8;
                }

            .cards .card .arrow {
                display: none;
            }

            .cards .card article {
                z-index: 1;
                display: flex;
                align-items: center;
                flex-direction: column;
                text-align: center;
            }

                .cards .card article h2 {
                    color: white;
                    margin: 0;
                    padding: 40px 20px 10px 20px;
                    font-weight: 500;
                    font-size: 24px;
                    letter-spacing: 0.5px;
                }

                .cards .card article .title {
                    color: white;
                    padding: 10px 20px;
                    letter-spacing: 0.8px;
                    transition: all 0.4s ease;
                }

                .cards .card article .desc {
                    padding: 10px 30px;
                    font-size: 14px;
                    text-align: center;
                    line-height: 24px;
                    color: #666;
                    height:200px;
                    transition: all 0.4s ease-out;
					    overflow: hidden;
                }

                .cards .card article .pic {
                    width: 120px;
                    height: 120px;
                    overflow: hidden;
                    border-radius: 100%;
                    margin: 20px 0;
                    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.3);
                    transition: all 0.6s ease;
                }

                    .cards .card article .pic img {
                        width: 100%;
                        -webkit-filter: grayscale(100%);
                        filter: grayscale(100%);
                    }

            .cards .card .actions {
                width: 100%;
                display: flex;
                justify-content: space-between;
                background: white;
                z-index: 1;
            }

                .cards .card .actions .btn {
                    border: 0;
                    background-color: transparent;
                    box-sizing: border-box;
                    width: calc(50% - 1px);
                    height: 36px;
                    margin: 0;
                    text-transform: uppercase;
                    font-size: 10px;
                    transition: all 0.6s ease-in-out;
                    cursor: pointer;
                    color: #4481eb;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-weight: 500;
                    font-family: "Barlow", sans-serif;
                    letter-spacing: 0.5px;
                    background: rgba(68, 129, 235, 0.08);
                }

                    .cards .card .actions .btn span {
                        z-index: 1;
                        opacity: 1;
                        transition: all 0.4s ease-in-out;
                    }

                    .cards .card .actions .btn .icon {
                        width: 10px;
                        opacity: 0;
                        position: absolute;
                        transition: all 0.2s ease-in-out;
                    }

                    .cards .card .actions .btn:before {
                        content: "";
                        width: 100%;
                        height: 0%;
                        position: absolute;
                        background: #4481eb;
                        transition: all 0.4s ease;
                        bottom: 0;
                        opacity: 0.2;
                    }

                    .cards .card .actions .btn:focus {
                        outline: 0;
                    }

                    .cards .card .actions .btn:hover {
                        background-color: rgba(255, 255, 255, 0.5);
                    }

                        .cards .card .actions .btn:hover span {
                            opacity: 0;
                            transition: all 0.3s ease-in-out;
                        }

                        .cards .card .actions .btn:hover .icon {
                            width: 22px;
                            opacity: 1;
                            transition: all 0.4s ease-in-out;
                        }

                        .cards .card .actions .btn:hover:nth-child(3) .icon {
                            width: 18px;
                        }

                        .cards .card .actions .btn:hover:before {
                            height: 100%;
                        }

                    .cards .card .actions .btn.clicked span {
                        display: none;
                    }

                    .cards .card .actions .btn.clicked .icon {
                        width: 22px;
                        opacity: 1;
                        animation: icon 0.5s ease forwards;
                    }

    @@keyframes icon {
        0% {
            width: 22px;
        }

        50% {
            width: 40px;
        }

        100% {
            width: 22px;
        }
    }

    .cards .card .actions .btn.clicked:before {
        opacity: 0.3;
        height: 100%;
    }

    .cards .card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.3);
    }

        .cards .card:hover:before {
            height: 100%;
            border-radius: 4px;
        }

        .cards .card:hover .desc {
            color: white;
        }

        .cards .card:hover .pic {
            box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.3);
        }

            .cards .card:hover .pic img {
                -webkit-filter: grayscale(0%);
                filter: grayscale(0%);
            }

    .cards .card.closed {
        min-width: 120px;
        max-width: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s ease;
        cursor: pointer;
    }

        .cards .card.closed .title,
        .cards .card.closed .desc,
        .cards .card.closed .actions,
        .cards .card.closed .close {
            display: none;
        }

        .cards .card.closed h2 {
            padding: 0;
            height: 100%;
            transform: rotate(-90deg);
            width: 440px;
            z-index: 2;
            transition: all 0.6s ease;
        }

        .cards .card.closed .pic {
            border-radius: 100%;
            height: 400px;
            width: 400px;
            position: absolute;
            top: -20px;
            margin: 0;
            box-shadow: 0;
            transition: all 0.6s ease;
        }

            .cards .card.closed .pic img {
                object-fit: cover;
                height: 100%;
                transform: translateY(20px);
            }

            .cards .card.closed .pic:before {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                background-color: black;
                opacity: 0.5;
                z-index: 1;
                transition: all 0.4s ease;
                transform: translateY(20px);
            }

        .cards .card.closed:before {
            height: 100%;
            border-radius: 4px;
        }

        .cards .card.closed .arrow {
            width: 18px;
            height: 18px;
            position: absolute;
            z-index: 2;
            cursor: pointer;
            bottom: 15px;
            padding: 5px;
            display: flex;
            justify-content: center;
            background-image: url("https://rafaelavlucas.github.io/assets/icons/misc/expand.svg");
            background-size: 80%;
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.2s ease;
        }

        .cards .card.closed:hover .arrow {
            background-size: 100%;
            opacity: 0.6;
        }

   

   /* .cards {
        padding: 20px;
        max-width: 100vw;
    }*/

    @@media (min-width: 900px) {
        .cards {
            display: flex;
            align-items: stretch;
            /* justify-content: space-between; */
        }
    }

    .cards__item {
        flex: 0 1 auto;
        display: block;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        color: #323a45;
        height: auto;
        text-align: left;
        text-decoration: none;
        border-top: 3px solid #9b59b6;
        border-right: 1px solid #e1e3e5;
        border-bottom: 1px solid #e1e3e5;
        border-left: 1px solid #e1e3e5;
        padding: 40px 50px;
        margin: 20px;
        transition: all 250ms ease-in-out;
        width: auto;
    }

    @@media (min-width: 900px) {
        .cards__item {
            width: calc(100% / 3);
        }
    }

    .cards__item:hover, .cards__item:focus {
        background: #9b59b6;
        border-color: #9b59b6;
        color: #fff;
        outline: 0;
    }

        .cards__item:hover .cards__date, .cards__item:focus .cards__date {
            color: rgba(255, 255, 255, 0.6);
        }

        .cards__item:hover .cards__title, .cards__item:focus .cards__title {
            color: #fff;
        }

        .cards__item:hover .cards__more, .cards__item:focus .cards__more {
            color: #fff;
            border-bottom: solid 1px rgba(255, 255, 255, 0.6);
        }

    .cards__item:nth-of-type(2) {
        border-top: 3px solid #ff6d3a;
    }

        .cards__item:nth-of-type(2):hover, .cards__item:nth-of-type(2):focus {
            background: #ff6d3a;
            border-color: #ff6d3a;
        }

    .cards__item:nth-of-type(3) {
        border-top: 3px solid #3498db;
    }

        .cards__item:nth-of-type(3):hover, .cards__item:nth-of-type(3):focus {
            background: #3498db;
            border-color: #3498db;
        }

    .cards__date {
        display: block;
        color: #8a959e;
        text-transform: uppercase;
        font-size: 1.2rem;
        line-height: 2.4rem;
        font-weight: 700;
        transition: all 250ms ease-in-out;
    }

    .cards__title {
        color: #323a45;
        font-weight: 300;
        margin: 0 0 30px 0;
        transition: all 250ms ease-in-out;
        font-size: 2rem;
        line-height: 3rem;
    }

    @@media (min-width: 1200px) {
        .cards__title {
            font-size: 2.4rem;
            line-height: 3.5rem;
        }
    }

    .cards__more {
        margin-top: auto;
        color: #8a959e;
        display: inline-block;
        border-bottom: 1px solid #e1e3e5;
        font-size: 1.4rem;
        line-height: 1.6rem;
        font-weight: 400;
        transition: all 250ms ease-in-out;
    }
	
		a:hover {
			text-decoration: none;
			color: #05C2DE;
			text-shadow: none;
			transition: 1s;
		}