:root {
    --bgColor: rgb(255, 255, 255);
    --MentionText: #246ad3;
    --TextColor: rgb(0, 0, 0);
    --Secndoray-title-clr: #3e86d8;
    --borderPlans: 1px rgba(0, 0, 0, 0.151) solid;
    --box-shdaow: 0 15px 30px -3px rgba(0, 0, 0, 0.096);
    --arrowDown: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

:root.dark {
    --bgColor: rgb(0, 0, 0);
    --MentionText: #246ad3;
    --TextColor: #ffff;
    --borderPlans: 1px rgb(255 255 255 / 42%) solid;
    --box-shdaow: 0 15px 50px -3px rgb(255 255 255 / 7%);
    --arrowDown: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bgColor) !important;
    height: 100%;
    font-family: 'Heebo', sans-serif !important;
    transition: ease 0.35s;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


/*local stlye*/

#arrow-up-right-side {
    right: 0;
    bottom: 0;
    margin: 16px;
    margin-right: 7.5rem;
    cursor: pointer;
    z-index: 99999;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    #arrow-up-right-side {
        right: 0;
        bottom: 0;
        margin: 25px;
        margin-right: 40px;
        cursor: pointer;
        z-index: 99999;
    }
}

.arrow-box i {
    font-size: 20px;
}

.arrow-box {
    border-radius: 6px;
    background-color: #303030;
    color: #ffffff;
    width: 40px;
    height: 38px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
}

#mention-text {
    color: var(--MentionText);
}

.btn {
    border-radius: 12px !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/*nav style*/

.navbar {
    transition: top 0.3s;
}

.language img {
    margin-right: 10px;
}

#lanNavSel {
    margin-left: 8px;
    margin-right: 8px;
}

#imgNavSel {
    margin-top: -1px;
}

#languages {
    padding: 5px;
}

#languages:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.language-picker {
    display: inline-block;
    position: relative
}

.js .language-picker__form {
    display: none
}

.language-picker__button .icon {
    height: 16px;
    width: 16px;
    margin-left: 5px !important;
    filter: invert(1);
    margin-left: var(--space-xxxs)
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    .language-picker__list {
        display: flex;
        flex-direction: row;
        list-style-type: none;
    }
}

.language-picker__dropdown {
    position: absolute;
    left: -50%;
    top: 75%;
    z-index: 99999 !important;
    width: 200px;
    background-color: rgb(238, 238, 238);
    background-color: var(--color-bg);
    box-shadow: 0 1px 1px rgb(0 0 0 / 20%), 0 1px 8px rgb(0 0 0 / 10%);
    box-shadow: var(--shadow-sm);
    padding: 0.375rem 0;
    padding: var(--space-xxs) 0;
    border-radius: 0.25em;
    z-index: 4;
    z-index: var(--zindex-popover);
    --space-unit: 1rem;
    --space-xxxxs: 0.125rem;
    --space-xxxs: 0.25rem;
    --space-xxs: 0.375rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3.25rem;
    --space-xxl: 5.25rem;
    --space-xxxl: 8.5rem;
    --space-xxxxl: 13.75rem;
    --component-padding: 1.25rem;
    --component-padding: var(--space-md);
    font-size: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
    transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out;
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
    transition: opacity .2s, -webkit-transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out;
    transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item {
    text-decoration: none;
    padding: .5em 2em .5em 1.25em;
    padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
    color: #313135;
    color: var(--color-contrast-high)
}

.language-picker__item span {
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
    color: black;
    text-overflow: ellipsis
}

.language-picker__item:hover {
    background-color: #f2f2f2;
    background-color: var(--color-contrast-lower)
}

.language-picker__item[aria-selected=true] {
    position: relative;
    background-color: #2a6df4;
    background-color: var(--color-primary);
    color: rgb(0, 0, 0) !important;
    font-weight: bold;
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.language-picker__item[aria-selected=true]::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    right: .75rem;
    right: var(--space-sm);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBvbHlsaW5lIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlPScjZmZmZmZmJyBmaWxsPSdub25lJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHBvaW50cz0nMSw5IDUsMTMgMTUsMyAnLz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.language-picker__flag[data-before="anything"]::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwMjc4MScgZD0nTTQ2LDZIMkMwLjg5Niw2LDAsNi44OTYsMCw4djMyYzAsMS4xMDQsMC44OTYsMiwyLDJoNDRjMS4xMDQsMCwyLTAuODk2LDItMlY4QzQ4LDYuODk2LDQ3LjEwNCw2LDQ2LDZ6Jy8+PHBhdGggZmlsbD0nI0U2RTZFNicgZD0nTTQ4LDhjMC0xLjEwNC0wLjg5Ni0yLTItMmgtNS4xNjFMMjgsMTUuODc2VjZoLTh2OS44NzZMNy4xNjEsNkgyQzAuODk2LDYsMCw2Ljg5NiwwLDh2Mi41ODZMMTIuMjM5LDIwSDB2OCBoMTIuMjM5TDAsMzcuNDE1VjQwYzAsMS4xMDQsMC44OTYsMiwyLDJoNS4xNjFMMjAsMzIuMTI0VjQyaDh2LTkuODc2TDQwLjgzOSw0Mkg0NmMxLjEwNCwwLDItMC44OTYsMi0ydi0yLjU4NUwzNS43NjEsMjhINDh2LTggSDM1Ljc2MUw0OCwxMC41ODZWOHonLz48cG9seWdvbiBmaWxsPScjRDEwRDI0JyBwb2ludHM9JzQ4LDIyIDI2LDIyIDI2LDYgMjIsNiAyMiwyMiAwLDIyIDAsMjYgMjIsMjYgMjIsNDIgMjYsNDIgMjYsMjYgNDgsMjYgJy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTQ3LjAwMSw2LjMwN0wyOS4yLDIwaDMuMjhMNDgsOC4wNjJWOEM0OCw3LjI2OCw0Ny41ODcsNi42NTYsNDcuMDAxLDYuMzA3eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00zMi40OCwyOEgyOS4ybDE3LjgwMSwxMy42OTNDNDcuNTg3LDQxLjM0NCw0OCw0MC43MzIsNDgsNDB2LTAuMDYyTDMyLjQ4LDI4eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00xNS41MiwyOEwwLDM5LjkzOFY0MGMwLDAuNzMyLDAuNDEzLDEuMzQ0LDAuOTk5LDEuNjkzTDE4LjgsMjhIMTUuNTJ6Jy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTE1LjUyLDIwaDMuMjhMMC45OTksNi4zMDdDMC40MTMsNi42NTYsMCw3LjI2OCwwLDh2MC4wNjJMMTUuNTIsMjB6Jy8+PC9zdmc+)
}

