section.pricing-full {
    margin: var(--margin) 0 25px;
}
section.pricing-full h1 {
    margin-bottom: 15px;
}
section.pricing-full h1 span {
    color: var(--color);
}
section.pricing-full .top {
    padding: 50px 0 15px;
    text-align: center;
}
section.pricing-full .top .pro-account {
    position: relative;
    top: -8px;
    color: var(--color);
    font-size: 20px;
    padding: 0 297px;
    line-height: 20px;
}
section.pricing-full .sub {
    width: 800px;
    display: inline-block;
    font-size: 18px;
    line-height: 20px;
    color: white;
}
section.pricing-full .pricing-table {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    grid-gap: 10px;
    margin: 15px 0;
}
section.pricing-full .col {
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: var(--dark);
    transform: scale(1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1)
}
section.pricing-full .col:nth-of-type(3) {
    border-color: var(--color);
}
section.pricing-full .col:hover {
    z-index: 2;
    background: var(--darker);
    transform: scale(1.025);
}
section.pricing-full .legend {
    position: relative;
}
section.pricing-full .header {
    height: 184px;
}
section.pricing-full .col .header {
    padding: 38px 20px;
    border-bottom: var(--border);
}
section.pricing-full .header .name {
    color: var(--color);
    font-weight: 600;
    font-size: 27px;
    line-height: 28px;
}
section.pricing-full .header .desc {
    margin: 5px 0 15px;
    color: white;
    line-height: 19px;
}
section.pricing-full .header .price {
    font-size: 38px;
    line-height: 38px;
    color: var(--color);
    position: absolute;
    top: 116px;
    left: 20px;
    font-weight: 400;
}
section.pricing-full .header .button {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 161px;
    z-index: 2;
}
section.pricing-full .header .button a {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 190px;
}
section.pricing-full .header .price .duration {
    font-size: 13px;
    color: white;
    background: var(--color);
    color: black;
    border-radius: var(--border-radius);
    padding: 1px 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    top: -2px;
}
section.pricing-full .header .price .discount {
    font-size: 20px;
    color: var(--color2);
    position: relative;
}
section.pricing-full .header .price .discount:before {
    content: '';
    width: 55px;
    height: 3px;
    background: var(--color2);
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    transform: rotate(-12deg);
    opacity: 0.5
}
section.pricing-full li {
    border-bottom: var(--border);
    padding: 6px;
    height: 35px;
}
section.pricing-full li:last-of-type {
    border: unset;
}
section.pricing-full li.section {
    height: 35px;
    font-weight: 900;
    color: var(--color);
}
section.pricing-full .col li {
    text-align: center;
    position:relative;
}
section.pricing-full .col li.green{
    color:var(--green)
}
section.pricing-full .col li.green:before{
    content:'';
    display:block;
    background:var(--green);
    left:0;
    right:0;
    top:0;
    bottom:0;
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    opacity:0.05;
}
section.pricing-full .col li.green{
    color:var(--green)
}
section.pricing-full .col li.red{
    color:var(--red)
}
section.pricing-full .col li.red:before,
section.pricing-full .col li.green:before{
    content:'';
    display:block;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width:100%;
    height:100%;
    position:absolute;
    z-index:-1;
    opacity: 0.03;
}
section.pricing-full .col li.red:before{
    background:var(--red);
}
section.pricing-full .col li.green:before{
background:var(--green);
}
section.pricing-full .switcher {
    text-align: center;
    margin-bottom: 60px;
}
section.pricing-full .switcher .selector {
    display: inline-block;
    width: 300px;
    background: var(--darker);
    border-radius: var(--border-radius);
}
section.pricing-full .switcher .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.pricing-full .switcher .item {
    font-size: 20px;
    line-height: 26px;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    position: relative;
    cursor: pointer;
    font-weight: 700;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.pricing-full .switcher .item:hover {
    color: var(--color);
}
section.pricing-full .switcher .item.active {
    background: var(--color);
    color: black;
}
section.pricing-full .switcher .days {
    font-size: 14px;
    line-height: 14px;
}
section.pricing-full .switcher .item .promo {
    position: absolute;
    font-size: 13px;
    background: var(--color2);
    border-radius: var(--border-radius);
    padding: 0 10px;
    bottom: -36px;
    right: -13px;
    transform: rotate(-10deg);
    color: white !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: white;
    white-space: nowrap;
    line-height: 17px;
    padding: 5px 10px;
}
section.pricing-full .switcher .item .promo .percent {
    color: var(--color);
    font-size: 16px;
    line-height: 16px;
}
section.pricing-full .switcher .item.active .promo {
    transform: rotate(-5deg) scale(1.2);
    color: var(--color) !important;
}
section.pricing-full .block-year,
section.pricing-full .block-month {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section.pricing-full .block-year.active,
section.pricing-full .block-month.active {
    opacity: 1;
    visibility: visible;
}
section.pricing-full .discount-block {
    text-align: center;
    margin-bottom: -25px;
    margin-top: 25px;
    position: relative;
    z-index: 5;
    width: 100%;
}
section.pricing-full .discount-block .deal {
    background: var(--darker);
    display: inline-block;
    padding: 20px 15px;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color);
    line-height: 26px;
    border-radius: var(--border-radius);
    position: absolute;
    right: 0;
    top: 62px;
    transform: rotate(-8deg);
    margin: auto;
    width: 154px;
    left: 0;
    border: 2px solid currentColor;
}
section.pricing-full .discount-block .percent {
    display: inline-block;
    color: black;
    margin-left: 10px;
    background: var(--color);
    padding: 5px 0;
    border-radius: var(--border-radius);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 74px;
    top: -39px;
    font-size: 26px;
    line-height: 32px;
    border: 4px solid black;
}
section.pricing-full .discount-block .name {
    font-size: 15px;
    line-height: 15px;
    color: white;
    font-weight: 400;
    margin-top: 2px;
}
@media all and (max-width: 1320px) {
    section.pricing-full .header {
        height: 201px;
    }
    section.pricing-full .col .header {
        padding: 38px 15px;
    }
    section.pricing-full .header .price {
        font-size: 33px;
        left: 15px;
        top: 118px;
    }
    section.pricing-full .header .button {
        top: 177px;
    }
}
@media all and (max-width: 1140px) {
    section.pricing-full .top .pro-account {
        padding: 0 100px;
    }
    section.pricing-full .header {
        height: 206px;
    }
    section.pricing-full .col .header {
        padding: 20px 15px 25px;
        height: 205px;
    }
    section.pricing-full .header .price {
        top: 123px;
        left: 15px;
    }
    section.pricing-full .header .button {
        top: 180px;
    }
    section.pricing-full .header .price .duration {
        position: absolute;
        right: 0;
        line-height: 16px;
        right: -16px;
        bottom: -11px;
        top: unset;
        transform: rotate(-10deg);
        background: var(--color-dark);
        font-size: 12px;
    }
}
@media all and (max-width: 960px) {
    section.pricing-full .discount-block .deal{
        top:50px;
    }
    section.pricing-full .sub {
        width: 100%;
        padding: 0 15px;
    }
    section.pricing-full .pricing-table {
        grid-gap: 5px;
        grid-template-columns: 164px repeat(3, 1fr);
    }
    section.pricing-full .header {
        height: 172px;
    }
    section.pricing-full .col .header {
        height: 179px;
    }
    section.pricing-full .header .desc {
        font-size: 15px;
        line-height: 18px;
    }
    section.pricing-full .header .price {
        font-size: 24px;
        line-height: 24px;
        top: 130px;
    }
    section.pricing-full .header .button {
        top: 163px;
    }
    section.pricing-full .header .button a {
        font-size: 15px;
        width: 157px;
        padding: 0;
        line-height: 36px;
    }
    section.pricing-full .header .price .duration {
        right: -15px;
        font-size: 12px;
        display: none;
    }
    section.pricing-full .header .price .discount {
        font-size: 16px;
    }
    section.pricing-full ul {
        font-size: 14px;
    }
    section.pricing-full li {
        height: 30px;
        padding: 3px 0;
    }
    section.pricing-full li.section {
        height: 30px;
        padding: 3px 0;
    }
    section.pricing-full .col li {
        height: 30px;
        padding: 3px;
    }
}
@media all and (max-width: 720px) {
    section.pricing-full .top .pro-account {
        padding: 0 15px;
    }
    section.pricing-full .pricing-table {
        grid-template-columns: 160px 1fr 1fr;
    }
    section.pricing-full .col.business {
 display: none;
    }
    section.pricing-full .header {
        height: 176px;
    }
    section.pricing-full .col .header {
        height: 175px;
    }
    section.pricing-full .col .header .name {
        font-size: 28px;
        line-height: 28px;
    }
    section.pricing-full .header .desc {
        font-size: 14px;
        line-height: 17px;
        padding: 0;
        margin-bottom: 0;
    }
    section.pricing-full .header .price {
        top: 107px;
    }
    section.pricing-full .header .button {
        top: 154px;
    }
    section.pricing-full .header .price .discount {
        position: absolute;
        bottom: -16px;
        left: 0;
        right: 0;
        font-size: 16px;
        line-height: 16px;
    }
    section.pricing-full .discount-block {
        margin: unset;
        top: 49px;
    }
    section.pricing-full .discount-block .deal {
        top: 0;
        position: relative;
    }
    section.pricing-full {
    margin: var(--margin) 0;
}
}
@media all and (max-width: 576px) {
    section.pricing-full .top .pro-account {
        padding: 0 10px;
    }
    section.pricing-full .sub {
        padding: 0 10px;
    }
    section.pricing-full .pricing-table {
        grid-template-columns: 151px 1fr 1fr;
        padding: 0 5px;
    }
    section.pricing-full .header {
        height: 104px;
    }
    section.pricing-full .col .header {
        height: 103px;
        padding: 10px 10px;
    }
    section.pricing-full .col .header .name {
        font-size: 14px;
        line-height: 14px;
        color: white;
    }
    section.pricing-full .header .desc {
        display: none;
        font-size: 13px;
        line-height: 15px;
    }
    section.pricing-full .header .price {
        top: 31px;
        font-size: 19px;
        font-weight: 800;
        left: 8px;
        line-height: 16px;
    }
    section.pricing-full .col.business .header .price {
        font-size: 15px;
    }
    section.pricing-full .header .button {
        top: 76px;
        bottom: unset;
    }
    section.pricing-full .col.business .button {
        display: none;
    }
    section.pricing-full .header .button a {
        width: 100%;
        border-radius: 0;
        top: 0;
        line-height: 42px;
    }
    section.pricing-full .header .price .duration {
        display: none;
    }
    section.pricing-full .header .price .discount {
        font-size: 14px;
        font-weight: 400;
        bottom: -20px;
    }
    section.pricing-full ul {
        font-size: 13px;
    }
    section.pricing-full .discount-block {
        top: 18px;
    }
    section.pricing-full .discount-block .deal {
        width: 129px;
        font-size: 23px;
        padding: 10px;
    }
    section.pricing-full .discount-block .name {
        font-size: 12px;
    }

}