@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";

.person {
    width: 70%;
    height: 50%;
    left: 15%;
    position: relative;
}


.features {
    width: 50%;
    left: 25%;
    position: relative;
}

.offer-columns {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.person-text {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.offer-box {
    left: 10%;
    width: 80%;
    position: relative;
}

.contact {
    position: absolute;
    z-index: 2;
    right: 10%;
    height: 70%;
    top: 15%;
}

.review-box {
    width: 25rem;
    border: 1px solid #dbdbdb;
}

.rv-box {
    transition: all .2s ease-in-out !important;
    cursor: pointer;
}

.rv-box:hover {
    transform: scale(1.05) !important;
}

.m-auto {
    margin: auto !important;
}

.contact-box {
    width: 70%;
    left: 15%;
    position: relative;
}

.offer-column {
    max-height: 95%;
}

@media only screen and (max-width: 768px) {
    .person {
        width: 100%;
        height: 50%;
        left: 0;
        position: relative;
    }
    .features {
        width: 100%;
        left: 0;
    }
    .offer-columns {
        position: unset;
        display: inline;
    }

    .person-text {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .offer-box {
        width: 90%;
        left: 5%;
    }

    .contact {
        right: 5%;
    }

    .mb-4-mobile {
        margin-bottom: 1rem !important;
    }

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

    .mt-6-mobile {
        margin-top: 3rem !important;
    }

    .review-box {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 80%;
    }

    .rv-box-mobile {
        animation: show 0.5s ease-in-out;
    }

    .contact-box {
        width: 90%;
        left: 5%;
        text-align: center !important;
    }
}

body {
    width: 100%;
    height: 100%;
}

.header {
    text-align: center;
}

.top-image {
    position: fixed;
    top: 0;
    left: 0;
}

.hitbox {
    position: absolute;
    width: 300%;
    height: 500%;
    top: -200%;
    left: -100%;
}

.header-title {
    position: relative;
    margin-top: 8%;
}

.header-subtitle {
    position: relative;
}

.navbar {
    width: 100%;
    height: 6%;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    text-align: center;
    top: 0;
}

.media-content {
    overflow: hidden;
}

.about-us {
    width: 100%;
}

.socials {
    position: absolute;
    z-index: 2;
    left: 5%;
    height: 70%;
    top: 15%;
}

.social-button {
    background-color: rgba(0, 0, 0, 0) !important;
    border: none !important;
}

.social-buttons {
    flex-wrap: nowrap;
}

.has-text-centered-relative {
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
}

.tabs-desktop {
    position: absolute;
    left: 0;
    right: 0;
}

.person-img {
    border-radius: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.white {
    background-color: white;
    position: absolute;
}

.arrow-left {
    position: absolute;
    left: 5%;
    cursor: pointer;
}

.arrow-right {
    position: absolute;
    right: 5%;
    cursor: pointer;
}

.tabs-background {
    background-color: white;
    border-top: 4px solid rgb(89, 89, 89);
}

.tabs-left {
    border-radius: 4px 0 0;
    border-left: 4px solid rgb(89, 89, 89);
}

.tabs-right {
    border-radius: 0 4px 0 0;
    border-right: 4px solid rgb(89, 89, 89);
}

.border-element {
    background-color: rgb(89, 89, 89);
    height: 4px;
    position: absolute;
    display: block;
}

.selected-radius {
    border-radius: 4px 0 0 !important;
}

.reviews {
    position: relative;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.flex-container > div {
    margin: 10px;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.stars {
    justify-content: unset !important;
}

.account-icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
}

.bg-blue {
    background-color: deepskyblue;
}

.bg-green {
    background-color: darkolivegreen;
}

.bg-violet {
    background-color: darkviolet;
}

.account-icon-text {
    color: white;
    font-size: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.account-content {
    display: inline-block;
}

.offers {
    position: relative;
}

.offers-img {
    width: 100%;
    left: 0;
    top: 0;
    position: relative;
}

.box-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes show {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}