/* Minification failed. Returning unminified contents.
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(74,21): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(103,17): run-time error CSS1039: Token not allowed after unary operator: '-red'
(107,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(111,17): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(182,26): run-time error CSS1039: Token not allowed after unary operator: '-white'
(183,21): run-time error CSS1039: Token not allowed after unary operator: '-black'
(187,21): run-time error CSS1039: Token not allowed after unary operator: '-white'
(188,26): run-time error CSS1039: Token not allowed after unary operator: '-red'
(197,26): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(205,21): run-time error CSS1039: Token not allowed after unary operator: '-white'
(206,26): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(284,21): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(362,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(368,22): run-time error CSS1039: Token not allowed after unary operator: '-red'
(372,17): run-time error CSS1039: Token not allowed after unary operator: '-red'
(400,26): run-time error CSS1039: Token not allowed after unary operator: '-white'
(489,22): run-time error CSS1039: Token not allowed after unary operator: '-red'
(497,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(526,22): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(538,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(547,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(681,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(744,22): run-time error CSS1039: Token not allowed after unary operator: '-red'
(748,26): run-time error CSS1039: Token not allowed after unary operator: '-white'
(801,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(843,22): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(856,22): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(869,22): run-time error CSS1039: Token not allowed after unary operator: '-lightorange'
(873,22): run-time error CSS1039: Token not allowed after unary operator: '-white'
(905,22): run-time error CSS1039: Token not allowed after unary operator: '-black'
(988,17): run-time error CSS1039: Token not allowed after unary operator: '-orange'
(1063,26): run-time error CSS1039: Token not allowed after unary operator: '-red'
(1074,30): run-time error CSS1039: Token not allowed after unary operator: '-red'
(1087,22): run-time error CSS1039: Token not allowed after unary operator: '-lightorange'
(1264,37): run-time error CSS1039: Token not allowed after unary operator: '-cards-count'
(1264,57): run-time error CSS1039: Token not allowed after unary operator: '-card-height'
(1269,22): run-time error CSS1039: Token not allowed after unary operator: '-red'
(1447,34): run-time error CSS1039: Token not allowed after unary operator: '-lightorange'
(1525,28): run-time error CSS1039: Token not allowed after unary operator: '-red'
(1551,32): run-time error CSS1039: Token not allowed after unary operator: '-orange'
 */
@import url('fonts/font.css');
@import url('lib/bootstrap-grid.css');
@import url('lib/bootstrap.min.css');
@import url('lib/magicalscroller.css');
@import url('lib/font-awesome.min.css');

/*common style*/
:root {
    --red: #981c1f;
    --orange: #c3662d;
    --black: #232020;
    --white: #fff;
    --lightorange: #fbeee5;
    --yellow: #f3b03d;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #d1d1d1;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    text-align: justify;
    
  
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: "Gabarito";
    overflow-x: hidden;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

ul li {
    list-style: none;
}

/* Links */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        text-decoration: none;
        color: var(--orange)
    }
/* Global Reset */

/*common Class*/
.font-80 {
    font-size: 8rem;
    letter-spacing: 0.5px;
}

.font-60 {
    font-size: 6rem;
    letter-spacing: 0.5px;
}

.font-40 {
    font-size: 4rem;
}

