@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

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

:root {
    --firstBlue: #0A65B9;
    --secondBlue: #1D92FF;
    --thirdBlue: #1c78ce;
    --linear: linear-gradient(180deg, #0A65B9 0%, #1D92FF 100%);
    --textColor: rgba(21, 21, 21, 0.81);
    --whiteTextColor: rgba(255, 255, 255, 0.7);
    --secondLinear: linear-gradient(360deg, #0A65B9 -48.98%, #1D92FF -0.76%)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Poppins, sans-serif;
    font-size: 16px
}

@media only screen and (min-width:1920px) {
    body {
        font-size: 18px
    }
}

@media only screen and (max-width:480px) {
    body {
        font-size: 14px
    }
}

img {
    max-width: 100%
}

p {
    color: var(--textColor)
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.stats .stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 1rem 0rem
}

.stats .stats-wrapper .stat-box {
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50%
}

.stats .stats-wrapper .stat-box .stat-box-number {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--firstBlue);
    margin-bottom: .35rem
}

@media only screen and (max-width:550px) {
    .stats .stats-wrapper .stat-box .stat-box-number {
        font-size: 1.5rem
    }
}

@media only screen and (max-width:380px) {
    .stats .stats-wrapper .stat-box .stat-box-number {
        font-size: 1.25rem
    }
}

.stats .stats-wrapper .stat-box .stat-box-title {
    color: var(--firstBlue);
    font-size: .9rem;
    line-height: 1.2;
    letter-spacing: -.03rem
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 8rem
}

@media only screen and (min-width:1350px) {
    header .container {
        padding-top: 1rem
    }
}

@media only screen and (max-width:768px) {
    header .container {
        min-height: 6rem;
        padding-top: 1rem
    }
}

@media only screen and (max-width:550px) {
    header .container {
        min-height: 4rem
    }
}

header .container .nav-menu {
    display: flex;
    align-items: center;
    list-style: none
}

@media only screen and (max-width:860px) {
    header .container .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        justify-content: center;
        background: #fff;
        z-index: 2;
        text-align: left;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-100%);
        transition: transform .3s, opacity .3s;
        padding: 1.5rem
    }

    header .container .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0)
    }
}

header .container .nav-menu>li:not(:last-of-type) {
    margin-right: 1.5rem
}

@media only screen and (min-width:1920px) {
    header .container .nav-menu>li:not(:last-of-type) {
        margin-right: 2rem
    }
}

@media only screen and (max-width:860px) {
    header .container .nav-menu>li:not(:last-of-type) {
        margin-right: unset
    }
}

header .container .nav-menu>li {
    position: relative;
    cursor: pointer
}

header .container .nav-menu>li>.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(-5px) scale(0);
    pointer-events: none;
    transition: opacity .3s, transform .3s cubic-bezier(.25, .75, .5, 1.25);
    background: #fff;
    z-index: 1
}

header .container .nav-menu>li>.submenu>.submenu-content {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    border-radius: 8px;
    overflow: hidden
}

header .container .nav-menu>li>.submenu>.submenu-content>ul {
    list-style: none
}

header .container .nav-menu>li>.submenu>.submenu-content>ul a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    display: flex;
    padding: .5rem 1rem;
    line-height: 1.3
}

header .container .nav-menu>li>.submenu>.submenu-content>ul a:focus,
header .container .nav-menu>li>.submenu>.submenu-content>ul a:hover {
    background: var(--secondBlue);
    color: #fff
}

header .container .nav-menu>li>a {
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    display: flex;
    align-items: center
}

header .container .nav-menu>li>a>i {
    margin-left: .4rem
}

header .container .nav-menu>li>a:focus,
header .container .nav-menu>li>a:hover {
    color: var(--firstBlue)
}

header .container .nav-menu>li:focus>a>i,
header .container .nav-menu>li:hover>a>i {
    transform: rotate(180deg)
}

header .container .nav-menu>li:hover .submenu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all
}

@media only screen and (max-width:768px) {
    header .container .nav-menu>li>a {
        font-size: 1.5rem;
        font-weight: 700
    }

    header .container .nav-menu>li>.submenu {
        padding-top: 0
    }
}

header .container .menu-toggle {
    display: none
}

@media only screen and (max-width:860px) {
    header .container .menu-toggle {
        display: initial
    }

    header .container .menu-toggle>button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: none;
        outline: 0;
        background: 0 0;
        cursor: pointer;
        font-size: 1.75rem;
        padding: 1rem;
        margin-right: -1rem;
        transition: transform .3s cubic-bezier(.25, .75, .5, 1.25);
        will-change: transform
    }
}

@media only screen and (max-width:860px) and (max-width:380px) {
    header .container .menu-toggle>button {
        font-size: 1.35rem
    }
}

@media only screen and (max-width:860px) {
    header .container .menu-toggle.active>button {
        transform: rotate(90deg)
    }
}

.hero {
    overflow-x: hidden
}

@media only screen and (max-width:1080px) {
    .hero {
        overflow-x: unset
    }
}

.hero .container {
    min-height: calc(100vh - 8rem);
    display: grid;
    grid: auto/50% 50%
}

@media only screen and (min-width:1560px) {
    .hero .container {
        min-height: 500px;
        margin-top: 3rem;
        margin-bottom: 3rem
    }
}

@media only screen and (max-width:1080px) {
    .hero .container {
        grid: auto/100%;
        min-height: 500px;
        margin: 3rem 0
    }
}

@media only screen and (max-width:480px) {
    .hero .container {
        grid: auto/100%;
        min-height: 500px;
        margin: 2rem 0
    }
}

.hero .container h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    max-width: 15ch
}

@media only screen and (min-width:1920px) {
    .hero .container h1 {
        font-size: 3.5rem
    }
}

@media only screen and (max-width:1080px) {
    .hero .container h1 {
        text-align: center;
        max-width: 25ch
    }
}

@media only screen and (max-width:768px) {
    .hero .container h1 {
        font-size: 2.5rem
    }
}

@media only screen and (max-width:550px) {
    .hero .container h1 {
        font-size: 1.5rem
    }
}

.hero .container>div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    row-gap: 1.5rem
}

