/* Reset Css */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

button, input, select, textarea {
    font-family: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

/*Tooltips */


/* Slides */
#slides__container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/*pagination */

.pagination__number {
    font-size: 60px;
    font-weight: 300;
    color: #E6E6E6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: -1;
    line-height: 1;
}

.pagination {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    border-bottom: 2px solid #DDDDDD;
}

    .pagination.active {
        display: flex;
    }

.pagination__link {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    height: 70px;
    position: relative;
    width: 126px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
}

    .pagination__link.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.pagination__indicator {
    position: absolute;
    width: 84px;
    height: 5px;
    background: #ff595a;
    left: 0;
    transition: transform 0.3s ease-out;
    transform: translateX(21px);
    bottom: -3px;
}

.slides {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.slides__item {
    min-width: 100%;
    position: relative;
    overflow-x: hidden;
    background-image: url(../img/slide-bg.svg);
    background-position: center;
    display: none;
    opacity: 0;
}

    .slides__item.active {
        display: block;
        animation: fade 0.7s ease-in-out forwards;
    }

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slides__form {
    max-width: 1120px;
    margin: 150px auto 20px auto;
    text-align: center;
}

.profession__row {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

    .profession__row label {
        margin: 10px;
    }

        .profession__row label input {
            position: absolute;
            opacity: 0;
        }

        .profession__row label img {
            height: 150px;
            width: auto;
            position: relative;
            z-index: 1;
            /* display: block; */
        }

        .profession__row label span:before {
            content: url(../img/card-bg.svg);
            position: absolute;
            left: 50%;
            top: 10%;
            transform: translateX(-50%);
        }

        .profession__row label span:after {
            content: url(../img/check-circle.svg);
            position: absolute;
            right: 10px;
            top: 10px;
            opacity: 0;
        }

        .profession__row label span {
            display: block;
            width: 260px;
            text-align: center;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 50px 42px 30px;
            position: relative;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s ease-out;
        }

        .profession__row label strong {
            width: 170px;
            display: block;
            margin: auto;
            font-weight: 400;
            line-height: 1.2;
            margin-top: 10px;
        }

        .profession__row label:first-child span:before {
            transform: rotate(165deg) translate(48%,15%);
        }

        .profession__row label:nth-child(2) span:before {
            transform: rotate(92deg) translate(2%,53%);
        }

        .profession__row label:nth-child(3) span:before {
            transform: rotate(165deg) translate(48%,15%);
        }

        .profession__row label:last-child span:before {
            transform: rotate(92deg) translate(2%,53%);
        }

        .profession__row label input:checked ~ span {
            background: #00A19C;
            color: #fff;
        }

            .profession__row label input:checked ~ span:after {
                opacity: 1;
            }

            .profession__row label input:checked ~ span:before {
                content: url(../img/card-bg-hover.svg);
            }
/*.slide__header--white{

    color: #fff;
}*/

.slide__logo img {
    display: none;
}

    .slide__logo img:last-child {
        display: block;
    }
/*.slide__header--white .slide__logo img{
    display: block;
}
.slide__header--white .slide__logo img:last-child{
    display: none;
}*/
.slide__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.slide__header-text {
    font-size: 25px;
    font-style: italic;
}

.slides__img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    min-height: 629px;
}

.slides__img-rect {
    opacity: 0.6;
}

.slide__text {
    position: absolute;
    top: 30%;
    left: 60%;
    max-width: 425px;
    text-align: center;
    /*color: #fff;*/
}

#start .slides__btn {
    color: #000;
}

.slides__btn:focus {
    outline: none;
}

#start .slides__btn:hover {
    color: #05abab;
}

.slides__btn:active {
    transform: translateY(2px);
}