.font-28 {
    font-size: 2.8rem;
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.text-red {
    color: var(--red)
}

.text-black {
    color: var(--black)
}

.text-orange {
    color: var(--orange)
}

.text-uppercase {
    text-transform: uppercase;
}

.section {
    padding: 7rem 0;
}

.mxw-90 {
    max-width: 90%;
}

.overflow-x-hidden {
    overflow: hidden;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

.mt-70 {
    margin-top: 7rem;
}

.bottom-fadeup-2 {
    transition: all ease 1s;
    opacity: 0;
    margin-top: 5%;
}

    .bottom-fadeup-2.active {
        opacity: 1;
        margin-top: 0%;
    }

.bottom-fadeup-3 {
    transition: all ease 1s;
    opacity: 0;
    margin-top: 2%;
}

    .bottom-fadeup-3.active {
        opacity: 1;
        margin-top: 0%;
    }
/*common Class*/
/*button Css*/
.common-btn {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.common-btn {
    border: 1px solid transparent;
    border-radius: 30px;
    display: flex;
    padding: 1rem 2.5rem;
    position: relative;
    width: fit-content;
}

    .common-btn.white {
        background: var(--white);
        color: var(--black);
    }

    .common-btn.red {
        color: var(--white);
        Background: var(--red);
    }

        .common-btn.red span > img {
            filter: invert(1)
        }

    .common-btn::before,
    .common-btn::after {
        background: var(--orange);
        content: '';
        position: absolute;
        z-index: -1;
        border-radius: 30px;
    }

    .common-btn:hover {
        color: var(--white);
        background: var(--orange);
    }

        .common-btn:hover img {
            filter: invert(1)
        }
/* BUTTON 1 */
.btn-1::after {
    height: 0;
    left: 0;
    top: 0;
    width: 100%;
}

.btn-1:hover:after {
    height: 100%;
}
/*button Css*/
.help-container {
    position: fixed;
    right: 0;
    bottom: 25%;
    z-index: 2;
    background: #fff;
    border-radius: 4rem 0rem 0 4rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
/*header Start*/
.nav-wrap {
    width: 40rem;
    background: url('../images/home/navigation-bg.svg') no-repeat center;
    background-size: cover;
    position: fixed;
    top: 0;
    right: -40rem;
    margin: 0;
    text-align: left;
    z-index: 999;
    height: 100%;
    padding: 4rem 3rem;
}
/*body.hidden {
    overflow:hidden;
}
body.hidden::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #0009;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
}
*/
.menu li:first-child {
    padding-bottom: 2.5rem;
}

.nav-wrap li {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #929292;
}

.dropdown_list {
    margin-bottom: 2.5rem;
}

.nav-wrap li a {
    color: #fff;
    font-weight: 600;
}

    .nav-wrap li a:hover {
        color: var(--orange);
    }

.nav-wrap {
    transition: right 300ms ease-out;
    -webkit-transition: right 300ms ease-out;
}

.dropdown_list a {
    display: block;
    font-size: 2rem;
    font-weight: normal !important;
    padding-left: 2.4rem;
    position: relative;
}

    .dropdown_list a:after {
        content: '';
        width: 5px;
        height: 5px;
        background: #fff;
        position: absolute;
        left: 10px;
        top: -3px;
        bottom: 0;
        margin: auto;
    }


.nav-wrap.active {
    right: 0;
}

.close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 1;
    cursor: pointer;
}

    .close:before, .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 3px;
        background-color: #fff;
    }

    .close:before {
        transform: rotate(45deg);
    }

    .close:after {
        transform: rotate(-45deg);
    }
.alert-dismissible .close {
    top: 4px;
    right: 10px;
}
.alert-dismissible {
    margin-bottom: 2rem;
}
    .alert-dismissible .close span{ font-size: 30px; }


    .main-header {
        position: fixed;
        width: 100%;
        z-index: 10000;
        padding: 3rem 0;
        transition: 0.3s ease-out;
    }

.fixed {
    background: var(--white);
    box-shadow: 0 2px 38px 0 rgba(0,0,0,.3);
    padding: 1.5rem 0;
}

.main-header.fixed .hamburger div span {
    background: var(--red)
}

.main-header.fixed .hamburger .menu {
    color: var(--red)
}

.main-header.fixed .logo-white {
    display: none;
}

.main-header .logo-orange {
    transition: 0.3s ease-out;
}

.main-header.fixed .logo-orange {
    display: block !important;
    height: 10rem;
}

.hamburger .menu {
    font-size: 4rem;
    color: #fff;
    margin-right: 3rem;
}

.hamburger {
    cursor: pointer;
}

    .hamburger div span {
        height: 0.6rem;
        background: var(--white);
        display: block;
    }

        .hamburger div span:nth-child(1) {
            width: 4rem;
        }

        .hamburger div span:nth-child(2) {
            width: 2.8rem;
            margin-top: 1rem;
        }

        .hamburger div span:nth-child(3) {
            width: 1.8rem;
            margin-top: 1rem;
        }
/*header Start*/

/*Home Banner Start*/
.banner {
    position: relative;
}

    .banner:after {
        content: '';
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.4;
        position: absolute;
        top: 0;
        left: 0;
    }

.benner-heading {
    position: absolute;
    top: 0;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    z-index: 1;
}

    .benner-heading .banner-main-heading {
        font-size: 8rem;
        text-transform: uppercase;
        line-height: 1.1;
        font-weight: 100;
    }

        .benner-heading .banner-main-heading span {
            font-weight: 600;
        }

    .benner-heading p {
        font-size: 3.4rem;
        line-height: 5rem;
        /*line-height: 5rem;*/
        margin: 4rem 0;
    }
/* animation class and keyframes */
.overflow-hidden {
    overflow: hidden;
}

.drop-in {
    animation: drop-in 1s ease 200ms backwards;
}

.drop-in-2 {
    animation: drop-in 1200ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}
/*Home Banner Start*/

/*Counter Section*/
.counter-main-div {
    background: var(--red);
    padding: 5rem 0;
    margin-top: -15rem;
    position: relative;
}

.couner-inner-div {
    display: flex;
    color: var(--white);
    justify-content: center;
    align-items: baseline;
    line-height: normal;
    position: relative;
}

    .couner-inner-div p {
        margin-left: 2rem;
        position: relative;
    }

        .couner-inner-div p span {
            font-size: 12rem;
            font-weight: 700;
        }

        .couner-inner-div p sup {
            font-weight: normal;
            font-size: 6rem;
            position: absolute;
            top: 1rem;
            right: -2rem;
        }

.border-yellow:after {
    content: '';
    width: 0.4rem;
    height: 8rem;
    background: var(--yellow);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.counter-main-div span {
    text-align: center;
    display: block;
    line-height: normal;
    color: var(--white);
    font-size: 3.4rem;
    margin-top: -1rem;
    font-weight: 400;
}
/*Counter Section*/

/*map Section*/
.map-card {
    background: var(--white);
    padding: 7rem;
    border-radius: 7rem;
}

    .map-card p {
        margin: 4rem 0;
    }

.map-image {
    position: relative;
}

    .map-image a {
        /*background: url(../images/icons/scrapfacilities.svg) no-repeat center;*/
        width: 3.3rem;
        height: 4.4rem;
        background-size: contain;
        position: absolute;
        opacity: 1;
        display: flex;
        justify-content: center;
    }

/* Style text tooltip */
.tooltipText {
    background-color: #c3662d;
    position: absolute;
    bottom: 130%;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.4rem;
    opacity: 0;
    display: none;
    transition: all .5s;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    width: 25rem;
    font-weight: 400;
    margin-left: 30px;
}
    .tooltipText img {
        margin-bottom:10px;
    }
    /*  Membuat dan style tip*/
    .tooltipText::after {
        content: '';
        border-width: 0.8rem;
        border-style: solid;
        border-color: #c3662d transparent transparent transparent;
        position: absolute;
        top: 100%;
        left: 40%;
    }




/* Hover text tooltip */
.map-image a {
    width: 3rem;
    border-radius: 50%;
}

    .map-image a:hover .tooltipText {
        opacity: 1;
        display: block;
    }


    .map-image a:nth-child(2) {
        top: 29%;
        right: 7.4%;
    }

    .map-image a:nth-child(3) {
        bottom: 49%;
        right: 26%;
    }

        .map-image a:nth-child(3) span {
            background: #dfdfdf;
            color: #212529;
        }

            .map-image a:nth-child(3) span:after {
                border-color: #dfdfdf transparent transparent transparent;
            }

    .map-image a:nth-child(4) {
        top: 35%;
        right: 5.5%;
    }

    .map-image a:nth-child(5) {
        top: 46%;
        right: 15.8%;
    }

    .map-image a:nth-child(6) {
        right: 6%;
        top: 23%;
    }

    .map-image a:nth-child(7) {
        top: 20%;
        right: 27%;
    }

    .map-image a:nth-child(8) {
        right: 11%;
        bottom: 18%;
    }

    .map-image a:nth-child(9) {
        right: 23.3%;
        bottom: 57%;
    }

    .map-image a:nth-child(10) {
        top: 19%;
        right: 34.5%;
    }


/*map Section*/

/*Process Section*/
/*.process {
    background: var(--lightorange);
}*/

.process-timeline {
    background: var(--white);
    padding: 5rem;
    border-radius: 4rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-left: 10rem;
}

/*    .step b {
        font-size: 4rem;
        color: var(--red);
        letter-spacing: 1px;
        font-weight: normal;
    }*/

.timeline .step:last-child {
    padding-bottom: 0;
}

.timeline .step span {
    position: absolute;
    height: 100%;
    width: 2px;
    background: #232020;
    left: 3.5rem;
    top: 5px;
}
/*
.step:before {
    content: '01';
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #fbeee5;
    position: absolute;
    outline: 1.5rem solid #981c1f;
    left: 4rem;
    top: 13px;
    z-index: 0;
}
*/
#section1 .image {
    background-image: url('../images/home/process1.jpg');
}

#section2 .image {
    background-image: url('../images/home/process2.jpg');
}

#section3 .image {
    background-image: url('../images/home/process3.jpg');
}

