@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans&display=swap');

:root {
    /* fonts */
    --jakarta: 'Plus Jakarta Sans', sans-serif;

    /* colors */
    --pale: #FAFAFA;
    --darkes__p: #072125;
    --dark__p: #20484f;
    --light__p: #b8e4da;
    --lighter__p: #dcf2ed;
    --border: #20484f 80%;
    --border__hov: #20484f 20%;
    --white: #fff;
    --hidden: none;
    --swiper-theme-color: #B8E4DA !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: var(--jakarta);
}

.logo {
    font-weight: 700;
    line-height: 30px;
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--white);
}

h1 {
    font-size: 50px;
    line-height: 120%;
}

h2 {
    font-size: 40px;
    line-height: 130%;
}

h3 {
    font-size: 32px;
    line-height: 130%;
    font-weight: 400;
}

h4 {
    font-size: 24px;
    line-height: 130%;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
}

h6 {
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
}

.button {
    padding: 10px 16px;

    /* width: 82px;
    height: 41px; */
    outline: none;
    border: none;

    /* Dark Green */
    border-radius: 8px;
    font-size: 14px;
    line-height: 150%;
    color: var(--white);
    cursor: pointer;

    font-weight: 400;
}

.button.dark_p {
    background: var(--dark__p);
}

.button.light__p {
    background: var(--light__p);
}

.button.hidden {
    background: var(--hidden);
}

.button.white {
    background: var(--white);
    border: 1px solid rgba(32, 72, 79, 0.10);
    background: var(--white, #FFF);
    color: black;
}

.button.light__p {
    background: var(--light__p);
}

.button.hidden {
    background: var(--hidden);
}

.buttons.header {
    margin-top: 50px;
}

.button.learn {
    width: 168px;
    /* Border */

    border: 1px solid rgba(32, 72, 79, 0.1);
    color: var(--darkes__p);
    padding: 16px 36px;
}

.header-sign {
    padding: 16px 36px;
    margin-right: 20px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-around;

    height: 75px;
    width: 100%;
    background: var(--dark__p);
}

.nav {
    display: flex;
    gap: 32px;

    color: var(--white);
}

.nav-text {
    font-weight: 400;
}

.buttons {
    display: flex;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: #20484F;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.9) !important;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.button-trial {
    width: 190px;
    height: 58px;
}

footer {
    width: 100%;
    height: 385px;
    background-color: var(--darkes__p);

    /* margin-top: 70px; */
    color: var(--white);

    padding-top: 69px;
    padding-left: 120px;
    padding-right: 150px;
}

.footer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-cards {
    display: flex;
    align-items: center;
    gap: 76px;
}

.footer-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo__ {
    margin-bottom: 39px;
}

.footer-h6 {
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid var(--light__p);
    width: 100%;
    background-color: var(--darkes__p);
}