/*** intro ***/
.intro::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    z-index: 0;
    background-image: linear-gradient(to top, white 50%, rgba(255, 255, 255, 0.8) 70%, transparent 100%);
}
.intro {
    padding: 100px 0 480px; /* 400px to comp for the clip-path and video overlay in next section */
    position: relative;
    z-index: 1;
    background-image: url(/assets/images/app/public/solutions/shared/intro_bg.webp);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-sec);
    text-align: center;
}

.intro h1 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-sec);
}

.intro p {
    font-family: var(--font-family-primary);
    color: var(--color-text-sec);
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    line-height: 1.4em;
}

/*** video ***/
.video {
    position: relative;
    z-index: 30;
    margin-top: -200px;
}
.video::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__wrap {
    margin-top: -260px;
    position: relative;
    z-index: 6;
    margin-bottom: 100px;
}
.video__wrap::before {
    cursor: pointer;
    content: '';
    z-index: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: url(/assets/images/app/public/home/loom_play_button.svg) no-repeat center;
    background-size: 120px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.video__wrap:hover::before {
    width: 135px;
    height: 135px;
    background-size: 135px;
}
.video__wrap video {
    width: 100%;
    height: auto;
}

.video__wrap .video__play {
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.video__wrap .growth__video {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.growth__video_cta {
    width: 100px;
    z-index: 100;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
}

/*** video modal ***/
.video__modal .modal-dialog {
    border-radius: 25px;
    width: 80vw;
    margin: 0 auto;
    padding: 100px;
    background-color: transparent;
}
.video__modal .modal-dialog .modal-content .close {
    opacity: 1;
    position: absolute;
    right: -30px;
    font-weight: 100;
    font-size: 40px;
    color: #fff;
}
.video__modal .modal-content {
    background-color: #000;
    height: 80%;
    border-radius: 25px;
}
.video__modal .modal-body {
    width: 100%;
    height: 100%;
}
.video__modal .modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: block; /* required to remove bottom white bar gap */
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 25px;
}


/*** growth ***/
.growth {
    position: relative;
    z-index: 3;
    padding: 100px 0 270px;
    background-color: var(--color-grey-light);
}

.growth__sub-title {
    font-family: var(--font-family-primary);
}

.growth__title {
    max-width: 80%;
}

.growth__cta {
    position: relative;
    padding-bottom: 20px;
    background-color: transparent;
    border: 0;
    text-align: left;
}
.growth__cta h4 {
    font-family: var(--font-family-primary);
    font-size: 21px;
    font-weight: 600;
    line-height: 25.6px;
    margin: 0 0 10px;
}

.growth__cta p {
    font-family: var(--font-family-primary);
    color: var(--color-text-sec);
}

.growth__cta.active {
    background-color: #fff;
}
.growth__cta.active::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 18'%3E%3Cpath d='M15 7.01695L9.53674e-07 -6.55671e-07L7.80311e-07 3.9661L11.4 9.15254L3.40233e-07 14.0339L1.66869e-07 18L15 10.9831L15 7.01695Z' fill='%2301c363'/%3E%3C/svg%3E");
    position: absolute;
    display: block;
    width: 30px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
}

.growth__growth-relations--img {
    margin-top: 60px;
    max-height: 600px;
}

/*** booking-features ***/
.features-horizontal {
    padding: 100px 0 100px;
    position: relative;
    margin-top: -200px;
    clip-path: polygon(200px 0, 100% 0, 100% 100%, 0 100%, 0 200px);
    background-color: #fff;
    z-index: 4;
}
.features-horizontal__features--feature-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}
.features-horizontal__features--feature-title {
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    text-align: left;
}
.features-horizontal__features--feature-list {
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.01em;
    text-align: left;
    list-style: none;
    padding-left: 0;
    color: var(--color-text-sec);
}
.features-horizontal__features--feature-list li::before {
    content: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' id='icon_bullet_point'%3E%3Cpath d='M11.8672 6.5C11.8672 9.53757 9.40475 12 6.36719 12C3.32962 12 0.867188 9.53757 0.867188 6.5C0.867188 3.46243 3.32962 1 6.36719 1C9.40475 1 11.8672 3.46243 11.8672 6.5Z' fill='%2301C363'/%3E%3Ccircle cx='10.3672' cy='5.5' r='4.5' stroke='%23484848' stroke-width='2'/%3E%3C/svg%3E");
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    position: relative;
    top: 2px;
}

.features-horizontal__image {
    width: 100%;
    padding: 0;
}