#section4 .image {
    background-image: url('../images/home/process4.jpg');
}
/*Process Section*/

/*products*/
.products {
    background: var(--red);
}

    .products .product-card {
        background: var(--white);
        position: relative;
        border-radius: 4rem;
        overflow: hidden;
        max-width: 97%;
        margin: auto;
    }

.product-card {
    position: relative;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

    .product-card .product-img {
        width: 100%;
        position: relative;
    }

.product-img .white-icon {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 5rem;
    opacity: 1;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}

.product-img:after {
    content: '';
    background: linear-gradient(0deg, rgba(243,176,61,1) 25%, rgba(255,255,255,0) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 5rem;
}

.newsCaption {
    position: absolute;
    top: auto;
    bottom: 0;
    opacity: 1;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 1.6rem 6rem 5rem 6rem;
    -webkit-transform: translateY(80%);
    transform: translateY(77%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s;
}

    .newsCaption p {
        text-align:left
    }

.newsCaption-title {
    margin-top: 0px;
}

.newsCaption-content {
    margin: 0;
}

.newsCaption-link {
    color: #fff;
    text-decoration: underline;
    opacity: 1;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}

.product-name-white {
    transition: 0.5s ease-out;
}

.newsCaption-link:hover {
    opacity: 1;
    background: var(--yellow)
}

.news-Slide-up:hover .product-name-white {
    display: none;
}

.news-Slide-up:hover .white-icon {
    opacity: 0;
}

.news-Slide-up:hover .newsCaption {
    padding: 4rem 6rem;
    background: var(--yellow);
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: opacity 0.1s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
}

/*products*/
/*Team Section*/
.team, .overview-section {
    background: var(--lightorange)
}

.team-card {
    background: var(--white);
    text-align: center;
    padding-bottom: 4rem;
    border-radius: 4rem;
    max-width: 98%;
    transition: 0.3s ease-out;
}

    .team-card h6, .team-card p {
        text-align: center;
    }

    .team-card img {
        border-radius: 4rem;
    }

    .team-card:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }
/*Team Section*/
.partnersswiper {
    overflow: hidden;
}

.parners-logo {
    background: #eeeeee;
    padding: 3rem;
    border-radius: 2.5rem;
    max-width: 98%;
}

.home-contect {
    background: var(--black);
    border-radius: 5rem;
    padding: 5rem;
}

    .home-contect img {
        border-radius: 5rem;
    }

.form.active label {
    transform: translateY(-2.2rem);
    visibility: visible;
    font-size: 2rem;
}

.form__input {
    padding: 1rem 0 1.5rem 0;
    border: none;
    background: transparent;
    border-bottom: 2px solid #fff;
    width: 100%;
    line-height: 4rem;
}

.contact-form .form__input {
    border-bottom: 2px solid #232020;
    color: #232020;
}

    .contact-form .form__input:focus {
        border-bottom: 2px solid #981c1f;
    }

.form__input:focus {
    outline: none;
    border-bottom: 2px solid #fff;
}

    .form__input:focus:invalid {
        border-bottom: 2px solid #981c1f;
    }

.form {
    margin-bottom: 4rem;
}

.form__label {
    position: absolute;
    top: 1rem;
    pointer-events: none;
    transition: all 0.3s;
}

.contact-footer a {
    font-weight: 500;
}

.top-footer, .footer-bottom {
    border-bottom: 1px solid;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
}

    .footer-bottom h6 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

.social-links ul li {
    margin-right: 0.8rem;
}

.quick-link ul li {
    padding-bottom: 1.5rem;
}

.certificate {
    border: 1px solid #cccccc9e;
    border-radius: 1rem;
    padding: 1rem;
}

a:hover {
    color: var(--orange);
}


/*inner page*/

.top-banner {
    position: relative;
}

    .top-banner img {
        height: 90vh;
        width: 100%;
        object-fit: cover;
    }

    .top-banner.team img {
        height: 100vh;
    }

    .top-banner .text-banner {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: fit-content;
    }

    .top-banner h2 {
        letter-spacing: 0.3rem;
        position: relative;
        z-index: 2;
        margin:0;
    }

.about-page {
    background: url('../images/about/bg1.png') bottom no-repeat;
}

    .about-page .heading {
        position: relative;
    }

    .about-page .head-2:before {
        content: '';
        position: absolute;
       /* background: url(../images/icons/logo_org.svg) no-repeat center;*/
        height: 8rem;
        width: 8rem;
        background-size: contain;
        left: -9rem;
        top: -5px;
    }
/*vimal css*/
.main-time-line-slider {
    min-height: 47rem;
}

.overview-section .swiper-button-next, .overview-section .swiper-button-prev {
    background-image: none;
    background-size: contain;
    width: 5rem;
    height: 5rem;
}

.timeline-box {
    position: relative;
    padding-bottom: 4rem;
}

    .timeline-box .small-curcle, .timeline-box .big-curcle {
        width: 108%;
        height: 0.6rem;
        background: var(--red);
        position: absolute;
        bottom: 0;
        left: 0;
    }

        .timeline-box .small-curcle:before {
            content: '';
            position: absolute;
            width: 2rem;
            height: 2rem;
            background: var(--red);
            border-radius: 50%;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

.swiper-slide.small-round.swiper-slide-next .timeline-box .small-curcle:before {
    content: '';
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: var(--lightorange);
    border-radius: 50%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid #981c1f;
    display: block;
}

.swiper-slide.small-round.swiper-slide-next .timeline-box .small-curcle:after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    outline: 1rem #981c1f solid;
    border-radius: 50%;
    left: 17px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
}

.timeline-text {
    max-width: 28rem;
    margin: auto;
    text-align: left;
    min-height: 17rem;
}

    .timeline-text.box-bottom {
        transform: translateY(145%);
    }

.swiper-control {
    width: 140px;
    position: absolute;
    top: 0rem;
    right: 0;
}

.overview-section .swiper-button-next, .historyswiper .swiper-button-next {
    background: url(../images/icons/left-icon-red.svg) center no-repeat;
}

.overview-section .swiper-button-prev, .historyswiper .swiper-button-prev {
    background: url(../images/icons/right-icon-red.svg) center no-repeat;
}

.teamswiper .swiper-wrapper {
    padding-bottom: 10rem;
}

.swiper-control-team {
    width: 140px;
    position: absolute;
    bottom: 3rem;
    right: 0;
    left: 0;
    margin: auto;
}
    .swiper-control-team .swiper-button-next, .historyswiper .swiper-button-next {
        left: 0;
        right: auto;
    }

    .swiper-control-team .swiper-button-prev, .historyswiper .swiper-button-prev {
        right: 0;
        left: auto;
    }
    .wrapper {
        position: relative;
    }

.item {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s ease-out;
}

.yellow-curcle {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
/*.item.active {
    background: #e9a039;
}*/
.over-full {
    height: 75rem;
    width: 75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
}

svg {
    height: 476px;
    width: 476px;
    overflow: visible;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.st0 {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
    stroke-miterlimit: 1;
}

.start {
    display: none;
}

    .start.active-text {
        display: block;
    }

    .start span {
        display: block;
        margin-bottom: 2.4rem;
        text-transform: uppercase;
    }

#prev, #next {
    border: 0;
    background: transparent;
    border-radius: 50%;
}

.process .card {
    position: sticky;
    top: 17rem;
    background: unset;
    border: 0;
}

.card__inner {
    will-change: transform;
    background: rgba(243, 176, 61, 1) 25%;
    border-radius: 4rem;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsl(265.3deg 20% 10% / 10%);
    transform-origin: center top;
}

.cards {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 40px 0;
}

.card.bg-red .card__inner {
    background: var(--red);
    color: #fff;
}

.card.bg-red .step:before {
 background: #981c1f;
   /* outline: 1rem solid #fff7f7;*/
}

.card__image-container {
    display: flex;
    width: 40%;
    flex-shrink: 0;
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 0;
    border-radius: 4rem;
}

.card__content {
    padding: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card__title {
    padding: 0;
    margin: 0;
    font-size: 60px;
    font-weight: 600;
    color: #16263a;
}

.card__description {
    line-height: 1.4;
    font-size: 24px;
    color: #16263a;
}

/*contact*/
.accordion-title:before {
    content: '';
    background: url(../images/icons/minus-red.svg) no-repeat center;
    width: 3.2rem;
    height: 3.2rem;
}

.accordion-title {
    font-weight: 700;
}

    .accordion-title.collapsed:before {
        background: url(../images/icons/plus-red.svg) no-repeat center;
        width: 3.2rem;
        height: 3.2rem;
    }

    .accordion-title.collapsed {
        font-weight: 600;
    }

#accordion .card-link {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

#accordion .card-header {
    padding: 2.5rem 0;
    background-color: unset;
    border: 0;
}

#accordion .card {
    background-color: unset;
    border: 0;
    border-bottom: 1px solid #232020;
}

.job-description ul li {
    margin-bottom: 1.5rem;
}

.facility-address {
    width: 50%;
}
.facility-img {
    margin-right: 4rem;
    width: 50%;
    border-radius: 2.5rem;
    overflow:hidden;
}
    .facility-img img {
        transition:0.5s ease-out;
    }
    .facility-img:hover img {
        transform: scale(1.2)
    }

.facility-address p {
    padding-left: 5rem;
    margin-top: 2rem;
    text-align:left;
}

    .facility-address p:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        background: url(../images/icons/lockation.svg) center no-repeat;
        width: 30px;
        height: 45px;
    }

.main-facilities .mxw-90 {
    padding: 4rem 0;
    border-bottom: 1px solid #23202040;
    margin:auto;
    height:100%;
}
/*contact*/

/*Team*/
.team-section {
    position:relative;
}
/*    .team-section:before {
        content: '';
        background: url(../images/icons/logo-left-top.png) repeat-y top;
        width: 52%;
        height: 100%;
        position: absolute;
        left: 0;
        opacity: 0.1;
    }*/
/*    .team-section:after {
        content: '';
        background: url(../images/icons/logo-left-top.svg) repeat-y center;
        width: 292px;
        height: 325px;
        position: absolute;
        right: -10rem;
        top:17%;
        opacity: 0.1;
    }*/
        .team-card-inner {
            margin-bottom: 10rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: calc(100% - 100px);
            position:relative;
        }
            .team-card-inner a {
                background:url(../images/icons/in.svg) center no-repeat;
                height:38px;
                width:38px;
                background-size:cover;
                margin:0 auto;
                transition:0.1s ease-out;
            }
                .team-card-inner a:hover {
                    background: url(../images/icons/in-orange.svg) center no-repeat;
                }
                .team-card-inner.border {
                    border: 0 !important;
                }
            .team-card-inner.border::after {
                content: '';
                width: 2px;
                height: 100%;
                background: var(--lightorange);
                position: absolute;
                right: -4rem;
            }
            .team-card-inner > div {
                border-radius: 2.5rem;
                overflow: hidden;
            }
    .team-card-inner > div img {
        transition:0.5s ease-out;
    }
    .team-card-inner:hover > div img {
        transform: scale(1.1)
    }
/*Team*/

/*privacy policy*/
.card-gradient {
    background-image: linear-gradient(to right, #f3b03e 0%, #c3662d 49%, #981c20 85%, #981b1f 100%);
    color: #ffffff;
    max-width: 40rem;
    padding: 3rem;
    position: sticky;
    top: 14rem;
    text-align: right;
    transition: all ease .5s;
    border: 0;
}

    .card-gradient:before {
        border-bottom: 15px solid transparent;
        border-left: 15px solid #961c1f;
        border-top: 15px solid transparent;
        content: '';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

    .card-gradient .h5 {
        font-size: 2.8rem;
        font-weight: 600;
        margin: 0;
    }

nav:not(.sticked) + .body-content .card-gradient {
    top: 16rem;
}

.policy-wrapper .card:not(.card-gradient) {
    border: 0;
    padding: 3rem;
}

    .policy-wrapper .card:not(.card-gradient) h6 {
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 2.4rem;
        color: #981c1f;
    }

    .policy-wrapper .card:not(.card-gradient) p,
    .policy-wrapper .card:not(.card-gradient) .ul-list2 {
        font-size: 2rem;
    }

        .policy-wrapper .card:not(.card-gradient) .ul-list2 li:before {
            top: .1rem;
        }

/*BackTopButton*/
#button {
    display: inline-block;
    background-color: var(--red);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #button::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        font-size: 3rem;
        line-height: 50px;
        color: #fff;
    }

    #button:hover {
        cursor: pointer;
        background-color: var(--orange);
    }

    #button.show {
        opacity: 1;
        visibility: visible;
    }


