@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Concert+One&display=swap);
/*   My normalize   */

html {
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 8px;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
    max-width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    color: #0f488a;
}

a {
    outline: none;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    -webkit-text-decoration-skip: objects;
}

img {
    border-style: none;
}

button,
fieldset,
iframe,
input,
optgroup,
select,
textarea,
ul {
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    text-transform: none;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

:invalid {
    box-shadow: none;
}

button {
    cursor: pointer;
}

button:focus,
button:active,
input:focus,
input:active,
label:focus,
label:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
a:focus,
a:active {
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
}

figure {
    margin: 0;
}

textarea {
    overflow: auto;
}

li {
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
    margin: 0;
    padding: 0;
}

::-moz-selection {
    background: #ff7101;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

::selection {
    background: #ff7101;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

::-webkit-scrollbar {
    width: 1rem;
    border-left: .125rem solid #e9e9e9;
    background-color: #ECEFF1;
}

::-webkit-scrollbar-thumb {
    box-shadow: 0 0 .5rem rgba(0,0,0,.05), 0 .5rem 1rem rgba(0,0,0,.1);
    background: #009bde;
    border-radius: .5rem;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff7101;
}

.header {
    flex-shrink: 0;
}

.main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding-top: 10rem;
}

.footer {
    flex-shrink: 0;
}

/*      Content      */

.display-none {
    display: none;
}

.pic {
    display: flex !important;
    flex-shrink: 0;
    height: 10rem;
    width: 10rem;
    filter: drop-shadow(.75rem .75rem 1.5rem rgba(0,0,0,.15));
}

.pic-small {
    height: 8rem;
    width: 8rem;
}

.picture {
    position: relative;
    display: flex !important;
    flex-shrink: 0;
    overflow: hidden;
}

.image-cover {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.image-contain {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.container-row,
.container-column {
    position: relative;
    z-index: 2;
    display: flex;
    width: 146rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-row {
    justify-content: space-between;
}

.container-column {
    flex-direction: column;
}

.section {
    position: relative;
    padding: 10rem 0;
}

.section-blue {
    background: #f0fafb;
}

.section-blue:after,
.section-orange:after,
.section-purple:after,
.section-green:after,
.section-grey:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .1;
}

.section-blue01:after {
    background: url(../images/background-blue-01.svg) 50% 50% / cover no-repeat;
}

.section-blue02:after {
    background: url(../images/background-blue-02.svg) 50% 50% / cover no-repeat;
}

.section-orange {
    background: rgba(255,240,230,.25);
}

.section-orange01:after {
    background: url(../images/background-orange-01.svg) 50% 50% / cover no-repeat;
}

.section-orange02:after {
    background: url(../images/background-orange-02.svg) 50% 50% / cover no-repeat;
}

.section-purple {
    background: rgba(193,197,255,.25);
}

.section-purple01:after {
    background: url(../images/background-purple-01.svg) 50% 50% / cover no-repeat;
}

.section-purple02:after {
    background: url(../images/background-purple-02.svg) 50% 50% / cover no-repeat;
}

.section-green {
    background: rgba(104,159,99,.25);
}

.section-green01:after {
    background: url(../images/background-green-01.svg) 50% 50% / cover no-repeat;
}

.section-green02:after {
    background: url(../images/background-green-02.svg) 50% 50% / cover no-repeat;
}

.section-grey01:after {
    background: url(../images/background-grey-01.svg) 50% 50% / cover no-repeat;
}


.anchor {
    position: absolute;
    top: -10rem;
}

.h2-headline {
    margin-top: -.25em;
    font: 400 2.4rem / 1.3 'Montserrat', sans-serif;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: #009bde;
}

.h2-headline[class*="text-center"] {
    margin-left: .3em;
}

.h3-headline {
    padding-top: calc(3rem - .25em);
    font: 700 6rem / 1 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.h4-headline {
    margin-top: -.45em;
    font: 700 2.75rem / 1.5 'Montserrat', sans-serif;
}

.h5-headline {
    font: 700 2rem / 1.5 'Montserrat', sans-serif;
}

.p-text {
    margin-top: 2rem;
    font: 400 1.8rem / 1.5 'Montserrat', sans-serif;
    text-align: justify;
}

.text-center {
    text-align: center;
}

.color-second {
    color: #009bde;
}

.color-fourth {
    color: #ff7101;
}

.buttons {
    display: flex;
}

.buttons .buttons__item:not(:first-of-type) {
    margin-left: 3rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    margin-top: 3rem;
    padding: 0 3rem;
    box-shadow: 0 .75rem 2rem rgba(255,113,1,.15);
    border-radius: 5rem;
    background: #ff7101;
    font: 600 1.4rem / .8 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    transition: all .3s ease-out;
}

.button:hover {
    box-shadow: 0 .75rem 2rem rgba(255,113,1,.3);
    transform: translateY(-1rem);
}

.button-second {
    background: #fff;
    color: #ff7101;
}

.button__pic {
    display: flex !important;
    flex-shrink: 0;
    height: 2.2rem;
    width: 2.2rem;
    margin-right: 1.25rem;
    fill: #fff;
}

.link-first {
    display: inline-flex;
    margin-top: 2rem;
    font-weight: 600;
    line-height: 1;
    color: #009bde;
    text-decoration: underline;
    transition: all .3s ease-out;
}

.link-first:hover {
    color: #ff7101;
}

/*   Content Across Pages   */

/* Form */

.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form__h4 {
    margin-top: 3rem;
    font: 400 1.8rem / 1.3 'Montserrat', sans-serif;
    text-align: center;
}

.form__fieldset {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 3rem;
}

.form__fieldset_box {
    position: relative;
    margin-top: 1.5rem;
    box-shadow: .5rem .5rem 1rem rgba(0,0,0,.025);
    border-radius: 3rem;
    background: #fff;
}

.form__fieldset_box:after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    height: 1rem;
    width: 1rem;
    margin: auto;
    border-radius: 1rem;
    background: #ff7101;
}

.form__fieldset_h4 {
    font: 600 2rem / 1 'Montserrat', sans-serif;
}

.form__fieldset_input {
    position: relative;
    height: 6rem;
    width: 100%;
    padding: 0 3rem 0 5rem;
    border-radius: 3rem !important;
    border: .5rem solid rgba(0,155,222,.1);
    font: 500 1.8rem / 1.5 'Montserrat', sans-serif;
    color: #0f488a;
    transition: all .3s ease-out;
}

.button-join-email {
    height: 6rem;
}

.form__fieldset_input:hover {
    border-color: rgba(255,113,1,.15);
}

.form__fieldset_input:focus {
    border-color: rgba(255,113,1,.3);
}

.form__fieldset_input::-webkit-input-placeholder {
    color: #0f488a;
    opacity: 1;
}

.form__fieldset_input::-moz-placeholder {
    color: #0f488a;
    opacity: 1;
}

.form__fieldset_input:-ms-input-placeholder {
    color: #0f488a;
    opacity: 1;
}

.form__fieldset_textarea {
    height: 20rem;
    padding-top: 1.2rem;
    border-radius: 3rem !important;
    resize: none;
    filter: drop-shadow(1rem 1rem 2rem rgba(0,0,0,.1));
}

.form__fieldset_select {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.form__fieldset_button {
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    margin: auto;
    border-radius: 50%;
    background: #ff7101;
}

.form__fieldset_pic {
    display: flex !important;
    height: 50%;
    width: 50%;
    fill: #fff;
}

.toggle__label {
    position: relative;
    display: flex;
    height: 4rem;
    width: 7rem;
    box-shadow: .5rem .5rem 1rem rgba(0,0,0,.025);
    border-radius: 3rem;
    background: rgba(0,155,222,.1);
    cursor: pointer;
    transition: all .3s ease-out;
}

.toggle__label:hover {
    opacity: .75;
}

.toggle__label:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: .75rem;
    height: 2.75rem;
    width: 2.75rem;
    margin: auto;
    box-shadow: .5rem .5rem 1rem rgba(0,0,0,.05);
    border-radius: 50%;
    background: #009bde;
    transition: all .3s ease-out;
}

input:checked + .toggle__label {
    background: #fff0e6;
}

input:checked + .toggle__label:before {
    right: .75rem;
    left: inherit;
    background: #ff7101;
}

.form__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 6rem;
}

.form__info .h4-headline {
    text-transform: capitalize;
}

.form__info .p-text{
    margin-top: 0;
}

.form__error {
    color: #ff7101;
}

/* List */

.list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    padding: 5rem;
}

.item-border {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    filter: drop-shadow(1rem 1rem 2rem rgba(0,0,0,.25));
}

.item-border:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 2rem;
    transition: all .3s ease-out;
}

.item-border__part {
    position: absolute;
    border: 2rem solid rgba(0,155,222,.1);
    transition: all .3s ease-out;
}

.item:hover .item-border__part {
    border-color: rgba(255,113,1,.1);
}

.item-border-right .item-border__part {
    width: 100%;
}

.item-border-right .item-border__part01 {
    top: 0;
    left: 0;
    height: calc(50% - 4rem);
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    border-bottom: none;
}

.item-border-left .item-border__part {
    width: 100%;
}

.item-border-right .item-border__part02 {
    top: calc(50% - 4rem);
    bottom: calc(50% - 4rem);
    left: 0;
    border-top: none;
    border-bottom: none;
    border-right: none;
}

.item-border-right .item-border__part03 {
    bottom: 0;
    left: 0;
    height: calc(50% - 4rem);
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top: none;
}

.item-border-left .item-border__part01 {
    top: 0;
    left: 0;
    height: calc(50% - 4rem);
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    border-bottom: none;
}

.item-border-left .item-border__part02 {
    top: calc(50% - 4rem);
    bottom: calc(50% - 4rem);
    left: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
}

.item-border-left .item-border__part03 {
    bottom: 0;
    left: 0;
    height: calc(50% - 4rem);
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top: none;
}

.item-border-bottom .item-border__part {
    height: 100%;
}

.item-border-bottom .item-border__part01 {
    top: 0;
    left: 0;
    width: calc(50% - 4rem);
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-right: none;
}

.item-border-bottom .item-border__part02 {
    top: 0;
    right: calc(50% - 4rem);
    left: calc(50% - 4rem);
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.item-border-bottom .item-border__part03 {
    top: 0;
    right: 0;
    width: calc(50% - 4rem);
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    border-left: none;
}

.item-border-top-right .item-border__part {
    height: 100%;
}

.item-border-top-right .item-border__part01 {
    top: 0;
    left: 0;
    width: calc(100% - 16rem);
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-right: none;
}

.item-border-top-right .item-border__part02 {
    top: 0;
    right: 8rem;
    left: calc(100% - 16rem);
    border-top: none;
    border-right: none;
    border-left: none;
}

.item-border-top-right .item-border__part03 {
    top: 0;
    right: 0;
    width: 8rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    border-left: none;
}

.item-border-right-top .item-border__part {
    width: 100%;
}

.item-border-right-top .item-border__part01 {
    top: 0;
    left: 0;
    height: 5rem;
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    border-bottom: none;
}

.item-border-right-top .item-border__part02 {
    top: 5rem;
    bottom: calc(100% - 13rem);
    left: 0;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.item-border-right-top .item-border__part03 {
    bottom: 0;
    left: 0;
    height: calc(100% - 13rem);
    border-bottom-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top: none;
}

.item-border-top-left .item-border__part {
    height: 100%;
}

.item-border-top-left .item-border__part01 {
    bottom: 0;
    left: 0;
    height: calc(100% - 5rem);
    width: 5rem;
    border-bottom-left-radius: 2rem;
    border-top: none;
    border-right: none;
}

.item-border-top-left .item-border__part02 {
    display: none;
}

.item-border-top-left .item-border__part03 {
    right: 0;
    bottom: 0;
    width: calc(100% - 5rem);
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    border-left: none;
}

.item-border-top-right:after {
    top: 0;
    right: 11rem;
}

.item-border-right-top:after {
    display: none;
}

.item-border-up-left:after {
    top: 0;
    left: 0;
}

.item-border:after {
    content: '';
    position: absolute;
    height: 2rem;
    width: 2rem;
    margin: auto;
    border-radius: 2rem;
    background: #ff7101;
}

.item-border-right:after {
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.item-border-left:after {
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.item-border-bottom:after {
    right: 0;
    bottom: 0;
    left: 0;
}

.item-background {
    position: absolute;
    z-index: -1;
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    overflow: hidden;
    filter: drop-shadow(1rem 1rem 2rem rgba(0,0,0,.015));
}

.item-background:after {
    content: '';
    position: absolute;
    height: 14rem;
    width: 14rem;
    max-width: none;
    border-radius: 50%;
    border: 4rem solid #ffffff;
}

.item-background__part {
    position: absolute;
    background: #fff;
}

.item-background-left .item-background__part {
    width: 100%;
}

.item-background-left .item-background__part01 {
    top: 0;
    left: 0;
    height: calc(100% / 2 - 4rem);
}

.item-background-left .item-background__part02 {
    top: calc(100% / 2 - 4rem);
    right: 0;
    bottom: calc(100% / 2 - 4rem);
    left: 5rem;
}

.item-background-left .item-background__part03 {
    bottom: 0;
    left: 0;
    height: calc(100% / 2 - 4rem);
}

.item-background-bottom .item-background__part {
    height: 100%;
}

.item-background-bottom .item-background__part01 {
    top: 0;
    left: 0;
    width: calc(100% / 2 - 4rem);
}

.item-background-bottom .item-background__part02 {
    right: calc(100% / 2 - 4rem);
    bottom: 5rem;
    left: calc(100% / 2 - 4rem);
}

.item-background-bottom .item-background__part03 {
    top: 0;
    right: 0;
    width: calc(100% / 2 - 4rem);
}

.item-background-top-right .item-background__part {
    height: 100%;
}

.item-background-top-right .item-background__part01 {
    top: 0;
    left: 0;
    width: calc(100% - 14rem);
}

.item-background-top-right .item-background__part02 {
    top: 5rem;
    right: 6rem;
    left: calc(100% - 14rem);
}

.item-background-top-right .item-background__part03 {
    top: 0;
    right: 0;
    width: 6rem;
}

.item-background-right-top .item-background__part {
    width: 100%;
}

.item-background-right-top .item-background__part01 {
    top: 0;
    left: 0;
    height: 4rem
}

.item-background-right-top .item-background__part02 {
    top: 1.5rem;
    right: 5rem;
    bottom: calc(100% - 11rem);
}

.item-background-right-top .item-background__part03 {
    right: 0;
    bottom: 0;
    height: calc(100% - 11rem);
}

.item-background-left:after {
    top: 0;
    bottom: 0;
    left: -8rem;
    margin: auto;
}

.item-background-bottom:after {
    right: 0;
    bottom: -8rem;
    left: 0;
    margin: auto;
}

.item-background-top-right:after {
    top: -8rem;
    right: 3rem;
    margin: auto;
}

.item-background-right-top:after {
    top: 0;
    right: -8rem;
    margin: auto;
}

/* Check List */

.check__list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.check__list_item {
    position: relative;
    display: flex;
    align-items: center;
    height: 4rem;
    margin-top: 2rem;
    filter: drop-shadow(.5rem .5rem 1rem rgba(0,0,0,.025));
    border-radius: 4rem;
    background: rgba(50,190,125,.05);
    color: #32be7d;
    fill: #32be7d;
    transition: all .3s ease-out;
}

.check__list_item:hover {
    background: #32be7d;
    color: #fff;
    fill: #fff;
}

.check__list_item-uncheck {
    background: rgba(233,30,100,.05);
    color: #e91e64;
    fill: #e91e64;
}

.check__list_item-uncheck:hover {
    background: #e91e64;
    color: #fff;
    fill: #fff;
}

.check__list_pic {
    display: flex !important;
    flex-shrink: 0;
    height: 2rem;
    width: 2rem;
    margin: 0 1.25rem;
}

.check__list_p {
    font: 500 1.6rem / 1.3 'Montserrat', sans-serif;
}

/* Drop-Down */

.drop-down-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.drop-down-list__item {
    min-height: 18rem;
}

.drop-down-list__item_top {
    display: flex;
    align-items: center;
}

.drop-down-list__item_pic {
    margin: 0 3rem 0 0;
}

.drop-down-list__item_label {
    position: absolute;
    z-index: 2;
    top: 8rem;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    filter: drop-shadow(1rem 1rem 2rem rgba(0,0,0,.25));
    border-radius: 50%;
    background: #ff7101;
    fill: #fff;
    cursor: pointer;
}

.drop-down-list__label_pic {
    display: flex !important;
    height: 50%;
    width: 50%;
    transition: all .3s ease-out;
}

input:checked + .drop-down-list__item_label .drop-down-list__label_pic {
    transform: rotate(180deg);
}

.drop-down-list__item_data {
    display: none;
    flex-direction: column;
}

input:checked + .drop-down-list__item_label + .drop-down-list__item_data {
    display: flex;
}

/* Platform */

.platform__container {
    align-items: center;
}

.platform__h2 {
    flex-shrink: 0;
    font: 700 2.5rem / 1.3 'Montserrat', sans-serif;
    color: #0f488a;
}

.platform-supported .platform__h2 {
    margin-right: 7%;
}

.platform-partners .platform__h2 {
    margin-right: 9%;
}

.platform-cloud .platform__h2 {
    margin-right: 11%;
}

.platform__list {
    display: flex;
    flex: 1 0 auto;
    justify-content: space-between;
}

.platform__list_link {
    display: flex;
    transition: all .3s ease-out;
}

.platform__list_link:hover {
    transform: scale(1.1);
}

.platform__list_text {
    display: none;
}

.platform__list_image {
    display: flex !important;
    height: 5rem;
    filter: drop-shadow(.75rem .75rem 1.5rem rgba(0,0,0,.05));
    font: 600 2rem / 2.5 'Montserrat', sans-serif;
}

.platform-partners .platform__list_image {
    height: 5rem;
}

.platform-certificates .platform__list_image {
    height: 12rem;
}

/* Testimonials */

.testimonials__list_item {
    width: 100%;
}

.testimonials__list_blockquote {
    order: 2;
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.testimonials__blockquote_p {
    font: 500 2rem / 1.5 'Montserrat', sans-serif;
}

.testimonials__list_full .testimonials__blockquote_p:not(:first-of-type) {
    margin-top: 2rem;
}

.testimonials__list_item .link-first {
    order: 3;
    display: flex !important;
    align-self: flex-end;
    cursor: pointer;
}

.testimonials__list input:checked + .link-first .testimonials__label_uncheck {
    display: none;
}

.testimonials__label_check {
    display: none;
}

.testimonials__list input:checked + .link-first .testimonials__label_check {
    display: flex;
}

.testimonials__list_full {
    order: 1;
    display: none;
    margin-bottom: 2rem;
}

.testimonials__list input:checked + .link-first + .testimonials__list_full {
    display: flex;
}

.testimonials__list_link {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
    width: 12rem;
    margin-top: -4rem;
    box-shadow: 0 0 3rem rgba(0,0,0,.05);
    border-radius: 50%;
    background: #fff;
    transition: all .3s ease-out;
}

.testimonials__list_link:hover {
    transform: scale(1.1);
}

.testimonials__list_info {
    display: flex;
    flex-shrink: 0;
    align-items: flex-end;
    width: 100%;
    padding-left: 4rem;
}

.testimonials__list_image {
    display: flex !important;
    height: 100%;
    width: 100%;
}

.testimonials__list_writer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 3rem;
}

.testimonials__list_h4 {
    font: 700 2.5rem / 1 'Montserrat', sans-serif;
}

.testimonials__list_p {
    margin-top: 1rem;
    font: 400 1.6rem / 1 'Montserrat', sans-serif;
}

/* Plans */

.plans__list_item {
    width: calc(100% / 3 - 2rem);
}

.plans__list_label {
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

input:checked + .plans__list_label .item-border .item-border__part {
    border-color: #ff7101;
}

.plans__list_pic {
    position: absolute;
    top: -2rem;
    right: 5rem;
}

.plans__list_h4 {
    font: 700 3rem / .8 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.plans__list_h5 {
    margin-top: 3rem;
    padding: 1.5rem 0;
    background: #009bde;
    font: 700 2.5rem / .8 'Montserrat', sans-serif;
    text-align: center;
    color: #fff;
    transition: all .3s ease-out;
}

.plans__list_available {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.plans__list_h6 {
    flex-shrink: 0;
    font: 600 1.5rem / .8 'Montserrat', sans-serif;
}

.plans__list_headline {
    margin: 2.5rem 0 -1rem;
    font: 700 2rem / 1.25 'Montserrat', sans-serif;
}

.plans__list_platforms {
    display: flex;
}

.plans__platforms_item {
    margin-left: 2rem;
}

.plans__platforms_link {
    display: flex;
    height: 4rem;
    filter: drop-shadow(.75rem .75rem 1.5rem rgba(0,0,0,.05));
    transition: all .3s ease-out;
}

.plans__platforms_link:hover {
    transform: scale(1.1);
}

.plans__platforms_link img {
    display: flex !important;
}

/* Page Top */

.page-top__container {
    position: relative;
    justify-content: center;
    align-items: center;
}

.page-top__h1 {
    margin-top: -.2em;
    font: 700 5.5rem / 1.25 'Montserrat', sans-serif;
}

/* Case */

.case__list_item {
    width: calc(100% / 2 - 1.5rem);
}

.case__list_headlines {
    display: flex;
}

.case__headlines_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
    width: 12rem;
    margin: -7rem 2rem 0 0;
    box-shadow: 0 0 3rem rgba(0,0,0,.05);
    border-radius: 50%;
    background: #fff;
    transition: all .3s ease-out;
}

.case__headlines_link:hover {
    transform: scale(1.1);
}

.case__headlines_image {
    display: flex !important;
    height: 70%;
    width: 70%;
}

.case__headlines_info {
    display: flex;
    flex-direction: column;
    padding-top: .5rem;
}

.case__headlines_p {
    margin-top: .5rem;
    font: 400 1.5rem / .8 'Montserrat', sans-serif;
}

.case__list_item .link-first {
    align-self: flex-end;
}

/* The Stack */

.h3-headline__top {
    display: flex;
    justify-content: center;
    margin-top: -.5em;
    font-size: 5rem;
    line-height: 1.2;
}
.h3-headline__left {
    display: flex;
    flex-direction: column;
    color: #ff7101;
}

.h3-headline__right {
    display: flex;
    flex-direction: column;
    color: #009bde;
}

.h3-headline__small {
    font-weight: 400;
}

.h3-headline__sign:nth-of-type(2) {
    display: flex;
    align-items: center;
    margin: 0 5rem;
}

.h3-headline__sign:nth-of-type(4) {
    display: flex;
    align-items: center;
    margin-left: 5rem;
}

.h3-headline__bottom {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    font-size: 7.5rem;
}

.stack__list {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    width: 100%;
}

.stack__list:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    margin: auto;
    border-radius: 2rem;
    background: #ff7101;
}

.stack__list_row {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.stack__list_row:before {
    content: '';
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 5rem;
    left: 0;
    width: 2rem;
    margin: auto;
    background: rgba(0,155,222,.1);
}

.stack__list_row:first-of-type:before {
    top: 5rem;
}

.stack__list_row:nth-of-type(1):after,
.stack__list_row:nth-of-type(2):after {
    background: #ff7101;
}

.stack__list_row:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    margin: auto;
    border-radius: 2rem;
    background: #009bde;
}

.stack__list_item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem;
    background: #fff;
    border: 2rem solid rgba(0,155,222,.1);
    border-top: none;
    width: 50%;
}

.stack__list_item:first-of-type {
    margin-right: 4rem;
}

.stack__list_item:last-of-type {
    margin-left: 4rem;
}

.stack__list_row:first-of-type .stack__list_item {
    border-top: 2rem solid rgba(0,155,222,.1);
}

.stack__list_row:first-of-type .stack__list_item:first-of-type {
    border-top-left-radius: 2rem;
}

.stack__list_row:first-of-type .stack__list_item:last-of-type {
    border-top-right-radius: 2rem;
}

.stack__list_row:last-of-type .stack__list_item:first-of-type {
    border-bottom-left-radius: 2rem;
}

.stack__list_row:last-of-type .stack__list_item:last-of-type {
    border-bottom-right-radius: 2rem;
}

.stack__list_item:first-of-type {
    border-right: none;
}

.stack__list_item:last-of-type {
    border-left: none;
}

.stack__list_row .stack__list_item:first-of-type {
    text-align: right;
}

.stack__list_row .stack__list_item:first-of-type {
    justify-content: flex-end;
}

.stack__list_row .stack__list_item:first-of-type .stack__list_pic {
    order: 2;
    margin-left: 3rem;
}

.stack__list_row .stack__list_item:last-of-type .stack__list_pic {
    margin-right: 3rem;
}

.stack__list_h4 {
    font: 700 2rem / 1.3 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.stack__list_p {
    margin-top: 1.25rem;
    font: 400 1.6rem / 1.6 'Montserrat', sans-serif;
}

.stack .button {
    align-self: center;
}

/*   Clients   */

.clients__h2 {
    font: 700 2.75rem / 1.3 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.clients__container {
    align-items: center;
}

.slick__slider {
    width: 100%;
    margin-top: 5rem;
}

.slick-list {
    max-width: none;
    margin: 0 8rem;
    padding: 1rem 1rem !important;
}

.slick-track {
    max-width: none;
}

.slick-slide {
    display: flex !important;
    justify-content: center;
    margin-right: 7.5rem;
}

.slick__slider button {
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2rem;
    width: 2rem;
    box-shadow: 0 .75rem 2rem rgba(0,0,0,.15);
    border-radius: 50%;
    background: #ff7101 !important;
    transform: translateY(0) !important;
    transition: all .3s ease-out;

}

.slick__slider button:hover {
    background: #009bde !important;
}

.slick__slider button:before {
    display: none !important;
}

.slick__slider button:after {
    content: '';
    margin-top: -.1em;
    font: 400 1.7rem / .8 'Concert One', sans-serif !important;
    color: #fff;
}

.slick__slider .slick-prev:after {
    content: '<';
}

.slick__slider .slick-next:after {
    content: '>';
    letter-spacing: -.05em;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick__slider_image {
    display: flex !important;
    height: 5rem;
    transition: all .3s ease-out;
}

.slick__slider_image:hover {
    transform: scale(1.1);
}

/*   Header   */

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 1rem rgba(0,0,0,.025), 0 1.5rem 2rem rgba(0,0,0,.025);
    background: #fff;
    transform: translate3d(0,0,0);
}

.header__container {
    align-items: center;
    height: 10rem;
}

.header__logo_link {
    display: flex;
    flex-shrink: 0;
    transition: all .3s ease-out;
}

.header__logo_link:hover {
    transform: scale(1.1);
}

.header__logo_link {
    display: flex;
    flex-shrink: 0;
}

.header__logo_image {
    height: 5rem !important;
    font: 700 3rem / 1.5 'Montserrat', sans-serif;
}

.header__nav_label,
.header__menu_pic {
    display: none;
}

.header__nav {
    height: 100%;
}

.header__menu {
    display: flex;
    height: 100%;
}

.header__menu_item {
    position: relative;
}

.header__menu_item:not(:first-of-type) {
    margin-left: 5rem;
}

.header__menu_item:last-of-type {
    display: none;
}

.header__menu_link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font: 600 1.4rem / .8 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all .3s ease-out;
}

.header__menu_link:hover {
    color: #009bde;
}

.header__menu_link:hover:after {
    opacity: 1;
}

.header__submenu {
    position: absolute;
    z-index: -1;
    top: calc(100% - 2rem);
    left: -10rem;
    display: flex;
    width: 65rem;
    max-width: none;
    margin-top: -5rem;
    padding: 3rem;
    transform: scaleY(0);
    box-shadow: 0 0 3rem rgba(0,0,0,.1);
    background: #fff;
    border-radius: 1rem;
    opacity: 0 !important;
    transition: transform 0s ease-out .3s, margin .3s ease-out, opacity .1s ease-out;
}

.header__menu_item:hover .header__submenu {
    z-index: 2;
    margin-top: 0;
    transform: scaleY(1);
    opacity: 1 !important;
    transition: margin .3s ease-out, opacity .3s ease-out;
}

.header__submenu:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: none;
    border-radius: 1rem;
    background: #fff;
}

.header__submenu:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -1rem;
    left: 13rem;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: #fff;
}

.header__submenu_column {
    display: flex;
    flex-direction: column;
}

.header__submenu_column:not(:first-of-type) {
    margin-left: 3rem;
}

.header__submenu_headline {
    font: 600 1.4rem / .8 'Montserrat', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.header__subsubmenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

.header__subsubmenu_item {
    position: relative;
    margin-top: 1rem;
    padding-left: 1.5rem;
    transition: color .3s ease-out;
}

.header__subsubmenu_item:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: .6rem;
    left: 0;
    height: .5rem;
    width: .5rem;
    margin: auto;
    border-radius: 50%;
    background: #ff7101;
}

.header__subsubmenu_link {
    font: 500 1.4rem / 1.35 'Montserrat', sans-serif;
    white-space: nowrap;
    transition: all .3s ease-out;
}

.header__subsubmenu_link:hover {
    color: #009bde;
}

.header .button {
    margin-top: 0;
    font-size: 1.6rem;
}

/*   Aside   */

.aside {
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: calc(25% - 1.5rem);
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.sticky:before,
.sticky:after {
    content: '';
    display: table;
}

.aside__list {
    z-index: 12;
}

.aside__item {
    align-items: center;
}

.aside__item:first-of-type {
    margin-top: 0;
}

.aside__item_pic {
    margin-top: -7rem;
}

.aside__item .h4-headline {
    margin-top: 2.5rem;
}

.aside__links {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
    margin: 2.5rem 0 1.5rem;
}

.aside__links_item {
    position: relative;
    margin-top: 2rem;
    padding-left: 2.25rem;
}

.aside__links_item:before {
    content: '';
    position: absolute;
    top: .8rem;
    left: 0;
    height: .7rem;
    width: .7rem;
    border-radius: 50%;
    background: #ff7101;
}

.aside__links_link {
    font: 500 1.6rem / 1.5 'Montserrat', sans-serif;
    transition: all .3s ease-out;
}

.aside__links_link:hover {
    color: #ff7101;
}

.aside__item_tegs {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 1rem);
    max-width: none;
    margin-top: 1rem;
}

.aside__tegs_label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    margin: 1rem 1rem 0 0;
    padding: 0 1rem;
    border: .2rem solid #009bde;
    border-radius: 1rem;
    font: 600 1.4rem / 1.6 'Montserrat', sans-serif;
    color: #009bde;
    cursor: pointer;
    transition: all .3s ease-out;
}

.aside__tegs_label:hover {
    border: .2rem solid #ff7101;
    color: #ff7101;
}

input:checked + .aside__tegs_label {
    border-color: #ff7101;
    background: #ff7101;
    color: #fff;
}

.aside .button {
    flex-shrink: 0;
    width: 100%;
}

/*   Home Page Content   */

.home-top {
    position: relative;
    display: flex;
}

.home-top__container {
    justify-content: center;
    align-items: flex-start;
}

.home-top__image {
    position: absolute;
    top: 0;
    right: 0;
    display: flex !important;
    height: 100%;
    width: 55%;
    filter: drop-shadow(.5rem .5rem 1rem rgba(123,189,249,.5));
}

.home-top__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
}

.home-top__content_h1 {
    font: 700 4.5rem / 1.5 'Montserrat', sans-serif;
}

.home-top__content_h2 {
    width: 70%;
    margin-top: .5rem;
    font: 400 3rem / 1.75 'Montserrat', sans-serif;
}

.home-top .buttons {
    margin-top: 4.5rem;
}

.home-top__list {
    display: flex;
    margin-top: 10rem;
}

.home-top__list_item:not(:first-of-type) {
    margin-left: 3rem;
}

.home-top__list_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12rem;
    width: 12rem;
    box-shadow: 0 .75rem 2rem rgba(0,155,222,.075);
    border-radius: 50%;
    background: #fff;
    transition: all .3s ease-out;
}

.home-top__list_link:hover {
    box-shadow: 0 1rem 3rem rgba(0,155,222,.15);
    transform: scale(1.1);
}

.home-top__list_image {
    display: flex !important;
    height: 50%;
}

.home-what {
    padding: 0 0 10rem;
}

.home-what__list_item {
    width: calc(100% / 2 - 1.5rem);
}

.home-what__list_top {
    display: flex;
    align-items: flex-end;
}

.home-what__list_pic {
    margin-top: -7rem;
}

.home-what__list_h4 {
    margin: 0 0 0 3rem;
    text-transform: uppercase;
}

.home-what .link-first{
    align-self: flex-end;
}

.home-about__container {
    flex-wrap: wrap;
}

.home-about__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% / 2 - 3rem);
}

