@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=auto");

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #1B143D;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 34px;
    padding-bottom: 34px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: transparent;
    transition: 0.2s;
    z-index: 99;
}

.bar-compact {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: rgba(27, 20, 61, 0.6);
    backdrop-filter: blur(16px);
}

.bar-layout {
    display: flex;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.bar-brand {
    flex: none;
    display: flex;
    align-items: center;
    padding-right: 52px;
}

.bar-brand a {
    display: block;
}

.bar-brand img {
    width: 166px;
    height: 56px;
    transition: 0.2s;
}

.bar-compact .bar-brand img {
    width: 136px;
    height: 46px;
}

.bar-nav {
    flex: auto;
}

.bar-buttons {
    display: flex;
    height: 100%;
    column-gap: 8px;
    align-items: center;
    justify-content: space-evenly;
}

.bar-button {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.bar-button:hover {
    opacity: 0.5;
}

.touch .bar-button:hover {
    opacity: 1;
}

.bar-button:active,
.touch .bar-button:active {
    opacity: 0.5;
}

.bar-button-on {
    opacity: 0.5;
}

.bar-button-on:hover {
    opacity: 0.5;
}

.touch .bar-button-on:hover {
    opacity: 0.5;
}

.bar-button-on:active,
.touch .bar-button-on:active {
    opacity: 0.5;
}

.bar-actions {
    flex: none;
    display: flex;
    align-items: center;
}

.bar-action {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 100px;
    background-color: #1B143D;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.bar-action:hover {
    background-color: #312B7F;
}

.touch .bar-action:hover {
    background-color: #1B143D;
}

.bar-action:active,
.touch .bar-action:active {
    background-color: #312B7F;
}

.bar-menu {
    flex: none;
    display: none;
    justify-content: flex-end;
    align-items: center;
    padding-left: 24px;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 42px;
    padding-top: 12px;
    padding-bottom: 12px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 2px;
    background-color: #F2F2F2;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #312B7F;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #F2F2F2;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #312B7F;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #FFFFFF;
    animation: panel-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 20, 61, 0.5);
    backdrop-filter: blur(8px);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    column-gap: 16px;
    justify-content: center;
}

.panel-actions-close {
    flex: none;
}

.panel-close {
    display: flex;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    text-align: center;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 18px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    height: 30px;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #1B143D;
    font-size: 17px;
    line-height: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    color: #808080;
}

.touch .panel-link:hover {
    color: #1B143D;
}

.panel-link:active,
.touch .panel-link:active {
    color: #808080;
}

.panel-link-on {
    color: #808080;
}

.panel-link-on:hover {
    color: #808080;
}

.touch .panel-link-on:hover {
    color: #808080;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    color: #808080;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.5s;
}

.panel-link-block:nth-child(5) {
    animation-delay: 0.6s;
}

.panel-link-block:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    background-color: #1B143D;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-social img {
    width: 100%;
    height: 100%;
    transition: 0.25s;
}

.panel-social:hover {
    background-color: #312B7F;
}

.touch .panel-social:hover {
    background-color: #1B143D;
}

.panel-social:active,
.touch .panel-social:active {
    background-color: #312B7F;
}

.panel-social:nth-child(1) {
    animation-delay: 1s;
}

.panel-social:nth-child(2) {
    animation-delay: 1.25s;
}

