:root {
    --bg-main: #010609;
    --gen-font: 'Poppins', sans-serif;
    --primary: #f8224a;
    --primary-hover: #d8173b;
    --secondary: #101920;
    --secondary-hover: #1a252f;
    --grad-a: linear-gradient(90deg, rgba(212,27,62,1) 0%, rgba(39,109,241,1) 100%);
    --grad-dark: linear-gradient(90deg, rgba(175,1,41,1) 0%, rgba(30,64,104,1) 100%);
    --grad-pm: linear-gradient(90deg, rgba(248,34,74,1) 0%, rgba(167,48,108,1) 100%);
    --grad-pb: linear-gradient(90deg, rgba(123,69,154,1) 0%, rgba(40,108,240,1) 100%);
    --box-radius: 20px;
    --box-padding: 20px;
    --pink: #f8224a;
    --maroon: #a7306c;
    --purple: #7b459a;
    --blue: #286cf0;
    --green: #309a33;
    --yellow: #e6a64a;
    --blue-grey: #0d1f29;
    --dark-blue-grey: #101920;
    --dark-blue-grey-hover: #1a252f;
}


/*==================================================
GENERAL
==================================================*/

* {
    margin: 0;
    padding: 0;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

html {
    position: relative;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;

}

body {
    background: var(--bg-main);
    background-image: url('/img/bgMainTop.jpg'), url('/img/bgMainBottom.jpg');
    background-position: top center, bottom center;
    background-repeat:no-repeat, no-repeat;
    background-size:contain, contain;
    font-family: var(--gen-font);
    height:100%;
    padding-bottom: 600px;
    color:#ffffff;
    position:relative;
}

a {
    color: var(--primary);
    transition: all 0.2s
}
a:hover {
    color: var(--primary-hover);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: var(--headers-font);
}
h1 {
    font-size: 3rem;
    font-weight:700;
}
h2 {
    font-size: 2rem;
    line-height:1.5em;
}
h3 {
    font-size: 1.5rem;
    line-height: 1.5em;
}
h4 {
    font-size:1.25rem;
}
h5 {
    font-size: 1.125rem;
    line-height: 1.85rem;
}
h6 {
    font-size: 1rem;
    line-height: 1.65em;
}

.p-r50{
    padding-right:50px;
}

.p,
p{
    line-height:1.75rem;
}

.bg-white{
    background:#fff;
}
.bg-lgrey {
    background: #e1e1e1
}

.pl-50{
    padding-left:50px;
}

.dev-left-ver{
    border-left:1px #fff dotted;
}

.space-h690 {
    height: 690px;
}

.space-h450 {
    height: 450px;
}

.space-h350 {
    height: 350px;
}

.text-light{
    opacity:0.6;
}

.mh-100{
    min-height:100%;
}
.gen-num-list {
    margin:0;
    padding:0;
}
.gen-num-list li{
    list-style-type:none;
    margin-bottom:25px;
}
    .gen-num-list li p{
        padding-left:45px;
    }
    .gen-num-list .general-list {
        margin-left:40px;
    }

.gen-num-list-short {
    margin: 0;
    padding: 0;
}
    .gen-num-list-short li {
        margin-bottom: 10px;
    }


    .general-list {
        margin: 0;
        padding: 0 0 0 5px;
    }

    .general-list li {
        margin-bottom: 10px;
        list-style-type: none;
        display: flex;
        font-size: 15px;
    }

        .general-list li i {
            color: #fff;
            font-size: 18px;
            padding-right: 10px;
            padding-top: 2px;
        }
    .general-list li span{
        color:rgba(255,255,255,0.6);
    }

.gsub-list {
    margin:0;
    padding:10px 10px 10px 25px;        
}
.gsub-list li{
    list-style-type:disc !important;
    display:list-item;
}

.img-sir{
    border-radius:50%;
}

.d-flex-col-cen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.d-flex-cen-ver {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.btn {
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    padding: 10px 35px;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
        box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    }

    .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

        .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
        }

    .btn-primary:disabled, .btn-primary.disabled {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }


.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
    }

    .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

        .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
        }

    .btn-outline-primary:disabled, .btn-outline-primary.disabled {
        color: #0d6efd;
        background-color: transparent;
    }


