/* :root {
    --zlatna:           #D4A53B;
    --crna:             #000000;
    --bijela:           #ffffff;
    --siva-800:         #39383B;
    --siva-700:         #808080;
    --siva-500:         #B0B0B0;
    --siva-300:         #E6E6E6;
    --siva-100:         #EBEBEB;
    --naracasta:        #F36F20;
    --narancasta-700:   #F47826;
    --narancasta-500:   #F68E33;
    --zelena:           #4AAC76;
    --zelena-900:       #388E5F;
    --crvena:           #EC0000;
} */

.my-way {
    background-color: #FFFFFF;
}
a {
    color: #F47826;
    text-decoration: none;
    font-weight: 600;
}

strong {
    font-weight: 700;
}

/* LAYOUT */

.o-wrap-fluid {
    max-width: 100%;
}

.o-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

.o-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.o-row--stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.o-col-4,
.o-col-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}

@media screen and (min-width: 768px) {

    .o-row {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .o-col-4 {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 40%;
                flex: 0 1 40%;
        margin-right: 1rem;
    }

    .o-col-8 {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 60%;
                flex: 0 1 60%;
    }

}

/* CTA */

.c-cta {
    padding: 1rem 4rem;
    border-radius: 10rem;
    color: #ffffff;
    font-size: 1.5rem;
    -webkit-transition: 0.4s opacity ease-in-out;
    -o-transition: 0.4s opacity ease-in-out;
    transition: 0.4s opacity ease-in-out;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
}

.c-cta:hover {
    opacity: .85;
}

.c-cta--black {
    background-color: #000000;
}

.c-cta--orange {
    background-color: #F47826;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#faa843), color-stop(#f89b38), color-stop(#f78d2f), color-stop(#f57e26), to(#f36f20));
    background-image: -o-linear-gradient(top, #faa843, #f89b38, #f78d2f, #f57e26, #f36f20);
    background-image: linear-gradient(to bottom, #faa843, #f89b38, #f78d2f, #f57e26, #f36f20);
}

/* CTA BLOCK */

.c-cta-block {
    width: 100%;
    position: relative;
    background-color: #B0B0B0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center;
}

.c-cta-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    border-radius: inherit;
}

.c-cta-block--full::after {
    background: rgb(0,0,0);
    background: -o-linear-gradient(315deg, rgba(0,0,0,0) 0%, rgba(57,56,59,0.6881127450980392) 74%, rgba(57,56,59,1) 100%);
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(57,56,59,0.6881127450980392) 74%, rgba(57,56,59,1) 100%);
}

.c-cta-block--small::after {
    background: rgb(0,0,0);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), color-stop(74%, rgba(57,56,59,0.6881127450980392)), to(rgba(57,56,59,1)));
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(57,56,59,0.6881127450980392) 74%, rgba(57,56,59,1) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(57,56,59,0.6881127450980392) 74%, rgba(57,56,59,1) 100%);
}

.c-cta-block--full {
    min-height: 560px;
}

.c-cta-block--web {
    background-image: url('../images/photo-web.jpg');
    background-size: cover;
    background-position: 20% top;
}

.c-cta-block--mobile {
    background-image: url('../images/photo-mobile.jpg');
    background-size: cover;
}

.c-cta-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.c-cta-blocks .c-cta-block {
    border-radius: 1rem;
}

.c-cta-blocks .c-cta-block + .c-cta-block {
    margin-top: 1rem;
}

.c-cta-block__content {
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 20;
}