.slides__title {
    font-family: 'Lora', serif;
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

    .slides__title strong {
        font-weight: 600;
    }

.slides__content {
    font-size: 20px;
    margin: 8px 0 35px;
}

.slides__btn {
    color: #FF595A;
    background: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.slides__btn--outline {
    border: 1px solid #FF595A;
    background: transparent;
}

.slides__btn--primary {
    background: #FF595A;
    color: #fff;
}

.slides__btn--disabled {
    background: #999999;
    color: #fff;
    pointer-events: none;
}

.slide__footer {
    background: #fff;
    display: none;
    width: 100%;
    height: 55px;
    z-index: 999;
    padding: 0 18px;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
    align-items: center;
}

    .slide__footer.active {
        display: flex;
    }

.slide__emblems img {
    margin-right: 15px;
}

.slide__copyright {
    font-size: 12px;
    color: #AAAAAA;
}

.slide__social-icons {
    display: flex;
    align-items: center;
}

    .slide__social-icons a {
        margin-left: 20px;
    }


/*@supports (mix-blend-mode:multiply) {
    .slides__img-rect {
        opacity: 1;
        mix-blend-mode: multiply;
    }
}*/

/* Problem Slide */
.slides__problem {
    flex-wrap: wrap;
    margin-top: 150px;
    display: none;
    text-align: center;
}

    .slides__problem.active {
        display: block;
    }

.slides__customproblem {
    width: 505px;
    margin: auto;
    position: relative;
}

    .slides__customproblem label {
        position: absolute;
        left: 20px;
        bottom: 46px;
        font-size: 12px;
        color: #666;
        opacity: 0;
    }

    .slides__customproblem input:valid + label,
    .slides__customproblem input:focus + label {
        opacity: 1;
    }

    .slides__customproblem input:focus::placeholder {
        color: transparent;
    }

.problems__row .customproblem__label input:checked ~ span.disable-checksign:after {
    background: transparent;
}

#customprofession {
    width: 100%;
    padding: 0 20px;
    line-height: 44px;
    border: none;
    background: #eee;
    border-radius: 50px;
    color: #6A6A6A;
    font-size: 16px;
}

#otherprofession {
    opacity: 0;
    position: absolute;
}

.slides__customproblem .slides__btn {
    position: absolute;
    right: 0;
    bottom: 0;
}




.slides__customproblem:before {
    content: normal;
}

.slides__customproblem:before {
    content: "Or";
    display: block;
    text-align: center;
    margin: 20px;
    font-size: 20px;
}


.problems__row {
    max-width: 90%;
    display: flex;
    margin: 20px auto 10px;
    flex-wrap: wrap;
    justify-content: center;
}

    .problems__row label:hover span img {
        filter: grayscale(0%);
    }

    .problems__row label:hover span strong {
        font-weight: bold;
    }

.multiple__select {
    position: fixed;
    font-size: 9px;
    background: #6F6F6F;
    color: #fff;
    border-radius: 4px;
    transform: translate(10px, 10px);
    padding: 0 5px;
    line-height: 23px;
    transition: all 0.1s ease-out;
}

.problems__row label span {
    margin: 8px;
    width: 170px;
    height: 226px;
    text-align: center;
    background: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 10px 6px;
}

.problems__row label.disabled span {
    cursor: default;
}

.problems__row label > input:checked ~ span .customproblem__input {
    color: #fff;
    background: transparent;
}

.problems__row label > input:checked ~ span small {
    color: #fff;
}

.problems__row .customproblem__input {
    opacity: 1;
    display: block;
    position: static;
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #eee;
}


.customproblem__input::-webkit-scrollbar-track {
    border-radius: 12px;
    background-color: transparent;
}

.customproblem__input::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}

.customproblem__input::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
    background-color: rgba(255,255,255,0.2);
}


.customproblem__input {
    scrollbar-color: rgba(255,255,255,0.2) transparent;
    scrollbar-width: thin;
}
@-moz-document url-prefix() {
    padding-right: 4px;
}


.customproblem__input + small {
    position: absolute;
    bottom: 3px;
    font-size: 9px;
    color: #777777;
}

.problems__row label span:after {
    content: "";
    width: 20px;
    height: 20px;
    /* border-radius: 50%; */
    position: absolute;
    left: 15px;
    top: 15px;
    background: #F0F0F0;
    border: 1px solid #E3E3E3;
}

.problems__row label input:checked ~ span {
    color: #fff;
    background: #00A09B;
}

    .problems__row label input:checked ~ span:after {
        background-image: url(../img/check-circle.svg);
        background-color: #fff;
        border-color: #fff;
    }

.problems__row label {
    position: relative;
}

    .problems__row label input {
        position: absolute;
        opacity: 0;
    }

    .problems__row label span strong {
        font-size: 14px;
        font-weight: 600;
    }

    .problems__row label span img {
        height: 90px;
        margin-bottom: 5px;
        display: block;
        filter: grayscale(100%);
        transition: all 0.2s;
    }

    .problems__row label input:checked ~ span img {
        filter: grayscale(0%)
    }