.btn-outline-white {
    color: #ffffff;
    border-color: #ffffff;
}

    .btn-outline-white:hover {
        color: var(--primary);
        background-color: #ffffff;
        border-color: #ffffff;
    }

    .btn-check:focus + .btn-outline-white, .btn-outline-white:focus {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
    }

    .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-white, .btn-outline-white:active, .btn-outline-white.active, .btn-outline-white.dropdown-toggle.show {
        color: #fff;
        background-color: #ffffff;
        border-color: #ffffff;
    }

        .btn-check:checked + .btn-outline-white:focus, .btn-check:active + .btn-outline-white:focus, .btn-outline-white:active:focus, .btn-outline-white.active:focus, .btn-outline-white.dropdown-toggle.show:focus {
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
        }

    .btn-outline-white:disabled, .btn-outline-white.disabled {
        color: #0d6efd;
        background-color: transparent;
    }

.btn-secondary {
    color: #cfd1d2;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

    .btn-secondary:hover {
        color: #fff;
        background-color: var(--secondary-hover);
        border-color: var(--secondary-hover);
    }
.ddm-secondary {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    width: 100%;
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    color: #cfd1d2;
    text-align: left;
    list-style: none;
    background-color: var(--secondary);
    background-clip: padding-box;
    border: 1px solid rgba(150, 150, 150, .15);
    border-radius: .5rem;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 4px 12px;
}
    .ddm-secondary .dropdown-item {
        width: 100%;
        padding: 5px 15px;
        text-decoration: none;
        display: block;
        color: #888c90;
        border-radius:6px;
    }
        .ddm-secondary .dropdown-item:hover,
        .ddm-secondary .dropdown-item:focus{
            color: #ffffff;
            background-color:rgba(255,255,255,0.2);
        }


.over-hide{
    overflow:hidden;
}
.btn-block{
    width:100%;
    display:block;
}
.regs-email-form {
    color: #333;
    border-radius: 10px;
}

/*--- sections ---*/
section {
    padding-top: 60px;
    padding-bottom: 60px;
    position:relative;
}
.sec-hp {
    padding-top: 60px;
    padding-bottom: 60px;
}
.sec-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.sec-np {
    padding-top: 0;
    padding-bottom: 0;
}
.sec-pt{
    padding-top:60px;
    padding-bottom:0;
}
.sec-pb {
    padding-top: 0;
    padding-bottom: 60px;
}
.quote {
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-family: 'Tiro Devanagari Sanskrit', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5em;
}

.quote-author {
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.logo-outline {
    background: #010609 url('/img/LogoChattrOutline.svg') no-repeat center center;
    background-size: cover;
}
.logo-outline-fpage {
    background: #010609 url('/img/LogoChattrOutline.svg') no-repeat center -80px;
}
/*-- deco --*/
.deco-blue-waves {
    position:absolute;
    top:0;
    right:0;
    width:850px;
    height:386px;
}

/*--- section main header ---*/
.hero {
    /*height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px rgba(255,255,255,0.6) dotted;
}
.hero h1 {
    padding: 100px 120px 30px 120px;
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing:4px;
    position:relative;
    min-height:450px;
}
    .hero h1 span {
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: white;
        letter-spacing: unset;
        position:absolute;
    }
    .hero h1 span.left {
        left:0;
    }
        .hero h1 span.right {
            right:0
        }
.hero h3 {
    color: #ffffff;
    margin:-50px 0 50px -50px;
}
.hero .quote{
    padding: 10px 280px 5px 280px;
}

/*--- section what is ---*/
.what-is {
    border: 1px #ffffff dotted;
    border-left: 2px var(--primary) solid;
    border-radius: var(--corner-radius);
}
    .what-is h2 {
        font-weight: 400;
        color:#fff;
        margin-bottom:15px;
    }
.what-is h2 span{
    font-weight:600;
}
    .what-is h4 {
        color:#ffffff;
        font-weight:300;
        line-height:1.5em;
        margin-bottom:25px;
    }
        .what-is p {
            color: rgba(255,255,255,0.5);
            font-weight: 300;
        }

.com-icons-row {
    display:flex;
    flex-wrap:wrap;
}
.com-icons-col {
    margin: 5px 15px;
    display: flex;
    flex:1;
    align-items: center;
    flex-direction:column;
}
.com-icons-col .com-icons{
    width:100px;
    height:100px;
    border-radius:50%;
    background: rgba(255,255,255,0.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}
    .com-icons-col .com-icons i {
        font-size: 38px;
    }
.com-icons-col h5{
    font-size:16px;
    font-weight:400;
    color:rgba(255,255,255,0.8)
}

/*--- section home sign up ---*/
.sign-up {
    background-color: #2e3235;
    border-radius: 10px;
    /*padding: 45px;*/
    /*color: rgba(255, 255, 255, 0.6);*/
    font-size: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.su-cc{
    display:flex;
    flex-direction:column;
    justify-content:center;
}


/*--- homepage channels ---*/
.hp-channels {
    margin-bottom:15px;
    text-align:center;
}
/*--- General Info ---*/
.gen-info-solid {
    background: var(--primary);
    border-radius: var(--box-radius);
    color: #fff;
    padding: 25px;
    position: relative;
}
.gen-info-solid p{
    color:#fff;
}
.gen-info-contact,
.gen-info-pricing {
    border-radius: var(--box-radius);
    background: var(--dark-blue-grey);
    color: #fff;
    padding: 25px;
    position: relative;
}
.gen-info-tips {
    border-radius: var(--box-radius);
    background: var(--dark-blue-grey);
    color: #fff;
    position: relative;
}
.git-banner-img {
    border-radius: 25px 25px 0 0;
    height:180px;
    overflow:hidden
}
.git-banner-img img{
    width:100%;
    height:auto;
}
.git-inner{
    padding:35px;
    position:relative;
    margin-bottom:80px;
}
.git-inner h5{
    margin-bottom:1.125rem;
}
.git-inner h4{
    font-size:20px;
    line-height:30px;
}
.gen-info-tips .btn {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
}
.tips-head {
    max-width: 950px;
    padding: 0 50px;
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-align: center;
}
.tips-copy{
    padding: 50px 150px;
    margin: 0 auto;
}
.tips-copy h5{
    margin-bottom:15px;
}
    .tips-copy .emp-text {
        font-size: 25px;
        border-left: 3px var(--primary) solid;
        padding-left: 15px;
        color: #fff;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
.tips-head-banner {
    margin:0 auto;
    text-align:center;
    overflow:hidden;
}
.tips-head-banner img{
    border-radius: var(--box-radius);
}


.gen-info-grey {
    color: #fff;
    padding: 35px;
    position: relative;
    border-radius: var(--box-radius);
    background: var(--dark-blue-grey);
}
.gen-info {
    color: #fff;
    padding:15px 20px;
    position: relative;
}
.gen-info-bb {
    border-bottom: 1px rgba(255,255,255,0.6) dotted;
}
.gen-info h5{
    margin-bottom:10px;
    line-height:1.7em;
}
     section p,
    .gen-info p,
    .gen-info li {
        font-weight: 400;
        color:rgba(255,255,255,0.6);
    }
    .gen-info li {
        margin-bottom:10px;
    }
        .gen-info li span {
            color: #fff;
            font-weight: 500;
        }
.gen-info .quote {
    padding:15px 150px;
}
.gen-info-form {
    background-color: #2e3235;
    border-radius: 10px;
    padding: 25px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}


/*--- services ---*/
.serv-icon {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 15px;
    display:block;
}

/*--- pricing ---*/

.pricing-selectors-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:1.5rem;
}
.ps-dropdown {
    width:200px;
}
.currency-current {
    border: 1px rgba(255,255,255,0.8) solid;
    border-radius:25px;
    color:rgba(255,255,255,0.8);
    font-size:1rem;
    font-weight:600;
    padding: 12px 20px;
    position: absolute;
    top: 0;
    left: 250px;
}
.p-pricing .container{
    position:relative;
}

.pricing-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px #fff dotted;
    margin-bottom: 15px;
    text-align: center;
    min-height: 150px;
}
    .pricing-head h3 {
        font-weight: 400;
        font-size: 16px;
        padding-bottom: 10px;
        margin:unset;
        color: #fff;
    }
    .pricing-head .price,
    .pricing-head .price1,
    .pricing-head .price2{
        font-weight: 600;
        font-size: 28px;
        color: #fff;
    }
    .pricing-head p{
        font-weight:400;
        font-size:14px;
        color:rgba(255,255,255,0.5);
        margin:unset;
    }
.pricing-list{
    margin:0 0 65px 0;
    padding:0;
}
.pricing-list li{
    margin-bottom:10px;
    list-style-type:none;
    display:flex;
    font-size:15px;
}
    .pricing-list li i{
        color:#fff;
        font-size:18px;
        padding-right:10px;
        padding-top:2px;
    }
    .pricing-list li span {
        color: rgba(255,255,255,0.6);
    }

.btn-prigin-ba {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
}
.gen-info-pricing:hover {
    background: #1a252f;
}

    .gen-info-pricing:hover.pricing-head {
        border-bottom: 1px #333 dotted;
        color:#333;
    }

.PriceRange {
    font-size:28px;
    font-weight:600;
    padding:5px 25px;
    border-radius:15px;
    background-color:var(--dark-blue-grey);
    display:inline-block;
}


.range-slider {
    margin: 20px 0 0 0;
}

.range-slider {
    width: 100%;
}

.range-slider__range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}

    .range-slider__range::-webkit-slider-thumb {
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--dark-blue-grey);
        cursor: pointer;
        transition: background 0.15s ease-in-out;
    }

        .range-slider__range::-webkit-slider-thumb:hover {
            background: #1abc9c;
        }

    .range-slider__range:active::-webkit-slider-thumb {
        background: #1abc9c;
    }

    .range-slider__range::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border: 0;
        border-radius: 50%;
        background: #2c3e50;
        cursor: pointer;
        transition: background 0.15s ease-in-out;
    }

        .range-slider__range::-moz-range-thumb:hover {
            background: #1abc9c;
        }

    .range-slider__range:active::-moz-range-thumb {
        background: #1abc9c;
    }

    .range-slider__range:focus::-webkit-slider-thumb {
        box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--dark-blue-grey);
    }

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: var(--dark-blue-grey);
    padding: 5px 10px;
    margin-left: 8px;
}

    .range-slider__value:after {
        position: absolute;
        top: 8px;
        left: -7px;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-right: 7px solid var(--dark-blue-grey);
        border-bottom: 7px solid transparent;
        content: '';
    }



