@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif;
}

:root{
    /* color pattern */
    --white : #FFFF;
    --dark-blue : #123ACE;
    --darknes-blue : #082387;
    --heading-text : #1D1D1D;
    --desc-text : #424242;
    --fill-total : #E3F2FF;
    --gray-bg : #F0F2FC;
    --bg-s2 : #F1F4FF;
    --border-s2 : #8AA3FF;
    --clr-bluenes : #3A64FF;
    --box-detail : #E4EAFF;
    --box-detail-border : #728FFF;
    --border-subs : #D9D9D9;
    --blue-subs : #1139CD;

    /* Gradient */
    --blue-gradient : linear-gradient(159deg, #1139CD 31.44%, #2E5AFB 70.15%);
    --platinum-gradient : linear-gradient(159deg, #1139CD 31.44%, #2E5AFB 70.15%);
    --hover-section-2 : linear-gradient(163deg, #C5D2FF -19.06%, #123ACE 60.92%);

    /* shadow */
    --shadow-box-section-2 : 0px 4px 10px 4px rgba(18, 58, 206, 0.25);
    --subs-shadow : 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    --btn-gratis-shadow : drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.25));

    /* weight font */
    --heading-bold : 700;
    --pragraph-bold : 300;
    --400-bold : 400;
    --600-bold : 600;

    /* font heading size */
    --heading-size : 37px;
    --paragraph-size : 16px;
    --mini-paragraph-size : 15px;
    --middle-size : 20px;
    --25mo : 25px;
    --18mo : 18px;

    /*line height*/
    --lh-32: 32px;
    --lh-27: 27px;
    --lh-25: 25px;
    
}

.navigate-menus{
    display: none;
}

section{
    position: relative;
}

.auto-right{
    margin: 0 0 0 auto;
}

.nav-blood{
    background-color: transparent;
    padding: 16px 0;
    margin-top: 1.5rem;
    transition: .1s ease-in-out;
}

img.brand {
    width: 250px;
    transition: .3s ease-in-out;
}

.nav-gs ul{
    padding: 0;
    margin: 0;
}

.nav-gs ul li{
    width: fit-content;
    display: inline-block;
    margin-right: 30px;
}

.nav-gs ul li:nth-last-child(1){
    margin-right: 0;
}

.nav-gs ul li a{
    text-decoration: none;
    font-size: var(--paragraph-size);
    color: var(--white);
    font-weight: var(--400-bold);
}

.nav-gs ul li a:hover{
    color: var(--white);
}

.nav-gs {
    display: flex;
    column-gap: 40px;
    align-items: center;
}

nav.basic-navbar{
    background-color: var(--darknes-blue);
    margin-top: 0;
    padding: 20px 0;
}

nav.scrolled{
    background-color: var(--darknes-blue);
    margin-top: 0;
    padding: 20px 0;
    transition: .7s ease-in-out;
    animation: rub .3s ease-in-out;
}

@keyframes rub{
    from{
        margin-top: 1.5rem;
    }
    to{
        margin-top: 0;
    }
}

nav.basic-navbar img.brand{
    width: 220px;
}

nav.scrolled img.brand{
    width: 220px;
    transition: .3s ease-in-out;
}

section.s1{
    background: url('../img/bg-home-ardito.webp')no-repeat;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    padding-top: 3rem;
}

.blood-sg-title{
    font-size: var(--heading-size);
    color: var(--white);
    font-weight: var(--heading-bold);
    line-height: 50px;
}

.blood-sg-title p{
    margin-bottom: 15px;
}

.blood-sg-title p:first-child{
    margin-bottom: 0;
}

.blood-sg-sort-desc{
    color: var(--white);
    font-size: var(--paragraph-size);
    font-weight: var(--pragraph-bold);
    line-height: 30px;
    margin-top: 35px;
}

.blood-seap{
    background-color: white;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-size: var(--heading-size);
    font-weight: var(--heading-bold);
    width: fit-content;
    padding: 0px 17px;
    border-radius: 10px;
    transform: rotate(-1.2deg);
}

.btn-lay{
    display: block;
    width: fit-content;
    margin-top: 30px;
}

.btn-lay img{
    width: 170px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.blood-brand{
    width: fit-content;
}

a.btn-free {
    text-decoration: none;
    display: block;
    background-color: var(--white);
    font-size: var(--paragraph-size);
    padding: 10px 18px;
    border-radius: 6px;
    filter: var(--btn-gratis-shadow);
    color: var(--dark-blue);
    font-weight: 500;
}

section.s2 {
    padding-top: 200px;
    padding-bottom: 100px;
}

.blood-head-tiles{
    font-size: var(--heading-size);
    font-weight: var(--heading-bold);
    color: var(--heading-text);
    text-align: center;
    line-height: 2;
    margin-bottom: 65px;
}

span.actived-text {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 10px;
}

.blood-block-bw{
    background-color: var(--bg-s2);
    border: 2px solid var(--border-s2);
    border-radius: 28px;
    padding: 28px 30px;
    width: 95%;
    transition: .2s ease-in-out;
}

.nop-oss:nth-child(3) .blood-block-bw img.hv{
    opacity: 1;
    transition: .3s ease-in-out;
}

.nop-oss:nth-child(3) .blood-block-bw{
    background: var(--hover-section-2);
    border: 0;
    box-shadow: var(--shadow-box-section-2);
    transition: .3s ease-in-out;
}

.nop-oss:nth-child(3) .blood-block-bw .bw-titlex,
.nop-oss:nth-child(3) .blood-block-bw .bw-short-desc{
    color: var(--white);
    transition: .3s ease-in-out;
}

.icon-bw{
    position: relative;
    height: 67px;
    margin-bottom: 20px;
}

.icon-bw img{
    width: 67px;
    height: 67px;
    position: absolute;
}

.icon-bw img.hv{
    opacity: 0;
}

.bw-titlex{
    font-size: var(--middle-size);
    font-weight: var(--heading-bold);
    color: var(--heading-text);
    margin-bottom: 10px;
}

.bw-short-desc{
    font-size: var(--paragraph-size);
    font-weight: var(--400-bold);
}

section.s3{
  padding-top: 100px;
  padding-bottom: 100px;  
}

.us-app{
    margin-top: -90px;
}

.blood-3-dtailing{
    font-size: var(--paragraph-size);
    color: var(--desc-text);
    font-weight: var(--400-bold);
    line-height: 28px;
}

.wrap-dtling{
    padding-top: 4rem;
}

.blood-3-list{
    padding-left: 0;
    margin-top: 35px;
}

.blood-3-list li{
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.blood-3-circles{
    display: block;
    width: 54px;
    height: 54px;
    background-color: var(--fill-total);
    border-radius: 100px;
    position: absolute;
    left: 0;
    z-index: 0;
}

.blood-3-tle{
    position: relative;
    z-index: 9;
    font-weight: var(--heading-bold);
    color: var(--clr-bluenes);
    font-size: var(--25mo);
}

section.s4{
    background-color: var(--gray-bg);
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 9;
}

section.s4::before{
    content: '';
    background: url('../img/wave-lightgray.png')no-repeat;
    width: 100%;
    position: absolute;
    top: -45px;
    left: 0;
    height: 100px;
    z-index: 0;
    background-position: top;
}

section.s4::after{
    content: '';
    background: url('../img/wave-lightgray.png')no-repeat;
    width: 100%;
    position: absolute;
    bottom: -45px;
    left: 0;
    height: 100px;
    z-index: 0;
    background-position: bottom;
}

.blood-descrid{
    text-align: center;
    font-size: var(--paragraph-size);
    color: var(--desc-text);
    line-height: var(--lh-32);
    font-weight: var(--400-bold);
    width: 85%;
    margin: 0 auto;
}

.blood-descrid p{
    margin-bottom: 0;
}

.block-guardian{
    margin-top: 9rem;
}

.mar-7{
    margin-top: 7rem !important;
}

.hanger-title{
    font-size: var(--heading-size);
    color: var(--heading-text);
    font-weight: var(--heading-bold);
    margin-bottom: 25px;
}

.description-features{
    font-size: var(--paragraph-size);
    color: var(--desc-text);
    font-weight: var(--400-bold);
    line-height: var(--lh-32);
}

.detail-features{
    margin-top: 2rem;
}

.famdo-box{
    background-color: var(--box-detail);
    border: 2px solid var(--box-detail-border);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    min-height: 8rem;
}

.wrpx-woWs{
    padding-bottom: 60px;
}

.famdo-icon{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.famdo-title{
    font-weight: var(--heading-bold);
    font-size: var(--paragraph-size);
    color: var(--dark-blue);
    margin-bottom: 13px;
}

.famdo-short-desc{
    font-size: var(--mini-paragraph-size);
    color: var(--desc-text);
    font-weight: var(--400-bold);
    line-height: 21px;
}

.famdo-short-desc p{
    margin-bottom: 0;
}

.wolf-slider{
    padding-bottom: 58px;
}

.swiper-pagination.swiprop{
    bottom: 0;
    text-align: right;
}

.swiper-pagination.swiprop span.swiper-pagination-bullet {
    height: 15px;
    width: 15px;
    background: none;
    border: 1px solid var(--dark-blue);
    opacity: 1;
}

.swiper-pagination.swiprop span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--dark-blue);
}

section.s5{
    padding-top: 100px;
    padding-bottom: 0;  
}

.subs-list{
    padding: 0;
}

.subs-list li{
    display: block;
    list-style: none;
    font-size: var(--paragraph-size);
    color: var(--desc-text);
    font-weight: var(--pragraph-bold);
    margin-bottom: 15px;
}

.subs-icon{
    width: 15px;
    height: 14.62px;
    object-fit: contain;
    margin-right: 8px;
}

.subs-wrapper{
    border-radius: 33px;
    border: 1px solid var(--border-subs);
    background-color: var(--white);
    box-shadow: var(--subs-shadow);
    padding: 40px 30px;
}

.flag-subs{
    width: fit-content;
    padding: 6px 15px;
    background: var(--blue-gradient);
    color: var(--white);
    font-size: var(--middle-size);
    font-weight: var(--600-bold);
    border-radius: 10px;
    letter-spacing: .7px;
    margin-bottom: 37px;
}

.mini-title{
    font-size: var(--paragraph-size);
    font-weight: var(--pragraph-bold);
    color: var(--desc-text);
    margin-bottom: 2px;
}

.head-priced{
    font-size: var(--heading-size);
    font-weight: var(--heading-bold);
    color: var(--heading-text);
}

.or-month{
    font-size: var(--18mo);
    font-weight: var(--400-bold);
}

span.hr-line {
    display: block;
    background-color: var(--border-subs);
    height: 1px;
    margin: 19px 0;
}

a.subs-try-btn{
    text-decoration: none;
    display: flex;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border-subs);
    background: var(--white);
    font-size: var(--paragraph-size);
    color: var(--heading-text);
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.subs-wrapper.platinum-series{
    background: linear-gradient(159deg, #1139CD 31.44%, #2E5AFB 70.15%);
    border: 1px solid var(--blue-subs);
}

.subs-wrapper.platinum-series .head-subs > .mini-title,
.subs-wrapper.platinum-series .head-subs > .head-priced,
.subs-wrapper.platinum-series .subs-list li{
    color: var(--white);
}

.subs-wrapper.platinum-series a.subs-try-btn{
    color: var(--blue-subs);
}

.long-angle{
    padding-top: 80px;
}

section.s6{
    padding-top: 150px;
    padding-bottom: 100px;
}

.testimonials{
    padding-bottom: 70px;
}

.double-wave {
    margin-top: 100px;
    position: relative;
    z-index: 9;
}

.electra-loads{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    background-color: var(--white);
    margin-bottom: -50px;
    position: relative;
}

img.testi-img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 100px;
    border: 8px solid var(--gray-bg);
    object-position: center;
}

.blockc-loads {
    background-color: var(--gray-bg);
    border-radius: 23.677px;
    padding: 30px;
    text-align: center;
    padding-top: 74px;
}

.testi-loads {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading-loads{
    font-size: var(--middle-size);
    font-weight: var(--heading-bold);
    color: var(--heading-text);
    margin-bottom: 18px;
}

.says-loads{
    font-size: var(--mini-paragraph-size);
    color: var(--desc-text);
    font-weight: var(--400-bold);
    line-height: 23px;
}

.says-loads p{
    margin-bottom: 0;
}

img.magic-star {
    width: 28%;
    margin-top: 18px;
    margin-bottom: 20px;
}

.mithil-dots{
    bottom: 0;
}

.mithil-dots span.swiper-pagination-bullet{
    height: 16.5px;
    width: 16.5px;
    border: 2px solid var(--border-s2);
    background: none;
    opacity: 1;
}

.mithil-dots span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--border-s2);
}

section.s7{
    padding-top: 50px;
    padding-bottom: 200px;
}

.raglas{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top right !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;
    color: var(--white);
    padding: 50px 0;
}

.raglas-head{
    font-size: var(--heading-size);
    font-weight: var(--600-bold);
    width: 45%;
    text-align: center;
    line-height: 58px;
    margin-bottom: 24px;
}

.raglas-head p{
    margin-bottom: 0;
}

.raglas-detail{
    font-size: var(--paragraph-size);
    font-weight: var(--pragraph-bold);
    line-height: var(--lh-27);
    width: 43%;
    text-align: center;
}

.raglas-btn{
    width: fit-content;
    display: block;
    margin-top: 20px;
}

.raglas-btn img{
    width: 198px;
    border-radius: 12px;
}

img.rafah-line {
    position: absolute;
    height: 23vh;
    top: 2rem;
    left: 8rem;
    transform: rotate(16deg);
}

img.gaza-line{
    height: 20vh;
    position: absolute;
    top: -11rem;
    right: 17rem;
    transform: scaleX(-1) rotate(323deg);
    z-index: 0;
}

img.qood-line{
    height: 21vh;
    transform: rotate(339deg);
    position: absolute;
    top: -170px;
    left: 15rem;
}

/* footer */
footer.ld-footer{
    background-color: var(--darknes-blue);
    position: relative;
    padding-top: 80px;
    padding-bottom: 35px;
    color: var(--white);
}

footer.ld-footer:before{
    content: '';
    background: url(../img/wave-db.png)no-repeat;
    background-size: cover;
    background-position: top;
    height: 119px;
    position: absolute;
    top: -38px;
    width: 100%;
    z-index: 0;
}

footer.ld-footer .col-md-3{
    position: relative;
    z-index: 1;
}

._addressed{
    font-size: var(--mini-paragraph-size);
    font-weight: var(--pragraph-bold);
    margin-bottom: 13px;
    padding-right: 100px;
}

._addressed p{
    margin-bottom: 0;
    line-height: var(--lh-25);
}

.maps-on {
    margin-bottom: 30px;
}

.maps-on a{
    text-decoration: none;
    color: var(--white);
    font-size: var(--mini-paragraph-size);
    font-weight: var(--heading-bold);
}

a._goto {
    display: block;
    width: fit-content;
    margin-bottom: 34px;
}

._brands-foo {
    width: 230px;
}

._pt-name {
    font-weight: var(--600-bold);
    font-size: var(--middle-size);
    margin-bottom: 15px;
}

ul._list-social-media{
    padding: 0;
    display: flex;
    column-gap: 12px;
}

ul._list-social-media li{
    padding-left: 0;
    list-style: none;
}

ul._list-social-media li svg.social-vg {
    height: 37px;
    width: 37px;
}

._nested-heading {
    font-weight: var(--600-bold);
    font-size: var(--18mo);
    margin-bottom: 18px;
}

._nested-list{
    padding: 0;
}

._nested-list li{
    list-style: none;
    margin-bottom: 10px;
}

._nested-list li a{
    list-style: none;
    color: var(--white);
    font-size: var(--mini-paragraph-size);
    font-weight: var(--pragraph-bold);
    text-decoration: none;
}

.xo-nes{
    padding-left: 8%;
}

.xo-ses{
    padding-left: 4%;
}

._nested-list li svg.cs-vg {
    height: 19px;
    width: 19px;
    margin-right: 8px;
}

._nester {
    margin-top: 4rem;
}

._kata {
    font-size: var(--mini-paragraph-size);
    font-weight: var(--600-bold);
    margin-bottom: 15px;
}

.installnow {
    display: block;
    width: fit-content;
}

.installnow img{
    width: 189.35px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
}

._nest-copyright {
    text-align: center;
    margin-top: 3rem;
    font-weight: var(--pragraph-bold);
    font-size: var(--mini-paragraph-size);
}

a.wonder-help{
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
    display: block;
    width: fit-content;
}

a.wonder-help img.hlpbu{
    width: 150px;
    height: 150px;
}

a.wonder-help:hover .bubbles{
    animation: bubbler .4s ease-in-out;
    visibility: visible;
}

.bubbles {
    position: absolute;
    background: var(--dark-blue);
    padding: 13px 17px;
    border-radius: 9px;
    text-decoration: none;
    color: var(--white);
    right: 96px;
    width: 15rem;
    top: -24px;
    font-size: var(--mini-paragraph-size);
    font-weight: var(--pragraph-bold);
    visibility: hidden;
    animation: bubblerBack .4s ease-in-out;
}

@keyframes bubbler{
    0% {
        visibility: hidden;
        top: 0;
    }
    100% {
        top: -24px;
        visibility: visible;
    }
}

@keyframes bubblerBack{
    0% {
        top: -24px;
    }
    100% {
        top: 0;
        visibility: hidden;
    }
}

img.polygon-xc {
    position: absolute;
    height: 24px;
    transform: rotate(144deg);
    bottom: -11px;
    right: 2px;
}

.features-img {
    object-fit: contain;
}

section.rolland-cool{
    padding-top: 200px;
    padding-bottom: 160px;
}

.rolland-block {
    margin-top: 2.5rem;
}

h2.vab-title {
    background: var(--darknes-blue);
    width: fit-content;
    padding: 13px 20px;
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 55px;
    transform: rotate(-2deg);
    font-weight: var(--600-bold);
}

.rolls-body {
    font-size: var(--paragraph-size);
    font-weight: var(--pragraph-bold);
    text-align: justify;
    line-height: 31px;
    color: var(--desc-text);
}

.rolls-gat {
    color: var(--blue-subs);
    margin-bottom: 18px;
    font-size: var(--paragraph-size);
    font-weight: var(--600-bold);
    width: fit-content;
    position: relative;
}

svg.holo {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.rolls-body a{
    color: var(--darknes-blue);
    font-weight: var(--600-bold);
}

.roll-mids {
    font-size: var(--18mo);
    font-weight: var(--600-bold);
    margin-bottom: 21px;
    color: var(--blue-subs);
}

h4.roll-head {
    font-size: var(--middle-size);
    margin-bottom: 26px;
    font-weight: var(--600-bold);
    color: var(--heading-text);
}

svg.rom {
    height: 33px;
    width: 33px;
    margin-right: 4px;
    transform: translateY(-4px);
}

.frame-x{
    width: 100%;
    height: 35rem;
}

.ui-iframes {
    margin-top: 68px;
}

.nowed-active{
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0 16px !important;
    margin-bottom: 10px;
}

.woWonderBoxSlide{
    background-color: var(--bg-s2);
}


section.s-harga {
    padding-top: 130px;
    padding-bottom: 130px;
}

/* responsive typograph for resolution 1680px under */
@media screen and (min-width: 1270px) and (max-width: 1399px){
    .long-angle{
        width: 95% !important;
    }

    img.rafah-line{
        height: 17vh;
        left: 5rem;
    }

    img.gaza-line{
        height: 20vh;
        top: -11rem;
        right: 13rem;
    }

    img.qood-line{
        height: 20vh;
        top: -170px;
        left: 11rem;
    }

}


@media screen and (min-width: 1270px) and (max-width: 1440px){
    .icon-bw,
    .bw-titlex{
        margin-bottom: 4px;
    }
}

@media screen and (min-width: 1270px) and (max-width: 1600px){
    .sarange-subs{
        justify-content: center;
    }

    .sarange-subs .col-md-4{
        width: 32%;
        justify-content: center;
    }
}

@media screen and (min-width: 1270px) and (max-width: 1680px){
    
    /* font 37px */
    .blood-sg-title,
    .blood-seap{
        font-size: 2.202vw;
    }

    /* font 16px */
    .blood-sg-sort-desc{
        font-size: 0.952vw;
        line-height: 1.8vw;
    }

}

@media screen and (min-width: 1270px) and (max-width: 1700px){
    :root{
        --heading-size : 2.176vw;
        --paragraph-size : 0.941vw;
        --mini-paragraph-size : 0.882vw;
        --middle-size : 1.176vw;
        --25mo : 1.471vw;
        --18mo : 1.059vw;

         /*line height*/
        --lh-32: 1.882vw;
        --lh-27: 1.588vw;
        --lh-25: 1.471vw;
    }

    .raglas-head{
        line-height: 3.412vw
    }

    ul._list-social-media li svg.social-vg {
        height: 2.176vw;
        width: 2.176vw;
    }

    .installnow img {
        width: 11.138vw;
        height: 3.235vw;
    }

    a.wonder-help img.hlpbu {
        width: 8.824vw;
        height: 8.824vw;
    }

    .raglas-btn img{
        width: 11.647vw;
    }

    ._brands-foo {
        width: 13.529vw;
    }

    .bubbles{
        width: 15.529vw;
    }

    .mithil-dots span.swiper-pagination-bullet{
        height: 0.971vw;
        width: 0.971vw;
    }

    /* img.testi-img{
        width: 7.059vw;
        height: 7.059vw;
    }

    .electra-loads{
        width: 8.824vw;
        height: 8.824vw;
    } */

    .icon-bw img {
        width: 3.941vw;
        height: 3.941vw;
    }

    .btn-lay img {
        width: 10vw;
        height: 3.176vw;
    }

    img.brand{
        width: 14.706vw;
    }

    nav.scrolled img.brand{
        width: 12.941vw;
    }

    nav.basic-navbar img.brand{
        width: 12.941vw;
    }

    .swiper-pagination.swiprop span.swiper-pagination-bullet{
        height: 0.882vw;
        width: 0.882vw;
    }

    .famdo-icon{
        width: 2.353vw;
        height: 2.353vw;
    }

    h2.vab-title{
        font-size: 1.941vw;
        margin-bottom: 3.235vw;
    }

    svg.holo {
        width: 1.176vw;
        height: 1.176vw;
    }

    svg.rom{
        width: 1.941vw;
        height: 1.941vw;
    }

    .rolls-body{
        line-height: 1.824vw;
    }

    .rolland-block {
        margin-top: 1.941vw;
    }
}

@media screen and (min-width: 1270px) and (max-width: 1510px){
    .sarange-subs .col-md-4{
        width: 30%;
    }
}

@media screen and (min-width: 1270px) and (max-width: 1370px){
    .sarange-subs .col-md-4{
        width: 29%;
    }
}