/*BackTopButton*/

/*Products Section*/
.text-wrapper {
  max-width:89rem;
  margin-left:auto;
  margin-right:auto;
}

p.subhead {
    max-width:60%;
    margin:2rem auto;
}
.product-container {
    margin-top:5rem;
}
.product-box h5 {
    border-bottom: 1px solid #aba8a8;
    padding-bottom: 2.5rem;
    margin: 0;
}
.product-name {
    margin-bottom:1rem;
    position:relative;
}
.inner {
    margin-bottom: 1rem;
}
.inner a::after {
    content: '';
    position: absolute;
    background: url(../images/icons/download.svg) no-repeat center;
    width: 23px;
    height: 24px;
    background-size: contain;
    top: 5px;
    left: -3.7rem;
}
.prod-single-box {
    padding: 3rem 0;
    border-bottom: 1px solid #aba8a8;
    transition:0.3s ease-out;
}
    .prod-single-box:hover {
        border-color:#981c1f;
    }
    .prod-single-box .prod-img {
        width: 35%;
    }
        .prod-single-box .prod-img img {
            border-radius:1rem;
        }
        .prod-description {
            width: 65%;
            padding-left: 4rem;
        }
.prod-location {
    background:url(../images/team/team.jpg) no-repeat top;
    height:100vh;
    width:100%;
}
.prod-location:after {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.4;
}
.location-content {
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    margin: auto;
    height:fit-content;
}

