/* Подключаем локальные шрифты */
@font-face {
    font-family: 'Graphik';
    src: url('./fonts/graphik/graphik-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('./fonts/graphik/graphik-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

div {
    position: relative;
}

:root {
    --green: #D0EA35;
    --dark: #262626;
    --gray: #707070;
    --light-dark: #383B3E;
}

a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.w-50 {
    width: 50% !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

body {
    font-family: 'Graphik', sans-serif;
    margin: 0;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.d-block {
    display: block !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.d-flex.wrap {
    flex-wrap: wrap;
}

.d-none {
    display: none !important;
}

.ml-8 {
    margin-left: 8px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.flex-start {
    align-items: flex-start !important;
}

.ml-24 {
    margin-left: 24px !important;
}

.p-16 {
    padding: 16px !important;
}

.pb-16 {
    padding-bottom: 16px !important;
}

.pb-24 {
    padding-bottom: 16px !important;
}

.p-8 {
    padding: 8px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.p-20 {
    padding: 20px !important;
}

.br-24 {
    border-radius: 24px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.d-flex {
    display: flex !important;
}

.space-between {
    justify-content: space-between !important;
}

.justify-between {
    justify-content: space-between !important;
}

.center {
    justify-content: center;
}

.flex-column {
    flex-direction: column !important;
}

.bg-center {
    background-position: center !important;
}

.bg-no-repeat {
    background-repeat: no-repeat !important;
}

p {
    margin: 0;
    line-height: 30px;
    font-weight: 300;
}

.text-white {
    color: #fff !important;
}

.text-green {
    color: var(--green) !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-light-dark {
    color: var(--light-dark) !important;
}


.fw-light {
    font-weight: 300 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--dark) !important;
}


.container {
    margin: 0 auto;
    max-width: 100%;
}

.px-16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}


.heading {
    font-size: 32px;
    margin: 0;
    line-height: 40px;
    font-weight: 400;
}

.sub_heading {
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}

.fw-400 {
    font-weight: 400 !important;
}

.self-end {
    align-self: end !important;
}

.self-start {
    align-self: start !important;
}

.download-img {
    background-image: url(./img/pic1.png);
    width: 320px;
    height: 320px;
    background-size: 320px;
    align-self: center;
}

.download-inner {
    padding: 40px 0;
}

.bg-green {
    background-color: var(--green);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-light-dark {
    background-color: var(--light-dark);
}

.radius {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.list > li {
    line-height: 28px;
    display: flex;
    padding-left: 32px;
    background-repeat: no-repeat;
}

.list > div > div {
    background-repeat: no-repeat;
}


.btn {
    cursor: pointer;
    box-shadow: none;
    outline: none;
    border: none;
    line-height: 28px;
    display: inline-block;
    border-radius: 40px;
    padding: 8px 16px;
    white-space: nowrap;
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 16px;
}


.btn-gray {
    background-color: var(--dark);
    border: 1px solid var(--gray);
    color: #fff;
    transition: background-color .5s;
}

.btn-gray:hover,
.btn-gray.active {
    background-color: white;
    color: var(--dark);
}

.align-items-center {
    align-items: center !important;
}

.bottom-center {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-download {
    background-color: var(--dark);
    color: var(--green);
}


.btn-green {
    background-color: var(--green);
    color: var(--dark);
}


.map-buttons {
    display: flex;
    overflow-x: scroll;
}

.map-buttons::-webkit-scrollbar {
    display: none;
}


.map {
    padding-bottom: 460px;
    background-repeat: no-repeat;
    background-position: center calc(100% - 60px);
    background-image: url("./img/map.png");
}

#cards::before {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    z-index: -1;
    background-color: var(--green);
}

#about::before {
    background-color: var(--dark);
}

#team::before {
    background-color: var(--light-dark);
}

.card {
    display: flex;
    height: auto;
    background-color: transparent;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    justify-content: end;
    padding: 0;
}

.card-title {
    font-size: 32px;
    line-height: 100%;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.card-list {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
    text-align: center;
}

.card-list > li:before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 16px;
    background-image: url("./img/star.svg");
}

.card-subtitle {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 16px;
}

.card-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.card-image-big {
    width: 558px;
    height: 558px;
    position: absolute;
    background-size: contain;
    background-position: center;
    top: 0;
    right: 40px;
}

.card-inner {
    width: 100%;
}

.gradient-2 {
    position: absolute; /* or relative/fixed depending on context */
    width: 431.57px;
    height: 490.99px;
    top: 194.14px;
    left: 552px;
    opacity: 0.1;
    transform: rotate(-2.2deg);
    border-radius: 50%;
    filter: blur(140px);
    background-color: #A6C90D;
}

.gradient-1 {
    position: absolute;
    width: 570px;
    height: 570px;
    transform: rotate(-2.2deg);
    opacity: 0.2;
    top: -65px;
    left: 777.69px;
    border-radius: 50%;
    filter: blur(206px);
    background-color: #EE2166;
}


.info-menu > li {
    margin-bottom: 16px;
}

.info-menu > li::before,
.info-menu > li::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 0;
    background-repeat: no-repeat;
    background-image: url("./icons/star.svg");
}

.info-menu > li::after {
    left: 8px;
}

.info-menu > li::before {
    right: 8px;
}

.logo-bottom {
    display: block;
    max-width: 100%;
    width: 217px;
    height: 34px;
    margin: 0 auto 20px auto;
}

.research {
    padding-top: 150px;
    padding-bottom: 150px;
}

.text-research {
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer__app-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.footer__logo > img {
    width: 204px;
    height: 32px;
    margin-bottom: 16px;
}

.footer__term {
    font-size: 16px;
    font-weight: 300;
}

.footer__term > a {
    font-size: 16px;
    display: inline;
}

.footer-inner {
    padding: 40px;
    background-image: url("./img/footer-sm.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    background-size: 300px auto;
    border-radius: 20px;
}

.ellipse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 400px;
}

.text-about {
    font-weight: 300;
    color: white;
    font-size: 16px;
    max-width: 280px;
}

.container-padded {
    padding-top: 20px;
    padding-bottom: 0;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 56px;
    background-color: white;
    color: var(--dark);
    display: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 5;
    overflow: hidden;
}

.close {
    display: none;
}

.open .close {
    display: block;
}

.open .burger {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

#slides > div {
    display: none;
}

#slides .active {
    display: block;
}

.pt-60 {
    padding-top: 60px !important;
}

.my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

/* Медиазапрос для экранов планшетов */
@media (min-width: 768px) {
}

/* Медиазапрос для больших экранов */
@media (min-width: 1024px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-block {
        display: block !important;
    }

    .heading {
        font-size: 96px;
        line-height: 112px;
    }

    .card {
        height: 558px;
        background-color: rgba(23, 23, 23, 0.8);
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        justify-content: start;
        padding: 60px 60px 0 60px;
    }


    .card-title {
        font-size: 64px;
        line-height: 68px;
        text-align: left;
        margin-bottom: 30px;

    }

    .card-subtitle {
        font-size: 28px;
        line-height: 36px;
        color: #fff;
        font-weight: 300;
        margin-bottom: 60px;
        text-align: left;
    }

    .card-list {
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        line-height: 34px;
        text-align: left;
    }

    .sub_heading {
        font-size: 24px;
        line-height: 36px;
    }

    .container {
        max-width: 944px;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .download-img {
        display: none;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .text-md {
        font-size: 24px;
        line-height: 40px
    }

    #team-container {
        grid-template-columns: repeat(3, 280px);
    }

    .text-md-left {
        text-align: left;
    }

    .container-padded {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .download-inner {
        padding: 80px 0;
    }

    .radius {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .logo-bottom {
        width: auto;
        height: auto;
        margin-bottom: 40px;
    }

    .text-research {
        margin-bottom: 40px;
        font-size: 36px;
    }

    .btn {
        font-size: 20px;
        padding: 18px 45px;
    }

    .footer-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        background-position: 120% center;
        background-size: 484px;
    }

    .footer__logo {
        order: 1;
    }

    .footer__app-menu {
        order: 4;
    }

    .footer__info {
        order: 3;
    }

    .footer__menu {
        order: 4;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .footer__menu > li {
        flex-basis: 33%;
    }

    .footer__term {
        order: 5;
        width: 100%;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .my-md-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

}

@media (min-width: 1440px) {
    .container {
        max-width: 1320px
    }

    .card {
        height: auto;
        background-color: rgba(23, 23, 23, 0.8);
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        padding: 60px;
        justify-content: space-between;
    }

    .ml-lg-120 {
        margin-left: 120px !important;
    }

    .ml-lg-150 {
        margin-left: 150px !important;
    }

    .justify-lg-start {
        justify-content: start !important;
    }

    .logo-bottom {
        width: auto;
        height: auto;
        margin-bottom: 40px;
    }

    .text-research {
        margin-bottom: 40px;
        font-size: 36px;
    }

    .card-title {
        font-size: 64px;
        line-height: 68px;
        text-align: left;
        margin-bottom: 30px;
    }

    .card-subtitle {
        font-size: 28px;
        line-height: 36px;
        color: #fff;
        font-weight: 300;
        margin-bottom: 24px;
        text-align: left;
    }

    .download-img {
        display: flex;
        width: 652px;
        height: 652px;
        background-size: 652px;
        align-self: end;
    }

    .card-list {
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        line-height: 34px;
        text-align: left;
    }

    .radius {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .text-about {
        max-width: 424px;
    }

    #team-container {
        grid-template-columns: repeat(4, 280px);
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .container-padded {
        padding-top: 40px;
        padding-bottom: 140px;
    }

    .btn {
        font-size: 20px;
        padding: 18px 45px;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .justify-lg-between {
        justify-content: space-between !important;
    }

}