.panel-social:nth-child(3) {
    animation-delay: 1.5s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* GLOBALS */

.margin {
    padding-left: 24px;
    padding-right: 24px;
}

.frame {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.frame-alt {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.caption {
    font-size: 50px;
    line-height: 56px;
    font-weight: 700;
}

.main-caption {
    opacity: 0;
    transform: translateY(-60%);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 100px;
    background-color: #1B143D;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background-color: #312B7F;
}

.touch .button:hover {
    background-color: #1B143D;
}

.button:active,
.touch .button:active {
    background-color: #312B7F;
}

.button-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    height: 64px;
    padding-left: 48px;
    padding-right: 48px;
    border-radius: 100px;
    border: solid 2px #FFFFFF;
    background-color: #1B143D;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt img {
    width: auto;
    height: 44px;
}

.button-alt:hover {
    background-color: #312B7F;
}

.touch .button-alt:hover {
    background-color: #1B143D;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #312B7F;
}

/* INTRO */

.intro {
    position: relative;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    background-color: #808080;
    overflow: hidden;
}

.intro-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/intro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation-name: intro-picture-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes intro-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.intro-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(64, 64, 95, 1) 35%, rgba(129, 129, 149, 1) 57%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    mix-blend-mode: multiply;
}

.intro-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.intro-content-layout {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-top: 10%;
    padding-bottom: 10%;
}

.intro-content-layout>div {
    max-width: 580px;
}

.intro-title {
    color: #FFFFFF;
    font-size: 56px;
    line-height: 62px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(50%);
    animation-name: intro-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes intro-title-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.intro-caption {
    padding-top: 32px;
    padding-bottom: 32px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 28px;
    opacity: 0;
    animation-name: intro-caption-anima;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes intro-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.intro-button {
    transform: translateY(-2%);
    opacity: 0;
    animation-name: intro-button-anima;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes intro-button-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* CARDS */

.cards-header {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 140px;
    text-align: center;
}

.cards {
    position: relative;
    width: 100%;
    padding-bottom: 50%;
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 70px;
    background-color: #1B143D;
    overflow: hidden;
    opacity: 1;
    transform: scale(0.9) translateY(120%);
    will-change: transform, opacity;
    box-shadow: 0px 0px 24px -2px rgba(49, 43, 127, 0.5);
}

.card-1 {
    opacity: 1;
    transform: none;
}

.card-2 {
    transform: scale(0.9) translateY(120%);
}

.card-3 {
    transform: scale(0.9) translateY(120%);
}

.card-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
}

.card-content {
    display: flex;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 110px;
    padding-right: 24px;
}

.card-title {
    padding-bottom: 18px;
    color: #FFFFFF;
    font-size: 50px;
    line-height: 56px;
    font-weight: 700;
}

.card-caption {
    width: 100%;
    max-width: 480px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 28px;
    font-style: italic;
}

.card-picture {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card-picture-1 {
    background-image: url(../assets/card-1.jpg);
}

.card-picture-2 {
    background-image: url(../assets/card-2.jpg);
}

.card-picture-3 {
    background-image: url(../assets/card-3.jpg);
}

/* CONSULTATION */

.consultation {
    display: flex;
    column-gap: 24px;
    padding-top: 172px;
    padding-bottom: 172px;
}

.consultation-caption {
    flex: auto;
}

.consultation-caption>div {
    width: 100%;
    max-width: 540px;
}

.consultation-button {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(50%);
}

/* TEAM */

.team {
    padding-top: 100px;
    padding-bottom: 360px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-color: #1B143D;
}

.team-title {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    padding-bottom: 80px;
    color: #FFFFFF;
    text-align: center;
    opacity: 0;
    transform: translateY(50%);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-bottom: 148px;
}

.team-item {
    flex: 1 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    border-radius: 50px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.team-item-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 142%;
    background-color: #312B7F;
}

.team-item-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.75s;
}

.team-item:hover .team-item-picture {
    transform: scale(1.1);
}

.touch .team-item:hover .team-item-picture {
    transform: scale(1);
}

.team-item:active .team-item-picture,
.touch .team-item:active .team-item-picture {
    transform: scale(1.1);
}

.team-item-on.team-item-picture {
    transform: scale(1.1);
}

.team-item-on.team-item:hover .team-item-picture {
    transform: scale(1.1);
}

.touch .team-item-on.team-item:hover .team-item-picture {
   transform: scale(1.1);
}

.team-item-on.team-item:active .team-item-picture,
.touch .team-item-on.team-item:active .team-item-picture {
    transform: scale(1.1);
}

.team-item-picture-1 {
    background-image: url(../assets/team-1.jpg);
}

.team-item-picture-2 {
    background-image: url(../assets/team-2.jpg);
}

.team-item-picture-3 {
    background-image: url(../assets/team-3.jpg);
}

.team-item-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(60, 60, 59, 0.7) 100%);
    mix-blend-mode: multiply;
}

.team-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    transition: 0.75s;
}

.team-item:hover .team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.touch .team-item:hover .team-item-content {
    align-items: flex-end;
    background-color: unset;
}