/*Products Section*/




@media(max-width:1599px) {
    body {
        font-size: 2rem;
    }

    .main-header .logo-white {
        height: 12rem;
    }

    .hamburger .menu {
        font-size: 3rem;
    }

    .hamburger div span {
        height: 0.5rem;
    }

        .hamburger div span:nth-child(1) {
            width: 3.5rem;
        }

        .hamburger div span:nth-child(2) {
            width: 2.5rem;
            margin-top: 0.7rem;
        }

        .hamburger div span:nth-child(3) {
            width: 1.5rem;
            margin-top: 0.7rem;
        }

    .hamburger .menu {
        margin-right: 2rem;
    }

    .benner-heading .banner-main-heading {
        font-size: 6rem;
    }

    .benner-heading p {
        margin: 3rem 0;
    }

    .counter-main-div {
        padding: 3rem 0
    }

    .couner-inner-div p span {
        font-size: 10rem;
    }

    .counter-main-div span {
        font-size: 3rem;
    }

    .counter-main-div img {
        height: 7rem;
    }

    .help-container img {
        height: 4rem;
    }

    .font-60 {
        font-size: 4rem;
    }

    .font-40 {
        font-size: 3.2rem;
    }

    .font-80 {
        font-size: 5rem;
    }

    .form {
        margin-bottom: 2rem;
    }

    .product-name {
        padding: 3rem;
    }

        .white-icon, .prod-icon img {
            height: 8rem;
        }

    .map-card {
        padding: 5rem;
    }

    .team-card {
        padding-bottom: 2rem;
    }
    .timeline-text.box-bottom {
        transform: translateY(160%);
    }
    .timeline-text {
        min-height:14rem;
    }
    .over-full {
        height: 55rem;
        width: 55rem;
    }
    svg {
        height:35rem;
        width:35rem;
    }
    .item {
        font-size:2rem;
    }
}