/*--- forms ---*/
.form-group {
    margin-bottom:25px;
}
.form-gen label{
    color:#fff;
    margin-bottom:10px;
}
.form-select,
.form-control,
.form-control-w {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
    .form-select,
    .form-control {
        color: #EFEFEF;
        background-color: #40474d;
    }
        .form-select:focus,
        .form-control:focus {
            color: #efefef;
            background-color: #40474d;
            border-color: #40474d;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

.form-control-w {
    background-color: #ffffff;
    border:1px #ccc solid;
}
.form-control-w:focus {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select {
    min-height: 45px;
    background-image: url('/img/select-arrow.png');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 20px;
}

.form-area {
    border-radius: 15px;
}
.rc-anchor-light.rc-anchor-normal {
    border: 1px solid #fff;
    border-radius: 10px;
}
.rc-anchor-light {
    background: transparent;
    color: #fff;
}
.form-p-select {
    border: 2px #fff solid;
}

/*--- Sub Pages ---*/
.sp-header {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp-header-intro {
    padding: 15px 15px 0 15px;
    max-width: 750px;
    text-align: center;
    font-size: 1.5rem;
    font-weight:300;
    margin: 0 auto;
    line-height:1.6em;
}

/*--- features masonary layout ---*/
.masonary-list {
    column-width: 18em;
    column-gap: 15px;
}

    .masonary-list section {
        display: inline-block;
        margin: 0 0 20px 0;
        padding: var(--box-padding);
        width: 100%;
        border-radius: 10px;
        background: rgba(0,0,0,0.4);
        border: 1px #ffffff dotted;
        border-left: 2px var(--primary) solid;
    }
        .masonary-list section:hover,
        .masonary-list section:focus {
            background: var(--primary);
            color: #FFF;
            border: 1px var(--primary) dotted;
            border-left: 2px var(--primary) solid;
        }
        .masonary-list section:hover p,
        .masonary-list section:focus p {
            color: #fff;
        }
.masonary-list .steps {
    display:flex;
    border-radius:6px;
    height:40px;
    width:40px;
    align-items:center;
    justify-content:center;
    background-color:rgba(255,255,255,0.2);
    margin-bottom:15px;
    font-size:18px;
}
    .masonary-list section:hover .steps,
    .masonary-list section:focus .steps {
        background-color:rgba(0,0,0,0.7);
        color: #FFF;
    }

/* Accordion styles */
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.row {
    display: flex;
}

    .row .col {
        flex: 1;
    }

        .row .col:last-child {
            margin-left: 1em;
        }
.tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #2c3e50;
    border-bottom: 1px #0b1014 solid;
    cursor: pointer;
}

    .tab-label:hover {
        background: #1a252f;
    }

    .tab-label::after {
        content: "\276F";
        width: 1em;
        height: 1em;
        text-align: center;
        transition: all 0.35s;
    }

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: #0b1014;
    transition: all 0.35s;
}

.tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

    .tab-close:hover {
        background: #1a252f;
    }

input:checked + .tab-label {
    background: #1a252f;
}

    input:checked + .tab-label::after {
        transform: rotate(90deg);
    }

input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
}
.features-label-group {
    display:flex;
    align-items:center;
}
.features-number {
    display:block;
    border:1px #fff solid;
    border-radius:50%;
    width:35px;
    height:35px;
    margin-right:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*-- features extra accordion --*/
.accordion {
    padding: 0 200px;
}

    .accordion details:first-child {
        /*border-top: 1px solid rgba(255,255,255,0.2);*/
    }

    .accordion details {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 10px;
        border-radius: 10px;
        background: var(--dark-blue-grey);
        margin-bottom: 10px;
    }

        .accordion details summary {
            padding: 8px 0 8px 0;
            cursor: pointer;
            font-weight: 500;
        }

            .accordion details summary span {
                margin-left: 8px;
            }

            .accordion details summary::marker {
                margin-right: 20px !important;
                left: -20px;
            }

        .accordion details .answer {
            padding: 20px 0 0 0;
        }

            .accordion details .answer p:last-child {
                padding-bottom: 6px;
            }


.feature-detail,
h3.tips-detail{
    padding: 15px 0 10px 0;
}
    .feature-detail h3,
    h3.tips-detail{
        display: flex;
        font-size: 1.25rem;
        align-items: center;
    }
        .feature-detail h3 span.number,
        h3.tips-detail span.number {
            width: 30px;
            height: 30px;
            border: 2px #fff solid;
            border-radius: 50%;
            font-size: 1.125rem;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }


h4.tips-detail {
    padding: 15px 0 5px 0;
}
    h4.tips-detail {
        display: flex;
        font-size: 1.025rem;
        align-items: center;
    }

        h4.tips-detail span.number {
            width: 25px;
            height: 25px;
            border: 2px #fff solid;
            border-radius: 50%;
            font-size: 1.025rem;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
        }


/*-- pricing --*/

.toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:unset;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #010609;
    -webkit-transition: 0.4s;
    box-shadow: 2px 6px 25px #1e2321;
    transform: translate(0px, 0px);
    transition: 0.6s ease transform, 0.6s box-shadow;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: var(--primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
    border: 1px rgba(255,255,255,0.6) solid;
}

    .slider.round:before {
        border-radius: 50%;
    }



/*--- extra paddings ---*/
.p-35 {
    padding: 35px;
}
.p-50 {
    padding: 50px;
}
.p-65 {
    padding: 65px;
}

.p-100 {
    padding: 100px;
}
.p-lr-100{
    padding-left:100px;
    padding-right:100px;
}

.p-tb-def {
    padding-top: 120px;
    padding-bottom: 120px;
}
.p-l60 {
    color: rgba(255,255,255,0.6);
}
.p-o1{
    color:#fff;
}

/*--- colours overrite ---*/

.col-pink {
    color: var(--pink);
}

.col-maroon {
    color: var(--maroon);
}

.col-purple {
    color: var(--purple);
}

.col-blue {
    color: var(--blue);
}

.col-green {
    color: var(--green);
}

.col-yellow {
    color: var(--yellow);
}


.bg-grad-a {
    background: var(--grad-a);
}

.bg-grad-dark {
    background: var(--grad-dark);
}

.bg-grad-pink-maroon {
    background: var(--grad-pm)
}
    .bg-grad-pink-maroon:hover {
        background: var(--grad-pm)
    }
.bg-grad-pink-maroon a{
    color:#fff;
}


.bg-grad-purple-blue {
    background: var(--grad-pb)
}

.bg-primary {
    background: var(--primary);
}

.bg-secondary {
    background: var(--secondary);
}

.bg-blue-grey {
    background: var(--blue-grey);
}


/*--- white bg - overrite for dark bg ---*/
.white-bg {
    background: #fff;
    color: #333;
}

    .white-bg p,
    .white-bg label {
        color: #333;
    }

/*--- footer ---*/
footer{
    height:600px;
    position:absolute;
    bottom:0;
    width:100%;
    border-top:rgba(255,255,255,0.1) 1px solid;
}
    footer .inner {
        padding-top: 60px;
        height:500px;
        position:relative;
    }
    footer .inner li a{
        text-decoration:none;
        color:rgba(255,255,255,0.6);
    }
        footer .inner li a:hover{
            color:#fff;
        }
    footer a {
        color: rgba(255,255,255,0.6);
    }
    footer a:hover {
        color: #fff;
    }

.footer-logo {
    height:40px;
    margin-bottom:20px;
}

.footer-date-soc{
    border-top:1px rgba(255,255,255,0.2) solid;
    height:120px;
    position:absolute;
    bottom:0;
    width:100%;
    color:rgba(255,255,255,0.6);
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.footer-soc {
    margin:0;
    padding:0;
    display:flex;
}
.footer-soc li{
    list-style-type:none;
    margin-left:5px;
}
    .footer-soc li a{
        display:block;
        border:1px rgba(255,255,255,0.6) solid;
        width:35px;
        height:35px;
        border-radius:50%;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .footer-soc li a:hover{
        background:#fff;
        color:#333 !important;
    }

.demo-success {
    font-size: 4.5rem;
    color: #00d639;
    text-align:center;
}

/*--- badge for demo ---*/
.badge-pos {
    position: absolute;
    right: -95px;
    top: 185px;
}

.badge {
    position: relative;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    transform: rotate(-20deg);
    text-align: center;
    filter: drop-shadow(0.25em 0.7em 0.95em rgba(0, 0, 0, 0.8));
    font-size: calc(11px + 14 * ( (100vw - 420px) / ( 860) ));
}

/*==================================================
MEDIA QUERIES
==================================================*/
@media (max-width:1680px) {
}
@media (max-width:1440px) {
}
@media (max-width:1366px) {
    .hero h1 {
        font-size: 70px;
    }
    .p-features .col-md-3,
    .p-pricing .col-md-3{
        flex: 0 0 auto;
        width: 50%;
        margin-bottom: 25px;
    }
}
@media (max-width:1280px) {
}
@media (max-width:1024px) {
    .main-header .nav-links .nav-link {
        padding: 0.125rem;
    }
    .hero h1 {
        font-size: 56px;
        min-height: 370px;
    }
    .hero h3 {
        color: #ffffff;
        margin: -50px 0 20px -50px;
    }
    .hero .quote {
        padding: 10px 150px 5px 150px;
    }
    .p-65 {
        padding: 25px;
    }
    .p-5 {
        padding: 1.5rem !important;
    }
    h2 {
        font-size: 28px;
        line-height: 40px;
    }
    .com-icons-col {
        margin: 5px 5px;
    }
        .com-icons-col .com-icons {
            width: 85px;
            height: 85px;
        }
}
@media (max-width:960px) {
    .main-header .logo a img {
        height: 45px;
    }
    .main-header .nav-links .nav-link a {
        padding: 10px 10px;
    }
    .hero h1 {
        font-size: 44px;
        min-height: 325px;
        padding: 120px 60px 30px 60px;
    }
    .hero .quote {
        padding: 10px 50px 5px 50px;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-rev {
        flex-direction: column-reverse;
    }
    .hp-features .d-flex {
        display: block !important;
    }
    .com-icons-col {
        margin: 5px 5px;
        width: 30%;
        flex: unset
    }

    .col-md-7,
    .col-md-5,
    .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
    }

    .p-features .col-md-3, .p-pricing .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 25px;
    }
    .dev-left-ver {
        border-left: unset;
    }
    .hero {
        border-bottom: unset;
    }

    body {
        padding-bottom: 1000px;
    }

    footer,
    footer .inner {
        height: 1000px;
    }

        footer .col-md-7,
        footer .col-md-5,
        footer .col-md-4,
        footer .col-md-3 {
            flex: 0 0 auto;
            width: 100%;
        }

        footer .col-md-5,
        footer .col-md-4 {
            margin-bottom: 25px;
        }

}
@media (max-width:768px) {
    body {
        background-image: url(/img/bgMainTopM.jpg), url(/img/bgMainBottomM.jpg);
    }
    .badge-pos {
        position: absolute;
        right: 0px;
        top: 130px;
    }
        .tips-copy {
            padding: 50px 50px;
        }
        .main-header .nav-links .nav-link a {
            padding: 15px;
            border-radius: 0;
            border-bottom:1px rgba(255,255,255,0.3) solid;
        }
        .dropdown-menu.show {
            display: block;
            width: 100%;
        }
        .main-header .nav-links .nav-link:last-child a {
            background-color: var(--primary);
            border-radius: unset; 
        }
    }
@media (max-width:640px) {
            .hero h1 {
                font-size: 40px;
                min-height: 305px;
                padding: 100px 10px 30px 10px;
            }

        h3 {
            font-size: 22px;
            line-height: 35px;
        }

        .hero .quote {
            padding: 10px 20px 5px 20px;
        }

        .tips-head-h2 {
            padding: 0 20px;
            font-size: 40px;
        }
    }
@media (max-width:568px) {
        section {
            padding-top: 60px;
            padding-bottom: 60px;
            padding-left: 25px;
            padding-right: 25px;
        }

        .gen-info {
            padding: 15px;
        }

        .hero h3 {
            margin: 0 0 20px 0;
        }

        footer .inner {
            padding: 60px 50px;
        }

        .p-lr-100 {
            padding-left: 25px;
            padding-right: 25px;
        }

        .tips-head-h2 {
            font-size: 32px;
        }

        .tips-copy {
            padding: 25px;
        }

        .footer-date-soc {
            border-top: unset;
            height: 120px;
            width: unset;
            display: block;
        }
    }
@media (max-width:480px) {
        .hero h1 {
            font-size: 34px;
            min-height: 210px;
            padding: 100px 0px 30px 0px;
        }

        .hero h3 {
            margin: 25px 0 20px 0;
            font-size: 18px;
            line-height: 30px;
        }

        h2 {
            font-size: 24px;
            line-height: 36px;
        }

        .gen-info {
            padding: 5px;
        }

        .gen-info-grey {
            padding: 10px;
        }

        section {
            padding-left: 15px;
            padding-right: 15px;
        }

        .p-5 {
            padding: 0.5rem !important;
        }

        footer .inner {
            padding: 30px 25px;
        }

        .p-4 {
            padding: unset !important;
        }

        .mb-mob {
            margin-bottom: 45px;
        }
        .btn-mob {
            width: 100%;
        }
    }
@media (max-width:360px) {
        .hero h1 {
            font-size: 26px;
        }
        .btn{
            padding:10px 30px;
        }
        .sp-header-intro {
            font-size: 16px;
        }
        .com-icons-col {
            width: 29%;
        }
        .git-banner-img {
            height: 230px;
        }
        .git-inner {
            padding: 25px;
        }
        .tips-head-h2 {
            font-size: 26px;
        }
        .tips-copy {
            padding: 25px 5px;
        }
    }



@media screen and (max-width: 420px) {
    .badge {
        font-size: 11px;
    }
}

@media screen and (min-width: 1280px) {
    .badge {
        font-size: 25px;
    }
}

.badge::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 10em;
    height: 10em;
    border-radius: 100%;
    background: #111;
    opacity: 0.8;
    transition: opacity 0.3s linear;
}

.badge:hover {
    color: #fff;
    text-decoration: none;
    transform: rotate(0deg);
}

    .badge:hover::before {
        opacity: 0.9;
    }

.badge svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 0;
    width: 10em;
    height: 10em;
}

.badge span {
    display: block;
    background: var(--primary);
    border-radius: 0.4em;
    padding: 0.4em 1em;
    z-index: 1;
    min-width: 11em;
    /*border: 1px solid;*/
    text-transform: uppercase;
}
.blog-intro {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height:1.3em;
    height:6.5em;
    overflow:hidden
}
.text-danger, .validation-summary-errors{color:red!important}