html, body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.logo-img {
    max-width: 110px;
}

.logo-img img {
    max-width: 100%;
}

.logo-text {
    font-weight: 600;
    line-height: 1.1;
    font-size: 1rem;
    color: #131313;
}

.flex-1 {
    flex: 1;
}

.line-height-1 {
    line-height: 1;
}

.z-index-1 {
    z-index: 1;
}

.text-blue {
    color: #0189fe;
}

.text-gradient.gradient-1 {
    background: linear-gradient(45deg, #02a1fc 0%, #00a3fb 20%, #03cbe1 30%, #03ccdd 100%);
    -webkit-background-clip: text;

}

.text-gradient.gradient-2 {
    background: linear-gradient(45deg, #01b4ff 0%, #0bb1ff 20%, #958eff 50%, #9d8cfe 100%);
    -webkit-background-clip: text;
}

.tagline > span:nth-child(2) {
    font-size: 6rem;
}

.tagline > span:nth-child(3) {
    text-align: right;
}

.container {
    width: 80%;
    max-width: 100%;
}

main {
    position: relative;
    background-image: url('../images/bg-main.png');
    background-size: 100% 100%;
    overflow: hidden;
}

main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 90%;
    background-image: url('../images/bg-white.png');
    background-size: 100% 100%;
    z-index: 0;
}

main>* {
    position: relative;
    z-index: 1;
}

.img-center {
    position: absolute;
    height: 100%;
    width: auto;
    left: 53%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.bg-banner-icons {
    position: absolute;
    left: -35px;
}

.bg-banner-icons.pyramid {
    top: 25%;
    transform: translateY(-50%);
}

.mb-8rem {
    margin-bottom: 8rem !important;
}

.btn {
    --bs-btn-border-radius: 1.5rem;
    min-width: 180px;
}

.btn-primary {
    --bs-btn-bg: #0781ed;
    --bs-btn-border-color: #0781ed;
}

.btn-gradient-border {
    position: relative;
    background: #fff;
    background-clip: padding-box;
    color: #353535;
    border: 1px solid transparent;
}

.btn-gradient-border::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(to bottom left, #487ea3, #70c7b5);
    z-index: -1;
    border-radius: inherit;
    transition: all .35s ease-in-out;
}

.btn-gradient-border {
    --bs-btn-hover-bg: #fff;
}

.btn-gradient-border:hover:after {
    background: linear-gradient(45deg, #02a1fc 0%, #00a3fb 20%, #03cbe1 30%, #03ccdd 100%);
}

@media screen and (max-width: 768px) {
    main {
        background-size: auto 100%;
        background-position: -69% center;
    }

    main:before {
        width: 500%;
        background-position-y: 75%;
    }

    .bg-banner-icons {
        width: 80px;
    }

    .bg-banner-icons.pyramid {
        top: 5%;
    }

    .img-center {
        height: 65%;
        left: 12%;
    }

    .logo-img {
        max-width: 60px;
    }

    .logo-text {
        font-size: 0.675rem;
    }
}