.plan-con {
    background-color: #dee2e63b;
    width: 100%;
    padding: 60px 15px;
}
.plan-con .plan-box-item:hover .plan-header{
    background-image: linear-gradient(30deg, var(--dark--red-color) 0%, var(--dark--blue-color) 50%);
}
.plan-con .plan-box-item:hover {
    border: 1px solid rgb(118 63 96 / 100%);
}
.plan-con .plan-box-item:hover ul li i {
    color: var(--dark--red-color);
}
.plan-con .plan-box-item:hover .order-btn a {
    background-color: var(--dark--red-color);
}
.plan-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.533% 31.533% 31.533%;
}
.plan-top {
    display: flex;
    align-items: center;
    margin-bottom:23px;
    justify-content: space-between;
}
.plan-header{
    background: #0766cb; 
    border-radius: 10px 10px 0 0;
    padding: 30px;

}
.plan-box-item figure {
    display: flex;
    align-items: center;
    justify-content: center;    
}
.select_value {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 16px 30px;
    margin-bottom:0;
    color: #666;
    border-top: 1px solid rgb(0 123 255 / 20%);
    border-bottom: 1px solid rgb(0 123 255 / 20%);
    appearance: none;
    background: url(../images/down-angle.png) no-repeat 94% 19px;
    display: block;
    text-align: left;
}
.select_value span{
    color: var(--accent--color);
}
.select_menu_con {
    position: relative;
}
ul.select_menu {
    position: absolute;
    margin-bottom: 0 !important;
    top: 54px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    border-radius: 4px;
    padding: 7px 14px;
    font-size: 16px;
    line-height: 16px;
    left: 0;
}
.plan-box-item figure img{
    filter: brightness(0) invert(1);
}
.plan-box-item {
    border-radius: 10px;
    background: var(--secondary--color);
    border: 1px solid rgb(0 123 255 / 100%);
}
.plan-box-item h4{
    margin-bottom: 16px;
    color: var(--secondary--color);
}
.plan-box-item .plan-header span{
    color: var(--secondary--color);
}
.plan-box-item figure img{
    transition: all 0.5s ease-in-out;
}
.plan-box-item > span{
    font-size: 16px;
    line-height: 24px;
}
.price-value{
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 34px;
    color: var(--secondary--color);
}
.price-value span {
    top: -16px;
    font-size: 20px;
    line-height: 20px;
    position: relative;
    display: inline-block;
}
.price-value small{
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
}
/* .plan-box-item ul li img{
    padding-right:12px;
} */
.plan-box-item ul li i {
    font-size: 16px;
    padding-right: 12px;
    color: var(--accent--color);
}
.plan-box-item ul li{
    display: flex;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px;
}
.plan-box-item ul li span{
    padding-right: 2px;
    font-weight: 700;
}
.plan-box-item ul li:last-child{
    margin-bottom: 0;
}
.plan-box-item ul {
    margin: 0 auto 29px;
    display: inline-block;
}
.order-btn a {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    padding: 16px 10px 18px;
    color: var(--secondary--color);
    background: var(--accent--color);
}
.order-btn a:hover{
    color: var(--secondary--color);
    background: var(--primary--color);
}
.plan-bottom {
    padding: 30px;
}
/* RESPONSIVENESS */
@media screen and (max-width: 1440px) {
    .plan-box-item > span {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 22px;
    }
    .plan-box-item h4 {
        margin-bottom: 10px;
    }
    .price-value {
        font-size: 38px;
        line-height: 38px;
    }
    .plan-box-item ul li {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 16px;
    }
    .order-btn a {
        padding: 15px 10px;
    }
}
@media screen and (max-width: 1199px) {
    .price-value {
        font-size: 34px;
        line-height: 34px;
    }
    .plan-box-item ul {
        margin-bottom: 26px;
    }
    .plan-box {
        gap: 25px;
    }
}
@media screen and (max-width: 991px) {
    .plan-box {
        gap: 18px;
    }
    .plan-header {
        padding: 15px 10px;
    }
    .plan-top {
        margin-bottom: 12px;
    }
    .price-value {
        font-size: 24px;
        line-height: 24px;
    }
    .plan-box-item ul li i {
        padding-right: 8px;
    }
    .plan-bottom {
        padding: 15px 10px;
    }
    .select_value {
        font-size: 14px;
        line-height: 14px;
        padding: 14px 15px;
    }
    .price-value span {
        top: -10px;
        font-size: 18px;
        line-height: 18px;
    }
    .plan-box-item ul {
        margin-bottom: 20px;
    }
    ul.select_menu {
        top: 48px;
        padding: 10px 14px;
    }
    .order-btn a {
        font-size: 14px;
        line-height: 14px;
        padding: 14px 10px;
    }
    .plan-box-item > span {
        font-size: 12px;
        line-height: 20px;
    }
}
@media screen and (max-width: 767px) {
    .plan-box {
        grid-template-columns: 100%;
    }
     .plan-box-item {
        width: 320px !important;
    }
    .plan-header,
    .plan-bottom {
        padding: 15px;
    }
}
@media screen and (max-width: 575px) {
    .plan-box-item > span {
        margin-bottom: 16px;
    }
}