.language-picker__flag {
    display: block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    color: white;
    align-items: center
}

.language-picker__flag em {
    color: white;
    font-family: Arial, Helvetica, sans-serif !important;
}

.language-picker__flag::before {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    content: '';
    height: 16px;
    width: 16px;
    margin-right: 7px !important;
    margin-right: var(--space-xxs);
    color: white !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("https://freesvg.org/img/israel.png")
}

.language-picker__dropdown .language-picker__flag::before {
    margin-right: .5rem;
    margin-right: var(--space-xs)
}

.language-picker__flag--english::before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwMjc4MScgZD0nTTQ2LDZIMkMwLjg5Niw2LDAsNi44OTYsMCw4djMyYzAsMS4xMDQsMC44OTYsMiwyLDJoNDRjMS4xMDQsMCwyLTAuODk2LDItMlY4QzQ4LDYuODk2LDQ3LjEwNCw2LDQ2LDZ6Jy8+PHBhdGggZmlsbD0nI0U2RTZFNicgZD0nTTQ4LDhjMC0xLjEwNC0wLjg5Ni0yLTItMmgtNS4xNjFMMjgsMTUuODc2VjZoLTh2OS44NzZMNy4xNjEsNkgyQzAuODk2LDYsMCw2Ljg5NiwwLDh2Mi41ODZMMTIuMjM5LDIwSDB2OCBoMTIuMjM5TDAsMzcuNDE1VjQwYzAsMS4xMDQsMC44OTYsMiwyLDJoNS4xNjFMMjAsMzIuMTI0VjQyaDh2LTkuODc2TDQwLjgzOSw0Mkg0NmMxLjEwNCwwLDItMC44OTYsMi0ydi0yLjU4NUwzNS43NjEsMjhINDh2LTggSDM1Ljc2MUw0OCwxMC41ODZWOHonLz48cG9seWdvbiBmaWxsPScjRDEwRDI0JyBwb2ludHM9JzQ4LDIyIDI2LDIyIDI2LDYgMjIsNiAyMiwyMiAwLDIyIDAsMjYgMjIsMjYgMjIsNDIgMjYsNDIgMjYsMjYgNDgsMjYgJy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTQ3LjAwMSw2LjMwN0wyOS4yLDIwaDMuMjhMNDgsOC4wNjJWOEM0OCw3LjI2OCw0Ny41ODcsNi42NTYsNDcuMDAxLDYuMzA3eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00zMi40OCwyOEgyOS4ybDE3LjgwMSwxMy42OTNDNDcuNTg3LDQxLjM0NCw0OCw0MC43MzIsNDgsNDB2LTAuMDYyTDMyLjQ4LDI4eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00xNS41MiwyOEwwLDM5LjkzOFY0MGMwLDAuNzMyLDAuNDEzLDEuMzQ0LDAuOTk5LDEuNjkzTDE4LjgsMjhIMTUuNTJ6Jy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTE1LjUyLDIwaDMuMjhMMC45OTksNi4zMDdDMC40MTMsNi42NTYsMCw3LjI2OCwwLDh2MC4wNjJMMTUuNTIsMjB6Jy8+PC9zdmc+)
}

