: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*/

#text-main-content {
    font-family: 'Heebo', sans-serif !important;
}

#text-main-content h1 {
    font-size: 4rem !important;
    color: var(--TextColor);
    letter-spacing: normal !important;
    font-family: 'Heebo', sans-serif !important;
}

#text-main-content p#description {
    color: #6B7280;
    font-size: 20px;
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

.floating-anim {
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

#main-content {
    margin-top: 3rem;
}

#main-content-description {
    color: rgb(110 110 110);
    font-size: 20px;
    font-weight: normal;
}

#text-content-btn {
    font-weight: bold;
    font-size: 18px;
    border-radius: 24px;
    background-color: transparent !important;
    color: var(--Secndoray-title-clr);
    box-shadow: inset 0 0 0 0 rgba(250, 250, 250, 0.089) !important;
}

#text-content-btn:hover {
    font-weight: bold;
    font-size: 18px;
    border-radius: 24px;
    background-color: #1459c1 !important;
    color: white;
    transition: ease 0.6s;
    box-shadow: inset 400px 0 0 0 rgba(133, 133, 133, 0.192) !important;
}

.down-anim {
    animation: downArrow 2s infinite;
}

.arrow-down-element i {
    color: #2b75b7;
}

.arrow-down-element {
    margin-top: 7rem;
}

@keyframes downArrow {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}


/*middle content bg style*/

#middle-content-bg {
    text-align: right;
    margin-top: 13rem;
    background-color: #246ad3;
    color: white;
}

#form-container {
    text-align: right !important;
}

#form-container div label {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 3px;
}

#form-container div .form-control {
    border-radius: 8px;
    outline: none !important;
    background-color: #ffffff1f;
    border: none;
    padding: 10px;
    color: rgb(255, 255, 255);
    text-align: right;
}

#submit-btn {
    padding: 9px 14px;
    font-size: 17px;
    margin-top: 2.2rem;
    background-color: transparent;
    color: white;
    border: rgba(255, 255, 255, 0.699) 1px solid;
    box-shadow: inset 0 0 0 0 rgba(250, 250, 250, 0.226);
}

#submit-btn:hover {
    transition: ease 0.7s;
    box-shadow: inset 400px 0 0 0 rgba(250, 250, 250, 0.089)
}

#form-container div .form-control::placeholder {
    color: rgb(255, 255, 255);
    font-size: 17px;
    text-align: right;
}

.title-left-side span,
.title-right-side span {
    font-size: 32px;
}

.title-left-side {
    text-align: right;
    margin-right: auto;
    width: max-content;
}

.input-search button {
    height: 3rem;
    width: 10rem;
    font-size: 19px;
    font-weight: bold;
    margin-left: 10px;
}

.input-search input {
    width: 20rem;
    height: 3rem;
    border-radius: 5px;
    text-align: right;
    color: #9AAFC2;
    border: 2px white solid;
    border-radius: 19px;
    background-color: transparent;
}

.input-search input:focus {
    outline: none;
}

.input-search input::placeholder {
    text-align: right;
    color: #9AAFC2;
}

#right-side-bg i {
    color: #2A3747;
    font-size: 17rem;
    z-index: 1;
    position: absolute;
    opacity: 0.9;
    top: 50px;
    transform: rotate(100deg);
    bottom: 0;
    left: -13px;
    z-index: -1;
}

#left-side-bg {
    background-color: #2064a1;
    position: relative;
    height: 21rem;
    padding-top: 4rem;
    text-align: left;
    padding-right: 2rem;
    z-index: 1;
}

#right-side-bg {
    position: relative;
    height: 21rem;
    padding-top: 4rem;
    padding-right: 2rem;
    background-color: #232F3E;
    z-index: 1;
}

#price-text-left-side {
    text-align: right !important;
}

.get-started-left-side {
    font-weight: bold;
    font-size: 19px;
    background-color: #243141;
    color: white;
    margin-left: 13.5rem;
    height: 3rem;
    width: 10rem;
}

.get-started-left-side:hover {
    background-color: #1f2936;
    color: WHITE;
    transition: ease 0.2s;
}

.text-left-side p {
    text-align: right;
    margin-right: auto;
    width: fit-content;
    font-size: 18px;
}


/*why us style*/

.why-us-title,
#why-us-card {
    color: var(--TextColor);
}

#why-us-section {
    margin-top: 6rem;
    height: 50vh;
}

.bottom-content {
    font-size: 17px;
    text-align: center;
    color: #747C84;
}

