/*
Template Css: Hosting nVme
*/

:root {
    --primary-color: #1B39D3 !important;
}

/**top-bar**/
.nv-top-bar {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(270deg, #0B19BA 0%, #284FE5 100%);
    padding: 10px 0;
}

.nv-top-bar a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.nv-top-bar a {
    color: #fff;
    font-size: 14px;
    
    font-weight: 700;
}

.nv-top-bar a:hover {
    color: yellow;
}

.nv-top-bar .nv-top-menu a {
    margin-left: 20px;
}

.nv-top-bar .nv-top-menu {
    width: 100%;
    text-align: right;
}

/**header**/
header#nv-header {
    width: 100%;
    display: flex;
    background: linear-gradient(90deg, #2850E6 0%, #0916B8 100%);
    height: 80px;
    align-items: center;
}

header#nv-header div#logo {
    height: 80px;
    display: flex;
    align-items: center;
}

header#nv-header div#logo a img {
    max-width: 150px;
}

header#nv-header .nv-header-menu ul {
    display: flex;
    margin: 0px !important;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}

header#nv-header .nv-header-menu ul li {
    list-style: none;
    margin-bottom: 0px !important;
}

header#nv-header .nv-header-menu ul li a {
    color: #fff;
    
    font-weight: 700;
    font-size: 15px;
}

header#nv-header .nv-header-menu ul li a:hover {
    color: yellow;
}

header#nv-header .nv-header-button {
    height: 80px;
    display: flex;
    align-items: center;
}

header#nv-header .nv-header-button a {
    width: 100%;
    font-size: 15px;
    background-color: #E80000;
    border-radius: 8px;
    color: #fff;
    padding: 6px 0;
    
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

