* {
    margin: 0;
    padding: 0;
}

footer {
    background: #161e27;
    padding-top: 50px;
}

.footer_item h3 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer_item ul a {
    color: rgb(157, 167, 176);
    font-size: 16px;
    transition: .5s;
}

.footer_item ul a:hover {
    color: white;
}

.footer_item ul * {
    margin-bottom: 10px;
}

.footer_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.footer_item:last-child {
    grid-column: 2 span;
}

.footer_item h5 {
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.footer_item p {
    font-weight: normal;
    color: white;
    font-size: 16px;
}

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

.icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: .5s;
}

.icon:hover {
    background: rgb(255, 255, 255);
    color: blue;
}

.hr {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.logo_left a,
.logo_left li {
    color: white;
}

.logo_left ul {
    display: flex;
    gap: 15px;
}

.logo_left p {
    color: rgb(157, 167, 176);
}

.logo_left ul {
    padding: 15px 0;
}

.footer_logo {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.logo_right h4 {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: end;
}

.pay {
    display: flex;
    gap: 5px;
    padding-top: 10px;
}

.footer_item p {
    color: rgb(157, 167, 176);
}


.company_name h5 {
    border-bottom: 1px solid rgb(157, 167, 176);
    display: inline-block;
    padding-bottom: 5px;
}






/* // Small devices (landscape phones, 576px and up) */
@media screen and (max-width: 576px) {
    .footer_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer_logo {
        flex-direction: column;
    }

    .logo_right h4 {
        text-align: left;
    }

    .currency_yera_container,
    .currency {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .scale_hosting {
        grid-template-columns: repeat(1, 1fr)
    }

    .scale_hosting h3,
    .scale_hosting p,
    .scale_hosting img {
        text-align: center !important;
    }

    .scale_hosting img {
        display: block;
        margin: 0 auto;
    }

    .vps_head {
        display: none;
    }

    .vps_mhead {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* // Medium devices (tablets, 768px and up) */
@media screen and (max-width: 768px) and (min-width: 577px) {
    .footer_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_logo {
        flex-direction: column;
    }

    .logo_right h4 {
        text-align: left;
    }

    .currency_yera_container,
    .currency {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .scale_hosting {
        grid-template-columns: repeat(2, 1fr)
    }

    .scale_hosting h3,
    .scale_hosting p,
    .scale_hosting img {
        text-align: center !important;
    }

    .scale_hosting img {
        display: block;
        margin: 0 auto;
    }

    .vps_head {
        display: none;
    }

    .vps_mhead {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* // Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) {  } */

/* // X-Large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {  } */

/* // XX-Large devices (larger desktops, 1400px and up) */
/* @media (min-width: 1400px) {  } */