/* General */
body {
    margin: 0;
}

.vcontainer {
    font-size: 16px;
    padding: 3em 4em;
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (max-width:480px) {
    .vcontainer {
        font-size: 14px;
    }
}

.vrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.vcolumn {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vtitle {
    text-align: center;
    margin-bottom: 2em;
}

.vheader {
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    font-weight: 500;
    margin: 0;
}

.vcontent {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
}

.vlink {
    text-decoration: none;
    color: #EB5424;
}

.vbtn {
    border: none;
    border-radius: 10px;
    background-color: #EB5424;
    font-family: "Poppins";
    font-size: 1em;
    font-weight: 500;
    color: white;
    padding: 10px 35px;
    transition: all 0.5s ease;
}

.vbtn:hover {
    background-color: #c62e00;
    cursor: pointer;
}


/* Hero Section */
.vhero {
    justify-content: space-evenly;
}

.vhero-title {
    width: 55%;
    gap: 1.5em;
}

.vhero-title h1 {
    font-size: 2.5em;
}

.vhero-btn {
    justify-content: start;
    gap: 1em;
}

.vhero-img {
    width: 40%;
}

.vhero-img img {
    width: 100%;
}


/* Slideshow */
.slideshow-container {
    position: relative;
    background-color: #f8f8f8;
}

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #444;
    font-weight: bold;
    font-size: 1.5em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.mySlides .vrow {
    gap: 3em;
    justify-content: center;
}

.slide-img {
    width: 35%;
    align-items: center;
}

.slide-img iframe {
    width: 500px;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0 0 0 2px rgb(56 60 67 / 6%), 0 1px 3px 0 rgb(56 60 67 / 15%);
}

.slide-content {
    width: 50%;
    gap: 1em;
}

.slide-content h3 {
    font-size: 1.5em;
}

.slide-img img {
    width: 75%;
}


/* Features */
.vfeatures .vrow {
    margin: 2em 0em;
    gap: 1em;
}

.vfeatures-box {
    width: 28%;
    min-width: 300px;
    padding: 1em;
    text-align: center;
    justify-content: start;
    gap: 0.5em;
}

.vfeatures-box .vrow {
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.vfeatures-box i {
    font-size: 2em;
    color: #EB5424;
}

.vfeatures-box h3 {
    font-size: 1.25em;
}

.vfeatures-box p {
    font-size: 0.9em;
}


/* Supported Apps */
.vapps {
    background-color: #f8f8f8;
}

.vapps .vtitle {
    margin-bottom: 3em;
}

.vapps .vrow {
    gap: 4em;
    align-items: center;
}

.vapps-box {
    width: 10%;
    text-align: center;
    cursor: default;
    transition: all 0.5s ease;
}

.vapps-box a {
    text-decoration: none;
}

.vapps-box img {
    width: 80px;
}

.vapps-box h3 {
    color: black;
    font-weight: 500;
}

.vapps-box:hover {
    transform: scale(1.1);
    cursor: pointer;
}


/* Supported Methods */
.vmethods {
    background-color: #f8f8f8;
    padding-top: 1em;
}

.vmethods .vtitle {
    margin-bottom: 3em;
}

.vmethods a {
    text-decoration: none;
}

.vmethods .vrow {
    gap: 4em;
}

.vmethods-box {
    width: 200px;
    text-align: center;
    transition: all 0.5s ease;
}

.vmethods-box img {
    width: 80px;
}

.vmethods-box h3 {
    color: black;
    font-weight: 500;
}

.vmethods-box:hover {
    transform: scale(1.1);
    cursor: pointer;
}


/* Pricing Section */
.vpricing .vrow {
    gap: 5em;
}

.vpricing-box {
    width: 30%;
    min-width: 300px;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 2em;
    text-align: center;
    box-shadow: 0 0 0 2px rgb(56 60 67 / 6%), 0 1px 3px 0 rgb(56 60 67 / 15%);
    transition: all 0.5s;
}

.vpricing-box:hover {
    border: 2px solid #EB5424;
    cursor: default;
}

.vpricing-box h3 {
    font-size: 2em;
    color: #EB5424;
    margin-bottom: 0.5em;
}

.vpricing-box h4 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.vpricing-box p {
    font-size: 0.85em;
}

.vpricing-features {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 0.5em 1em;
}

.vpricing-features .vrow {
    justify-content: flex-start;
    text-align: start;
    align-items: center;
    gap: 1em;
    flex-wrap: nowrap;
    margin: 0.5em 0em;
}

.vpricing-box .fa-check {
    color: green;
}

.vpricing-box .fa-xmark {
    color: red;
}


/* Why miniOrange */
.vb-why .vrow {
    gap: 2em;
    padding: 1em 0em;
}

.vb-why-box {
    width: 20%;
    min-width: 250px;
    min-height: 300px;
    padding: 1em;
    box-shadow: 0 0 0 2px rgb(56 60 67 / 6%), 0 1px 3px 0 rgb(56 60 67 / 15%);
    border-radius: 20px;
    text-align: center;
    gap: 0.5em;
    cursor: default;
    justify-content: space-evenly;
}

.vb-why-box i {
    font-size: 2.5em;
    color: #EB5424;
}

.vb-why-box h4 {
    font-size: 1.25em;
}