.problems__row .customproblem__input {
    border: none;
    resize: none;
    border-bottom: 1px solid #ffffff80;
    margin-bottom: 5px;
    padding-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
}
.custominput__info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 9px;
    opacity: 0.8;
    color: #fff;
}
@media(max-width:767px){
    .problems__row .customproblem__label span {
        padding: 32px 0 16px;
    }

    .problems__row .customproblem__input {
        margin: 0px;
        width: 84%;
        font-size:11px;
        margin-bottom:2px;
        line-height:1.1;
    }

    .custominput__info {
        font-size: 8px;
        bottom: 12px;
        opacity: 0.52;
    }
}
.problems__row .customproblem__label .customproblem__input {
    display: none;
}

.problems__row .customproblem__label input:checked ~ span .clicktoenable {
    display: none;
}

.problems__row .customproblem__label input:checked ~ span .customproblem__input {
    display: block;
}


.problems__row .customproblem__label span img {
    filter: grayscale(0%);
    margin: auto auto 5px auto;
}

.problems__row .customproblem__label span:after {
    display: none;
}

.problems__row .customproblem__label input:checked ~ span:after {
    display: block;
}

.problems__row .customproblem__input:focus {
    outline: none;
    border-color: #abe8e9;
}

.problems__row .customproblem__input::placeholder {
    color: #7CE4E6;
    font-weight: 600;
    font-style: italic;
    text-align: left;
}

.clicktoenable {
    cursor: pointer;
}

.slides__title small {
    display: block;
    font-weight: 400;
    font-size: 22px;
}

.problems__footer {
    text-align: center;
}

    .problems__footer .slides__btn {
        margin: 0 5px;
    }

.problems__notification {
    margin-bottom: 20px;
    font-size: 14px;
    color: #898989;
}

    .problems__notification span {
        color: red;
        animation: pulse 0.5s ease-out;
        display: inline-block;
    }