.team-item:active .team-item-content,
.touch .team-item:active .team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.team-item-on.team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.team-item-on.team-item:hover .team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.touch .team-item-on.team-item:hover .team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.team-item-on.team-item:active .team-item-content,
.touch .team-item-on.team-item:active .team-item-content {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.team-item-content>div {
    width: 100%;
    max-width: 260px;
}

.team-item-name {
    color: #FFFFFF;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}

.team-item-description {
    display: none;
    padding-top: 16px;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 26px;
    font-style: italic;
    animation: team-item-description-anima 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.team-item:hover .team-item-description {
    display: block;
}

.touch .team-item:hover .team-item-description {
    display: none;
}

.team-item:active .team-item-description,
.touch .team-item:active .team-item-description {
    display: block;
}

@keyframes team-item-description-anima {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.team-item-on.team-item-description {
    display: block;
}

.team-item-on.team-item:hover .team-item-description {
    display: block;
}

.touch .team-item-on.team-item:hover .team-item-description {
    display: block;
}

.team-item-on.team-item:active .team-item-description,
.touch .team-item-on.team-item:active .team-item-description {
    display: block;
}

/* PRINCIPLES */

.principles-title {
    max-width: unset;
    padding-bottom: 80px;
    color: #FFFFFF;
    text-align: center;
}

.principles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10%;
    row-gap: 32px;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

.principle {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 200px;
}

.principle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    opacity: 0;
    transform: scale(0.35);
}

.principle-name {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
}

/* HELP */

.help {
    padding-top: 160px;
    padding-bottom: 160px;
    margin-top: -140px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-color: #FFFFFF;
    transform: translateY(-70px);
}

.help-layout {
    display: grid;
    grid-template-columns: 0.58fr 0.42fr;
    column-gap: 10%;
}

.help-picture {
    position: relative;
    width: 100%;
    padding-bottom: 142%;
    border-radius: 50px;
    background-color: #EFEFEF;
    overflow: hidden;
}

.help-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/help.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: help-image-anima;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes help-image-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.help-intro {
    padding-top: 18px;
    color: #808080;
    font-size: 20px;
    line-height: 26px;
}

.help-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 32px;
}

.help-item {
    display: flex;
    column-gap: 18px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    transform: translateX(-10%);
    opacity: 0;
}

.help-bullet {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-top: 2px;
    border-radius: 100px;
    background-color: #1B143D;
}

/* SERVICES */

.services {
    position: relative;
    padding-top: 148px;
    padding-bottom: 300px;
    padding-left: 24px;
    padding-right: 24px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-color: #808080;
    transform: translateY(-120px);
}

.services-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-image: url(../assets/services.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-color: #40405F;
    opacity: 0.68;
    mix-blend-mode: multiply;
}

.services-content {
    position: relative;
}

.services-title {
    padding-bottom: 72px;
    color: #FFFFFF;
    text-align: center;
}

.services-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    text-align: center;
}

.services-items>div {
    opacity: 0;
}

/* CONTACT */

.contact {
    position: relative;
    margin-top: -70px;
    padding-top: 180px;
    padding-bottom: 200px;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    background-color: #1B143D;
}

.contact-header {
    display: flex;
    column-gap: 24px;
    padding-bottom: 80px;
}

.contact-header-title {
    flex: auto;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(-35%);
}

.contact-header-button {
    flex: none;
    opacity: 0;
    transform: scale(0.5);
}

.contact-map {
    width: 100%;
    height: 600px;
    border-radius: 55px;
    background-color: #312B7F;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-location {
    transform: scale(2);
}

.contact-address-frame {
    padding-top: 40px;
    text-align: center;
}

.contact-address {
    display: inline-flex;
    column-gap: 20px;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    transition: 0.25s;
}

.contact-address:hover {
    opacity: 0.5;
}

.touch .contact-address:hover {
    opacity: 1;
}

.contact-address:active,
.touch .contact-address:active {
    opacity: 0.5;
}

/* FOOTER */

.footer {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1D1D1B;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 24px;
}

.footer-brand img {
    width: 166px;
    height: auto;
}

.footer-buttons {
    display: flex;
    justify-content: center;
}

.footer-buttons>div {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer-button {
    display: inline-block;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.footer-button:hover {
    color: #808080;
}

.touch .footer-button:hover {
    color: #FFFFFF;
}

.footer-button:active,
.touch .footer-button:active {
    color: #808080;
}

.footer-button-on {
    color: #808080;
}

.footer-button-on:hover {
    color: #808080;
}

.touch .footer-button-on:hover {
    color: #808080;
}

.footer-button-on:active,
.touch .footer-button-on:active {
    color: #808080;
}

.footer-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 14px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 200px;
    cursor: pointer;
    transition: 0.25s;
}

.footer-social-wa {
    background-color: #00830D;
}

.footer-social-fb {
    background-color: #23599B;
}

.footer-social-ig {
    background-color: #FF174E;
}

.footer-social img {
    width: 100%;
    height: 100%;
}

.footer-social:hover {
    transform: scale(1.2);
}

.touch .footer-social:hover {
    transform: scale(1);
}

.footer-social:active,
.touch .footer-social:active {
    transform: scale(1.2);
}

.footer-copy {
    color: #808080;
    font-size: 12px;
    line-height: 18px;
}

.footer-copy a {
    transition: 0.25s;
}

.footer-copy a:hover {
    color: #FFFFFF;
}

.touch .footer-copy a:hover {
    color: #808080;
}

.footer-copy a:active,
.touch .footer-copy a:active {
    color: #FFFFFF;
}

/* WHATSAPP */

.whatsapp {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 40px;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(0px);
    animation: whatsapp-anima 5s ease-in-out infinite;
    z-index: 20;
}

@keyframes whatsapp-anima {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 1000px;
    background-color: #111111;
    transition: 0.25s;
    z-index: 2;
}

.whatsapp:hover .whatsapp-icon {
    transform: scale(1.16);
}

.touch .whatsapp:hover .whatsapp-icon {
    transform: scale(1);
}

.whatsapp:active .whatsapp-icon,
.touch .whatsapp:active .whatsapp-icon {
    transform: scale(1.16);
}

.whatsapp svg {
    display: block;
    width: 40px;
    height: 40px;
}

.whatsapp svg path {
    fill: #FFFFFF;
    transition: 0.25s;
}

/* RESPONSIVE */

@media (max-width: 1020px) {

    .bar-menu {
        display: flex;
    }

    .bar-buttons {
        display: none;
    }

    .team-item {
        flex: 1 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

}

@media (max-width: 840px) {

    .intro {
        border-bottom-left-radius: 35px;
        border-bottom-right-radius: 35px;
    }

    .intro-picture {
        background-position: 82%;
    }

    .intro-content-layout {
        padding-top: 20%;
        padding-bottom: 0%;
    }

    .intro-title {
        font-size: 30px;
        line-height: 36px;
    }

    .intro-caption {
        padding-top: 18px;
        padding-bottom: 24px;
        font-size: 17px;
        line-height: 25px;
    }

    .button {
        height: 52px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 18px;
        line-height: 18px;
    }

    .button-alt {
        height: 52px;
        padding-left: 24px;
        padding-right: 24px;
        font-size: 18px;
        line-height: 18px;
    }

    .button-alt img {
        height: 34px;
    }

    .cards-header {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .caption {
        font-size: 30px;
        line-height: 36px;
    }

    .cards {
        padding-bottom: 200%;
    }

    .card {
        width: 100%;
        height: 75%;
        border-radius: 35px;
    }

    .card-layout {
        height: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .card-content {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .card-title {
        font-size: 30px;
        line-height: 36px;
    }

    .card-caption {
        font-size: 17px;
        line-height: 25px;
    }

    .consultation {
        flex-direction: column;
        row-gap: 32px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .consultation-caption {
        flex: unset;
        text-align: center;
    }

    .consultation-button {
        flex: unset;
        justify-content: center;
    }

    .team {
        padding-top: 80px;
        padding-bottom: 280px;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .team-item {
        border-radius: 35px;
    }

    .team-title {
        padding-bottom: 64px;
    }

    .team-grid {
        padding-bottom: 100px;
    }

    .team-item-name {
        font-size: 24px;
        line-height: 30px;
    }

    .team-item-description {
        font-size: 18px;
        line-height: 24px;
    }

    .principles {
        row-gap: 48px;
    }

    .principles-title {
        padding-bottom: 64px;
    }

    .principle {
        row-gap: 14px;
    }

    .help {
        padding-top: 96px;
        padding-bottom: 120px;
        margin-top: -140px;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .help-layout {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

    .help-picture {
        padding-bottom: 110%;
        border-radius: 35px;
    }

    .help .caption {
        text-align: center;
    }

    .help-intro {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .help-item {
        column-gap: 12px;
        font-size: 19px;
        line-height: 25px;
    }

    .help-bullet {
        width: 30px;
        height: 30px;
    }

    .help-bullet img {
        width: 30px;
        height: 30px;
    }

    .services {
        padding-top: 108px;
        padding-bottom: 156px;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .services-picture {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .services-tint {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .services-items {
        grid-template-columns: 1fr;
        row-gap: 24px;
        font-size: 26px;
        line-height: 32px;
    }

    .contact {
        margin-top: -35px;
        padding-top: 100px;
        padding-bottom: 152px;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .contact-header {
        flex-direction: column;
        row-gap: 32px;
        padding-bottom: 64px;
        text-align: center;
    }

    .contact-map {
        height: 400px;
        border-radius: 25px;
    }

    .contact-address {
        flex-direction: column;
        row-gap: 16px;
        font-size: 22px;
        line-height: 28px;
    }

    .contact-address>div:nth-child(1) {
        display: flex;
        justify-content: center;
    }

    .footer {
        padding-top: 48px;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        order: 1;
        grid-column: 1;
        justify-content: center;
    }

    .footer-brand img {
        width: 80px;
        height: auto;
        margin: 0 auto;
    }

    .footer-networks {
        order: 2;
        grid-column: 2;
        align-items: center;
    }

    .footer-buttons {
        order: 3;
        grid-column: 1 / span 2;
        padding-top: 40px;
        text-align: center;
    }

    .footer-copy {
        order: 4;
        grid-column: 1 / span 2;
        padding-top: 10px;
        padding-bottom: 16px;
        margin-top: 48px;
        border-top: solid 1px rgba(255, 255, 255, 0.1);
        text-align: center;
    }

}

@media (max-width: 680px) {

    .team-item {
        flex: 1 0 100%;
        max-width: 100%;
    }

}

@media (max-width: 490px) {

    .bar-actions {
        display: none;
    }

    .whatsapp {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }

    .whatsapp svg {
        width: 36px;
        height: 36px;
    }

}