.home-about .h3-headline {
    width: 85%;
}

.home-about__content .p-text:first-of-type {
    margin-top: 4.5rem;
}

.home-about__numbers {
    width: calc(100% / 2 - 3rem);
}

.home-about__numbers_item {
    align-items: center;
    width: calc(100% / 2 - 1.5rem);
    height: calc(100% / 2 - 4rem);
    padding: 7rem 4rem 6rem;
    text-align: center;
}

.who-about__numbers_pic {
    position: absolute;
    top: -2rem;
    right: 0;
    left: 0;
    margin: auto;
}

.home-about__numbers_h4 {
    margin: 4rem 0 0;
    font: 700 4rem / 1 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #009bde;
}

.home-about__numbers_p {
    width: 80%;
    text-align: center;
}

.home-testimonials {
    padding-bottom: 0;
}

/*   Footer   */

.footer {
    position: relative;
    margin-top: 11rem;
    background: #0f488a;
}

.footer-help {
    margin-top: -11rem;
}

.footer-help__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem;
    box-shadow: 0 0 3rem rgba(0,0,0,.1);
    border-radius: 2.5rem;
    background: #009bde;
}

.footer-help__h2 {
    font: 700 3.5rem / 1.3 'Montserrat', sans-serif;
    color: #fff;
}