option::before {
    background-image: url("https://freesvg.org/img/israel.png") !important
}

.language-picker--hide-label .language-picker__button .icon {
    margin-left: 0
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
    margin-right: .25rem;
    margin-right: var(--space-xxxs)
}

#language {
    background-color: transparent;
    border: 0;
    padding: 20px !important;
    padding-left: 0 !important;
    color: white;
    outline: none !important;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' stroke='0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

#language option {
    color: black;
}

#nav-logo {
    height: 100%;
    object-fit: cover;
    width: 80px;
}

.navbar {
    padding: 0 !important;
}

.navbar-light .navbar-nav .nav-link {
    margin: 0 !important;
}

header nav.navbar {
    box-shadow: 0 .5rem 0.2rem rgba(0, 0, 0, 0.082) !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end !important;
    }
}

.buy-btn button {
    color: white;
    background-color: var(--MentionColor);
    border-radius: 30px;
    width: 18rem;
    height: 3rem;
}

.navbar-collapse {
    flex-grow: 0;
}

a {
    font-weight: bold;
    font-size: 22px;
    color: var(--TextColor);
    text-decoration: none;
}

.nav-item .nav-link,
.dropdown .nav-link {
    color: #6B7280 !important;
    text-decoration: none;
    font-size: 17px;
    display: block;
    font-weight: 600 !important;
    padding: 20px 20px !important;
}

.navbar-expand-lg .navbar-collapse {
    margin-left: auto;
}

.nav-item a.active {
    color: var(--MentionColor) !important;
    border-radius: 25px;
    padding: 5px;
    font-size: 19px;
}

.nav-item a:hover {
    transition: ease 0.3s;
    color: #545b68 !important;
    cursor: pointer;
}

.top-nav {
    background-color: #465be1;
    width: 100%;
    color: var(--MentionText) !important;
    padding-left: 10px !important;
    padding: 7px;
    /* padding-inline: 10rem; */
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: center;
}

.top-nav a {
    color: white;
    font-size: 16px;
    font-weight: normal;
}

.top-nav a:hover {
    cursor: pointer;
    color: rgb(206, 206, 206);
    transition: ease 0.3s;
}

#list-nav-bar {
    margin-right: 10px !important;
}

.left-side-nav-bar-top #list-container-nav {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none outside;
}

.left-side-nav-bar-top ul li {
    color: rgb(236 236 236 / 88%);
}

.left-side-nav-bar-top ul li:hover {
    color: rgb(224, 224, 224);
    transition: ease 0.4s;
    cursor: pointer;
}

nav.navbar {
    box-shadow: 0 .5rem 0.2rem rgba(0, 0, 0, 0.082) !important;
}


/*drop down nvabar stlye*/

.dropdown .nav-link {
    margin: 0;
    padding: 0;
    color: var(--TextColor);
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 13px 26px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: rgb(255 255 255);
    background-clip: padding-box;
    border-radius: 20px;
    border: none;
    box-sizing: 0px 20px 20px red;
    box-shadow: 10px 6px #f9f9f9;
}

.dropdown-item {
    padding: 15px 10px 0px 20px;
}

.dropdown-item p {
    font-size: 15px;
    color: #323232;
}

#bot-img {
    background-color: #f2fdfa;
    border-radius: 8px;
    padding: 4px;
}

#game-img {
    background-color: #fff9f3;
    padding: 10px;
    border-radius: 8px;
}

#server-img {
    background: #f3f8fc;
    border-radius: 8px;
    padding: 10px;
}

#server-card:hover {
    border-radius: 8px;
    background: #f3f8fc;
}

#game-card:hover {
    border-radius: 8px;
    background: #fff9f3;
}

#bot-card:hover {
    border-radius: 8px;
    background: #f2fdfa !important;
}

.dropdown-item img {
    font-size: 22px;
    color: var(--MentionText);
    margin-left: 20px;
}