@media(max-width:1399px) {
    .mxw-lg-90 {
        max-width:90%;
    }
    .counter-main-div {
        margin-top: -5rem;
    }

    .nav-wrap {
        width: 35rem;
        height: 100vh;
        overflow-y: auto;
    }

    .benner-heading .banner-main-heading {
        font-size: 3.6rem;
    }

    .main-header .logo-white {
        height: 10rem;
    }

    .benner-heading p {
        line-height: 3rem;
        font-size: 2.6rem;
    }

    .benner-heading .banner-main-heading {
        font-size: 4rem;
    }

    .benner-heading p {
        margin: 2rem 0;
    }

    .benner-heading p {
        line-height: 4rem;
        font-size: 2.8rem;
    }

    .couner-inner-div p span {
        font-size: 8rem;
    }

    .step {
        padding-bottom: 40rem;
    }

    .font-40 {
        font-size: 2.8rem;
    }

    .counter-main-div img {
        height: 5rem;
    }

    .counter-main-div span {
        font-size: 2.6rem;
    }

    .couner-inner-div p sup {
        font-size: 4rem;
    }

    .product-card .white-icon, .product-name .prod-icon img {
        height: 6rem;
    }

    .product-img .white-icon {
        position: absolute;
        bottom: 3rem;
        left: 3rem;
    }

    .newsCaption {
        padding: 0.6rem 2rem 5rem 3rem;
    }

    .product-name {
        padding: 2rem;
    }

    .footer-logo img {
        height: 12rem;
    }

    .common-btn {
        padding: 1rem 2rem;
    }

    .font-80 {
        font-size: 4rem;
    }

    .form {
        margin-bottom: 1rem;
    }
    .card__content {
        padding:4.5rem;
    }
    .team-card-inner.mxw-md-90 {
        margin-left: auto;
        margin-right: auto;
    }
    .team-card-inner.border::after {
        right:-3rem;
    }
    .facility-address .font-28{
        font-size:2rem;
    }
    .facility-address p {
        font-size: 1.6rem;
        padding-left: 3.5rem;
        margin-top: 1.5rem;
    }
        .facility-address p:before {
            width: 25px;
            height: 28px;
            background-size: contain;
        }
    .facility-img {
        border-radius:2rem;
    }

    .product-box.mxw-90 {
        max-width:95%;
    }
    .prod-description {
        padding-left:6rem;
    }
}