#why-us-card {
    border-radius: 12px;
    background-color: #f7f7f7;
    padding: 0px 5px 0px 5px;
}

#why-us-card:hover {
    cursor: pointer;
    transform: scale(1.12);
    transition: ease 0.6s;
}


/*benefit section style*/

.title-text-side {
    color: var(--TextColor);
}

.text-side-benefit-card {
    text-align: right;
}

#secendory-text-card {
    color: #606060;
    margin: 0;
    font-size: 18px;
}

#get-started-btn-card {
    border-radius: 3.5px !important;
    padding: 11px 2px;
    width: 10rem;
}

#get-started-btn-card i {
    margin-right: 10px;
}

#get-started-btn-card {
    font-weight: bold !important;
    border-radius: 30px !important;
    border: 1px #1459c1 solid !important;
    color: #1459c1 !important;
}

#get-started-btn-card:hover {
    color: white !important;
    transition: ease 0.3s;
    background-color: #1459c1;
}


/* cell number */

.customer-name h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 29px;
    line-height: 31px;
    text-align: right;
    color: #FFFFFF;
}

.customer-opinion p {
    font-size: 21px;
    text-align: center;
}

.card-customer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: all .25s ease;
    z-index: -1;
}

.carousel-inner {
    position: initial !important;
}

.carousel-item {
    position: initial !important;
}

.card-customer {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 17rem;
    border-radius: 16px;
    margin-right: 10px;
    background: #6079f7 !important;
    padding: 20px 24px 30px 24px;
    justify-content: space-around;
}

.stars-list {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
    justify-content: center;
    align-items: center;
    list-style: none outside;
}

.stars-list li {
    color: yellow;
}

.title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .card-customer {
        margin: 2rem 0;
        width: 100%;
    }
    .card-customer::before {
        background-position: center;
    }
}

.title-reviews {
    color: var(--TextColor);
}

.testimonial-view {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-view .owl-item.active.center .testimonial-box {
    transform: scale(1.15);
    opacity: 1;
}

.testimonial-box {
    padding: 20px 20px 40px 20px;
    margin: 50px 15px 90px 15px;
    border-radius: 5px;
    box-shadow: var(--box-shdaow);
    transform: scale(0.9);
    opacity: 0.5;
    transition: all 0.3s;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    margin-right: 10px;
    color: var(--MentionText);
    border-bottom: 2px #1459c1 solid;
    background: var(--bgColor) !important;
}

#p-card-c {
    color: var(--TextColor);
}

.testimonial-box h5 {
    font-weight: bold;
}

.testimonial-box .quote-icon {
    font-size: 50px;
    color: #3a3a3a;
    margin-top: 20px;
    margin-bottom: 20px;
}

.testimonial-box img.user-img {
    height: 60px;
    width: 60px;
    border: 3px solid #eee;
    border-radius: 60px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.owl-nav .owl-prev {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    opacity: 0.7;
    font-size: 30px !important;
    z-index: 1;
}

.owl-nav .owl-next {
    position: absolute;
    top: calc(50% - 25px);
    right: 0;
    opacity: 0.7;
    font-size: 30px !important;
    z-index: 1;
}

.owl-dots {
    text-align: center;
}

.owl-dots .owl-dot {
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background: #ccc !important;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
}

.owl-dots .owl-dot.active {
    background: #999 !important;
}


/*plans style*/

#build-plan {
    border: #1c65d3 2px solid;
    border-radius: 6px;
    padding: 16px;
    text-align: right;
    font-size: 2.5rem;
}

.link-buld-plan {
    font-size: 2.5rem;
}

#our-plans {
    margin-bottom: 15rem;
    margin-top: 7rem;
}

#buy-btn {
    margin-top: auto !important;
}

@media only screen and (min-width: 1567px) {
    /* Desktops */
    #plans-container {
        padding-inline: 15rem;
    }
    #selector-plans {
        margin-inline: 24rem;
    }
}

.plan-card {
    padding: 25px 18px 63px 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;
}

.badge {
    color: white;
    background-color: var(--MentionText) !important;
    height: 30px;
    width: 76px;
    font-size: 16px;
    left: 20px;
    padding: 7px 0px;
}

.translate-middle {
    transform: translate(-60%, -50%)!important;
}

.title-plans span {
    font-weight: bold;
    color: var(--MentionText);
    font-size: 20px;
}

#main-title {
    margin: 0;
    padding-inline: 5px;
    font-size: 20px;
    font-weight: bold;
    color: var(--Secndoray-title-clr);
}