@keyframes pulse {
    0% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    90% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

/*providers slide */

.providers__slide {
    height: 510px;
    padding-top: 11vh;
    border-bottom: 2px solid;
    position: relative;
    text-align: center;
    min-height: 75vh;
    background: url(../img/buildings-bg.svg) repeat-x bottom left;
}

#providers {
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(0,161,156,0.06) 60%, rgba(0,161,156,0.1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,161,156,0.06) 60%,rgba(0,161,156,0.1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(0,161,156,0.06) 60%,rgba(0,161,156,0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1a00a19c',GradientType=0 );
    background: url(../img/providers-bg.svg);
    background-size: cover;
}

.providers__scene {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    bottom: 0;
}

img {
}

.providers__scene > img:nth-child(3) {
    margin-right: 266px;
}

.providers__scene > img:nth-child(4) {
    margin-right: 60px;
}

.providers__scene > img:last-child {
    margin: 0 -150px -2px 30px;
}

.parachute {
    position: absolute;
    left: 20%;
    bottom: 200px;
}

.clouds {
    position: absolute;
    left: -10%;
    bottom: 250px;
}

.clouds__right {
    left: 80%;
}

.providers__scene img {
    display: block;
    margin-bottom: -2px;
}


.building {
    position: relative;
    z-index: 0;
    cursor: pointer;
    margin-left: 30px;
    margin-right: 80px;
}

.providers__footer {
    text-align: center;
    padding: 50px 0;
}

.tooltip__container {
    display: flex;
    position: absolute;
    bottom: 25px;
    left: 465px;
    justify-content: space-between;
    width: 180px;
    z-index: 99;
}
@media(max-width:767px){
    .tooltip__container{
        width:100%;
        justify-content:center;
        position:static;
    }
}
.building:after {
    content: "";
    width: 24px;
    height: 24px;
    background: red;
    position: absolute;
    display: block;
    top: 0;
    left: 111%;
    transform: rotate(45deg);
    background: #fff;
    z-index: 99;
    box-shadow: -3px 3px 5px rgba(0,0,0,0.05);
}

    .tooltip:before {
        content: "";
        display: block;
        position: absolute;
    }

.tooltip__icon {
    width: 29px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF595A;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.tooltip.active .tooltip__icon {
    background-color: #00A19C;
}

.tooltip__icon:before {
    content: "";
    position: absolute;
    width: 33px;
    height: 33px;
    border: 2px dashed #666666;
    border-radius: 50%;
    transform: rotate(45deg);
    background: #fff;
    z-index: -1;
    transition: all 0.2s;
}
.tooltip__bubble {
    position: absolute;
    left: 115%;
    background: #fff;
    width: 683px;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 27px 30px 70px 27px;
    min-height: 310px;
    top: -80px;
    z-index: 44;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    background-image: url(../img/popup-bubble.svg);
    background-repeat: no-repeat;
    background-position: 90% -40px;
}
/*
.tooltip.tooltip__1 {
    top: -40px;
}



    .tooltip.tooltip__1:before {
        width: 110px;
        height: 24px;
        border: 2px dashed #666666;
        right: 36px;
        top: 15px;
        border-right: none;
        border-bottom: none;
    }

.tooltip.tooltip__2 {
    top: 31px;
}

    .tooltip.tooltip__2:before {
        width: 43px;
        height: 0;
        right: 36px;
        top: 15px;
        border-top: 2px dashed #666666;
    }

.tooltip.tooltip__3 {
    top: 97px;
}

    .tooltip.tooltip__3:before {
        width: 43px;
        height: 0;
        right: 36px;
        top: 15px;
        border-top: 2px dashed #666666;
    }

.tooltip.tooltip__4 {
    top: 164px;
}

    .tooltip.tooltip__4:before {
        width: 43px;
        height: 0;
        right: 36px;
        top: 15px;
        border-top: 2px dashed #666666;
    }

.tooltip .tooltip__content {
    display: none;
}

.tooltip.active:before {
    border-color: #333333;
}

.tooltip.active .tooltip__icon:before {
    border-color: #333;
    transform: rotate(90deg);
}



.tooltip:after {
    content: "";
    position: absolute;
    width: 15px;
    opacity: 0;
    height: 15px;
    background: #fff;
    position: absolute;
    right: -40px;
    transform: rotate(45deg);
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    top: 26%;
    z-index: 99;
}

.tooltip.active:after {
    opacity: 1;
}*/

.tooltip__row {
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    opacity: 0;
}

    .tooltip__row.active {
        display: flex;
        animation: fade 0.4s ease-in-out forwards;
    }

.tooltip__text {
    min-width: 229px;
    font-size: 12px;
}

    .tooltip__text > img {
        height: 70px;
        margin-bottom: 2px;
    }

    .tooltip__text p {
        margin-top: 0;
    }

.tooltip__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tooltip__img {
    position: relative;
    margin-top: 20px;
}

    .tooltip__img img:last-child {
        position: absolute;
        top: 0;
        left: 0;
        animation-name: fadeimg;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-duration: 4s;
    }

@keyframes fadeimg {

    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.tooltip__title:after {
    content: "";
    display: block;
    height: 3px;
    background: #01a19c;
    width: 66px;
    margin: 7px 0 20px;
}
/* Possiblities */
.possiblities__slide {
    margin: 130px 0 20px;
    text-align: center;
}

.possibilities__turnaround:before {
    content: "";
    display: block;
    height: 10px;
    width: 100%;
    position: absolute;
    background: #abe8e9;
    top: -10px;
}

.possibilities__block:not(.active):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 2;
}

.possibilities__row {
    display: flex;
    justify-content: center;
    margin: 10px 0px 15px 0px;
    align-items: flex-start;
}

.possibilities__block {
    width: 247px;
    background: #fff;
    box-shadow: none;
    border-radius: 10px;
    margin: 10px 15px;
    filter: grayscale(100%);
    transition: all 0.2s ease-out;
    /* opacity: 0.6; */
    pointer-events: none;
    border: 1px solid #EEEEEE;
}

    .possibilities__block:hover {
        /* background: #00a09b; */
        /* color: #fff; */
    }
    .possibilities__block.active .possibilities__list {
        background: #00a09b;
    }
        .possibilities__block:hover .possibilities__list {
            /* border-color: rgba(235, 235, 235,0.4); */
            /* background: #00a09b; */
        }

    .possibilities__block.active {
        display: block;
        filter: grayscale(0%);
        opacity: 1;
        pointer-events: all;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border: none;
        background: #00a09b;
        color: #fff;
    }

.possibilities__img {
    padding-top: 15px;
}

    .possibilities__img img {
        display: block;
        margin: auto;
    }

.possibilities__title {
    font-size: 20px;
    font-weight: bold;
}

.possibilities__list {
    text-align: left;
    font-size: 13px;
    padding: 24px 20px;
    border-top: 1px solid #EBEBEB;
    margin-top: 13px;
    transition: background 0.2s ease-out;
    position: relative;
    /* z-index: 999; */
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.possibilities__turnaround {
    font-size: 12px;
    font-weight: bold;
    height: 40px;
    background: #abe8e9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    /* bottom: -32px; */
    z-index: -1;
    /* padding-top: 5px; */
    border-radius: 0 0 10px 10px;
    color: #006764;
}

.possibilities__list-item {
    margin-bottom: 10px;
    padding-left: 14px;
    position: relative;
}

    .possibilities__list-item:before {
        position: absolute;
        content: close-quote;
        display: block;
        width: 6px;
        height: 6px;
        background: #ABE8E9;
        left: 0;
        top: 6px;
        border-radius: 50%;
    }

.possibilities__text {
    font-size: 15px;
}

.possibilities__note {
    font-size: 9px;
    bottom: 2vh;
    position: fixed;
    width: 100%;
    text-align: center;
}
.possibilities__cta {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}


    .possibilities__cta .slides__btn {
        width: 322px;
        margin: 0 8px;
    }
/* form */
.enquiry {
    position: fixed;
    background: rgba(255,255,255,0.9);
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.enquiry__input:focus, .enquiry__textarea:focus, #customprofession:focus {
    outline: none;
    border-color: #00A09B;
}

.enquiry__input:placeholder-shown ~ label,
.enquiry__textarea:placeholder-shown ~ label {
    opacity: 0;
}

.enquiry__input:-ms-placeholder-shown ~ label {
    opacity: 0;
}

.enquiry__textarea:-ms-placeholder-shown ~ label {
    opacity: 0;
}

.enquiry__input:focus ~ label {
    opacity: 1;
}

.enquiry__textarea:focus ~ label {
    opacity: 1;
}

.enquiry__input:focus::placeholder {
    color: transparent;
}

.enquiry__textarea:focus::placeholder {
    color: transparent;
}


.enquiry.active {
    display: block;
}

.enquiry__form {
    text-align: center;
}

.enquiry__terms {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}

    .enquiry__terms label {
        position: relative;
    }

        .enquiry__terms label input {
            position: absolute;
            opacity: 0;
        }

    .enquiry__terms strong {
        font-weight: bold;
    }

    .enquiry__terms span:before {
        background: transparent;
        width: 16px;
        height: 16px;
        display: inline-block;
        content: "";
        border: 1px solid #999;
        margin-right: 10px;
        vertical-align: top;
        background-repeat: no-repeat;
        background-position: center top;
        /* background-clip: border-box; */
        background-size: 12px;
    }

    .enquiry__terms input:checked ~ span:before {
        background-image: url(../img/check-sign.svg);
    }

.enquiry__title {
    font-size: 36px;
    font-family: lora;
    margin-top: 0;
    text-align: center;
}

    .enquiry__title small {
        font-size: 18px;
        font-weight: 400;
        display: block;
        margin-top: 10px;
    }


.enquiry__formgroup {
    position: relative;
    margin-top: 25px;
}

.enquiry__input {
    width: 100%;
    display: block;
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid #AAAAAA;
    position: relative;
}

.enquiry__formgroup label {
    position: absolute;
    bottom: 102%;
    left: 20px;
    font-size: 10px;
}

.enquiry__textarea {
    width: 100%;
    border: 1px solid #AAAAAA;
    border-radius: 21px;
    padding: 10px 20px;
    min-height: 150px;
}

.enquiry__formgroup--textarea {
    width: 100%;
    margin-top: 30px;
}

.enquiry__texareahelp {
    font-size: 11px;
    text-align: right;
}

.enquiry__testimonial {
    margin: 12px auto 28px;
    max-width: 544px;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.enquiry__testimonial-text {
    color: #00A09B;
    font-weight: bold;
    margin-bottom: 3px;
    font-style: italic;
}

.enquiry__testimonail-details {
    font-size: 15px;
}
/*deploy slide*/
.deploy__slide {
    padding-top: 150px;
    text-align: center;
    min-height: 100vh;
    position: relative;
    padding-bottom: 120px;
}

.enquiry__form .enquiry__row.last {
    margin-bottom: 40px;
}
/* Thank you slide */
#thankyou {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou__slide--cta {
    margin-top: 30px;
}

    .thankyou__slide--cta .slides__btn {
        margin: 0 6px;
        width: 280px;
    }


/* parsley css */
input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    color: #468847;
    background-color: #DFF0D8;
    border: 1px solid #D6E9C6;
}

.parsley-errors-list li {
    text-align: left;
    margin-left: 20px;
    font-size: 11px;
    font-weight: bold;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;
    color: #B94A48;
    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;
    }

/* loading animation */
.slide__progress, .slide__complete {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: fixed;
    bottom: 30px;
    z-index: 2;
    right: 30px;
}

.slide__complete {
    align-items: center;
}

    .slide__progress.disabled, .slide__complete.disabled {
        display: none;
    }



.loading {
    display: flex;
}

.loading__letter {
    font-size: 16px;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    font-size: 20px;
    opacity: 0;
}

    .loading__letter:nth-child(2) {
        animation-delay: .1s;
    }

    .loading__letter:nth-child(3) {
        animation-delay: .2s;
    }

    .loading__letter:nth-child(4) {
        animation-delay: .3s;
    }

    .loading__letter:nth-child(5) {
        animation-delay: .4s;
    }

    .loading__letter:nth-child(6) {
        animation-delay: .5s;
    }

@keyframes bounce {
    0% {
        /*transform: translateY(0px);*/
        opacity: 0;
    }

    10% {
        /*transform: translateY(-5px);*/
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    60%, 100% {
        /*transform: translateY(0px);*/
        opacity: 1;
    }
}



@media(max-height: 700px) {
    /*  
    1. button-hover
   6. responsive
    .slides__title {
        font-size: 30px;
    }

    .profession__row label span {
        padding: 50px 30px 30px 30px;
    }

    .profession__row label img {
        height: 120px;
    }

    .slides__problem {
        margin-top: 120px;
    }

    .profession__row label:first-child span:before {
        transform: rotate(165deg) translate(42%,33%) scale(0.7);
    }

    .profession__row label:nth-child(2) span:before {
        transform: rotate(92deg) translate(-12%,53%) scale(0.7);
    }

    .profession__row label:nth-child(3) span:before {
        transform: rotate(165deg) translate(42%,33%) scale(0.7);
    }

    .profession__row label:last-child span:before {
        transform: rotate(92deg) translate(-12%,53%) scale(0.7);
    }

    .problems__row label span {
        height: auto; 
    }

        .problems__row label span img {
             height: 60px;
        }

    .providers__slide {
        height: 514px;
        padding-top: 130px;
    }

    .possibilities__img img {
        height: 60px;
    }

    .possibilities__list {
        padding: 20px 20px 15px 20px;
    }

    .possiblities__slide {
        margin-top: 130px;
    }

    .possibilities__row {
        margin: 20px 0;
    }

    .enquiry__title {
        margin-bottom: 10px;
        font-size: 30px;
        text-align: center;
    }

    .enquiry__textarea {
        min-height: 100px;
    }

    .enquiry__testimonial {
        margin: 10px 0 15px;
        text-align: center;
    }

    .enquiry__form {
        margin: 30px auto;
    }

    .problems__row label span strong {
         font-size: 12px;
    }
*/
}

@media(max-width: 767px) {
    .multiple__select {
        display: none;
    }

    .slides__img {
        width: auto;
        height: 300px;
        background: #fff;
        min-height: 0;
        margin-top: 50px;
    }

    .slide__header.slide__header--white {
        background: transparent;
    }

    #start {
        background: #4ebdb9;
    }

    .slide__copyright {
        order: 2;
    }

    .slide__text {
        left: 0;
        width: 100%;
        top: 360px;
        padding: 0 0 150px 0;
        max-width: 100%;
    }

    .problems__row label input:checked ~ span:after {
        background-size: contain;
    }

    .slides__title {
        font-size: 24px;
        padding: 0 20px;
    }

        .slides__title small {
            font-size: 16px;
        }

    .slides__content {
        font-size: 16px;
        padding: 0 29px;
    }

    .slide__header {
        padding: 10px 20px;
    }

    .slide__footer.active {
        flex-direction: column;
        padding: 10px 20px;
        position: fixed;
        bottom: 0;
        height: auto;
    }

    .slide__header-text {
    }

    .slide__header-text {
        font-size: 18px;
    }

    .profession__row label span {
        padding: 20px;
        width: 150px;
    }

    .profession__row {
        flex-wrap: wrap;
        justify-content: center;
    }

        .profession__row label img {
            height: 60px;
        }

        .profession__row label strong {
            width: 100%;
            font-size: 12px;
        }

        .profession__row label span:before {
            transform: scale(0.5) translate(-100%,-58%) !important;
        }

    .slides__customproblem {
        width: 90%;
        margin: 0 5%;
        padding-bottom: 80px;
    }

        .slides__customproblem:before {
            margin: 10px;
            font-size: 13px;
        }

    #customprofession {
        font-size: 12px;
        text-align: center;
    }

    .slides__customproblem .slides__btn {
        position: relative;
        display: block;
        margin: 10px auto;
    }

    .problems__row label span strong {
        font-size: 10px;
    }

    .slides__form {
        margin: 110px auto 0;
    }

    .pagination {
        width: 100%;
        left: 0;
        transform: none;
    }

    .pagination__link {
        width: 80px;
        height: 40px;
        margin-top: 15px;
        font-size: 12px;
    }

    .pagination__number {
        font-size: 40px;
    }

    .problems__row label span {
        width: 150px;
        display: flex;
        height: 150px;
        align-items: center;
        padding: 10px;
    }

    .problems__row {
        justify-content: center;
        max-width: 100%;
    }

    /*.pagination {
        background: #f7f7f7;
    }

   .slide__header {
        background: #f7f7f7;
    }
*/
    .slides__problem, .possiblities__slide {
        margin-top: 110px;
    }

    .possibilities__row {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 0;
    }

    .possibilities__block {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 30px;
    }

    .possiblities__slide {
        margin-bottom: 90px;
    }

    .providers__footer {
        padding: 50px 0 90px;
    }

    div#challenges {
        padding-bottom: 100px;
    }

    .problems__row .customproblem__input {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .problems__row label span:after {
        width: 15px;
        height: 15px;
    }

    .customproblem__input + small {
        left: 20px;
    }

    form.enquiry__form {
        width: 100%;
        padding: 15px;
        overflow: auto;
        margin: 0;
        border-radius: 0;
    }

    .pagination__indicator {
        width: 70px;
    }

    .providers__slide {
        height: auto;
    }

    .providers__scene {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .providers__scene > img {
            display: none;
        }





    .enquiry.active {
        overflow: auto;
    }

    .enquiry__row {
        display: block;
    }

    .enquiry__input {
        width: 100%;
    }

    .enquiry__title {
        font-size: 24px;
    }

        .enquiry__title small {
            font-size: 16px;
        }

    .thankyou__slide--cta .slides__btn {
        margin: 10px 0;
    }

    .slide__progress {
        transform: scale(0.75) translate(25%, 25%);
        right: 20px;
        bottom: 20px;
    }

    .building {
        width: 90%;
        margin: 0 5%;
    }

        .building > img {
            display: none;
        }

    .tooltip {
        position: static;
        display: inline-block;
        margin-top: 25px;
        margin-right: 10px;
        margin-left: 10px;
    }

        .tooltip:after {
            position: static;
            display: block;
            margin: 16px auto -41px;
            transform: rotate(135deg);
        }

    .tooltip__img {
        margin: 10px -30px;
    }

        .tooltip__img img {
            width: 100%;
        }

    .tooltip__bubble {
        width: 100%;
        left: 0;
        margin-top: 28px;
        position: static;
        margin-bottom: 5px;
        background-position: 90% 110%;
        background-size: 110%;
    }

    .tooltip__row {
        flex-wrap: wrap;
    }

    .tooltip:before {
        display: none;
    }

    .enquiry__testimonial {
        transform: none;
        position: static;
    }
    .multiple__select{
        display:none;
    }
}


/* Short Form*/
.shortform__row {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.shortform__row .enquiry__formgroup {
    width: 360px;
    margin: 0 0.5rem;
}
@media(max-width:767px){
    .shortform__row {
        flex-direction: column;
        align-items: center;
        margin: 0.5rem;
    }

        .shortform__row .enquiry__formgroup {
            margin: 15px 0 10px;
        }
}

/*additional resources*/
.additionalresources__slide {
    padding: 7rem 0;
    text-align: center;
}

.additionalresources__row {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.addtionalresources__card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    margin: 0 12px;
    width: 200px;
    padding: 29px;
}

    .addtionalresources__card .slides__btn {
        padding: 5px 20px;
        font-size: 14px;
    }

    @media(max-width:767px){
        .additionalresources__row{
            flex-direction:column;
            align-items:center;

        }
        .addtionalresources__card{
            margin:15px;
        }
    }