.dropdown-menu[data-bs-popper] {
    top: 150%;
    left: -14rem;
    margin-top: 0.125rem;
}


/*main content stlye*/


/*plans style*/

#main-content {
    margin-bottom: 10rem;
    margin-top: 11em;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    #main-content {
        margin-bottom: 10rem;
        padding-inline: 5rem;
        margin-top: 11em;
    }
}

#main-content div.title {
    text-align: center;
}

#main-content div.title ul {
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0;
    margin-top: 10px !important;
    list-style: none;
}

#main-content div.title ul li:hover {
    cursor: pointer;
}

#main-content div.title span {
    color: black;
    font-weight: bold;
    font-size: 3.1rem;
}

#main-content div.title p {
    color: #6B7280;
    font-weight: normal;
    font-size: 19px;
}

.plan-card {
    padding: 25px 18px 23px 18px;
    border-radius: 10px;
    text-align: right;
    position: relative;
    box-shadow: 0 .125rem 1.25rem rgba(0, 0, 0, .075)!important;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    .plan-card {
        padding: 25px 18px 23px 18px;
        border-radius: 10px;
        text-align: right;
        width: 20rem;
        position: relative;
        box-shadow: 0 .125rem 1.25rem rgba(0, 0, 0, .075)!important;
    }
}

.plan-card:hover {
    transform: translateY(-10px);
    scale: 1.02;
    cursor: pointer;
    box-shadow: 0 .125rem 1.25rem rgba(0, 0, 0, 0.212)!important;
    transition: ease-in 2s;
}

.title-plans span {
    font-weight: bold;
    color: var(--MentionText);
    font-size: 20px;
}

#price-text {
    color: #0e0e0e;
    display: flex;
    font-weight: bold;
    font-size: 2.89rem;
}

.list-group-item div span {
    padding: 0 !important;
    padding-bottom: 10px;
    color: #363636;
    font-weight: normal;
    font-size: 18px;
}

.plan-number {
    color: var(--MentionText);
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}

#month-text {
    color: #b3b3b3;
    font-weight: bold;
    font-size: 20px;
}

.price {
    display: flex;
    align-items: center;
    position: relative;
    top: -8px;
    justify-content: center;
}

#text-left {
    margin-right: auto;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: var(--TextColor);
    text-decoration: none;
    background-color: var(--bgColor);
    border: none;
}

#buy-btn {
    font-weight: bold;
    border-radius: 30px !important;
    padding: 6px 27px;
    margin-top: 9px;
    border: 1px #1459c1 solid;
    color: #1459c1;
    box-shadow: inset 0 0 0 0 rgba(250, 250, 250, 0.089)
}

#buy-btn:hover {
    color: white;
    transition: ease 0.5s;
    box-shadow: inset 300px 0 0 0 #1459c1;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    #join-btn {
        font-weight: bold;
        border-radius: 7px !important;
        font-size: 18px;
        /* padding: 7px 30px; */
        margin-top: 9px;
        border: 1px #1459c1 solid;
        color: #1459c1;
        box-shadow: inset 0 0 0 0 rgb(250 250 250 / 9%)
    }
}

#join-btn {
    font-weight: bold;
    width: 100%;
    border-radius: 7px !important;
    font-size: 18px;
    /* padding: 7px 30px; */
    margin-top: 9px;
    border: 1px #1459c1 solid;
    color: #1459c1;
    box-shadow: inset 0 0 0 0 rgb(250 250 250 / 9%)
}

#join-btn:hover {
    color: white;
    transition: ease 0.5s;
    box-shadow: inset 300px 0 0 0 #1459c1;
}


/*vps style custom*/

.plan-number-vps {
    color: var(--MentionText);
    font-weight: bold;
    text-align: center;
    font-size: 1.4rem;
    text-align: right !important;
}

#list-gropu-itme-vps {
    padding: 8px 8px 8px 8px !important;
}

.plan-card-vps:hover {
    box-shadow: var(--box-shdaow);
    transition: ease 0.4s;
    border: 1px rgba(0, 0, 0, 0.336) solid !important;
}

.plan-card-vps {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: right;
    border: 1px rgba(0, 0, 0, 0.151) solid !important;
    border-radius: 7px;
    padding: 22px 12px 18px 9px;
    align-items: flex-end;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    .plan-card-vps {
        display: flex;
        flex-direction: column;
        justify-content: start;
        text-align: right;
        border: 1px rgba(0, 0, 0, 0.151) solid !important;
        border-radius: 7px;
        padding: 22px 12px 18px 9px;
        align-items: flex-end;
        width: 28%;
    }
    #join-btn {
        font-weight: bold;
        border-radius: 7px !important;
        width: 32%;
        font-size: 18px;
        /* padding: 7px 30px; */
        margin-top: 9px;
        border: 1px #1459c1 solid;
        color: #1459c1;
        box-shadow: inset 0 0 0 0 rgb(250 250 250 / 9%)
    }
}

