/***************************************
*General
****************************************/

body {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #FFF;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(24px, 1rem + 0.8vw, 30px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
    color: #FFF;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(32px, 1rem + 1.5vw, 44px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.225em;
    margin-bottom: 30px;
    position: relative;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    color: #FFF;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(32px, 1rem + 1.5vw, 44px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.225em;
    margin-bottom: 30px;
    position: relative;
}

.parallax-view {
    overflow: hidden;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}


/** Cursor **/

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    contain: layout style size;
    pointer-events: none;
    will-change: transform;
    -webkit-transition: opacity 0.3s, color 0.4s;
    -o-transition: opacity 0.3s, color 0.4s;
    -moz-transition: opacity 0.3s, color 0.4s;
    transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 59px;
    height: 59px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    backdrop-filter: blur(2px);
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.1s, -moz-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.1s;
    transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.cb-cursor-text {
    position: absolute;
    top: -9px;
    left: -39px;
    width: 90px;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(0) rotate(10deg);
    -moz-transform: scale(0) rotate(10deg);
    -ms-transform: scale(0) rotate(10deg);
    -o-transform: scale(0) rotate(10deg);
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #111;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    white-space: nowrap;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
    transition: opacity 0.4s, -webkit-transform 0.3s;
    -o-transition: opacity 0.4s, -o-transform 0.3s;
    -moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
    transition: opacity 0.4s, transform 0.3s;
    transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion,
    .cb-cursor.-opaque {
        mix-blend-mode: exclusion;
    }
}

@supports (mix-blend-mode: exclusion) {
    .cb-cursor.-exclusion:before,
    .cb-cursor.-opaque:before {
        background: #fff;
    }
}

.cb-cursor.-normal,
.cb-cursor.-text {
    mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
    background: rgba(255, 255, 255, 0.50);
}

.cb-cursor.-inverse {
    color: #fff;
}

.cb-cursor.-visible:before {
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
    -webkit-transform: scale(0.23);
    -moz-transform: scale(0.23);
    -ms-transform: scale(0.23);
    -o-transform: scale(0.23);
    transform: scale(0.23);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.cb-cursor.-text:before {
    background: rgba(255, 255, 255, 0.50);
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.cb-cursor.-text.-active:before {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
    -webkit-transform: scale(1.32);
    -moz-transform: scale(1.32);
    -ms-transform: scale(1.32);
    -o-transform: scale(1.32);
    transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.cb-cursor.-lg:before {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}

.cb-cursor.-hidden:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}


/** Animation **/

.img-anim img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
    transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.img-anim:hover img {
    -webkit-transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
    transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}


/* Preloader */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #111;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}


/** Slider **/

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: relative;
    align-items: center;
    justify-content: center;
    background: none;
    min-height: auto;
    height: auto;
    width: auto;
    color: inherit;
    display: inline-flex;
    font: inherit;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: none;
}

.slide-controls {
    display: flex;
    align-items: center;
    gap: 13px;
}

.slide-controls .swiper-btn-prev,
.slide-controls .swiper-btn-next {
    width: 42px;
    height: 42px;
    display: flex;
    background: none;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 42px;
    border: 1px solid #FFF;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: none;
    padding: 5px;
}

.swiper-btn-next:after,
.swiper-btn-prev:after {
    display: none;
}

.slide-controls .swiper-btn-prev:hover,
.slide-controls .swiper-btn-next:hover {
    background: #FFF;
    border-color: #FFF;
}

.slide-controls .swiper-btn-prev:hover svg path,
.slide-controls .swiper-btn-next:hover svg path {
    fill: #111 !important;
}

.slide-controls.swiper-pagination-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0 !important;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #0F76BB;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0F76BB;
    opacity: 1;
}


/** Colors **/

.color--1 {
    color: #fff !important;
}

.color--2 {
    color: #7A282A !important;
}

.color--3 {
    color: #575757 !important;
}

.color--4 {
    color: #D9D9D9 !important;
}

.color--5 {
    color: #D9D9D9 !important;
}

.color--6 {
    color: #000 !important;
}


/** Background **/

.background--1 {
    background-color: #fff !important;
}

.background--2 {
    background-color: #7A282A !important;
}

.background--3 {
    background-color: #575757 !important;
}

.background--4 {
    background-color: #D9D9D9 !important;
}

.background--5 {
    background-color: #D9D9D9 !important;
}

.background--6 {
    background-color: #000 !important;
}


/** Socials **/

.social-links .social-link {
    outline: none;
}

