:root {
    --primary-bg: #0d1117;
    --secondary-bg: rgb(29 255 235 / 5%);
    /* --secondary-bg: #161b22; */
    --border-color: #30363d;
    --text-color: #c9d1d9;
    --subtext-color: #e2f0fc;
    /* --subtext-color: #8b949e; */
    --accent-blue: rgb(22, 245, 226);
    /* --accent-blue: #58a6ff; */
    --accent-green: #238636;
    --accent-purple: #8247e5;
}

/* GENERAL */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;

}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-bg);
    /* background-color: var(--secondary-bg); */
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left a,
.dropdown-toggle {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    margin-right: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover,
.dropdown-toggle:hover {
    color: var(--accent-blue);
}

.nav-left a:active {
    color: var(--accent-blue);
}

.nav-icon {
    margin-right: 0.4rem;
    font-size: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-right select,
.nav-right button {
    background-color: rgb(22, 245, 226);
    /* background-color: #21262d; */
    border: 1px solid rgb(22, 245, 226);
    /* border: 1px solid var(--border-color); */
    color: #000;
    /* color: var(--text-color); */
    /* padding: 0.6rem 0.6rem; */
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 5px 24px rgba(22, 245, 226, .47);
    border: none;
    outline: none;
}

.nav-right button:hover,
.nav-right select:hover {
    /* background-color:var(--secondary-bg); */
    /* color: #000; */
    background-color: rgb(22, 245, 226);
    /* background-color: var(--border-color); */
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 9999;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 0;
}

#networkSelect option:hover {
    background: gray;
}

.dropdown-menu a:hover {
    background-color: rgb(29 255 235 / 5%);
    /* background-color: #21262d; */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Active link */
.nav-link.active {
    color: var(--accent-blue);
    font-weight: bold;
    border-bottom: 2px solid var(--accent-blue);
}

/* PAGE HEADING */
.page-heading {
    padding: 3rem 1rem;
    text-align: center;
    background: url('evm-background.svg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.page-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.page-heading h1,
.page-heading p {
    position: relative;
    z-index: 1;
}

.page-heading h1 {
    margin: 0;
    font-size: 1.8rem;
}

.page-heading p {
    margin: 0.4rem 0 0;
    font-size: 1rem;
    color: var(--subtext-color);
}

/* SECTIONS */
.section {
    padding: 2rem;
}

.section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.section p {
    color: var(--subtext-color);
}

/* CARDS */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    width: 280px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 0;
    color: var(--accent-blue);
}

/* BUTTONS */
.button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: #000;
    /* color: #fff; */
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 24px rgba(22, 245, 226, .47);
    border: none;
    outline: none;
}

.button:hover {
    background-color: #1f6feb;
}

/* FORMS */
form {
    /* max-width: 400px; */
    /* width: 100%; */
    margin: 0 auto;
    background-color: #161b224f;
    /* background-color: var(--secondary-bg); */
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.erc_token_box {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 
.erc_token_box div {
    display: flex;
} */

.erc_token_box div input {
    margin-top: 0;
    margin-bottom: 0;
}

form input,
form select {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: #21262d;
    color: var(--text-color);
}

form button {
    width: 100%;
}

/* FOOTER */
footer {
    display: flex;
    justify-content: space-between;
    /* text-align: center; */
    padding: 1rem;
    color: var(--subtext-color);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.privacy_terms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.privacy_terms a {
    text-decoration: none;
    color: #e2f0fcb0;
    font-size: 0.85rem;

}

.privacy_terms a:hover {
    color: var(--subtext-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .navbar {
        /* flex-direction: column; */
        align-items: center;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 100%;
        text-align: center;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1rem;
    /* background: linear-gradient(135deg, #161b22 0%, #21262d 100%); */
    /* background-image: url(../img/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5); 
     background-blend-mode: multiply; */

    overflow: hidden;
}

.welcome_hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* top: -50%;
    left: -50%;
    width: 200%;
    height: 200%; */
    width: 100%;
    height: 100%;
    background-image: url(../img/bgnew3.jpg);
    /* background-image: url(../img/bgnew3.jpg); */
    background-size: 100% 100%;
    opacity: 0.2;
    /* Adjust opacity here */
    z-index: -1;


    /* background: radial-gradient(circle, rgb(47 255 237 / 11%) 0%, #00000000 70%);
    animation: pulse 6s infinite; */
}

.create_evm::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bgcreateevm2.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.hero_dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/dashboardbg.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.evmOverview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/evmOverview2.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.erc20TokenStands::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/erc20Token.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.gasfee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/gasfee.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.faqbg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/faqbg.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.support::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/support2.jpg);
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -1;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
}

.nav-link i {
    margin-right: 5px;
    /* margin-top: -1px; */
}

.homecard {
    flex-wrap: nowrap;

}

.homecard .card {
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
    /* background: linear-gradient(145deg, #243b55, #141e30); */
}

/* 
.cando{
      background: radial-gradient(circle at top left, #1e3c72, #2a5298);
} */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero h1 {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: rgb(22, 245, 226);
    /* color: #58a6ff; */
}

.hero p {
    font-size: 1.1rem;
    color: var(--subtext-color);
    color: #e2f0fc;
    margin-bottom: 2rem;
}

/* Button already defined earlier */

/* Token Dashboard */
#tokenDashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.token-card {
    background: #121212;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    width: 260px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.token-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.token-card h3 {
    margin: 0 0 0.5rem 0;
    color: #00ffe0;
    font-weight: 600;
}

.token-card p {
    word-break: break-all;
    font-size: 0.9rem;
}

.token-card a {
    color: #00aaff;
    text-decoration: underline;
}

/* Container holding both forms side by side */
.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2rem;
}

/* Each form section styling */
.form-container section {
    /* background: rgb(99 164 158 / 5%); */
    background: rgb(29 255 235 / 5%);

    padding: 1.5rem;
    border-radius: 8px;
    /* width: 400px; */
    /* width: 95%; */
    width: 80%;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
    transition: transform 0.3s ease;
}

.form-container section:hover {
    transform: translateY(-5px);
}

/* Form headings */
.form-container section h2 {
    text-align: center;
    color: #f0f0f0;
    margin-bottom: 1rem;
}

/* Form inputs and labels */
.form-container form label {
    display: block;
    margin-top: 0.75rem;
    color: #ddd;
    font-weight: 500;
    text-wrap-mode: nowrap;
}

.form-container form input {
    width: 96%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #30363d;
    /* border: 1px solid #444; */
    border-radius: 4px;
    background: rgb(99 164 158 / 5%);
    /* background: rgb(29 255 235 / 5%); */

    color: #fff;
}

.form-container form button {
    margin-top: 1.3rem;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: rgb(22, 245, 226);
    color: #000;
    /* background: #4a90e2;
    color: #fff; */
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container form button:hover {
    /* background: rgb(14, 181, 167); */
    /* transform: translateY(-2px); */
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
}

#connectionInfo span {
    background: rgb(29 255 235 / 5%);
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.chaincard .card {
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}

/* /accordance */
.accordion {
    max-width: 1170px;
    margin: 40px auto 0;
}

.at-tab {
    display: none;
    padding: 15px;
    border-top: 1px solid #30363d;
    border-top: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgb(29 255 235 / 5%);
}

.at-title {
    cursor: pointer;
    background: rgb(29 255 235 / 5%);
    position: relative;
    transition: background-color 0.3s ease;
}

/* .at-title:hover {
  background-color: rgb(99 164 158 / 5%);
  
} */

.at-title:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s ease;
    font-size: 24px;
    /* color: rgb(22, 245, 226); */
}

.at-title.active:after {
    content: "-";
}

.at-item {
    border-radius: 5px;
    margin-bottom: 15px;
}

.at-title h2 {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0;
}

.accordion-header {
    text-align: center;
    background-color: #222222;
    color: white;
    padding: 20px 0;
}

.socialIcon li {
    display: inline-block;
    margin: 10px 30px;
}

.socialIcon li p {
    font-size: 18px !important;
    margin: 5px 0;
}

.socialIcon a {
    background-color: rgb(29 255 235 / 5%);
    color: black;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s;
    margin: auto;
    text-decoration: none;
}

.socialIcon a i {
    font-size: 25px;
}

.socialIcon a:hover {
    /* background: #00ffe0; */
    /* border: 1px solid rgba(0, 247, 255, 0.3); */
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}

.telehover:hover i {
    color: #0088cc !important;
    fill: white;
}

.twiiterhover:hover i {
    color: #1DA1F2 !important;
    fill: white;
}

/* sidenav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 200000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    margin: 8px 8px 8px 36px;
    text-decoration: none;
    /* font-size: 25px; */
    /* color: #818181; */
    display: block;
    /* transition: 0.2s; */
}

/* .sidenav a:hover {
  color: #f1f1f1;
} */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: white;
}