.secondary-title {
    font-weight: bold;
    font-size: 2.8rem;
}

#price-text {
    color: #0e0e0e;
    font-weight: bold;
    font-size: 2.6rem;
}

.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;
}

#img-plan {
    border-radius: 50%;
    width: 30px;
    object-fit: cover;
    height: 30px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: var(--TextColor);
    text-decoration: none;
    background-color: var(--bgColor);
    border: none;
}

#selector-plans ul {
    display: flex;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    align-items: center;
    gap: 20px;
    list-style: none;
}

#selector-plans ul li {
    font-weight: bold;
}

#selector-plans ul li:hover {
    cursor: pointer;
}

#selector-plans ul li span.active {
    font-weight: bold;
    color: #070707;
    border: 1px #1459c1 solid;
    padding: 8px;
    padding-inline: 21px;
    border-radius: 45px;
}

#buy-btn {
    font-weight: bold;
    border-radius: 30px !important;
    padding: 6px 27px;
    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.4s;
    box-shadow: inset 230px 0 0 0 #1459c1;
}

#rust-btn img {
    width: 55px;
}

#minecraft-btn img {
    width: 55px;
}

.active-plans {
    border: 3px rgba(6, 136, 136, 0.589) solid !important;
    transform: scale(1.2);
}

#csgo-btn img {
    width: 90px;
}

#navbar-game-title {
    font-size: 1.7rem;
    font-weight: 500;
}

#navbar-game-title span {
    color: #586fc5;
}

#img-list-game {
    list-style-type: none;
}


/*faq style*/

#faq {
    margin-bottom: 4rem;
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    #faq .row {
        gap: 12rem;
    }
    #faq {
        margin-top: 15rem !important;
        margin-bottom: 4rem;
    }
}

#faq .col-lg-7 {
    margin-left: auto;
}

.faq-title span {
    font-size: 1rem;
    font-weight: bold;
    color: var(--Secndoray-title-clr);
}

.faq-title p {
    color: rgb(0, 0, 0);
    font-size: 2.8rem;
    letter-spacing: -1px;
    font-weight: bold;
}

.accordion {
    text-align: right !important;
}

.accordion-header button {
    font-weight: bold;
    font-size: 19px;
    flex-direction: row-reverse
}

.accordion-button::after {
    margin-right: 10px;
    margin-left: 0 !important;
}

.accordion-body strong ul {
    padding: 0;
    margin: 0;
    list-style: none outside;
}

.accordion-body strong ul li {
    font-size: 18px;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(255, 255, 255);
    color: black;
}

.accordion-item {
    border: none;
    background-color: var(--bgColor);
    color: #000000;
}

.accordion-button {
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
    background-color: var(--bgColor);
    color: rgb(0, 0, 0);
    box-shadow: var(--faqBorder);
    outline: none;
}

.accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:after {
    background-image: var(--arrowDown);
}

.accordion-item:hover>.accordion-header {
    transform: translateX(-13px);
    transition: ease 0.3s;
}


/*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: 100%;
    }
    #text-main-content h1 {
        text-align: center;
        font-weight: bold;
        font-size: 55px;
        width: fit-content;
    }
    .buttons {
        display: none;
    }
    #benefit-section {
        margin-top: 38rem;
    }
    .carousel {
        width: 100%;
    }
    .img-side-about-us img {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Tablets */
}

@media only screen and (min-width: 992px) {
    /* Desktops */
    #main-content .row {
        text-align: right;
    }
    #left-side-bg i {
        color: #ffffff26;
        font-size: 17rem;
        z-index: 1;
        position: absolute;
        opacity: 0.9;
        top: 31px;
        bottom: 0;
        left: 55%;
        z-index: -1;
    }
    .why-us-title {
        text-align: center;
        font-size: 2.7rem;
        font-weight: 700;
    }
    .Illustrations svg,
    .Illustrations img {
        width: 44rem;
        height: 36rem;
        object-fit: cover;
    }
    #text-main-content h1 {
        font-weight: bold;
        font-family: 'Raleway', sans-serif;
        font-size: 64px;
        letter-spacing: -2px;
    }
    .secendory-text-title-main {
        font-size: 2.5rem;
    }
    #benefit-section {
        margin-top: 6rem;
        margin-bottom: 10rem;
    }
    .carousel {
        width: 45rem;
        margin-left: 23%;
    }
    .img-side-about-us img {
        width: 100%;
    }
}