: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 50px -3px rgba(0, 0, 0, 0.205);
    --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: 'Montserrat', 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 rgba(0, 0, 0, .2), 0 1px 8px rgba(0, 0, 0, .1);
    box-shadow: var(--shadow-sm);
    padding: .375rem 0;
    padding: var(--space-xxs) 0;
    border-radius: .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;
}

.navbar-brand {
    padding: 0 !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 (form)*/

.language-picker__button {
    padding: 0 !important;
}

.container #row-container {
    gap: 10rem;
    margin-top: 7rem;
    text-align: right !important;
}

.title-form span {
    font-size: 3.5rem;
    color: var(--TextColor);
}

label {
    color: var(--TextColor);
}

.title-form p {
    color: rgb(71, 71, 71);
    font-size: 19px;
}

textarea {
    width: 100%;
    border: 1px #00000036 solid;
    border-radius: 5px;
}

textarea:focus {
    outline: none;
    text-align: right;
    padding: 10px;
}

span p {
    color: var(--MentionText) !important;
    font-weight: bold;
}

select {
    text-align: right;
}

input::placeholder {
    text-align: right;
    color: var(--TextColor);
}

input,
template {
    text-align: right;
    background-color: transparent !important;
    border: 2px var(--TextColor) solid;
}

.form-select {
    background-color: rgba(255, 255, 255, 0) !important;
    color: var(--TextColor);
}

option {
    background-color: var(--bgColor) !important;
}

.btn {
    border-radius: 5px!important;
    padding: 6px 29px;
    font-size: 17px;
}


/*form message status style*/

.toast {
    position: fixed;
    bottom: 1rem;
    right: 28.5rem;
    height: 5rem;
    border-radius: 12px;
    background: #fff;
    padding: 21px 22px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(500% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast.show {
    animation: show 5s linear forwards;
}

@keyframes show {
    10% {
        transform: translateX(110%);
    }
    30% {
        transform: translateX(110%);
    }
    50% {
        transform: translateX(110%);
    }
    80% {
        transform: translateX(110%);
    }
    100% {
        transform: translateX(110%);
    }
}

.toast .toast-content {
    display: flex;
    align-items: center;
    height: 2rem;
}

.toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #27ff4b;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.message .text.text-1 {
    font-weight: 600;
    color: #333;
}

.toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.toast .close:hover {
    opacity: 1;
}

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

.toast .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #27ff4b;
}

.progress.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

button {
    padding: 12px 20px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #27ff4b;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.toast.show~button {
    pointer-events: none;
}


/*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;
}