#mySidenav .nav-left {
    justify-content: start !important;
    flex-direction: column;
    align-items: start;
    flex-wrap: nowrap !important;
}

.whatcrowd {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.whatcrowd .left_content {
    width: 45%;
    height: 500px;

}

.whatcrowd .right_img {
    width: 55%;
    height: 500px;


}

/* .whatcrowd .right_img img{
    width: 100%;
height: 100%;
} */

.oricodev {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.icodevitem {
    display: flex;
    align-items: center;
    width: 30.333%;
    margin-bottom: 21px;
    background-color: #000;
    border-radius: 15px;
    color: white;
    padding: 10px;
    box-shadow: 0 0 41px 0 rgb(9 208 198 / 13%);
}

.iconimg_text h4 {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 16px;

}

.img-icoimg {
    width: 50px;
    height: 50px;
}

.img-icoimg img {
    width: 100%;
}

/* @media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} */
@media only screen and (max-width: 900px) {
    .whatcrowd {
        flex-direction: column;
    }

    .whatcrowd .right_img {

        width: 100%;
    }

    .whatcrowd .left_content {
        width: 100%;
    }
}

@media only screen and (max-width: 1100px) {
    .whatcrowd .right_img {

        height: inherit;
    }

    .whatcrowd .left_content {
        height: inherit;
    }
}

@media only screen and (max-width: 768px) {
    .icodevitem {
        width: 100%;
    }
}

@media only screen and (max-width: 550px) {
    .icodevitem {
        width: 100% !important;
    }
}

/* @media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} */
@media only screen and (max-width:600px) {
    footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    hr {
        height: 10px !important;
    }
}

@media only screen and (max-width:500px) {
    .socialIcon li {
        margin: 10px 16px;
    }

    .socialIcon a {
        width: 50px;
        height: 50px;
    }

    .socialIcon a i {
        font-size: 20px;
    }

    .erc_token_box {
        grid-template-columns: repeat(1, 1fr) !important;
    }


}

/* Responsive stacking on small screens */
@media only screen and (max-width:850px) {
    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .nav-left-res {
        display: none;
    }

    .hamburger_menu {
        display: inherit !important;
    }
}

@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
        align-items: center;
    }


    /* .form-container section {
        width: 90%;
    } */
}

