body {
    background-color: #FFFFFF;
}

a:link {
    color: #0F4C5C;
}

a:visited {
    color: #0F4C5C;
}

a:hover {
    color: #5C9DD2;
}

a:active {
    color: #0F4C5C;
}

a.link-white {
    color: #FFFFFF;
}

.link-white:active {
    color: #FFFFFF;
}

.link-white:link {
    color: #FFFFFF;
}

.link-white:visited {
    color: #FFFFFF;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    color: #FFFFFF;
    z-index: 99;
}

/*** Heading ***/
h1, h2, .fw-bold {
    font-weight: 700 !important;
}

h3, h4, .fw-semi-bold {
    font-weight: 600 !important;
}

h5, h6, .fw-medium {
    font-weight: 500 !important;
}

/*** Button ***/
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary, .btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: left;
    margin-left: 25px;
    margin-right: 50px;
    padding: 15px 0;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    color: #0F4C5C !important;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0F4C5C !important;
}

.navbar-light .navbar-brand h1 {
    color: #0F4C5C;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/*** Media mx 991.98px ***/
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: #0F4C5C;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media only screen and (max-width: 767px) {
    .row .span9 {
        float: left;
        width: 68%;
    }

    .row .span3 {
        float: left;
        width: 28%;
    }
}

/*** Media min-width 992px ***/
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: #0F4C5C;
    }
}

/*** Header ***/
.hero-header {
    background-position: 0px 40%, right 0 top 0, left 50% top 0, left 50% top 50%, center bottom -1px;
    background-repeat: no-repeat;
    height: 1000px;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: #103783;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}

@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}

.footer p {
    font-size: 12px;
}

.footer {
    color: #FFFFFF;
    background-color: #103783;
    transition: .3s;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 12px;
    border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
    color: #FFFFFF;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    color: #FFFFFF;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: #103783;
    border: 0px;
}

.btn-empty {
    color: #103783;
    background-color: #FFFFFF;
    border: 1px solid #103783;
    border-color: #103783;
}

.btn-prim {
    color: #FFFFFF;
    background-color: #103783;
    border: 0px;
    font-size: 0.2em;
}

.dropdown-item:focus {
    background-color: #103783;
    color: #FFFFFF;
}

.tor-logo {
    height: 25px;
    bottom: 2px;
    position: relative;
}

.container-domain, .footer {
    background: hsla(192.5, 72%, 21%);
    background: linear-gradient(0deg, hsla(192.5, 72%, 21%) 0%, hsla(210, 66.3%, 61.6%) 100%);
    background: -moz-linear-gradient(0deg, hsla(192.5, 72%, 21%) 0%, hsla(210, 66.3%, 61.6%) 100%);
    background: -webkit-linear-gradient(0deg, hsla(192.5, 72%, 21%) 0%, hsla(210, 66.3%, 61.6%) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0F4C5C", endColorstr="#5C9DD2", GradientType=1);
    color: #FFFFFF;
}

.white {
    color: #FFFFFF;
}

.container50 {
    width: 900px;
    margin-top: 50px;
}

.btn-prim {
    background-color: #516fac;
    color: #FFFFFF;
    padding: 14px 28px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 10px;
}

.btn-prim:link {
    color: #FFFFFF;
}

input[type=text] {
    background-color: white;
    width: 70%;
    color: #000000;
    padding: 12px 20px;
    margin: 8px 10px;
    box-sizing: border-box;
    outline: none;
}

input[type=text]:focus {
    background-color: white;
    color: #000000;
}

.btn-submit {
    background-color: #F1F1F1;
    border: none;
    color: #000000;
    padding: 10px 27px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

a.btn-submit {
    background-color: #F1F1F1;
    border: none;
    color: #000000;
    padding: 10px 27px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.footer-link:active,
.footer-link:visited,
.footer-link:hover,
.footer:link,
.footer:active,
.footer:hover,
.footer-link:hover,
.footer-link:link {
    color: #FFFFFF;
}

.fw-bold {
    color: #FFFFFF;
}

.fw-bold-black {
    font-weight: 800;
    color: #000000;
}

.productbox-title {
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 800;
}

.productbox {
    border-radius: 10px;
    margin: 5px;
    text-align: left;
}

.productbox {
    background: hsla(192.5, 72%, 21%);
    background: linear-gradient(45deg, hsla(192.5, 72%, 21%) 40%, hsla(210, 66.3%, 61.6%) 100%);
    background: -moz-linear-gradient(45deg, hsla(192.5, 72%, 21%) 40%, hsla(210, 66.3%, 61.6%) 100%);
    background: -webkit-linear-gradient(45deg, hsla(192.5, 72%, 21%) 40%, hsla(210, 66.3%, 61.6%) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0F4C5C", endColorstr="#5C9DD2", GradientType=1);
    color: #FFFFFF;
}

.container-plans {
    display: flex;
    justify-content: space-between;
}

.spacer20 {
    margin-top: 50px;
}

.spacertop {
    margin-top: 3px;
}

.blue {
    color: #103783;
    font-size: 1.5em;
}

.spacer10 {
    margin-top: 25px;
}

.packagepricefont, .packageduration {
    font-size: 1.5em;
}

.productbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 15px;
}

.productbox {
    background: linear-gradient(45deg, hsla(192.5, 72%, 21%) 40%, hsla(210, 66.3%, 61.6%) 100%);
    color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%; /* mobile default */
    max-width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.productbox:hover {
    transform: scale(1.03);
}

.productbox h5 {
    margin-top: 10px;
    font-size: 1.1rem;
}

.productbox p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.productbox a {
    margin-top: 15px;
    display: inline-block;
}

@media (min-width: 900px) {
    .productbox {
        width: 380px;
    }
}

.nowrap {
    white-space: nowrap;
    text-align: left;
}

.sideheader {
    margin-top: 0px;
}

.vpsproviderimg {
    height: 125px;
    width: 200px;
}

pre {
    line-break: auto; /* Allows for wrapping while preserving whitespace */
}