.footer-help .buttons .button {
    font-size: 1.6rem;
    font-weight: 700;
}

.footer__top_container {
    justify-content: space-between;
}

.footer__top_button {
    display: none;
}

.footer__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10rem;
}

.footer__h3 {
    font: 700 2rem / .8 'Montserrat', sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.footer__data {
    display: flex;
    flex: 1 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 5rem;
}

.footer__data_list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__data_list:not(:first-of-type) {
    margin-left: 3rem;
}

.footer__data_item:not(:first-of-type) {
    margin-top: 3rem;
}

.footer__data_link {
    display: flex;
    align-items: center;
}

.footer__link_image {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    margin-right: 1rem;
    box-shadow: 0 0 2rem rgba(0,0,0,.1);
    border-radius: 50%;
    background: #ff7101;
    transition: all .3s ease-out;
}

.footer a:hover .footer__link_image {
    background: #009bde;
}

.footer__link_pic {
    display: flex !important;
    height: 45%;
    width: 45%;
    fill: #fff;
}

.footer__p,
.footer__bottom_h4 {
    font: 400 1.3rem / 1.5 'Montserrat', sans-serif;
    color: rgba(255,255,255,.75);
    transition: all .3s ease-out;
}
.footer__bottom_link {
    text-align: right;
    display: block;
    text-decoration: underline;
    font: 400 1.3rem / 1.5 'Montserrat', sans-serif;
    margin-top: .5rem;
    color: rgba(255,255,255,.75);

}

.footer a:hover .footer__p {
    color: #009bde;
}

.footer__bottom {
    padding: 7.5rem 0 10rem;
}

.footer__bottom_container {
    justify-content: space-between;
    align-items: center;
}

.footer__bottom_links {
    display: flex;
}

.footer__bottom_item {
    display: flex;
    align-items: center;
}

.footer__bottom_item:not(:first-of-type) {
    margin-left: 6rem;
}

.footer__bottom_social {
    display: flex;
    align-items: center;
}

.footer__social_list {
    display: flex;
}

.footer__bottom_social .footer__social_item:not(:first-of-type) {
    margin-left: 3rem;
}

.footer__bottom_social .footer__link_image {
    height: 3.5rem;
    width: 3.5rem;
    margin-right: 0;
}

/*   Responsive   */

@media screen and (max-width : 1440px) {

    html {
        font-size: 7.5px;
    }
}

@media screen and (max-width : 1024px) {

    html {
        font-size: 5.75px;
    }
}

@media screen and (max-width : 832px) {

    html {
        font-size: 5px;
    }
}

@media screen and (max-width : 768px) {

    html {
        font-size: 10px;
    }

    .mobile-none {
        display: none !important;
    }

    .mobile-width-100 {
        width: 100% !important;
    }

    .h4-headline {
        font-size: 2.75rem !important;
    }

    .p-text {
        font-size: 1.8rem !important;
    }

    .buttons {
        justify-content: center;
    }

    .drop-down-list__item_pic {
        margin: -7rem 0 0;
    }

    .drop-down-list__item_top {
        flex-direction: column;
    }

    .drop-down-list__item_top h5 {
        margin-top: 3rem;
        text-align: center;
    }

    .drop-down-list__item .p-text {
        margin-top: 3rem;
        text-align: center;
    }

    .platform__container {
        flex-direction: column;
    }

    .platform-supported .platform__list_image {
        height: 3rem;
    }

    .platform-partners .platform__list_image {
        height: 4.25rem;
    }

    .platform-certificates .platform__list_image {
        height: 6rem;
    }

    .platform-cloud .platform__list_image {
        height: 4.25rem;
    }

    .platform .platform__h2 {
        margin: 0 0 3rem;
        font-size: 3rem;
        text-align: center;
    }

    .h3-headline__top {
        font-size: 2.5rem;
    }

    .stack__list_item {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .stack__list_row .stack__list_item:first-of-type {
        text-align: left;
    }

    .stack__list_row .stack__list_item:first-of-type {
        justify-content: flex-start;
    }

    .stack__list_row .stack__list_item:first-of-type .stack__list_pic {
        order: 0;
        margin: 0;
    }

    .stack__list_row .stack__list_item:last-of-type .stack__list_pic {
        order: 0;
        margin: 0;
    }

    .stack__list_h4 {
        margin-top: 2rem;
        font-size: 1.5rem;
        line-height: 1.75 !important;
        text-align: center;
    }

    .stack__list_p {
        display: none;
    }

    .testimonials__blockquote_p {
        text-align: center;
    }

    /*   Header   */

    .header__logo_link {
        order: 1;
    }

    .header__logo_image {
        height: 4.5rem !important;
    }

    .header__nav {
        display: flex;
        order: 0;
        align-items: center;
    }

    .header .button {
        order: 2;
    }

    .header__nav_label {
        position: relative;
        display: flex !important;
        height: 3.5rem;
        width: 3.5rem;
        fill: #ff7101;
        cursor: pointer;
    }

    .header__nav_label:hover {
        fill: #009bde;
    }

    .header__nav_pic {
        position: absolute;
        height: 100%;
        width: 100%;
        display: flex !important;
        transition: all .3s ease-out;
    }

    .header__nav_close {
        z-index: 1;
        opacity: 0;
    }

    .header__nav_open {
        z-index: 2;
        opacity: 1;
    }

    input:checked + .header__nav_label .header__nav_open {
        z-index: 1;
        opacity: 0;
    }

    input:checked + .header__nav_label .header__nav_close {
        z-index: 2;
        opacity: 1;
    }

    .header__menu {
        position: absolute;
        top: 10rem;
        left: -100%;
        flex-direction: column;
        height: calc(100vh - 10rem);
        padding: 0;
        box-shadow: 0 0 1rem rgba(0,0,0,.025), 0 1.5rem 2rem rgba(0,0,0,.025);
        border-top: .2rem solid rgba(0,155,222,.1);
        background: #fff;
        overflow-y: scroll;
        transition: all .3s ease-out;
    }

    .header__menu::-webkit-scrollbar {
        background-color: rgba(0,155,222,.1);
    }

    input:checked + .header__nav_label + .header__menu {
        display: flex;
        left: 0;
    }

    .header__menu_item:not(:first-of-type) {
        margin-left: 0;
    }

    .header__menu_item {
        position: relative;
        z-index: 1;
    }

    .header__menu_item:before {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #fff;
    }

    .header__menu_item.color-fourth {
        color: #0f488a;
    }

    .header__menu_item:last-of-type {
        z-index: 5;
        display: flex;
        flex: 1 0 auto;
        justify-content: center;
        padding: 6rem 0;
    }

    .header__menu_link {
        width: 100%;
        padding: 3rem;
        border-bottom: .2rem solid rgba(0,155,222,.1);
        font-size: 3rem;
    }

    .header__submenu {
        position: relative;
        top: 0;
        left: 0;
        flex-direction: column;
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 1;
        transition: all .3s ease-out;
    }

    .header__submenu:before,
    .header__submenu:after {
        display: none;
    }

    .header__menu_label {
        position: relative;
        display: flex;
        cursor: pointer;
    }

    input:checked + .header__menu_label .header__menu_link,
    input:checked + .header__submenu_label .header__submenu_headline {
        color: #ff7101;
    }

    .header__menu_link:hover {
        color: #009bde !important;
    }

    .header__menu_pic {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 3rem;
        bottom: 0;
        display: flex !important;
        height: 2rem;
        width: 2rem;
        margin: auto;
        transform: rotate(0);
        fill: #ff7101;
        transition: all .3s ease-out;
    }

    input:checked + .header__menu_label .header__menu_pic,
    input:checked + .header__submenu_label .header__menu_pic {
        transform: rotate(180deg);
    }

    .header__submenu {
        transform: scale(1);
        box-shadow: none;
        opacity: 0;
        width: auto;
        transition: all .3s ease-out;
    }

    input:checked + .header__menu_label + .header__submenu {
        height: 100%;
        opacity: 1 !important;
        transition: all .3s ease-out;
    }

    .header__submenu:before {
        display: none;
    }

    .header__submenu:after {
        display: none;
    }

    .header__submenu_column {
        position: relative;
        border-bottom: .2rem solid rgba(0,155,222,.1);
        background: #fff;
    }

    .header__submenu_column:not(:first-of-type) {
        margin-left: 0;
    }

    .header__submenu_label {
        position: relative;
        display: flex;
        padding: 3rem 3rem 3rem 6rem;
        cursor: pointer;
        transition: all .3s ease-out;
    }

    .header__submenu_headline {
        font-size: 2.5rem;
        transition: all .3s ease-out;
    }

    .header__submenu_label:hover .header__submenu_headline{
        color: #009bde !important;
    }

    .header__subsubmenu {
        max-height: 0;
        margin: 0;
        opacity: 0;
        transition: all .3s ease-out;
    }

    input:checked + .header__submenu_label + .header__subsubmenu {
        z-index: 1;
        max-height: 100%;
        opacity: 1;
        transition: all .3s ease-out;
    }

    .header__subsubmenu_item {
        position: relative;
        width: 100%;
        margin: 0;
        padding-left: 0;
    }

    .header__subsubmenu_item:before {
        z-index: 0;
        top: 0;
        bottom: 0;
        left: 6rem;
        height: 1rem;
        width: 1rem;
    }

    .header__subsubmenu_link {
        position: relative;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 2.5rem 3rem 2.5rem 10rem;
        border-top: .2rem solid rgba(0,155,222,.1);
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .header__social_list {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
    }

    .header__social_item:not(:first-of-type) {
        margin-left: 3rem;
    }

    .header__social_link {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 6rem;
        width: 6rem;
        border-radius: 50%;
        background: #ff7101;
        fill: #fff;
        transition: all .3s ease-out;
    }

    .header__social_link:hover {
        background: #009bde;
    }

    .header__link_pic {
        display: flex !important;
        height: 45%;
        width: 45%;
    }

    /*   Home Page Content   */

    .home-top__content {
        align-items: center;
    }

    .home-top__content_h1,
    .home-top__content_h2,
    .page-top__h1,
    .page-top .p-text {
        text-align: center;
    }

    .home-top__providers {
        justify-content: center;
        width: 100%;
    }

    .home-top__list {
        justify-content: center;
    }

    .home-what__list_top {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-what__list_h4 {
        margin: 3rem 0 0;
    }

    .home-about .h2-headline,
    .home-about .h3-headline,
    .home-about .home-about__content_p {
        width: 100%;
        text-align: center;
    }

    .home-about__content .p-text {
        text-align: center;
    }

    .home-about__content .button {
        align-self: center;
    }

    .home-about__numbers_item {
        margin-top: 6rem;
    }

    .home-about__numbers_h4 {
        font-size: 3.5rem
    }

    /*   Footer   */

    .footer-help .buttons {
        flex-direction: column;
    }

    .footer-help .buttons .buttons__item:not(:first-of-type) {
        margin: 0;
    }

    .footer-help .buttons .button {
        height: 6rem;
        font-size: 2.4rem
    }

    .footer__top_container {
        flex-direction: column;
    }

    .footer__top_button {
        display: flex;
        height: 6rem;
        margin-top: 10rem;
        font-size: 2.4rem;
    }

    .footer__item .footer__data {
        flex-direction: column;
    }

    .footer__item .footer__data .footer__data_list:nth-of-type(2){
        margin: 3rem 0 0;
    }

    .footer__data {
        margin-top: 5rem;
    }

    .footer__h3 {
        font-size: 2.75rem;
    }

    .footer__p,
    .footer__bottom_h4 {
        font-size: 2.2rem;
    }

    .footer__bottom_link {
        font-size: 2rem;
    }

    .footer__link_image {
        height: 5rem;
        width: 5rem;
        margin-right: 3rem;
    }

    .footer__bottom {
        padding-top: 10rem;
    }

    .footer__bottom_social .footer__link_image {
        height: 6rem;
        width: 6rem;
    }

    .footer__bottom_container {
        flex-direction: column;
    }

    .footer__bottom_social {
        order: 0;
    }

    .footer__bottom_help {
        order: 1;
        margin-top: 7.5rem;
    }

    .footer__bottom_h4 {
        order: 2;
        margin-top: 3rem;
    }

    .calendar.section{
        padding: 5rem 0!important;
    }

    .calendar.section .h3-headline{
        margin-bottom: 25px;
    }

    .calendar.section .calendly-inline-widget{
        height: 1050px!important;
    }
}

@media screen and (max-width : 668px) {

    html {
        font-size: 7.5px;
    }
}

@media screen and (max-width : 420px) {

    html {
        font-size: 6px;
    }
}

@media screen and (max-width : 380px) {

    html {
        font-size: 5.75px;
    }
}

@media screen and (max-width : 360px) {

    html {
        font-size: 5.5px;
    }
}

@media screen and (max-width : 320px) {

    html {
        font-size: 4.75px;
    }
}

/* Ajax spinner */
#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    -webkit-animation: sp-anime 0.8s infinite linear;
    animation: sp-anime 0.8s infinite linear;
}
@-webkit-keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}