.social-txt {
    color: #FFF;
    font-size: clamp(18px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -0.2px;
    margin-right: 16px;
}

.social-link:hover svg path {
    fill: #7EB944 !important;
}

.social-links {
    display: flex;
    align-items: end;
}


/** Variables **/

p {
    margin-bottom: 1.625em;
}

section {
    padding-top: clamp(50px, 1rem + 7.8vh, 100px);
    padding-bottom: clamp(50px, 1rem + 7.8vh, 100px);
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    color: inherit;
}

figure {
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

strong,
b {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

.img-resp,
img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    text-transform: none;
    vertical-align: middle;
    width: 100%;
    outline: none;
    height: 31px;
    padding: 0 0 5px 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #FFF;
    background-color: transparent;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #FFF;
    border: 0;
    border-bottom: 1px solid #FFF;
    background-color: transparent;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #FFF !important;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 110.1+ */
    color: #FFF !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #FFF !important;
}

textarea::placeholder {
    color: #FFF !important;
}

.btn-1,
button,
input[type="submit"],
input[type="button"] {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(16px, 1rem + 0.3vw, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: none;
    padding: 0 0 5px;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: none;
    border-radius: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
    height: auto;
    gap: 16px;
    overflow: hidden;
    outline: none;
}

.btn-1:before {
    content: '';
    height: 1px;
    border-bottom: 1px solid #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-1:hover:before {
    width: 0;
}

.btn-1:hover,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
    background-color: transparent;
    color: #FFF;
    outline: none;
}

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

.text-hyphens {
    -ms-hyphens: auto;
    hyphens: auto;
}

.box-shadow {
    box-shadow: 4px 2px 18px 0 rgba(0, 0, 0, 0.11);
}

.overlay {
    background: #0C101C;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    opacity: 0.4;
}

.opacity-20 {
    opacity: 0.20;
}

.opacity-40 {
    opacity: 0.40;
}

.opacity-50 {
    opacity: 0.50;
}

.opacity-60 {
    opacity: 0.60;
}

.border-0 {
    border: 0;
}

.width-50 {
    width: 50%;
}

.flex--1 {
    -ms-flex: 1;
    flex: 1;
}

.z-index--1 {
    z-index: 1 !important;
}

.z-index--2 {
    z-index: 2 !important;
}

.z-index--auto {
    z-index: auto !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.text-normal {
    text-transform: none !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-transform-none {
    text-transform: none !important;
}

.margin-b-30px {
    margin-bottom: 30px;
}

.margin-b-40px {
    margin-bottom: 40px;
}

.margin-l-neg15px {
    margin-left: -15px;
}

.margin-r-neg15px {
    margin-right: -15px;
}

.border-radius-0 {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.border-radius-10px {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.border-radius-16px {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.v-middle {
    transform: translateY(-50%);
    top: 50%;
}

.h-middle {
    transform: translateX(-50%);
    left: 50%;
}

.vh-middle {
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.obj-fit-pos-t {
    object-position: top;
}

.obj-fit-pos-l9 {
    object-position: 9%;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-pos-tc {
    background-position: top center;
}

.bg-pos-tl {
    background-position: top left;
}

.bg-pos-bl {
    background-position: bottom left;
}

.bg-pos-tr {
    background-position: top right;
}

.bg-pos-br {
    background-position: bottom right;
}

.bg-pos-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.top-0 {
    top: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.width-50 {
    width: 50%;
}

.gap-30px {
    gap: 30px;
}

.gap-20px {
    gap: 20px;
}

.column-gap-30px {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.column-gap-50px {
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
    column-gap: 50px;
}

.column-count-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.txt-stroke {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    color: transparent;
}


/** Transition **/

img,
svg,
svg path {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/** Extra Outer **/

body .page {
    position: relative;
    background: #111;
    overflow: hidden;
}

body .site-main {
    background: #111;
}


/***************************************
* Header
****************************************/

.site-navigation__menu,
.site-navigation__inner,
.main-header .site-navigation .menu ul li,
.site-header-menu__inner,
.main-header__wrap {
    position: relative;
}

.main-menu-toggle input[type=checkbox],
.main-menu-toggle {
    display: none;
}

.site-header-menu {
    position: relative;
    z-index: 1;
}

.main-header {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: none;
    position: relative;
    z-index: 999;
    padding: 21px 0;
}

.site-navigation .menu>ul>li>a {
    color: #FFF;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(16px, .8rem + 0.2vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    display: flex;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

.site-navigation .menu ul ul>li a {
    color: #787878;
    font-size: clamp(16px, 1rem + 0.2vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 2em;
    display: block;
    text-decoration: none;
    position: relative;
}

.site-navigation .menu>ul>li.active>a,
.site-navigation .menu>ul>li:hover>a,
.site-navigation .menu>ul>li.hover>a {
    color: #787878;
}

.site-navigation .menu ul ul>li.active>a,
.site-navigation .menu ul ul>li:hover>a,
.site-navigation .menu ul ul>li.hover>a {
    color: #fff;
    font-weight: 600;
}


/** Header top **/

.main-header__top {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.main-header__top-items {
    display: flex;
    align-items: center;
}

.main-header__top-item,
.main-header__top-item a {
    color: #BCBDB9;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
}

.main-header__top-item.main-header__mail {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #fff;
}

.main-header__top-item.main-header__phone {
    margin-left: 20px;
}

.main-header__top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header__top-item a:hover {
    color: #7EB944;
}


/***************************************
* Footer
****************************************/

.footer {
    position: relative;
}

.footer-title {
    color: #FFF;
    font-family: "acumin-pro-condensed", sans-serif;
    font-size: clamp(24px, 1rem + 0.8vw, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 52px;
}


/***************************************
* Bloc text / image
****************************************/

.bloc-text {
    color: #FFF;
    font-family: "Instrument Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625em;
    position: relative;
}

.bloc-text p:last-of-type {
    margin-bottom: 0;
}

.bloc-text ul li {
    position: relative;
    padding-left: 16px;
}

.bloc-text ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #ecab23;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}

.bloc-text h2,
.bloc-text .h2 {
    color: #fff;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.27em;
    margin-bottom: 16px;
    padding-top: 9px;
}

.page .font-size-28px {
    font-size: 28px;
    line-height: 1.5em;
}

.bloc-text.color--wihte h2 {
    color: #fff!important;
}