.hero .container>div:first-of-type p {
    max-width: 28ch
}

@media only screen and (max-width:1080px) {
    .hero .container>div:first-of-type p {
        max-width: 40ch;
        text-align: center
    }
}

.hero .container>div:first-of-type .hero-btn {
    position: relative;
    margin-top: 1rem;
    display: flex;
    align-items: center
}

.hero .container>div:first-of-type .hero-btn a {
    display: inline-flex;
    -webkit-animation: topDown 1.5s infinite alternate both;
    animation: topDown 1.5s infinite alternate both;
    text-decoration: none
}

.hero .container>div:first-of-type .hero-btn a>i {
    padding: 1.25rem .7rem;
    background: var(--firstBlue);
    color: #fff;
    border-radius: 300px;
    border: 1px solid var(--firstBlue);
    transition: background .3s, color .3s
}

@media only screen and (max-width:480px) {
    .hero .container>div:first-of-type .hero-btn a>i {
        padding: .9rem .6rem
    }
}

.hero .container>div:first-of-type .hero-btn span {
    display: inline-flex;
    -webkit-animation: topDown 1.5s infinite alternate both;
    animation: topDown 1.5s infinite alternate both;
    margin-left: 1rem;
    align-items: center
}

.hero .container>div:first-of-type .hero-btn span::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #000;
    margin-right: .5rem
}

@media only screen and (max-width:480px) {
    .hero .container>div:first-of-type .hero-btn span::before {
        width: 15px
    }
}

@media only screen and (max-width:380px) {
    .hero .container>div:first-of-type .hero-btn span {
        font-size: .75rem
    }
}

.hero .container>div:first-of-type .hero-btn>a i:hover {
    background: 0 0;
    color: var(--firstBlue)
}

.hero .container>div:first-of-type .hero-btn:hover>span {
    color: var(--firstBlue)
}

.hero .container>div:first-of-type .hero-btn:hover>span::before {
    background: var(--firstBlue)
}

.hero .container>div:first-of-type .hero-btn:hover>a,
.hero .container>div:first-of-type .hero-btn:hover>span {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

@media only screen and (max-width:550px) {
    .hero .container>div:first-of-type .hero-btn {
        margin-top: 0
    }
}

@media only screen and (max-width:1080px) {
    .hero .container>div:first-of-type {
        align-items: center
    }
}

@media only screen and (max-width:768px) {
    .hero .container>div:first-of-type {
        row-gap: 1rem
    }
}

.hero .container>div:nth-of-type(2) {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

@media only screen and (max-width:1080px) {
    .hero .container>div:nth-of-type(2) {
        margin-top: 3rem;
        height: auto
    }
}

@media only screen and (max-width:380px) {
    .hero .container>div:nth-of-type(2) {
        margin-top: 1.5rem
    }
}

.hero .container>div:nth-of-type(2) svg {
    max-width: 130%;
    margin-left: -2rem
}

@media only screen and (max-width:1080px) {
    .hero .container>div:nth-of-type(2) svg {
        max-width: 100%;
        height: auto;
        width: 100%;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto
    }
}

@media only screen and (min-width:1440px) {
    .hero .container>div:nth-of-type(2) svg {
        max-width: 140%
    }
}

@media only screen and (max-width:768px) {
    .hero .container>div:nth-of-type(2) svg {
        max-width: 70%
    }
}

@media only screen and (max-width:480px) {
    .hero .container>div:nth-of-type(2) svg {
        max-width: 100%
    }
}

.quote {
    background: var(--linear);
    margin-top: 3rem;
    position: relative;
    overflow-x: hidden
}

.quote .container {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.quote .container svg {
    max-width: 480px;
    height: auto;
    transform: scale(0);
    transition: transform .6s cubic-bezier(.25, .75, .5, 1.25);
    width: 100%;
}

@media only screen and (max-width:768px) {
    .quote .container svg {
        max-width: 65%
    }
}

@media only screen and (max-width:380px) {
    .quote .container svg {
        max-width: 70%
    }
}

@media only screen and (max-width:768px) {
    .quote .container {
        padding: 2rem 0
    }
}

@media only screen and (max-width:380px) {
    .quote .container {
        padding: 1.5rem 0
    }
}

.quote[data-scroll=in] svg {
    transform: scale(1) !important
}

.quote .quote-bg-1,
.quote .quote-bg-2 {
    position: absolute;
    pointer-events: none
}

.quote .quote-bg-1 {
    top: 65%;
    transform: translateY(-50%);
    right: -5%
}

@media only screen and (max-width:1080px) {
    .quote .quote-bg-1 {
        max-width: 180px;
        right: -5%
    }
}

@media only screen and (max-width:880px) {
    .quote .quote-bg-1 {
        right: -13%
    }
}

@media only screen and (max-width:730px) {
    .quote .quote-bg-1 {
        right: -13%;
        max-width: 150px
    }
}

@media only screen and (max-width:550px) {
    .quote .quote-bg-1 {
        right: -15%;
        max-width: 140px
    }
}

@media only screen and (max-width:480px) {
    .quote .quote-bg-1 {
        right: -15%;
        max-width: 100px
    }
}

@media only screen and (max-width:380px) {
    .quote .quote-bg-1 {
        max-width: 80px
    }
}

.quote .quote-bg-2 {
    position: absolute;
    left: -50px;
    top: 30%;
    transform: translateY(-50%);
    opacity: .4
}

@media only screen and (max-width:1080px) {
    .quote .quote-bg-2 {
        max-width: 130px
    }
}

@media only screen and (max-width:768px) {
    .quote .quote-bg-2 {
        max-width: 110px
    }
}

@media only screen and (max-width:580px) {
    .quote .quote-bg-2 {
        max-width: 80px;
        left: -30px;
        top: 22%
    }
}

@media only screen and (max-width:380px) {
    .quote .quote-bg-2 {
        max-width: 55px;
        left: -25px;
        top: 22%
    }
}

@media only screen and (max-width:330px) {
    .quote .quote-bg-2 {
        max-width: 50px;
        left: -20px;
        top: 22%
    }
}

.quote .quote-top-animate {
    -webkit-animation: topAnimate 1.2s infinite alternate both;
    animation: topAnimate 1.2s infinite alternate both
}

.quote .quote-bottom-animate {
    -webkit-animation: botAnimate 1.2s infinite alternate both;
    animation: botAnimate 1.2s infinite alternate both
}

section .small-title {
    color: var(--firstBlue)
}

section .title {
    font-size: 2rem;
    line-height: 1.2
}

@media only screen and (max-width:768px) {
    section .title {
        font-size: 1.5rem
    }
}

.who-we-are {
    padding: 6rem 0;
    overflow-x: hidden
}

@media only screen and (max-width:1080px) {
    .who-we-are {
        padding: 4rem 0
    }
}

@media only screen and (max-width:768px) {
    .who-we-are {
        padding: 2rem 0
    }
}

.who-we-are .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.who-we-are .container .wrapper {
    margin-top: 6rem;
    display: grid;
    grid: auto/50% 50%
}

@media only screen and (max-width:1080px) {
    .who-we-are .container .wrapper {
        grid: auto/55% 45%
    }
}

@media only screen and (max-width:768px) {
    .who-we-are .container .wrapper {
        grid: auto/100%;
        margin-top: 1.5rem
    }
}

.who-we-are .container .wrapper>div:first-of-type {
    display: flex;
    flex-direction: column;
    margin-right: 6rem
}

@media only screen and (max-width:1080px) {
    .who-we-are .container .wrapper>div:first-of-type {
        margin-right: 3rem
    }
}

@media only screen and (max-width:768px) {
    .who-we-are .container .wrapper>div:first-of-type {
        margin-right: 0;
        text-align: center
    }
}

.who-we-are .container .wrapper>div:first-of-type>:not(:last-child) {
    margin-bottom: 1.5rem
}

.who-we-are .container .wrapper>div:nth-of-type(2) {
    position: relative
}

@media only screen and (max-width:768px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) {
        margin-top: 3rem
    }
}

@media only screen and (max-width:340px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) {
        margin-top: 1.5rem
    }
}

.who-we-are .container .wrapper>div:nth-of-type(2) .stats {
    max-width: 65%;
    margin-top: 1.5rem
}

@media only screen and (max-width:1080px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .stats {
        max-width: 80%
    }
}

@media only screen and (max-width:880px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .stats {
        max-width: 100%
    }
}

@media only screen and (max-width:768px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper {
        align-items: flex-start
    }

    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper .stat-box {
        width: unset;
        flex: 1
    }

    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper .stat-box:not(:last-of-type) {
        margin-right: 1.5rem
    }
}

@media only screen and (max-width:480px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper {
        display: grid;
        grid: auto/repeat(2, 1fr);
        grid-gap: 0.5rem
    }

    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper .stat-box {
        width: unset;
        flex: unset
    }

    .who-we-are .container .wrapper>div:nth-of-type(2) .stats .stats-wrapper .stat-box:not(:last-of-type) {
        margin-right: unset
    }
}

.who-we-are .container .wrapper>div:nth-of-type(2) .img-div {
    position: relative
}

.who-we-are .container .wrapper>div:nth-of-type(2) .img-div>img:first-of-type {
    max-width: 70%;
    box-shadow: -15px 15px var(--firstBlue)
}

@media only screen and (max-width:1080px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>img:first-of-type {
        max-width: 80%
    }
}

@media only screen and (max-width:880px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>img:first-of-type {
        max-width: 100%
    }
}

@media only screen and (max-width:768px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>img:first-of-type {
        width: 100%
    }
}

@media only screen and (max-width:380px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>img:first-of-type {
        box-shadow: -10px 10px var(--firstBlue)
    }
}

.who-we-are .container .wrapper>div:nth-of-type(2) .img-div>.dots {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-50%, -50%);
    max-width: 200px
}