/* HOSTING PACKAGES / FEATURES CSS */

:root{
    --primary--color: #000;
    --secondary--color: #fff;
    --text--color: #666;
    --accent--color:#007bff;
    --grey-color:#f2f8ff;
    --dark--black-color:#000c18;
    --dark--red-color:#a806bb;
    --dark--blue-color:#002955;
    --light--red-color:#f2eeed;
    --light--blue-color:#0e325a;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* GENERIC TITLES */
.generic-title {
    z-index: 1;
    position: relative;
}
.generic-title span{
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 27px;
    color: var(--accent--color);
}
.generic-title h2{
    margin-bottom: 72px;
    color: var(--primary--color);
}

/* FEATURE / HOSTING BOXES */
.reseller-plan-con .plan-box {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2%;
}

.home2-feature-con .feature-box {
    display: grid;
    grid-template-columns: 61.6%;
    background: #00238a url(../images/dots-img2.png) no-repeat center;
    background-size: cover;
}

.home2-feature-con .feature-box-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--secondary--color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.home2-feature-con .feature-box-item:hover {
    background: var(--accent--color);
}

.home2-feature-con .feature-box-item figure {
    width: 80px;
    height: 80px;
    background: var(--accent--color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.home2-feature-con .feature-box-item:hover figure{
    background: var(--secondary--color);
}

.home2-feature-con .feature-box-item figure img{
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.home2-feature-con .feature-box-item:hover figure img{
    filter: brightness(0) saturate(100%) invert(44%) sepia(85%) saturate(5304%) hue-rotate(199deg) brightness(101%) contrast(105%);
}

/* BANNER / HOSTING PRICES */
.banner-price {
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    color: var(--secondary--color);
    background: var(--accent--color);
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 30px 30px 20px rgb(0 17 79 / 20%);
}

.banner-price > span{
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 2px;
}

.banner-price-value{
    font-size: 56px;
    font-weight: 700;
    margin-left: 9px;
    line-height: 56px;
    margin-bottom: 3px;
}

.month-title {
    font-size: 16px;
    line-height: 16px;
}

.banner-price-value span,
.banner-price-value small{
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    display: inline-block;
}

.banner-price-value span {
    top: -17px;
    position: relative;
    padding-right: 6px;
}

.banner-price-value small {
    left: -10px;
    position: relative;
}

/* SUPPORT BOXES FOR HOSTING */
.vps-support-con .support-box {
    display: grid;
    align-items: center;
    grid-template-columns: 49% 48.6%;
    justify-content: space-between;
    gap: 30px;
}

.vps-support-con .support-box-img figure img {
    box-shadow: 0 0 60px rgb(0 123 255 / 10%);
}

/* SHAPES / DECORATION FOR FEATURES */
.feature-shape{
    position: relative;
}
.feature-shape::before {
    top: 0;
    right: 0;
    content: "";
    width: 565px;
    height: 743px;
    position: absolute;
    background: url(../images/domain-rt-shape.png) no-repeat center;
}
.feature-shape::after {
    left: 0;
    bottom: 0;
    content: "";
    width: 158px;
    height: 315px;
    position: absolute;
    background: url(../images/static-lft-shape.png) no-repeat center;
}
.feature-shape .container{
    z-index: 1;
    position: relative;
}





.hosting-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    text-align: left;
}

.feature-item i {
    color: #007bff; /* ლურჯი */
}






