.price-vps {
    display: flex;
    align-items: center;
    position: relative;
    top: -8px;
    justify-content: flex-end;
}

.check-icon {
    margin-right: auto;
}

#buy-btn-vps {
    font-weight: bold;
    border-radius: 5px !important;
    margin-top: 9px;
    border: 1px #1459c1 solid;
    color: #1459c1;
    box-shadow: inset 0 0 0 0 rgba(250, 250, 250, 0.089)
}

#buy-btn-vps:hover {
    color: white;
    transition: ease 0.5s;
    box-shadow: inset 300px 0 0 0 #1459c1;
}


/*footer stlye*/

footer {
    background-color: #13171A;
}

footer .container {
    padding: 32px;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    .list-container {
        flex-direction: row-reverse;
        justify-content: flex-start;
        gap: 20px;
        text-align: right;
    }
}

.content-us-list li a i {
    color: white;
}

#right-side-footer-map ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
    color: whitesmoke;
    flex-direction: column;
    justify-content: center;
}

.list-container ul li a {
    color: white;
    font-size: 20px;
}

.list-container ul li a:hover,
.list-container ul li a:hover i {
    color: var(--Secndoray-title-clr);
    transition: ease-in 0.3s;
}

.title-list span {
    border-bottom: 3px #1459c1 solid;
    font-weight: bold;
    font-size: 2rem;
}

.footer-copyright {
    background-color: #13171A;
    color: white;
    padding: 12px;
    font-size: 17px;
}

.footer-copyright:hover {
    cursor: pointer;
}

#left-side-footer div ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

#left-side-social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#left-side-social li:hover i {
    transition: ease-in-out 0.34s;
    color: var(--Secndoray-title-clr);
}

.made-by-list a:hover {
    color: var(--Secndoray-title-clr);
    transition: ease 0.3s;
}

.made-by-list a {
    color: #ffffffc2;
    font-size: 18px;
}

#left-side-social li a {
    border-radius: 50%;
    font-size: 18px;
    padding: 7px;
    width: 38px;
    height: 38px;
    color: white;
    background: #ffffff10;
}

@media only screen and (max-width: 767px) {
    /* Mobile phones */
    #main-content .row {
        text-align: right;
        gap: 4rem;
    }
    #left-side-bg i {
        color: #3696EC;
        font-size: 16rem;
        z-index: 1;
        position: absolute;
        opacity: 0.9;
        top: 14px;
        bottom: 0;
        left: 20%;
        z-index: -1;
    }
    .why-us-title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
    }
    .Illustrations img {
        width: 24rem;
    }
    #text-main-content h1 {
        text-align: center;
        font-weight: bold;
        font-size: 55px;
        width: fit-content;
    }
    .buttons {
        display: none;
    }
}


/*services main content landing page style*/

.landing-page {
    margin-bottom: 5rem !important;
    margin-top: 5rem;
}

.landing-page .row .col-lg-5 {
    margin-right: auto;
}

.services-title {
    text-align: center;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    .services-title span {
        font-size: 3.8rem;
    }
    .services-title {
        text-align: right;
    }
}

.services-title span {
    font-size: 3.8rem;
    text-align: center;
}

.services-title #mention-text {
    color: #1459c1;
}

.services-title p {
    font-size: 20px;
    color: #6B7280;
}

.title ul li.vps a {
    border: #1459c1 2px solid;
    padding: 5px 15px;
    font-size: 18px;
    border-radius: 10px;
    pointer-events: none;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(250, 250, 250, 0.089)
}


/*nvme selector style*/

@media only screen and (min-width: 992px) {
    /* Desktops */
    .disk-select {
        width: 36.666667% !important;
    }
}

.disk-select ul {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5rem;
    background-color: var(--MentionText);
    border-radius: 50px;
}

.disk-select ul li {
    padding: 25px 0px;
    font-weight: bold;
    font-size: 18px;
    color: rgb(255 255 255 / 65%);
}

.disk-select ul li.select-active {
    border-radius: 37px;
    padding: 17px 32px;
    color: black;
    cursor: pointer;
    background: linear-gradient(to right, rgb(255, 255, 255) 50%, white 50%);
}

#price-text::before {
    content: "₪";
}