
    .container1 {
        max-width: 90%;
        background: #fff;
        margin: 0px auto 0px;
        box-shadow: 0px 0px 6px 4px #4286FF;
        border-radius: 3px;
        padding: 40px;
        margin-top: 50px;
        margin-bottom: 5px;
    }

    @media (max-width: 767px) {
        .container1 {
            padding: 10px;

        }

        .first-name {
            font-size: 20px;
        }
    }





    .wrapper {
        /* display: block; */
        margin: 100px auto;
        width: 90%;
        height: 350px;
        position: relative;
        padding: 10px;
    }

    .orange-border {
        background-color: #4286FF;
        background-image: linear-gradient(130deg, #4286FF, #4286FF);
        position: absolute;
    }

    .orange-top {
        width: 100px;
        height: 10px;
        top: 0;
        left: 0;
    }

    .orange-left {
        width: 10px;
        height: 100px;
        top: 0;
        left: 0;
    }

    @keyframes leftgrow {
        0% {
            height: 100px;
            width: 10px;
        }

        40% {
            height: 100%;
            width: 10px;
        }

        100% {
            width: 100%;
            height: 100%;
        }
    }

    @keyframes leftshrink {
        0% {
            width: 100%;
            height: 100%;
        }

        60% {
            height: 100%;
            width: 10px;
        }

        100% {
            height: 100px;
            width: 10px;
        }
    }

    @keyframes topgrow {
        0% {
            width: 100px;
            height: 10px;
        }

        60% {
            width: 100%;
            height: 10px;
        }

        100% {
            width: 100%;
            height: 100%;
        }
    }

    @keyframes topshrink {
        0% {
            width: 100%;
            height: 100%;
        }

        40% {
            width: 100%;
            height: 10px;
        }

        100% {
            width: 100px;
            height: 10px;
        }
    }

    .orange-left.grow {
        animation: leftgrow .5s forwards;
    }

    .orange-left.shrink {
        animation: leftshrink .5s forwards;
    }

    .orange-top.grow {
        animation: topgrow .5s forwards;
    }

    .orange-top.shrink {
        animation: topshrink .5s forwards;
    }

    .white-card {
        display: block;
        text-decoration: none;
        position: absolute;
        background-color: white;
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        /* text-align: center; */
        box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2);
        padding: 20px;
    }

    .white-card img {
        width: 30px;
        margin-top: 44px;
    }

    .category {
        font-size: 18px;
        color: #222;
        font-weight: 700;
        margin: 20px 0 30px;
    }

    .CTA {
        text-decoration: none;
        text-transform: uppercase;
        padding: 11px 40px 13px;
        color: #4286FF;
        /* position: absolute; */
        /* left: 50%; */
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1px;
        font-weight: 600;
        border: 2px solid #4286FF;
        display: inline-block;
        transition: all .5s;
    }


    .CTA:hover {
        background-color: #4286FF !important;
        color: white !important;
    }

    @media (max-width: 767px) {
        .top-wrapper {
            height: 610px;
        }
    }

    @media (max-width: 360px) {
        .wrapper {
            height: 665px;
        }
    }

    .accordion button {

        padding-right: 20px;

    }



    .header1 {
        margin-bottom: 30px;
        background: #4286FF;
        padding: 10px;
        color: white;
    }

    .full-name {
        font-size: 40px;
        /* text-transform: uppercase; */
        margin-bottom: 5px;
    }

    .first-name {
        font-weight: 700;
    }

    .last-name {
        font-weight: 300;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .email,
    .phone {
        color: #999;
        font-weight: 300;
    }

    .separator {
        height: 10px;
        display: inline-block;
        border-left: 2px solid #999;
        margin: 0px 10px;
    }

    .position {
        font-weight: 500;
        display: inline-block;
        margin-right: 10px;
        text-decoration: underline;
    }

    .about {
        color: white;
    }

    .details {
        line-height: 20px;
        padding: 10px;
    }

    .section {
        margin-bottom: 40px;
    }

    .section:last-of-type {
        margin-bottom: 0px;
    }

    .section__title {
        letter-spacing: 2px;
        color: #54AFE4;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .section__list-item {
        margin-bottom: 20px;
    }

    .section__list-item:last-of-type {
        margin-bottom: 0;
    }

    .left,
    .right {
        vertical-align: top;
        display: inline-block;
    }

    .left {
        width: 100%;
    }



    .name {
        font-weight: bold;
    }

  

    .skills__item {
        margin-bottom: 10px;
    }


    .skills__item .right input {
        display: none;
    }

    .skills__item .right label {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: #C3DEF3;
        border-radius: 20px;
        margin-right: 3px;
    }

    input:checked+label {
        background: #79A9CE;
    }