@media only screen and (max-width:1080px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>.dots {
        transform: translate(0, -50%);
        max-width: 180px
    }
}

@media only screen and (max-width:880px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>.dots {
        transform: translate(50%, -50%);
        max-width: 150px
    }
}

@media only screen and (max-width:580px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>.dots {
        max-width: 130px
    }
}

@media only screen and (max-width:330px) {
    .who-we-are .container .wrapper>div:nth-of-type(2) .img-div>.dots {
        max-width: 100px
    }
}

.objectives {
    background: var(--linear);
    padding: 6rem 0;
    margin: 6rem 0 3rem;
    position: relative
}

.objectives .objectives-bg-img {
    position: absolute;
    right: -40px;
    bottom: -40px;
    max-width: 400px;
    pointer-events: none
}

@media only screen and (max-width:768px) {
    .objectives .objectives-bg-img {
        max-width: 300px
    }
}

@media only screen and (max-width:768px) {
    .objectives {
        margin: 4rem 0;
        padding: 4rem 0;
        margin-bottom: 2rem
    }
}

.objectives .container {
    display: flex;
    align-items: flex-start;
    flex-direction: column
}

.objectives .container>p {
    max-width: 33ch;
    margin-bottom: 6rem;
    line-height: 1.6;
    color: #fff;
    font-size: 1.25rem;
    position: relative
}

.objectives .container>p::before {
    content: "";
    position: absolute;
    top: calc(100% + 2rem);
    left: 0;
    width: 15%;
    height: 3px;
    background: #fff
}

.objectives .container ul {
    display: grid;
    grid: auto/repeat(2, 1fr);
    grid-gap: 3rem 9rem
}

@media only screen and (max-width:1080px) {
    .objectives .container ul {
        grid-gap: 1.5rem 6rem
    }
}

@media only screen and (max-width:768px) {
    .objectives .container ul {
        grid-gap: 1.5rem
    }
}

@media only screen and (max-width:650px) {
    .objectives .container ul {
        grid-gap: 1.5rem;
        grid: auto/100%
    }
}

.objectives .container ul li {
    color: var(--whiteTextColor);
    display: flex;
    align-items: flex-start;
    list-style: none;
    position: relative
}

.objectives .container ul li::before {
    margin-right: 1.5rem;
    content: "\e901";
    font-family: asmbs-icons;
    font-size: 1.75rem;
    transition: transform .3s;
    will-change: transform
}