.c-cta-block__content p {
    font-size: 1.25rem;
    color: #ffffff;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media screen and (min-width: 768px) { 

    .c-cta-block {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .c-cta-blocks .c-cta-block {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 49%;
                flex: 0 1 49%;
        border-radius: 1rem;
    }

    .c-cta-blocks .c-cta-block + .c-cta-block {
        margin-top: 0;
    }

    .c-cta-block--full .c-cta-block__content {
        margin-right: 8rem;
        margin-bottom: 4rem;
    }
}

/* HERO */

.c-hero {
    background-color: #F36F20;
    background-image: url('../images/bg-orange.png');
    background-size: cover;
    background-position: 50%;
    min-height: 60vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.c-hero--with-pb {
    padding-bottom: 12rem;
}

.c-hero--centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-hero__content {
    max-width: 850px;
    /* margin: 0 auto; */
}

.c-hero__content--text-center {
    text-align: center;
}

.c-hero__logo {
    text-align: center;
}

.c-hero__logo img {
    max-width: 100%;
}

.c-hero__main {
    text-align: center;
    color: #ffffff;
    font-size: 1.15rem;
}

.c-hero__main--narrow {
    max-width: 80%;
    margin: 0 auto;
}

.c-hero__extra {
    text-align: center;
    color: #ffffff;
    font-size: 1rem
}

.c-hero__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.c-hero__images a {
    display: inline-block;
    padding: 1rem;
}

.c-hero__images a img {
    display: block;
}

@media screen and (min-width: 768px) {
    .c-hero__main {
        font-size: 2rem;
    }
}

/* COMPARE */

.c-compare {
    border-radius: 16px;
    -webkit-box-shadow: 0 32px 80px rgba(0,0,0,0.15);
            box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}

.c-compare__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.c-compare__row {
    background-color: #ffffff;
    border-bottom: 1px solid #E6E6E6;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1rem;
    color: #39383B;
}

.c-compare__row:last-child {
    border-radius: 0px 0px 16px 16px;
}

.c-compare__row--heading {
    background-color: #39383B;
    color: #ffffff;
    border-radius: 16px 16px 0px 0px;
}

.c-compare__desc,
.c-compare__values {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
}

.c-compare__values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1rem;
}

.c-compare__column {
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

@media screen and (min-width: 768px) {

    .c-compare__row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .c-compare__desc {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 60%;
                flex: 0 0 60%;
        text-align: left;
    }

    .c-compare__values {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 40%;
                flex: 0 0 40%;
        margin-top: 0;
    }
    
    .c-compare__column {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
    }
}

/* TABS */

.c-tabs-wrap {
    background-color: #ffffff;
    border-bottom: 1px solid #E6E6E6;
}

.c-tabs {
    max-width: 960px;
    list-style: none;
    margin: 0 auto;
    text-align: center;
}

.c-tabs__item {
    display: inline-block;
}

.c-tabs__item a {
    color: #B0B0B0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    -webkit-transition-duration: 0.4s;
            -o-transition-duration: 0.4s;
       transition-duration: 0.4s;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.c-tabs__item a:hover,
.c-tabs__item.is-active a {
    color: #F47826;
    border-bottom-color: #000000;
}

.c-tabs--primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}

.c-tabs--primary .c-tabs__item a {
    font-size: 1.25rem;
}

.c-tabs--secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin-top: 4rem;
}

.c-tabs--secondary .c-tabs__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.c-tabs--secondary .c-tabs__item a {
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 768px) {

    .c-tabs--primary {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .c-tabs--primary .c-tabs__item:not(:last-child) {
        margin-right: 1rem;
    }

    .c-tabs--primary .c-tabs__item a {
        font-size: 1.75rem;
    }
    
    .c-tabs--secondary {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .c-tabs--secondary .c-tabs__item {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
                flex: 0 0 30%;
    }

}

/* LISTS */

.c-list {
    padding: 0;
}

.c-list li {
    margin-left: 1.25rem;
}

.c-list--icon {

}

.c-list--icon li {
    background-image: url(../images/icon-message.svg);
    list-style-type:none;
    background-repeat: no-repeat;
    padding-left: 2rem;
    margin-left: 0;
    min-height: 1.5em;
}

.c-list li + li {
    margin-top: .625rem;
}

/* INFO BLOCK */

.c-info-block {
    border-radius: 1rem;
    height: 100%;
}

.c-info-block--dark {
    background-color: #39383B;
    color: #ffffff;
}

.c-info-block--orange {
    background-color: #F36F20;
    color: #ffffff;
    margin-top: 2rem;
}

.c-info-block--orange a {
    color: #ffffff;
}

.c-info-block--outline {
    border: 2px solid #F68E33;
    color: #F47826;
}

.c-info-block__content {
    padding: 1.5rem;
}

.c-info-block__content--alt {
    line-height: 1.6;
}

.c-info-block__small {
    font-size: 0.85rem;
}

.c-info-block__heading {
    font-size: 1.5rem;
}

.c-info-block p {
    margin: 0;
}

.c-info-block ul li {
    margin-left: 2.25rem;
}

@media screen and (min-width: 768px) {

    .c-info-block--orange {
        margin-top: 0;
    }
}

/* CONTENT */

.c-content {

}

.c-content__title {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.625rem;
    color: #000000;
}

.c-content__image {
    margin-top: 4rem;
    text-align: center;
    max-width: 100%;
}

.c-content__image img {
    max-width: 100%;
}

.c-content p {
    font-size: 1.25rem;
}

/* ACCORDION */

.c-accordion {

}

.c-accordion__heading {
    position: relative;
    padding: 1rem 0;
    cursor: pointer;
}

.c-accordion__title {
    color: #F47826;
    display: block;
    margin-right: 4rem;
    text-transform: uppercase;
}

.c-accordion__cta {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-accordion__cta img {
    -webkit-transition: 0.4s -webkit-transform ease-in-out;
    transition: 0.4s -webkit-transform ease-in-out;
    -o-transition: 0.4s transform ease-in-out;
    transition: 0.4s transform ease-in-out;
    transition: 0.4s transform ease-in-out, 0.4s -webkit-transform ease-in-out;
}

.is-active .c-accordion__cta img {
    -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
        transform: rotate(180deg);
}

.c-accordion__body {
    border-bottom: 1px solid #E6E6E6;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.8s height ease-in-out;
    -o-transition: 0.8s height ease-in-out;
    transition: 0.8s height ease-in-out;
}

.c-accordion__body.is-active {
    height: auto;
    overflow: unset;
}

.c-accordion__content {
    padding: 1rem 0;
}

.c-accordion__content p {
    margin: 0;
}

@media screen and (min-width: 768px) {

    .c-accordion__title {
        margin-right: 10rem;
    }

    .c-accordion__cta::before {
        content: "OTVORI";
        color: #808080;
        font-size: 0.85rem;
    }
    
    .is-active .c-accordion__cta::before {
        content: "ZATVORI";
    }

}

/* CAROUSEL */

.c-carousel {
    /* display: flex;
    align-items: stretch;
    justify-content: space-between; */
    position: relative;
    z-index: 20;
}

.c-carousel__items {
    position: relative;
}

.c-carousel__item {
    padding: 1rem;
}

.c-carousel__block {
    /* display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap; */
    height: 100%;
}

.c-carousel__image {
    text-align: center;
}

.c-carousel__image img {
    margin: 0 auto;
    max-width: 100%;
}

.c-carousel__desc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 20rem;
    margin: 1rem auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.c-carousel__desc .c-label {
    margin-left: 0;
}

.c-carousel__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
}

.c-carousel__figure img {
    width: 100%;
    max-width: 100%;
}

.c-carousel__figure--single img {
    max-width: 696px;
}

.c-carousel-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display:none;
}

.c-carousel-arrow img {
    width: 2.5rem;
}

.c-carousel-arrow--prev {
    left: 2rem;
}

.c-carousel-arrow--next {
    right: 2rem;
}

.c-carousel-wrap {

}

.c-carousel-static {
    
}

@media screen and (min-width: 768px) {

    .c-carousel__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        height: 100%;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .c-carousel__desc {
        margin-left: 0;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
                flex: 0 0 30%;
        max-width: 30%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .c-carousel__figure {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 70%;
                flex: 0 0 70%;
        max-width: 70%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .c-carousel-arrow img {
        width: 3rem;
    }

    .c-carousel-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    
    .c-carousel-static {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 392px;
                flex: 0 1 392px;
        max-width: 392px;
        padding-top: 1rem;
    }
}

@media screen and (min-width: 1160px) {

    .c-carousel--mobile .c-carousel-arrow--prev {
        left: -4rem;
    }
}

.c-carousel--mobile {

}

.c-carousel--mobile .c-carousel__item {
    background-color: #ffffff;
    -webkit-box-shadow: 0 16px 40px rgba(0,0,0,0.15);
            box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    /* flex: 0 1 22.5rem; */
    width: 100%;
    max-width: 22.5rem;
    border-radius: 1rem;
}

.c-carousel--mobile .c-carousel__item--text {
    background-color: #E6E6E6;
}

.c-carousel--mobile .c-carousel__item:not(:last-child) {
    margin-right: 1rem;
}


/* LABEL */

.c-label {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.5rem;
    display: inline-block;
    margin: 0.5rem auto;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.25rem;
    background-color: #F47826;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#faa843), color-stop(#f89b38), color-stop(#f78d2f), color-stop(#f57e26), to(#f36f20));
    background-image: -o-linear-gradient(top, #faa843, #f89b38, #f78d2f, #f57e26, #f36f20);
    background-image: linear-gradient(to bottom, #faa843, #f89b38, #f78d2f, #f57e26, #f36f20);
}

/* UTILITIES */

.u-bg-siva-100 {
    background-color: #EBEBEB;
}

.u-pull-up {
    position: relative;
    margin-top: -16rem;
}

.u-pa-1 {
    padding: 1rem;
}

.u-pa-2 {
    padding: 2rem;
}

.u-px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.u-px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.u-px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.u-py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.u-py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.u-pb-2 {
    padding-bottom: 2rem;
}

.u-pb-4 {
    padding-bottom: 4rem;
}

.u-mb-0 {
    margin-bottom: 0;
}

.u-mt-1 {
    margin-top: 1rem; 
}

.u-mt-2 {
    margin-top: 2rem; 
}

.u-mt-4 {
    margin-top: 4rem; 
}

.u-my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.u-mx-center {
    margin-left: auto;
    margin-right: auto;
}

.u-text-small {
    font-size: 0.85rem
}

.u-bg-siva-100-after::after {
    content: "";
    background-color: #EBEBEB;
    display: block;
    height: 25%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* SLICKJS */

.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
    outline: none;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-list {
    padding: 3rem 2rem;
}

.slick-track
{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}



.slick-dots {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    right: 50%;
    -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 90%;
    max-width: 100%;
    list-style: none;
}

.slick-dots li button {
    text-indent: -9999999px;
    border: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.25rem;
    background-color: #B0B0B0;
    -webkit-transition: 0.4s width ease-in-out;
    -o-transition: 0.4s width ease-in-out;
    transition: 0.4s width ease-in-out;
    border-radius: 2rem;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #F47826;
    width: 1.5rem;
}

.tab-container {
    display: none;
}
    .tab-container.is-active {
        display: block;
    }