@media(max-width:1199px) {
    .main-header .logo-white, .main-header.fixed .logo-orange {
        height: 7rem;
    }

    .counter-main-div {
        margin-top: -2rem;
    }

    .hamburger .menu {
        font-size: 2.6rem;
        margin-right: 1.5rem;
    }

    .benner-heading .banner-main-heading {
        font-size: 3.2rem;
    }

    .hamburger div span:nth-child(1) {
        width: 2.5rem;
    }

    .hamburger div span:nth-child(2) {
        width: 2rem;
    }

    .help-container img {
        height: 3rem;
    }

    .help-container {
        padding: 1rem 1rem 0.5rem 1rem;
    }

    .hamburger div span {
        height: 0.4rem;
    }

    .benner-heading p {
        line-height: normal;
        font-size: 2.4rem;
    }

    .common-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1.6rem;
    }

        .common-btn img {
            height: 3.5rem;
        }

    .benner-heading p {
        margin: 3rem 0;
    }

    .step {
        padding-bottom: 0;
        padding-left:8rem;
    }

         .step:before {
            width: 2rem;
            height: 2rem;
            outline: 1.5rem solid #981c1f;
            left: 2.5rem;
        }

    .map-card p {
        margin: 2rem 0;
    }

    .contact-footer img {
        height: 4.5rem;
    }

    .section {
        padding: 5rem 0;
    }

    .footer-bottom h6 {
        font-size: 2.4rem;
    }

    .quick-link ul li {
        padding-bottom: 1rem;
    }
    .newsCaption {
        transform: translateY(81%);
    }
    .main-time-line-slider {
        min-height: 38rem;
    }
    .right-curcle {
        margin-top:-15rem;
    }
    .right-text {
        margin-top:-15rem;
    }
    .team-section:after {
        display:none;
    }

    .bottom-fadeup-3 {
        margin-top:0;
    }
    .facility-img, .facility-address {
        width: 100%;
    }
    .facility-address {
        margin-top:2rem;
    }
        .facility-address p {
            margin-bottom:0;
        }
    .main-facilities .mxw-90 {
        max-width:98%;
        margin:auto;
    }
    #accordion .card-header {
        padding-bottom:0;
    }
    .card-gradient, .policy-wrapper .card:not(.card-gradient) {
        padding: 2rem;
    }
        .card-gradient .h5 {
            font-size:2.4rem;
        }
    .product-box.mxw-90 {
        max-width: 100%;
    }

}

@media(max-width:992px) {
    body {
        font-size: 1.6rem;
    }

    .mxw-90 {
        max-width: 100%;
    }

    .counter-main-div {
        padding: 3rem 0;
    }

    .couner-inner-div p span {
        font-size: 5rem;
    }

    .counter-main-div img {
        height: 4rem;
    }

    .couner-inner-div p sup {
        font-size: 3rem;
    }

    .couner-inner-div p {
        margin-left: 1rem;
    }

    .counter-main-div span {
        font-size: 2rem;
    }

    .font-60 {
        font-size: 3.6rem;
    }

    .font-28 {
        font-size: 2.4rem;
        font-weight: 500;
    }
    .newsCaption {
        transform: translateY(88%);
    }
    .item {
        height:22rem;
        width:22rem;
    }
    .over-full {
        height: 51rem;
        width: 51rem;
    }
    .team-card-inner.border::after {
        display:none;
    }
    .team-card-inner.mxw-md-90 {
        width:100%;
    }
    .card-gradient, .policy-wrapper .card:not(.card-gradient) {
        max-width: 100%;
        padding: 1.5rem;
        text-align: left;
    }
        .card-gradient:before {
            display:none;
        }
    .product-box h5 {
        padding-top: 2rem;
    }
}