@media only screen and (max-width:550px) {
    .objectives .container ul li::before {
        font-size: 1.5rem
    }
}

.objectives .container ul li:hover {
    color: #fff
}

.objectives .container ul li:hover::before {
    transform: rotate(135deg) scale(1.3)
}

.team {
    margin-bottom: 6rem
}

@media only screen and (max-width:768px) {
    .team {
        margin-bottom: 0
    }
}

.team .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width:768px) {
    .team .container {
        padding-left: 0;
        padding-right: 0
    }
}

.team .container .title {
    max-width: 28ch;
    text-align: center;
    line-height: 1.2;
    margin: 1.5rem 0 3rem
}

@media only screen and (max-width:768px) {
    .team .container .title {
        max-width: 25ch
    }
}

.team-wrapper {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 3rem 0
}

@media only screen and (max-width:1080px) {
    .team-wrapper {
        gap: 3rem
    }
}

@media only screen and (max-width:768px) {
    .team-wrapper {
        display: grid;
        grid-auto-flow: column;
        overflow-x: auto;
        justify-content: unset;
        gap: 1.5rem;
        margin-top: 0;
        scrollbar-width: none;
        padding: 1.5rem
    }

    .team-wrapper::-webkit-scrollbar {
        display: none
    }
}

@media only screen and (max-width:768px) and (max-width:480px) {
    .team-wrapper {
        gap: 1rem
    }
}

@media only screen and (max-width:768px) and (max-width:340px) {
    .team-wrapper {
        gap: .75rem
    }
}

.team-wrapper .team-box {
    width: 235px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-shrink: 0;
    cursor: pointer
}

@media only screen and (max-width:1080px) {
    .team-wrapper .team-box {
        width: 180px;
        align-items: start;
        justify-content: flex-start
    }
}

@media only screen and (max-width:580px) {
    .team-wrapper .team-box {
        width: 140px
    }
}

@media only screen and (max-width:480px) {
    .team-wrapper .team-box {
        width: 120px
    }
}

.team-wrapper .team-box .team-box-avatar {
    transition: transform .3s;
    will-change: transform;
    position: relative;
    margin-bottom: 1.5rem
}

.team-wrapper .team-box .team-box-avatar img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

@media only screen and (max-width:580px) {
    .team-wrapper .team-box .team-box-avatar img {
        width: 130px;
        height: 130px
    }
}

@media only screen and (max-width:480px) {
    .team-wrapper .team-box .team-box-avatar img {
        width: 100px;
        height: 100px
    }
}

.team-wrapper .team-box .team-box-avatar .team-socials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    padding: .35rem .75rem;
    border-radius: 8px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s cubic-bezier(.25, .75, .5, 1.25);
    will-change: transform
}

.team-wrapper .team-box .team-box-avatar .team-socials a {
    text-decoration: none
}

.team-wrapper .team-box .team-box-avatar .team-socials a:not(:last-of-type) {
    margin-right: .55rem
}

.team-wrapper .team-box .team-box-avatar .team-socials a.facebook {
    color: var(--firstBlue)
}

.team-wrapper .team-box .team-box-avatar .team-socials a.linked {
    color: var(--secondBlue)
}

.team-wrapper .team-box .team-box-avatar .team-socials a.instagram {
    color: #d85898
}

.team-wrapper .team-box .team-box-desc {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.team-wrapper .team-box .team-box-desc .team-box-name {
    font-weight: 700;
    font-size: 1.25rem;
    max-width: 18ch;
    line-height: 1.1;
    margin-bottom: .5rem
}

@media only screen and (max-width:480px) {
    .team-wrapper .team-box .team-box-desc .team-box-name {
        font-size: 1rem
    }
}

.team-wrapper .team-box .team-box-desc .team-box-occupation {
    max-width: 20ch;
    line-height: 1.2
}

@media only screen and (min-width:1920px) {
    .team-wrapper .team-box .team-box-desc .team-box-occupation {
        font-size: 1rem
    }
}

@media only screen and (max-width:480px) {
    .team-wrapper .team-box .team-box-desc .team-box-occupation {
        font-size: .75rem
    }
}

.team-wrapper .team-box:hover .team-box-avatar {
    transform: scale(1.05)
}

.team-wrapper .team-box:hover .team-box-avatar img {
    filter: grayscale(1)
}

.team-wrapper .team-box:hover .team-box-avatar>.team-socials {
    opacity: 1;
    transform: translatex(-50%) translateY(0) scale(1);
    pointer-events: all
}

.why {
    background: var(--linear);
    padding: 6rem 0;
    overflow-x: hidden;
    position: relative
}

.why .why-bg {
    position: absolute;
    left: -15%;
    top: 80%;
    transform: translateY(-50%);
    max-width: 300px;
    z-index: 0
}

@media only screen and (max-width:1320px) {
    .why .why-bg {
        right: -10%;
        left: unset
    }
}

@media only screen and (max-width:768px) {
    .why {
        padding: 3rem 0
    }
}

.why .container .small-title {
    color: var(--whiteTextColor)
}

.why .container .title {
    color: #fff
}

.why .container .wrapper {
    margin-top: 3rem;
    display: grid;
    grid: auto/60% 40%;
    width: 100%;
    grid-column-gap: 3rem
}

@media only screen and (max-width:768px) {
    .why .container .wrapper {
        grid: auto/100%
    }
}

.why .container .wrapper ul {
    list-style: none
}

.why .container .wrapper ul li {
    color: var(--whiteTextColor);
    position: relative;
    padding: .35rem 0;
    transition: transform .3s;
    will-change: transform
}

.why .container .wrapper ul li::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0;
    height: 100%;
    width: 2px;
    background: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .3s, transform .3s, padding .3s
}

.why .container .wrapper ul li:hover {
    color: #fff;
    transform: scale(1.05)
}

@media only screen and (max-width:1280px) {
    .why .container .wrapper ul li:hover {
        transform: scale(1);
        padding-left: 1.5rem
    }
}

.why .container .wrapper ul li:hover::before {
    opacity: 1;
    transform: translateX(0)
}

