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

.blue {
    color: #022C99;
}

.green {
    color: #274753;
}

body {
    color: #274753;
    font-family: 'Inter', sans-serif;
    background: #F7F7F4;
}

h1 {
    color: #254656;
    font-size: 3rem;
    font-weight: 800;
    background-image: linear-gradient(135deg, #022C99 0%, #6D6DFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    background-image: linear-gradient(135deg, #022C99 0%, #6D6DFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
}

h4 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2rem;
    overflow: hidden;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
}

ul.navbar-nav li a {
    color: #022C99;
}

ul.list-nav li a,
.navbar-light .navbar-nav .nav-link {
    color: #022C99;
}

ul.list-nav li::after {
    content: ' / '
}

ul.list-nav li:last-child:after {
    content: none;
}

ul.contact-list li {
    color: #022C99;
    font-weight: 400;
}

ul.habilidades li {
    font-size: 1.1rem;
    line-height: 1.6rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.copy {
    font-size: .8rem;
    font-weight: 300;
    margin-top: 1rem;
}

.btn {
    color: #ffffff;
    background: -webkit-linear-gradient(145deg, #254656, #022C99);
    background: linear-gradient(145deg, #254656, #022C99);
    box-shadow: 0 5px 5px -5px #274753;
    border-color: #274753;
    padding: 12px 20px;
    border-radius: 50px;
}

.btn:hover {
    background: -webkit-linear-gradient(145deg, #022C99, #254656);
    background: linear-gradient(145deg, #022C99, #254656);
    border-color: #022C99;
}

ul.list-client li {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5rem;
    margin-bottom: 6rem;
    width: 100px;
    background: #022C99;
}

ul.list-client li:last-child {
    margin-bottom: 0rem;
}

ul.list-client li small {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: .2rem;
}

#sobre {
    background-color: #254656;
    background: -webkit-linear-gradient(145deg, #022C99, #254656);
    background: linear-gradient(145deg, #022C99, #254656);
}

#portfolio {
    background-color: #F6F6F4;
    background: -webkit-linear-gradient(145deg, #EBEDEF, #F6F6F4);
    background: linear-gradient(145deg, #EBEDEF, #F6F6F4);
}

#testimonial {
    background-color: #D5DADB;
    background: -webkit-linear-gradient(145deg, #B8C3D2, #D5DADB);
    background: linear-gradient(145deg, #B8C3D2, #D5DADB);
}

.quote {
    max-width: 100px;
}

.testimonial-text {
    color: #022C99;
    font-size: 1.3rem;
    font-weight: 300;
}

.testimonial-author {
    color: #022C99;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1.2rem;
}

ul.social li a {
    color: #022C99;
    font-size: 20px;
    padding: 0px 7px;
}

ul.social li a:hover {
    color: #254656;
}

.filtering span {
    margin-right: 6px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #89c951;
    text-decoration: none;
    border: 1px solid #89c951;
    padding: 4px 15px;
    border-radius: 50px;
    display: inline-block;
    cursor: pointer;
    transition: all 500ms ease;
}

.filtering span:last-child {
    margin: 0;
}

.filtering span:hover,
.filtering .active {
    color: #fff;
    border-color: #89c951;
    background-color: #89c951;
}

.portfolio-wrapper {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 500ms ease;
}

.portfolio-image-thumb {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/portfolio/thumb/bg-portfolio.jpg);

    display: flex;
    justify-content: center;
    /* horizontal */
    align-items: center;
    /* vertical */
    padding-left: 15px;
    padding-right: 15px;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.portfolio-wrapper:hover .portfolio-image-thumb {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    will-change: transform;
    transition: all 500ms ease;
}

.portfolio-title {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2em;
}

.portfolio-title-mini {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2em;
}

.portfolio-wrapper .portfolio-image img {
    transition: all 0.5s ease;
    transform: none;
    width: 100%;
}

.portfolio-wrapper:hover .portfolio-image img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    will-change: transform;
}

.portfolio-overlay:before {
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    content: "";
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.85);
}

.portfolio-overlay .portfolio-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    padding: 0 35px;
}

.portfolio-content h5 {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-link:hover h5 {
    color: #fff;
}

.portfolio-link:hover {
    text-decoration: none;
}

.portfolio-content h6 {
    color: #254656;
    font-size: .8rem;
    font-weight: 300;
    margin-bottom: 0;
}

.portfolio-wrapper:hover .portfolio-overlay {
    color: #fff;
    background-color: #254656;
    background: -webkit-linear-gradient(145deg, #022C99, #254656);
    background: linear-gradient(145deg, #022C99, #254656);
    opacity: 1;
}

.portfolio-wrapper:hover .portfolio-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.portfolio-wrapper:hover .portfolio-overlay .portfolio-content {
    transform: translateY(50%);
    transition: transform 0.5s ease;
    opacity: 1;
}

.atendimento a {
    position: fixed;
    z-index: 999;
    bottom: 60px;
    right: 20px;
    color: #fff;
    background-color: #89c951;
    text-align: center;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgb(65 132 144 / 10%), 0 1px 3px rgb(0 0 0 / 8%);
    display: inline-block;
    padding: 2px 6px;
    transition: box-shadow 0.2s;
}


span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}

span.cursor.typing {
    animation: none;
}

@keyframes blink {
    0% {
        background-color: #ccc;
    }

    49% {
        background-color: #ccc;
    }

    50% {
        background-color: transparent;
    }

    99% {
        background-color: transparent;
    }

    100% {
        background-color: #ccc;
    }
}

.pull-right-lg {
    float: right;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .pull-right-lg {
        float: left;
    }

    .portfolio-title {
        text-align: center;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.2em;
    }

    .portfolio-title-mini {
        text-align: center;
        color: #fff;
        font-size: .9rem;
        font-weight: 600;
        line-height: 1.2em;
    }

}