/**Banner**/
.nv-banner a {
    background: linear-gradient(to right, #fcec00, #fdd301);
}

.nv-banner a {
    background: linear-gradient(to right, #fcec00, #fdd301);
    position: absolute;
    bottom: 30px;
    right: 28%;
    padding: 8px 25px;
    border-radius: 50px;
    color: #2A46CC;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease-in-out;
    animation: zoom-in-zoom-out 1s ease infinite;
}

.nv-banner a:hover {
    transition: 0.3s ease-in-out;
    text-decoration: unset;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

/**abouts**/
.nv-about-img {
    animation: movebounce 3.9s linear infinite;
}

@keyframes movebounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.nv-about-content p i {
    color: #2A46CC;
}

.nv-about-content p {
    color: #333;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 300;
    
}

.nv-about-content h3 {
    color: #2A46CC;
    font-size: 25px;
    
    font-weight: 700;
    margin-bottom: 20px;
}

/**title**/
.home-title h2 {
    
    font-size: 30px !important;
}

/**table**/
section#nv-table {
    width: 100%;
    display: inline-block;
}

.nv-title {
    text-align: center;
    margin-bottom: 35px;
}

.nv-title h3 {
    font-size: 30px;
    margin: 0px;
    font-weight: 700;
    color: #2A46CC;
    text-transform: capitalize;
}

.nv-tb-price-ins strong span {
    text-decoration: unset !important;
    font-weight: 300;
}

.nv-tb-price {
    width: 100%;
    overflow: hidden;
    display: inline-block;
    border: 2px solid #2A46CC;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    transition: 0.3s ease-in-out;
    
    font-weight: 300;
}

.nv-tb-price .nv-tb-header {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.nv-tb-price .nv-tb-header p {
    font-size: 11px;
    margin: 0px !important;
}

.nv-tb-price .nv-tb-header h3 {
    font-weight: 700;
    font-size: 25px;
    color: #000;
    margin: 0px;
    
}

.nv-tb-price .cdt-product__btn {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    opacity: 0;
    display: none;
    visibility: hidden;
    left: 0;
    padding: 0 15px;
    width: 100%;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    z-index: 1;
}

.cdt-product__btn a {
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    width: 100%;
    
    font-weight: 700;
    background: #FF4F56;
    padding: 10px 25px;
    border-radius: 8px !important;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    border: 1px solid #fff;
    margin-top: 10px !important;
    display: block;
    text-align: center;
}

.nv-tb-price:hover .cdt-product__btn {
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    opacity: 1;
    display: block;
    visibility: visible;
}

.nv-tb-price .nv-tb-price-ins {
    width: 100%;
    display: inline-block;
}

.nv-tb-price .nv-tb-price-ins span {
    color: #000;
    font-size: 13px;
    text-decoration: line-through;
}

.nv-tb-price .nv-tb-price-ins strong {
    color: #FF0000;
    display: block;
    font-size: 30px;
    font-weight: 700;
}

.nv-tb-price .nv-tb-price-ins select {
    margin: 20px 0;
    border: 2px solid #2D3550;
    width: 100%;
    padding: 10px;
    border-radius: 15px;
    font-size: 15px;
    height: 45px;
}

.nv-tb-content p {
    font-size: 15px;
    margin-bottom: 5px;
}

.nv-tb-price:hover {
    background: #2A46CC;
    padding-bottom: 65px;
    border-color: #2A46CC;
}

.nv-tb-price:hover .nv-tb-price-ins strong, .nv-tb-price:hover .nv-tb-price-ins span {
    color: #fff;
}

.nv-tb-price:hover .nv-tb-content p {
    color: #fff;
}

.nv-tb-price:hover:hover select {
    background-color: #fff;
}

.nv-tb-price:hover .nv-tb-header p, .nv-tb-price:hover .nv-tb-header h3 {
    color: #fff;
}

.nv-tb-price .nv-tb-label {
    background: #FF0000;
    color: #fff;
    text-transform: uppercase;
    padding: 5px;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: 15px;
    
    font-weight: 700;
    right: -35px;
    transform: rotate(45deg);
    width: 130px;
}

/**abouts**/
.nv-about-content p i {
    color: #2A46CC;
}

.nv-about-content p {
    color: #333;
    font-size: 17px;
    margin-bottom: 10px;
    
    font-weight: 300;
}

.nv-about-content h3 {
    color: #2A46CC;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
    
    font-weight: 700;
}

/**table**/
table.table-ss {
    width: 100%;
}

table.table-ss i {
    color: #2A46CC;
}

table.table-ss thead th:not(:first-child) {
    background: #2A46CC;
    padding: 15px;
    color: #fff;
    font-size: 15px;
}

table.table-ss thead th:nth-child(2) {
    background: #FF4F56;;
    border-radius: 25px 0 0 0;
}

table.table-ss thead th:nth-child(5) {
    border-radius: 0 25px 0 0;
}

table.table-ss tbody tr td {
    border-right: 1px solid #f2f2f2;
    padding: 15px;
    font-size: 17px;
    
    color: #000;
    border-bottom: 1px solid #f2f2f2;
}

table.table-ss tbody tr td:nth-child(1) {
    border-left: 1px solid #f2f2f2;
    font-weight: 700;
}

table.table-ss tbody tr td h3 {
    color: #264EE4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
}

table.table-ss tbody tr:nth-child(1) td:nth-child(1) {
    border-top: 1px solid #f2f2f2;
    border-radius: 25px 0 0 0;
}

table.table-ss tbody tr:nth-child(1) {
    border-radius: 25px 0 0 0 !important;
    border-top: 1px solid #f2f2f2;
}

table.table-ss tbody tr td .price {
    color: #FF0000 !important;
    font-weight: 700;
    font-size: 18px;
}

table.table-ss tbody tr td {
    margin: 0px !important;
}

div#table-ss {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    
}

.table-btn {
    background: #2A46CC;
    border: 2px solid #2A46CC;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    padding: 8px 25px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transition: 0.3s ease-in-out;
    transform: translateX(-50%);
}

.table-btn a {
    color: #fff;
    font-size: 15px;
    
    font-weight: 700;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
}

.table-btn:hover {
    transition: 0.3s ease-in-out;
    background: #fff;
}

.table-btn:hover a {
    transition: 0.3s ease-in-out;
    color: #2A46CC;
}

.table-btn.minus {
    bottom: 0px;
}

.nv-accordion a i {
    color: #959595;
}

.nv-accordion a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.nv-accordion a {
    color: #264EE4;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
}

.nv-accordion .accordion-item {
    background: #F9F9F9;
    box-shadow: 0px 2px 16px rgb(0 0 0 / 10%);
    border-radius: 4px;
    width: 100%;
    margin-bottom: 25px !important;
    border: 0px !important;
    position: relative;
}

.nv-accordion a {
    height: 80px;
    display: flex;
    align-items: center;
    
    margin: 0px !important;
    padding: 15px;
    border: 0px !important;
}

.nv-accordion a:before {
    content: '';
    display: block;
    background: url("../images/question.png");
    width: 20px;
    height: 20px;
    background-repeat: no-repeat !important;
    margin-right: 10px;
    background-size: 100% !important;
}

.nv-accordion a.active {
    color: var(--primary-color)
}

.nv-accordion .nv-body {
    margin: 20px 0 0 0;
    color: #000;
    font-size: 14px;
}

.nv-accordion {
    margin-bottom: 25px;
}

.nv-accordion a button.toggle {
    position: absolute;
    right: 0px;
    left: unset;
    margin: 0px !important;
    top: 50%;
    transform: translateY(-50%);
}

.nv-accordion .accordion-inner {
    padding: 15px !important;
    
}

.nv-accordion a span {
    width: 90%;
    line-height: 22px;
}

.header-mobile div#bk-menu {
    display: none;
}

@media only screen and (max-width: 767px) {
    .nv-banner {
        margin: 0px !important;
    }

    .header-mobile {
        display: flex;
        align-items: center;
    }

    div#bk-menu {
        margin-right: 20px;
    }

    div#bk-menu a i {
        color: #fff;
        font-size: 25px;
    }

    .nv-tb-price {
        margin-bottom: 25px !important;
    }

    .nv-title h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .nv-about-img img {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-nv {
        margin-bottom: 30px;
    }

    div#bkMenu a {
        color: #fff;
        font-size: 25px;
    }

    .banner-link {
        display: none !important;
    }

    header#nv-header .nv-header-menu, header#nv-header .nv-header-button {
        display: none;
    }

    .nv-top-hotline {
        display: none;
    }

    #desktop {
        display: block;
    }

    .nv-accordion a span {
        width: 85%;
    }

    table.table-ss {
        width: 100%;
        overflow: scroll !important;
        overflow: auto;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* iPad landscape style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .header-mobile div#bk-menu {
        display: none;
    }

    header#nv-header .nv-header-menu ul li a {
        font-size: 14px;
    }

    header#nv-header .nv-header-button a {
        font-size: 14px;
    }
}

/* iPad portrait style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    header#nv-header .nv-header-button a {
        font-size: 14px;
    }

    .header-mobile div#bk-menu {
        display: none;
    }

    header#nv-header .nv-header-menu ul li a {
        font-size: 14px;
    }
}