@media only screen and (max-width:1280px) {
    .why .container .wrapper ul li:hover::before {
        transform: translateX(1.5rem)
    }
}

.why .container .wrapper ul li:not(:last-of-type) {
    margin-bottom: 1.5rem
}

@media only screen and (max-width:768px) {
    .why .container .wrapper div:nth-of-type(2) {
        margin-top: 3rem;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

@media only screen and (max-width:550px) {
    .why .container .wrapper div:nth-of-type(2) {
        margin-top: 1.5rem
    }
}

.why .container .wrapper div:nth-of-type(2) img {
    max-width: 120%;
    transform: translateX(20%) scale(0);
    margin-top: -20%;
    z-index: 1;
    transition: transform .5s cubic-bezier(.25, .75, .5, 1.25)
}

.why .container .wrapper div:nth-of-type(2) img[data-scroll=in] {
    transform: translateX(20%) scale(1)
}

@media only screen and (min-width:1440px) {
    .why .container .wrapper div:nth-of-type(2) img {
        transform: translateX(30%) scale(0)
    }
}

@media only screen and (max-width:1080px) {
    .why .container .wrapper div:nth-of-type(2) img {
        transform: translateX(10%) scale(0)
    }
}

@media only screen and (max-width:900px) {
    .why .container .wrapper div:nth-of-type(2) img {
        transform: translateX(10%) scale(0);
        margin-top: 1.5rem
    }
}

@media only screen and (max-width:768px) {
    .why .container .wrapper div:nth-of-type(2) img {
        transform: unset;
        max-width: 70%;
        margin-top: 0
    }

    .why .container .wrapper div:nth-of-type(2) img[data-scroll=in] {
        transform: unset
    }
}

@media only screen and (max-width:480px) {
    .why .container .wrapper div:nth-of-type(2) img {
        transform: unset;
        max-width: 100%;
        width: 100%
    }

    .why .container .wrapper div:nth-of-type(2) img[data-scroll=in] {
        transform: unset
    }
}

.logos {
    padding: 6rem 0
}

@media only screen and (max-width:768px) {
    .logos {
        padding: 3rem 0
    }
}

@media only screen and (max-width:450px) {
    .logos {
        padding: 1.5rem 0
    }
}

.logos .container {
    display: flex;
    align-items: center;
    justify-content: center
}

.logos .container .logo-wrapper {
    display: grid;
    /* grid-auto-flow: column;
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    grid-column-gap: 9rem; */
    overflow-x: auto;
    align-items: center;
    scrollbar-width: none;
    grid-template-columns: repeat(4, auto);
    grid-gap: 1rem;
    width: 100%;
}

.logos .container .logo-wrapper::-webkit-scrollbar {
    display: none
}

@media only screen and (max-width:1440px) {
    .logos .container .logo-wrapper {
        grid-column-gap: 6rem
    }
}

@media only screen and (max-width: 1150px) {
    .logos .container .logo-wrapper {
        grid-column-gap: 4rem;
        grid-auto-flow: column;
        grid-auto-columns: -webkit-max-content;
        grid-auto-columns: max-content;
        grid-template-columns: unset;
    }
}

@media only screen and (max-width:450px) {
    .logos .container .logo-wrapper {
        grid-column-gap: 0
    }
}

.logos .container .logo-wrapper .logo {
    transition: transform .3s;
    text-align: center;
}

.logos .container .logo-wrapper .logo img {
    transition: filter .3s;
    filter: grayscale(1);
    max-width: 225px;
}

@media only screen and (max-width:768px) {
    .logos .container .logo-wrapper .logo img {
        transform: scale(.9)
    }
}

@media only screen and (max-width:550px) {
    .logos .container .logo-wrapper .logo img {
        transform: scale(.8)
    }
}

@media only screen and (max-width:450px) {
    .logos .container .logo-wrapper .logo img {
        transform: scale(.7)
    }
}

.logos .container .logo-wrapper .logo:hover {
    transform: translateY(-5px)
}

.logos .container .logo-wrapper .logo:hover img {
    filter: grayscale(0)
}

footer {
    background: url(assets/svg/abstract-lines.svg) -100px -50px/300px no-repeat, var(--secondLinear);
    padding: 0 0 4rem 0
}

@media only screen and (max-width:1080px) {
    footer {
        background: var(--secondLinear)
    }
}

@media only screen and (max-width:768px) {
    footer {
        padding-top: 3rem
    }
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

footer .container .footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

footer .container .footer-top>:not(:last-of-type) {
    margin-bottom: 1.5rem
}

footer .container .footer-top .policy-pages {
    display: flex;
    align-items: center;
    justify-content: center
}

footer .container .footer-top .policy-pages a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-align: center
}

footer .container .footer-top .policy-pages a:hover {
    text-decoration: underline
}

@media only screen and (max-width:600px) {
    footer .container .footer-top .policy-pages a {
        flex: 1
    }
}

footer .container .footer-top .policy-pages a:not(:last-of-type) {
    margin-right: 1.5rem
}

@media only screen and (max-width:380px) {
    footer .container .footer-top .policy-pages {
        flex-direction: column
    }

    footer .container .footer-top .policy-pages a:not(:last-of-type) {
        margin-bottom: .35rem;
        margin-right: 0
    }
}

footer .container .footer-top .footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0
}

footer .container .footer-top .footer-socials a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    transition: transform .2s;
    will-change: transform
}

footer .container .footer-top .footer-socials a:hover {
    transform: scale(1.15)
}

footer .container .footer-top .footer-socials a:not(:last-of-type) {
    margin-right: 2rem
}

footer .container .footer-top .footer-info {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

footer .container .footer-top .footer-info>:not(:last-child) {
    margin-bottom: .35rem
}

footer .container .footer-top .footer-info p {
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center
}

@media only screen and (max-width:380px) {
    footer .container .footer-top .footer-info p {
        align-items: flex-start
    }
}

footer .container .footer-top .footer-info p i {
    display: inline-flex;
    font-size: 1.25rem;
    margin-right: .55rem
}

@media only screen and (max-width:380px) {
    footer .container .footer-top .footer-info p i {
        margin-right: 0
    }
}

footer .container .footer-top .footer-info a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    transition: transform .3s;
    will-change: transform
}

