/* Modificators */
/** Spacers **/
._spacer-16 {
    height: 16px;
}

._spacer-32 {
    height: 32px;
}

._spacer-64 {
    height: 64px;
}

/** Display **/

._d-none {
    display: none;
}

._d-block {
    display: block;
}

._mobile-hide {
    display: block;
}

@media (max-width:767px) {
    ._mobile-hide {
        display: none;
    }
}

/** Position **/
._pos-relative {
    position: relative;
}

._pos-absolute {
    position: absolute;
}

._v-hidden {
    visibility: hidden;
}

._top-60 {
    top: 60px;
}


/** Width, height **/
._width-320 {
    width: 320px;
}

/** Flex **/

._d-flex {
    display: flex;
}

._flex-wrap {
    flex-wrap: wrap;
}

._flex-jc-start {
    justify-content: start !important;
}

._flex-jc-center {
    justify-content: center !important;
}

._flex-jc-space-between {
    justify-content: space-between !important;
}

@media (max-width:767px) {
    ._mobile-vertical-gap {
        row-gap: 24px;
    }
}

/** Margin, padding **/
._margin-top-14 {
    margin-top: 14px;
}

._margin-top-60 {
    margin-top: 60px;
}

._margin-bottom-36 {
    margin-bottom: 36px;
}

._padding-top-36 {
    padding-top: 36px;
}

._section-padding {
    padding: 100px 0;
}

@media (max-width:767px) {
    ._section-padding {
        padding: 40px 0;
    }
}

/** Background colors **/

._bg-transparent {
    background-color: transparent;
}

._bg-dark-white {
    background-color: #f7f7f8;;
}

._bg-purple-gradient {
    background-image: linear-gradient(to right, rgb(65, 41, 90) 0%, rgb(47, 7, 67) 51%, rgb(65, 41, 90) 100%);
}

/** Formating **/
._text-align-center {
    text-align: center;
}

/** Fonts **/

._font-style-italic {
    font-style: italic;
}

._font-size-15 {
    font-size: 15px;
}

._font-size-16 {
    font-size: 16px;
}

._font-size-18 {
    font-size: 18px;
}

._font-weight-700 {
    font-weight: 700;
}

._font-color-gold {
    color: rgb(255, 203, 74);
}

._font-color-light-blue {
    color: #0071c5;
}

/** Other **/
img._img-floated-right {
    float: right;
    width: 50%;
    margin-left: 24px;
}

@media (max-width:767px) {
    img._img-floated-right {
        float: none;
        width: 100%;
        margin-left: 0;
    }
}

._list-style-none {
    list-style: none;
}

._vertical-align-bottom {
    vertical-align: bottom;
}

._z-index-100 {
    z-index: 100 !important;
}

/* End modificators */