@media(max-width:767px) {
    .couner-inner-div p span {
        font-size: 5rem;
    }

    .top-footer, .footer-bottom {
        padding-bottom: 2rem;
        margin-bottom: 4rem;
    }

    .copy-right p {
        font-size: 2rem;
    }
    .counter-main-div {
        margin-top: -10px;
    }

    .border-yellow {
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }

        .border-yellow:after {
            width: 25%;
            height: 0.3rem;
            top: unset;
            left: 0;
        }
    .map-card {
        border-radius:4rem;
    }
    .close:before, .close:after {
        height: 25px;
    }
    .nav-wrap li a {
        font-size:1.8rem;
    }
    .card__inner, .card__image {
        border-radius: 2.5rem;
    }
    .newsCaption {
        padding:2rem;
    }
    .news-Slide-up:hover .newsCaption {
        padding: 2rem;
    }
    .product-name-white {
        padding:0;
    }
    .newsCaption {
        transform: translateY(80%);
    }
    .card__inner {
        flex-direction: column;
    }

    .card__image-container {
        width: 100%;
    }

    .card__image {
        aspect-ratio: 16 / 9;
    }

    .card__title {
        font-size: 32px;
    }

    .card__description {
        font-size: 16px;
    }

    .card__content {
        padding: 30px 20px;
    }
    .overview-section {
        margin-top:3rem;
    }
}

@media(max-width:575px) {
    .products .product-card {
        min-height: 3.8rem;
    }

    .main-header {
        padding: 1rem 0;
    }

        .main-header .logo-white, .main-header.fixed .logo-orange {
            height: 6rem;
        }

    .hamburger .menu {
        font-size: 1.6rem;
        margin-right: 1rem;
    }

    .hamburger div span {
        height: 0.3rem;
    }

        .hamburger div span:nth-child(2) {
            margin-top: 0.5rem;
        }

        .hamburger div span:nth-child(3) {
            margin-top: 0.5rem;
        }



    .map-card {
        padding: 2rem;
        border-radius: 3rem;
    }

    .font-60 {
        font-size: 3rem;
    }

    .common-btn img {
        height: 3rem;
    }

    .font-28 {
        font-size: 2rem;
        margin-bottom:2.5rem;
    }

    .process-timeline {
        padding: 3rem 2rem;
        border-radius: 2rem;
        margin-top: 3rem;
    }

   .step {
        padding-bottom: 0rem;
        padding-left: 6rem;
    }

        .step:before {
            width: 1.5rem;
            height: 1.5rem;
            outline: 1rem solid #981c1f;
            left: 1.5rem;
        }
    .card.bg-red .step:before {
        outline: 1rem solid #fff7f7;
    }

    .step span {
        left: 1.5rem;
    }
    .main-img, .products .product-card, .product-img:after, .team-card img, .team-card, .home-contect {
        border-radius: 2rem;
    }
    .product-name-white {
        margin-bottom:0;
    }
    .home-contect {
        padding:3rem;
    }
    .font-80 {
        font-size: 3rem;
    }
    .font-40 {
        font-size: 2.4rem;
    }
    .footer-logo {
        margin-bottom:2rem;
    }
    .footer-logo img {
        height: 8rem;
    }
    .section {
        padding:3rem 0;
    }
    .contact-footer {
        margin-bottom:2rem;
    }
        .contact-footer img {
            height: 3.5rem;
        }
    .top-footer, .footer-bottom {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .copy-right p{
        font-size:1.4rem;
        text-align:left !important;
    }
    .newsCaption {
        padding: 1.5rem 2rem;
    }
    .right-curcle {
        margin-top: 0;
    }

    .right-text {
        margin-top: 0;
    }
    svg {
        height: 20rem;
        width: 20rem;
    } 
    .item {
        height: 11rem;
        width: 13rem;
        font-size:12px;
        line-height:normal;
    }

    .over-full {
        height: 33rem;
        width: 33rem;
    }
    .team-card-inner {
        margin-bottom: 5rem;
        height: calc(100% - 50px);
    }
    .top-banner.team img {
        height:50vh;
    }
    .bottom-fadeup-3 {
        margin-top:0.5%;
    }
    .team-card-inner a {
        margin-top:1.5rem !important;
    }

    .prod-single-box .prod-img {
        width: 100%;
        margin-bottom:2.5rem;
    }
        .prod-single-box .prod-img img, .prod-description {
            width: 100%;
        }
    .location-content {
        left:0;
    }

}

@media(min-width:1599px) {
}
@media(min-width:768px) {
    .mxw-md-90 {
        max-width:90%;
    }

}
@media(min-width:1399px) {
    .container {
        max-width: 130rem;
    }

}

@media(min-width:1600px) {

    .container {
        max-width: 160rem;
    }


    body {
        font-size: 2.4rem;
    }
}


@media(min-width:1880px) {
    .container {
        max-width: 180rem;
    }
    .custom-container {
        max-width: 144rem;
        margin: auto;
    }
    .video video {
        width:100vw;
    }
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 1em;
  line-height: 1.2em;
  opacity: 0;
  color: #dc3545;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}
/*.parsley-required {
    background: #fde8e8;
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    position: relative;
    margin-top: 5px;
    border-radius: 4px;
}

.parsley-required:before {
    position: absolute;
    top: -17px;
    left: 50%;
    content: '';
    border: 10px solid transparent;
    border-bottom-color: #fde8e8;
    transform: translateX(-50%);
}*/
.parsley-errors-list.filled li {
    background: #fde8e8;
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    position: relative;
    margin-top: 5px;
    border-radius: 4px;
}

.parsley-errors-list.filled li:before {
    position: absolute;
    top: -17px;
    left: 50%;
    content: '';
    border: 10px solid transparent;
    border-bottom-color: #fde8e8;
    transform: translateX(-50%);
}