footer .container .footer-top .footer-info a i {
    font-size: 1.25rem;
    line-height: 1;
    margin-right: .55rem
}

footer .container .footer-top .footer-info a:last-of-type {
    font-weight: 700
}

footer .container .footer-top .footer-info a:hover {
    transform: scale(1.1)
}

footer .container .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 1.5rem;
    padding: 1.5rem 0 0;
    width: 70%
}

@media only screen and (max-width:340px) {
    footer .container .footer-bottom {
        width: 100%
    }
}

footer .container .footer-bottom p {
    text-align: center;
    color: #fff
}

footer .container .footer-bottom p span {
    font-size: 1.25rem
}

footer .container .footer-bottom p a {
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

footer .container .footer-bottom p a:hover {
    text-decoration: underline
}

.form-div {
    background: #fff;
    padding: 3rem;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.form-div button,
.form-div input,
.form-div option,
.form-div select,
.form-div textarea {
    font-family: Poppins, sans-serif
}

.form-div form>:not(:last-child) {
    margin-bottom: 1.5rem
}

.form-div .form-message {
    background: #dc143c;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 30px -10px rgba(220, 20, 60, .3);
    padding: 1rem;
    display: none
}

.form-div .form-message>* {
    color: #fff
}

.form-div .form-group input {
    width: 100%;
    padding: 0 1.5rem;
    height: 45px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    outline: 0
}

.form-div .form-group input:-webkit-autofill {
    box-shadow: inset 0 0 0 100px #fff
}

.form-div .form-group input:autofill {
    box-shadow: inset 0 0 0 100px #fff
}

.form-div .form-group input::-moz-placeholder {
    font-style: italic
}

.form-div .form-group input:-ms-input-placeholder {
    font-style: italic
}

.form-div .form-group input::placeholder {
    font-style: italic
}

.form-div .form-group input:focus,
.form-div .form-group input:focus-visible {
    border-color: var(--secondBlue)
}

.form-div .form-group:focus-within label {
    color: var(--secondBlue)
}

.form-div .form-group label {
    margin-bottom: .35rem;
    display: inline-block
}

.form-div .form-group.error input,
.form-div .form-group.error input:focus {
    border-color: #dc143c
}

.form-div .form-group.error label {
    color: #dc143c
}

.form-div .form-group.success input,
.form-div .form-group.success input:focus {
    border-color: #017e4a
}

.form-div .form-group.success label {
    color: #017e4a
}

.form-div .form-group input.form-group-error {
    color: #dc143c;
    border-color: #dc143c
}

.form-div .form-group input.form-group-error::placeholder,
.form-div .form-group:focus-within label.form-group-error,
.form-group label.form-group-error {
    color: #dc143c
}

.form-div .form-group input.form-group-error:focus {
    border-color: #dc143c
}

div.form-group-error {
    font-size: .9rem;
    margin-top: .1rem;
    color: #dc143c
}

.form-div button {
    width: 100%;
    height: 50px;
    background: var(--thirdBlue);
    color: #fff;
    border-radius: 4px;
    border: 2px solid var(--thirdBlue);
    color: #fff;
    transition: background .3s, color .3s;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 1rem
}

.form-div button:focus,
.form-div button:hover {
    background: 0 0;
    color: var(--thirdBlue)
}

.donate {
    background: var(--linear);
    padding: 9rem 0;
    position: relative;
    overflow-x: hidden
}

.donate p:last-of-type>a:not(:last-of-type) {
    margin-right: 0.5rem;
}

@media only screen and (max-width:480px) {
    .donate {
        padding: 3rem 0
    }
}

.donate .donation-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-30%);
    max-width: 550px
}

@media only screen and (max-width:1080px) {
    .donate .donation-bg-1 {
        transform: translateX(-42%)
    }
}

@media only screen and (max-width:768px) {
    .donate .donation-bg-1 {
        max-width: 450px
    }
}

@media only screen and (max-width:480px) {
    .donate .donation-bg-1 {
        max-width: 400px;
        transform: translateX(50%)
    }
}

@media only screen and (max-width:380px) {
    .donate .donation-bg-1 {
        max-width: 400px;
        transform: translateX(40%)
    }
}

.donate .donation-bg-2 {
    position: absolute;
    top: 60%;
    right: 0;
    transform: translate(68%, 50%)
}

@media only screen and (max-width:650px) {
    .donate .donation-bg-2 {
        display: none;
    }
}

/* 
@media only screen and (max-width:600px) {
    .donate .donation-bg-2 {
        top: 62%
    }
}

@media only screen and (max-width:480px) {
    .donate .donation-bg-2 {
        top: 59%
    }
}

@media only screen and (max-width:410px) {
    .donate .donation-bg-2 {
        top: 62%
    }
}

@media only screen and (max-width:350px) {
    .donate .donation-bg-2 {
        top: 63%
    }
} */

.donate .donation-bg-3 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(41.5%, 50%)
}

@media only screen and (max-width:1080px) {
    .donate .donation-bg-3 {
        transform: translate(62%, 50%)
    }
}

@media only screen and (max-width:768px) {
    .donate .donation-bg-3 {
        transform: translate(52%, 40%);
        max-width: 400px
    }
}

@media only screen and (max-width:550px) {
    .donate .donation-bg-3 {
        display: none
    }
}

.donate .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.donate .container>:not(:last-of-type) {
    margin-bottom: 1.5rem
}

.donate .container>p {
    color: var(--whiteTextColor);
    max-width: 70ch
}

.donate .container .form-div {
    margin-top: 6rem;
    max-width: 450px;
    opacity: 0;
    transform: translatex(-100%);
    will-change: transform;
    transition: transform .6s cubic-bezier(.25, .75, .5, 1.25), opacity .3s
}

.donate .container .form-div[data-scroll=in] {
    opacity: 1;
    transform: translateX(0)
}

@media only screen and (max-width:550px) {
    .donate .container .form-div {
        margin-top: 3rem
    }
}

@media only screen and (max-width:480px) {
    .donate .container .form-div {
        padding: 2rem 1.5rem
    }

    .donate .container .form-div form>:not(:last-child) {
        margin-bottom: 1rem
    }
}