@media (max-width:768px) {
    .erc_token_box {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spinner {
    width: 12px;
    height: 12px;
    border: 2px solid #0b564b;
    /* border: 2px solid #ffffff; */
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.tokenBtn button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ico::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/ico3.jpg);
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
}

.about-ico::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg_10.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.welocome_ico {
    /* width: 95%; */
    background: #1dffeb0d;
    margin: 0 20px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
    margin-top: 40px;
}

.about-ico {
    /* width: 95%; */
    background: #1dffeb0d;
    margin: 0 20px;
    /* border: 1px solid rgba(0, 247, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3); */
    margin-top: 40px;
}

.icofs-1 {
    text-align: center;
}

.icofs-1 img {
    width: inherit !important;
    height: inherit !important;
}

.join_team {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.join_team div {
    background: linear-gradient(89.98deg, #fff6f6 -3.37%, #36e7c4 99.98%);
    color: #000;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    width: 250px;
    max-width: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.c_us_btn a {
    text-decoration: none;
    background-color: var(--accent-blue);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    /* box-shadow: 0 05px 24px rgba(22, 245, 226, .47); */
    border: none;
    outline: none;
}

.c_us_btn {
    margin-top: 20px;
}

.c_us_btn a:hover {
    box-shadow: 0 05px 24px rgba(22, 245, 226, .47);
}

.minbt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

@media only screen and (max-width:550px) {
    .minbt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .minbt a {
        width: 60%;
    }

    .join_team {
        flex-direction: column;
    }
}

.fee_contact ul li a {
    background-color: rgb(29 255 235 / 5%);
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s;
    margin: auto;
    text-decoration: none;
    color: white;
    /* border: 1px solid rgba(0, 247, 255, 0.3); */
    /* border: 1px solid rgb(22, 245, 226); */
    box-shadow: 0 0 3px rgba(0, 247, 255, 0.5), inset 0 0 3px rgba(0, 247, 255, 0.3);
}

.fee_contact ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), inset 0 0 10px rgba(0, 247, 255, 0.3);
}

.fee_contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.fee_contact p {
    color: rgb(22, 245, 226);
}

.fee_contact div {
    display: flex;
    gap: 8px;
}

.fee_contact ul {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 8px;

}

@media only screen and (max-width:801px) {
    .fee_contact {
        flex-direction: column;
    }

    .fee_contact div {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .fee_contact p {
        margin-bottom: 3px;
        font-size: 14px;
    }

    .fee_contact div p {
        margin-top: 0;
        margin-bottom: 3px;
        text-align: center;
    }

    .fee_contact ul {
        margin-top: 0;
        margin-bottom: 0;
    }
}

#ico_banner_connect_us div ul li a {
    width: 60px;
    height: 60px;
    font-size: 37px;
}

#ico_banner_connect_us div ul {
    gap: 20px;
}

#telegram_ico:hover {

    box-shadow: 0 0 10px #0088cc, inset 0 0 10px #0088cc !important;
}

#email_ico:hover {

    box-shadow: 0 0 10px #c74610, inset 0 0 10px #c74610 !important;
}

#Whatsapp_ico:hover {

    box-shadow: 0 0 10px #25D366, inset 0 0 10px #25D366 !important;
}