.wk-architecture-slider{
    background-color: #ffffff;
    padding: 100px 0;
}
.wk-architecture-slider .main-box{
    min-height: 80vh;
    padding: 60px 15px 0;
    color: var(--text-primary-color); 
    background: linear-gradient(#10091f, #160f27);
    background: url(/wp-content/themes/revamp/assets/images/top-bg.jpg);
    background-size: cover;
    border-radius: 40px;
    text-align: center;
}
.wk-architecture-slider .main-box .section-heading {
    color: var(--text-primary-color);
    font-size: 50px;
    line-height: 110%;
}
.wk-architecture-slider .main-box .section-type {
    color: rgba(255,255, 255, 0.5);
    margin-bottom: 20px;
}

.wk-architecture-slider .main-box .before-after-box {
    margin: 35px 80px 0;
    border: 20px solid rgba(255,255,255, 0.1);
    border-top-width: 35px;
    border-radius: 20px;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
}
.wk-architecture-slider .main-box .before-after-box .dots span {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: 0;
}
.wk-architecture-slider .main-box .before-after-box .dots span:nth-child(2) {
    left: 20px;
}
.wk-architecture-slider .main-box .before-after-box .dots span:nth-child(3) {
    left: 40px;
}

.wk-architecture-slider .main-box .bullet-slider{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--btn-primary-color);
    cursor: move;
}
.wk-architecture-slider .main-box .cta-box .cbtn{
    margin-bottom: 15px;
}
.wk-architecture-slider .main-box .cta-box .cbtn:last-child{
    margin-bottom: 0;
}

@media(max-width: 991px){
    .wk-architecture-slider{
        padding-top: 50px !important;
            padding-bottom: 0 !important;
    }

    .wk-architecture-slider .main-box{
        padding: 110px 15px 0px 15px;
        border-radius: 0;
        min-height: 0 !important;
        margin: 0 -30px;
    }
    .wk-architecture-slider .main-box .before-after-box{
        margin-left: 0;
        margin-right: 0;  
    }
    .wk-architecture-slider .main-box .section-type{
        padding: 0 30px;
    }

    .wk-architecture-slider .main-box .section-heading{
        padding: 0 30px;
    }

    .wk-architecture-slider .main-box .cta-box{
        padding: 0 2%;
        margin-top: 30px;
    }
    .wk-architecture-slider .main-box .before-after-box{
        margin-top: 60px;
    }
}
@media(max-width: 767px){
    .wk-architecture-slider .main-box .section-heading{
        font-size: 36px;
    }
}
@media(max-width: 480px){
    .wk-architecture-slider .main-box .cta-box .cbtn {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.beer-slider {
    display: inline-block;
    position: relative;
    /* overflow: hidden; */
}
.beer-slider *,
.beer-slider:before,
.beer-slider:after,
.beer-slider *:before,
.beer-slider *:after {
    box-sizing: border-box;
}
.beer-slider img,
.beer-slider svg {
    vertical-align: bottom;
}
.beer-slider > * {
    height: 100%;
}
.beer-slider > img {
    max-width: 100%;
    height: auto;
}

.beer-reveal {
    position: absolute;
    left: 0;
    top: 0;
    right: 50%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s;
}

.beer-reveal:before {
    background-color: rgb(102, 102, 102);
    cursor: e-resize;
    opacity: 1;
    z-index: 2;
    user-select: none;
    position: absolute !important;
    width: 3px !important;
    height: 100% !important;
    top: 0px !important;
    right: 1px;
    overflow: visible !important;
    transform: translateX(50%) !important;
    content: "";
}
.beer-reveal > :first-child {
    width: 200%;
    max-width: none;
    height: 100%;
}
.beer-reveal > img:first-child {
    height: auto;
}

.beer-range {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    left: -1px;
    width: calc(100% + 2px);
    cursor: pointer;
    -webkit-appearance: slider-horizontal !important;
    -moz-appearance: none;
    opacity: 0;
    -ms-touch-action: auto;
    touch-action: auto;
}
.beer-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 300vh;
}
.beer-range::-moz-range-thumb {
    -webkit-appearance: none;
    height: 300vh;
}
.beer-range::-ms-tooltip {
    display: none;
}

.beer-handle {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate3d(-54%, -50%, 0);
    color: #000;
    background: var(--btn-primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0);
    transition: background 0.3s, box-shadow 0.3s, opacity 0.5s 0.25s;
}
.beer-handle:before,
.beer-handle:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    border-top: solid 2px;
    border-left: solid 2px;
    border-color: #ffffff;
    transform-origin: 0 0;
}
.beer-handle:before {
    left: 10px;
    transform: rotate(-45deg);
}
.beer-handle:after {
    right: 0;
    transform: rotate(135deg);
}

.beer-range:focus ~ .beer-handle {
    background: var(--btn-primary-color);
    opacity: 1;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.beer-slider[data-beer-label]:after,
.beer-reveal[data-beer-label]:after {
    content: attr(data-beer-label);
    position: absolute;
    top: 1.5rem;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 0.125rem;
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    text-transform: capitalize;
}

.beer-slider[data-beer-label]:after {
    right: 1.5rem;
}

.beer-reveal[data-beer-label]:after {
    left: 1.5rem;
}

.beer-slider[data-beer-label=""]:after,
.beer-reveal[data-beer-label=""]:after {
    content: none;
}

.beer-ready .beer-reveal {
    opacity: 1;
}