.donate .donation-box-title {
    text-align: center;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9rem !important
}

@media only screen and (max-width:768px) {
    .donate .donation-box-title {
        margin-bottom: 6rem !important
    }
}

@media only screen and (max-width:480px) {
    .donate .donation-box-title {
        margin-bottom: 3rem !important
    }
}

.donate .donation-box-title .donation-box-title-number {
    font-size: 9rem;
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 1.1
}

@media only screen and (max-width:480px) {
    .donate .donation-box-title .donation-box-title-number {
        font-size: 6rem
    }
}

@media only screen and (max-width:340px) {
    .donate .donation-box-title .donation-box-title-number {
        font-size: 4rem;
        letter-spacing: -2px
    }
}

.donate .small-title {
    color: var(--whiteTextColor)
}

.donate h2.title {
    color: #fff;
    margin-bottom: 3rem
}

.donate strong {
    color: #fff
}

.shadowed-link {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow .3s, color .3s;
    box-shadow: inset 0 -2px 0 #fff;
    display: inline-flex
}

.shadowed-link:hover {
    color: var(--secondBlue);
    box-shadow: inset 0 -25px 0 #fff
}

.carousel {
    overflow-x: auto
}

.carousel .carousel-box {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer
}

@media only screen and (max-width:768px) {
    .carousel .carousel-box {
        height: 250px
    }
}

@media only screen and (max-width:480px) {
    .carousel .carousel-box {
        height: 230px
    }
}

@media only screen and (max-width:350px) {
    .carousel .carousel-box {
        height: 200px
    }
}

@media only screen and (max-width:340px) {
    .carousel .carousel-box {
        height: 180px
    }
}

.carousel .carousel-box .carousel-box-title {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

.carousel .carousel-box .carousel-box-title span {
    margin-top: .35rem;
    font-weight: 400;
    font-size: 1rem
}

.carousel .carousel-box .carousel-box-title span i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    color: var(--firstBlue);
    margin-right: .25rem
}

@media only screen and (max-width:550px) {
    .carousel .carousel-box .carousel-box-title {
        font-size: 1.25rem
    }
}

@media only screen and (max-width:340px) {
    .carousel .carousel-box .carousel-box-title {
        font-size: 1.1rem
    }
}

.carousel .carousel-box::after {
    content: "Vezi proiect";
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translatey(20px);
    z-index: 1;
    opacity: 0;
    transition: transform .3s;
    background: white;
    padding: 0.3rem .75rem;
    border-radius: 8px;
    color: black;
    font-size: 0.95rem;
    font-weight: 500;
}

@media only screen and (max-width:340px) {
    .carousel .carousel-box::after {
        bottom: .55rem;
        font-size: .85rem;
    }
}

.carousel .carousel-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: opacity .3s;
}

.carousel .carousel-box:hover img {
    opacity: .9;
}

.carousel .carousel-box:hover::before {
    opacity: .95
}

.carousel .carousel-box:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.projects {
    padding: 9rem 0;
    background: #fff;
    position: relative
}

@media only screen and (max-width:1080px) {
    .projects {
        padding: 6rem 0
    }
}

@media only screen and (max-width:768px) {
    .projects {
        padding: 3rem 0
    }
}

.projects .projects-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.projects .projects-container .title {
    margin: .5rem 1.5rem
}

.projects .projects-container .wrapper {
    width: 100%;
    display: grid;
    grid: auto/100%;
    margin-top: 3rem;
    padding-left: 3rem;
    padding-right: 0
}

@media only screen and (min-width:1500px) {
    .projects .projects-container .wrapper {
        padding-left: 6rem
    }
}

@media only screen and (min-width:1800px) {
    .projects .projects-container .wrapper {
        padding-left: 9rem
    }
}

@media only screen and (max-width:768px) {
    .projects .projects-container .wrapper {
        grid: auto/100%
    }
}

@media only screen and (max-width:480px) {
    .projects .projects-container .wrapper {
        margin-top: 1.5rem
    }
}

@media only screen and (max-width:380px) {
    .projects .projects-container .wrapper {
        padding-left: 1.5rem
    }
}

.collaboration {
    padding: 9rem 0;
    background: var(--linear);
    position: relative;
    overflow-x: hidden
}

@media only screen and (max-width:768px) {
    .collaboration {
        padding: 6rem 0
    }
}

@media only screen and (max-width:480px) {
    .collaboration {
        padding: 3rem 0 0
    }
}

.collaboration .contact-bg-1 {
    position: absolute;
    top: 30%;
    transform: translate(-35%, 0)
}

@media only screen and (max-width:768px) {
    .collaboration .contact-bg-1 {
        display: none
    }
}

.collaboration .contact-bg-2 {
    position: absolute;
    top: 5%;
    right: -45%;
    transform: translate(-50%, 0)
}

@media only screen and (min-width:1800px) {
    .collaboration .contact-bg-2 {
        right: -15%
    }
}

@media only screen and (max-width:768px) {
    .collaboration .contact-bg-2 {
        max-width: 90%
    }
}

@media only screen and (max-width:380px) {
    .collaboration .contact-bg-2 {
        max-width: 80%
    }
}

.collaboration .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.collaboration .container .title {
    color: #fff;
    text-align: center
}

.collaboration .form-div {
    max-width: 450px;
    margin-top: 3rem;
    transform: translatex(100%);
    transition: transform .6s cubic-bezier(.25, .75, .5, 1.25);
    will-change: transform
}

.collaboration .form-div[data-scroll=in] {
    transform: translateX(0)
}

@media only screen and (max-width:550px) {
    .collaboration .form-div {
        padding: 2rem
    }
}

@media only screen and (max-width:480px) {
    .collaboration .form-div {
        padding: 2rem 1.5rem
    }

    .collaboration .form-div form>:not(:last-child) {
        margin-bottom: 1rem
    }
}

.animate-here {
    transform-origin: 386px 171px;
    -webkit-animation: heartBeat .5s infinite alternate linear;
    animation: heartBeat .5s infinite alternate linear
}