/*** features vertical ***/
.features-vertical {
    padding: 100px 0 100px;
    position: relative;
    margin-top: -200px;
    clip-path: polygon(200px 0, 100% 0, 100% 100%, 0 100%, 0 200px);
    background-color: #fff;
    z-index: 4;
}
.features-vertical__features--feature-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}
.features-vertical__features-title {
    font-family: var(--font-family-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    text-align: left;
}
.features-vertical__features-list {
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.01em;
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin-left: 30px;
    background-color: red;
}
.features-vertical__showcase {
    max-width: 100%;
}
.features-vertical__features--feature-list {
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.01em;
    text-align: left;
    list-style: none;
    padding-left: 0;
}
.features-vertical__features--feature-list li {
    position: relative;
    margin-left: 30px;
    line-height: 26px;
    margin-bottom: 20px;
    color: var(--color-text-sec);
}
.features-vertical__features--feature-list li::before {
    content: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' id='icon_bullet_point'%3E%3Cpath d='M11.8672 6.5C11.8672 9.53757 9.40475 12 6.36719 12C3.32962 12 0.867188 9.53757 0.867188 6.5C0.867188 3.46243 3.32962 1 6.36719 1C9.40475 1 11.8672 3.46243 11.8672 6.5Z' fill='%2301C363'/%3E%3Ccircle cx='10.3672' cy='5.5' r='4.5' stroke='%23484848' stroke-width='2'/%3E%3C/svg%3E");
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 2px;
    left: -30px;
}
.features-vertical__features--feature-divider {
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    color: var(--color-green);
    margin-bottom: 8px;
}
.features-vertical__features--feature-description {
    font-family: var(--font-family-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    color: var(--color-text-sec);
    margin-bottom: 16px;
}

/*** customer-voice ***/
.customer-voice {
    position: relative;
    z-index: 1;
    padding: 100px 0 300px;
    background-color: var(--color-btn-primary);
    color: #ffffff;
}
.customer-voice:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(/assets/images/app/public/pricing/pricing_customer_voice_bg.png);
    background-repeat: no-repeat;
    background-position: top 15% right;
    background-size: 400px;
}
.customer-voice h2 {
    color: #ffffff;
}

.customer-voice__content {
    margin-top: 0;
}
.customer-voice__image {
    max-width: 100%;
}
.customer-voice__description {
    font-family: var(--font-family-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-align: left;
    margin-bottom: 100px;
}

.customer-voice__name {
    font-size: 15px;
    font-weight: 800;
    line-height: 17.58px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.customer-voice__location {
    font-family: var(--font-family-primary);
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
    line-height: 15.23px;
    letter-spacing: 0.17em;
    text-align: center;
    text-transform: uppercase;
}

.customer-voice__message {
    font-family: var(--font-family-primary);
    font-size: 23px;
    font-weight: 500;
    line-height: 34px;
    width: 80%;
}

.customer-voice__message,
.customer-voice__name,
.customer-voice__location {
    text-align: left;
}

/*** steps ***/
.steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/app/public/solutions/shared/steps_bg.svg);
    background-position: top left;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
.steps {
    position: relative;
    padding: 100px 0 0;
    margin-top: -200px;
    z-index: 1;
    background-image: url(/assets/images/app/public/solutions/shared/steps_bg.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-color: var(--color-grey-light);
    clip-path: polygon(0 0, calc(100% - 200px) 0, 100% 200px, 100% 100%, 0 100%);
}

.steps p {
    font-family: var(--font-family-primary);
}

.steps__step {
    margin-top: 100px;
}

.steps__step:nth-child(odd) .steps__step-content {
    margin-left: 15px;
}

.steps__step:nth-child(even) .steps__step-content {
    margin-right: 15px;
}

.steps__step-content {
    position: relative;
    bottom: 0;
}
.steps__step-content .step_1 .text-left {
    margin-left: 30px;
}
.steps__step-content.step_1 {
    margin-top: 50%;
}
.steps__step-content.step_2 {
    margin-top: 40%;
    text-align: right;
    float: right;
}
.steps__step-content.step_3 {
    margin-top: 20%;
}
.steps__step-content.step_4 {
    margin-top: 20%;
    text-align: right;
    float: right;
}
.steps__step-content.step_2 img {
    position: relative;
    right: 0;
}

.steps__cta-button--apple {
   margin-bottom: 30px;
}

.steps__number {
    height: 50px;
}

/*** faq ***/
.faq {
    position: relative;
    z-index: 2;
    padding: 100px 0 100px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%);
}
.faq h2 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.faq__sub-title {
    font-family: var(--font-family-primary);
    margin-bottom: 30px;
}

.faq__icon svg {
    width: 40px;
    height: 40px;
}

.faq__item {
    position: relative;
    border-top: 1px solid var(--color-grey-dark);
    padding: 15px 0 15px 15px;
    cursor: pointer;
    text-align: left;
}
.faq__item:first-child {
    border-top: 0;
}
.faq__item.open .faq__item-content {
    background-color: var(--color-grey-light);
}
.faq__item-toggle {
    position: absolute;
    line-height: 0;
    top: 3px;
    right: 20px;
    transition: all .5s; /* ease-in-out;*/
    display: inline-block;
    width: 12px;
    height: 12px;
    cursor: pointer;
}
.faq__item-toggle svg {
    width: 100%;
    height: 100%;
}
.faq__item.open .faq__item-toggle {
    transform: rotate(225deg);
}
.faq__item-toggle svg {
    width: 100%;
    height: 100%;
}
.faq__item.open .faq__item-toggle {
    transform: rotate(225deg);
}

.faq__item-content {
    text-align: left;
    padding: 20px 10px;
    margin-top: 20px;
}

.faq__item-name {
    font-family: var(--font-family-primary);
    padding-right: 60px;
    position: relative;
    text-align: left;
    font-size: 22px;
}

/*** Statement ***/
.statement {
    display: block;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: url(/assets/images/app/public/solutions/shared/dots.png);
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: bottom right;
}
.statement-content {
    display: block;
    background-color: var(--color-blue-light);
    border: 8px solid var(--color-blue-dark);
    padding: 40px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), calc(100% - 100px) 100%, 0 100%);
    font-size: 24px;
    font-family: var(--font-family-primary);
}