.animate-here-hexa {
    transform-origin: 162px 118px;
    -webkit-animation: heartBeat 2.5s infinite alternate linear;
    animation: heartBeat 2.5s infinite alternate linear
}

.animate-here-hexa-2 {
    transform-origin: 162px 118px;
    animation: botAnimate 1.3s infinite alternate-reverse linear
}

.animate-here-hexa-3 {
    transform-origin: 162px 118px;
    animation: botAnimate 1.5s infinite alternate-reverse linear
}

.form-message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    padding: 1.5rem;
    z-index: 99999;
}

.form-message-modal-wrapper {
    flex-basis: 550px;
    padding: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.form-message-modal-wrapper>*:not(:last-child) {
    margin-bottom: 1rem;
}

.form-message-modal-wrapper .asmbs-icon-check-solid {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: centere;
    font-size: 1.5rem;
    background: green;
    color: white;
}

.form-message-modal-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 1rem;
}

.form-message-modal-desc {
    line-height: 1.4;
    font-size: 1rem;
}

.form-message-modal-back {
    width: 100%;
    height: 50px;
    background: var(--thirdBlue);
    color: #fff;
    border-radius: 4px;
    border: 2px solid var(--thirdBlue);
    color: #fff;
    transition: background .3s, color .3s;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-message-modal-back i {
    display: inline-block;
    transform: translateY(-1.5px) rotate(90deg);
    margin-right: 1rem;
    font-size: 1.125rem;
    transition: transform 300ms;
}

.form-message-modal-back:hover,
.form-message-modal-back:focus {
    background: 0 0;
    color: var(--thirdBlue);
}

.form-message-modal-back:hover i {
    transform: translateY(-1.5px) rotate(270deg);
}

@media only screen and (max-width: 380px) {
    .form-message-modal-wrapper {
        padding: 1.5rem;
    }

    .form-message-modal-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

@-webkit-keyframes topDown {
    from {
        transform: translateY(-5px)
    }

    to {
        transform: translateY(5px)
    }
}

@keyframes topDown {
    from {
        transform: translateY(-5px)
    }

    to {
        transform: translateY(5px)
    }
}

@-webkit-keyframes heartBeat {
    from {
        transform: translatey(0)
    }

    to {
        transform: translatey(20px)
    }
}

@keyframes heartBeat {
    from {
        transform: translatey(0)
    }

    to {
        transform: translatey(20px)
    }
}

@-webkit-keyframes topAnimate {
    from {
        transform: translateY(10px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes topAnimate {
    from {
        transform: translateY(10px)
    }

    to {
        transform: translateY(0)
    }
}

@-webkit-keyframes botAnimate {
    from {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes botAnimate {
    from {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(0)
    }
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s;
}

.fade-enter,
.fade-leave-to

/* .fade-leave-active below version 2.1.8 */
    {
    opacity: 0;
}

[v-cloak] {
    display: none;
}

.steps-img {
    max-width: 600px;
    margin: 3rem 0 3rem 0;
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 550px) {
    .steps-img {
        margin: .5rem 0 0;
    }
}

.price-plans {
    margin-top: 6rem;
    margin-bottom: 6rem;
    position: relative;
    /* display: none; */
}

.price-plans .container>img {
    position: absolute;
    left: -5%;
    bottom: 0;
    max-width: 650px;
    transform: translateY(-30%);
}

.price-plans .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    position: relative;
}

.price-plans .wrapper {
    display: grid;
    width: 100%;
    margin-top: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
    align-items: start;
}

.price-plan {
    background: var(--firstBlue);
    border-radius: 8px;
    padding: 3rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
}

.price-plan-header {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
}

.price-plan-header span {
    background: white;
    color: var(--firstBlue);
    border-radius: 300px;
    padding-left: 1rem;
    padding-right: 1rem;
}


.price-plan-body {
    list-style-type: none;
}

.price-plan-body li {
    color: rgba(255, 255, 255, .6);
    transition: color 300ms;
    padding-left: 1.5rem;
    position: relative;
}

.price-plan-body li::before {
    content: "\e901";
    font-family: asmbs-icons;
    position: absolute;
    left: -.8rem;
    top: 0;
    background: white;
    color: var(--firstBlue);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-plan-body li:hover {
    color: white;
}

.price-plan-body>*+* {
    margin-top: 1rem;
}

.price-plan-footer {
    margin-top: auto;
}

.price-plan-footer-price-range {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem 0;
    background: white;
    color: var(--firstBlue);
    position: relative;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    animation: bounces 1200ms infinite alternate both ease;
}

.price-plan-footer-price-range::before,
.price-plan-footer-price-range::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: var(--firstBlue);
    border-radius: 50%;
}

.price-plan-footer-price-range::before {
    left: calc(-25px / 2);
}

.price-plan-footer-price-range::after {
    right: calc(-25px / 2);
}

.price-plan:first-child .price-plan-header span {
    background: brown;
    color: white;
}

.price-plan:nth-child(3) .price-plan-header span {
    background: #ffbe07;
    color: black;
}

.price-plan:nth-child(4) .price-plan-header span {
    background: #00dcff;
    color: black;
}

@keyframes bounces {
    from {
        transform: scale(1) rotate(3deg);
    }

    to {
        transform: scale(1.025) rotate(0);
    }
}

@media only screen and (max-width: 1300px) {
    .price-plans .wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: initial;
    }

    .price-plans .container>img {
        display: none;
    }
}

@media only screen and (max-width: 680px) {
    .price-plans .wrapper {
        grid-template-columns: 100%;
    }
}

@media only screen and (max-width: 480px) {

    .price-plans {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .price-plans .wrapper {
        margin-top: 2rem;
    }

    .price-plan-header {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }

    .price-plan-footer-price-range {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 380px) {
    .price-plan-footer-price-range {
        font-size: 1.1rem;
    }
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    background: #fff;
    border: 1px solid #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.owl-next {
    right: 10px;
}

.owl-prev {
    left: 10px;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
pointer-events: none;
opacity: 0.2;
}

.owl-carousel .owl-nav>div {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
}

.owl-nav>div:after {
    font-size: 22px;
    line-height: 22px;
}

@media (max-width: 576px){
body .owl-nav>div {
    display: block;
}
}