html, body {height: 100%; width: 100%; font-size: 16px;}
body {
    font-family: 'Fira-Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    scroll-behavior: smooth;
    background-color: #060606;
}

.bg-gradients {
    background-image: -webkit-image-set(url(../../img/bg_img_1x.svg) 1x,url(../../img/bg_img_2x.svg) 2x);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: 0 75%;

    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;

    z-index: 0;
    pointer-events: none;
}

*, *::after, *::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul[class],
ol[class] {
  list-style: none;
}

ul,
ol {
  list-style-position: inside;
}
ul li:focus,
ol li:focus {
  outline: solid transparent;
}

:root{
    --studio__dark: #060606;
    --studio__blue: #1A73E8; /* #1A73E8 */
    --studio__blue-hover: #0D47A1; /* #0D47A1 */
    --studio__white: #ffffff;
}

/* --- TYPOGRAPHY --- */

.fira-sans{
    font-family: 'Fira-Sans';
}
.merriweather{
    font-family: 'Merriweather';
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Merriweather';
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.25 ;
}

h1,.h1 {
    font-size: 27px;
}

h2,.h2 {
    font-size: 24px;
}

h3,.h3 {
    font-size: 22px;
}

h4,.h4 {
   font-size: 20px;
}

h5,.h5 {
   font-size: 18px;
}

h6,.h6 {
    font-size: 16px;
}
.lead{
    font-size: 18px;
}
@media screen and (min-width: 768px) {
    h1,.h1 {
        font-size: 36px;
    }
    
    h2,.h2 {
        font-size: 32px;
    }
    
    h3,.h3 {
        font-size: 28px;
    }
    
    h4,.h4 {
       font-size: 24px;
    }
    
    h5,.h5 {
       font-size: 22px;
    }
    
    h6,.h6 {
        font-size: 18px;
    }
    .lead{
        font-size: 22px;
        max-width: 80%;
    }
}
@media screen and (min-width: 992px) {
    h1,.h1 {
        font-size: 28px;
    }
    
    h2,.h2 {
        font-size: 26px;
    }
    
    h3,.h3 {
        font-size: 24px;
    }

    .lead{
        font-size: 18px;
        max-width: 100%;
    }
}
@media screen and (min-width: 1200px) {
    h1,.h1 {
        font-size: 32px;
    }
    
    h2,.h2 {
        font-size: 30px;
    }
    
    h3,.h3 {
        font-size: 28px;
    }
    
    h4,.h4 {
       font-size: 26px;
    }
    
    h5,.h5 {
       font-size: 24px;
    }
    
    h6,.h6 {
        font-size: 22px;
    }
}
/* @media screen and (min-width: 1440px) {
    h1,.h1 {
        font-size: 48px;
    }
    
    h2,.h2 {
        font-size: 42px;
    }
    
    h3,.h3 {
        font-size: 36px;
    }
    
    h4,.h4 {
       font-size: 30px;
    }
    
    h5,.h5 {
       font-size: 24px;
    }
    
    h6,.h6 {
        font-size: 20px;
    }
} */
@media screen and (min-width: 1920px) {
    h1,.h1 {
        font-size: 40px;
    }
    
    h2,.h2 {
        font-size: 36px;
    }
    
    h3,.h3 {
        font-size: 32px;
    }
    
    h4,.h4 {
       font-size: 28px;
    }
    
    h5,.h5 {
       font-size: 24px;
    }
    
    h6,.h6 {
        font-size: 20px;
    }
    .lead{
        font-size: 24px;
    }
}
/* --- LINKS --- */

a {
    color: var(--studio__blue, #1A73E8);
    text-decoration: underline;
    transition: color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
}
a.btn {
    transition: color 0.4s ease-in-out,
        border-color 0.4s ease-in-out,
        background-color 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out;
}
a:hover, a:focus {
    color: var(--studio__blue-hover, #0D47A1);
    text-decoration: none;
    box-shadow: none;
    outline: solid transparent;

}

a.link-text{
    color: var(--studio__white, #ffffff);
    text-decoration: none;
}
a.link-text:focus, a.link-text:hover{
    color: var(--studio__white, #ffffff);
    text-decoration: none;
    outline: solid transparent;
    box-shadow: none;
}

a.link{
    color: var(--studio__white, #ffffff);
    text-decoration: none;
}   
    a.link svg,
    .link svg{
        fill: var(--studio__white, #ffffff);
    }

a.link:focus, a.link:hover{
    color: var(--studio__blue-hover, #0D47A1);
    text-decoration: none;
    outline: solid transparent;
    box-shadow: none;
}
    a.link:focus svg, a.link:hover svg,
    .link:focus svg, .link:hover svg{
        fill: var(--studio__blue-hover, #0D47A1);
    }

a:hover svg, a:focus svg{
    transition: fill 0.4s ease-in-out,
                stroke 0.4s ease-in-out;
}
/* --- BUTTONS --- */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    min-height: 40px;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    font-family: 'Fira-Sans';
    color: var(--studio__white, #fff);
    background: var(--studio__blue, #1A73E8);
    border-radius: 2px;
    text-decoration: none;
    transition: color 0.4s ease-in-out, 
                border-color 0.4s ease-in-out, 
                background-color 0.4s ease-in-out,
                box-shadow 0.4s ease-in-out;
}

.btn:focus, .btn:hover{
    outline: solid transparent;
    box-shadow: 0px 1px 25px #1A73E880;
    text-decoration: none;
    color: var(--studio__white, #fff);
}


.btn-transparent{
    background-color: transparent;
    color: #fff;
    border-color: transparent;
}
.btn-transparent:focus, .btn-transparent:hover{
    color: var(--studio__blue-hover, #0D47A1);
    box-shadow: none;
}


.btn-border{
    background-color: transparent;
    border: 2px solid var(--studio__white, #fff);
    border-radius: 0;
}
.btn-border:focus, .btn-border:hover{
    box-shadow: none;
    box-shadow: 0px 1px 25px #dddddd80;
}

.btn-select{
    background-color: transparent;
    border: 2px solid var(--studio__white, #fff);
    border-radius: 0;
    padding: 15px;
    font-weight: 400;
    justify-content: space-between;
}
.btn-select:focus, .btn-select:hover{
    box-shadow: none;
    box-shadow: 0px 1px 25px #dddddd50;
}
    .btn.btn-select .icon svg{
        width: auto;
        height: 10px;
    }
    .btn-select.active .icon svg{
        transform: rotate(180deg);
    }

.btn-link{
    padding: 0 15px;
    border-color: transparent;
    font-size: 16px;
    text-decoration: none;
    background-color: transparent;
    min-width: auto;
    min-height: auto;
}
    .btn-link span:not([class]){
        text-decoration: underline;
    }

.btn-link:hover, .btn-link:focus{
    color: var(--studio__white, #fff);
    text-decoration: none;
    box-shadow: none;    
    background-color: transparent;
}
    .btn-link:hover span:not([class]), .btn-link:focus span:not([class]){
        text-decoration: none;
    }

.btn-link__red{
    padding: 0 15px;
    border-color: transparent;
    font-size: 16px;
    text-decoration: underline;
    color: var(--studio__blue);
    background-color: transparent;    
    min-width: auto;
    min-height: auto;
}
    .btn-link__red span:not([class]){
        text-decoration: underline;
    }
.btn-link__red:hover, .btn-link__red:focus{
    color: var(--studio__blue-hover, #0D47A1);
    text-decoration: none;
    box-shadow: none;    
    background-color: transparent;
}
    .btn-link__red:hover span:not([class]), .btn-link__red:focus span:not([class]){
        text-decoration: underline;
    }

@media screen and (min-width: 768px){
    .btn {
        min-width: 250px;
        min-height: 50px;
        font-size: 18px;
    }
}

@media screen and (min-width: 992px){
    .btn {
        min-width: 200px;
        min-height: 45px;
        font-size: 16px;
    }
}


.btn-less-width{
    width: auto;
    min-width: auto;
}

.btn-less-size{
    width: auto;
    height: auto;
    min-width: auto;
    min-height: auto;
    padding: 0;
}

.btn .icon svg{
    height: 22px;
    width: auto;
    fill: var(--studio__white, #ffffff);
    transition: fill 0.4s ease-in-out,
                transform 0.4s ease-in-out;
}
.btn .iocn+span{
    margin-left: 10px;
}
.btn span+.icon{
    margin-left: 10px;
}

.btn:hover svg{
    transition: fill 0.4s ease-in-out,
                transform 0.4s ease-in-out;
}

/* --- FORMS --- */

.form-group {
    margin-bottom: 50px ;
    position: relative;
}

label {
    margin: 0;
    cursor: pointer;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 19px;
    margin-bottom: 10px;
}

@media screen and (min-width: 757px){
    label {
        font-size: 22px;
    }
}
@media screen and (min-width: 992px){
    label {
        font-size: 20px;
    }
}


.has-error label{ 
    color: var(--studio__blue, #1A73E8);
}    
    label .required {
        font-size: inherit;
        line-height: 1;
        font-weight: 400;
        color: var(--studio__blue-hover, #0D47A1);
        margin-left: 5px;
    }

    .form-group .help-block{
        position: absolute;
        left: 0;
        top: 100%;
        width: auto;
        max-width: 100%;
        font-size: 12px;
        color: var(--studio__blue, #1A73E8);
        text-align: left;
        margin-top: 10px;
        display: none;
    }
        .form-group.has-error .help-block{
            display: block;
        }

input[type="text"], input[type="password"], input[type="email"], textarea, .form-control {
    padding: 10px 0;
    height: 50px;
    background: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #ffffff80;
    box-shadow: none;
    color: var(--studio__white, #fff);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Fira-Sans';
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus, .form-control:focus {
    background-color: transparent;
    outline: solid transparent;
    box-shadow: none;
    border-color: #ffffff80;
    color: var(--studio__white, #fff);
}

.has-error > input[type="text"], .has-error > input[type="password"],
.has-error > input[type="email"], .has-error > textarea, .has-error > .form-control {border-bottom-color: var(--studio__blue, #1A73E8);}

textarea, textarea.form-control {
    padding: 10px 0;
    overflow: hidden;
    resize: none;
    width: 100%;
    height: 50px;
}

.form-control::-webkit-input-placeholder {
    color: #ffffff80;
    font-style: normal;
    font-weight: 400;
}
.form-control::-moz-placeholder {
    color: #ffffff80;
    font-style: normal;
    font-weight: 400;
}
.form-control:-moz-placeholder {
    color: #ffffff80;
    font-style: normal;
    font-weight: 400;
}
.form-control:-ms-input-placeholder {
    color: #ffffff80;
    font-style: normal;
    font-weight: 400;
}



/* --- IMG --- */
.img_full{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;  
}
    /* .img_full.img_full__tl{
        object-position: top left;
    }
    .img_full.img_full__tc{
        object-position: top center;
    }
    .img_full.img_full__tr{
        object-position: top right;
    }

    .img_full.img_full__cl{
        object-position: center left;
    }
    .img_full.img_full__cc{
        object-position: center center;
    }
    .img_full.img_full__cr{
        object-position: center right;
    }
    
    .img_full.img_full__bl{
        object-position: bottom left;
    }
    .img_full.img_full__bc{
        object-position: bottom center;
    }
    .img_full.img_full__br{
        object-position: bottom right;
    } */


.img_full__contain{
    width: 100%;
    height: 100%;    
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;    
}

.background_img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    /* .background_img.background_img__tl{
        background-position: top left;
    }
    .background_img.background_img__tc{
        background-position: top center;
    }
    .background_img.background_img__tr{
        background-position: top right;
    }

    .background_img.background_img__cl{
        background-position: center left;
    }
    .background_img.background_img__cc{
        background-position: center center;
    }
    .background_img.background_img__cr{
        background-position: center right;
    }

    .background_img.background_img__bl{
        background-position: bottom left;
    }
    .background_img.background_img__bc{
        background-position: bottom center;
    }
    .background_img.background_img__br{
        background-position: bottom right;
    } */

.background_img__contain{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- COVERS --- */

.cover {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

.cover-black {background: rgba(0,0,0,0.75);}

/* --- COVERED --- */

.covered {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    transform: translate(100%);
    opacity: 0;
    background-color: transparent;
    transition: transform 0.4s ease-in-out, 
                opacity 0.4s ease-in-out,
                background-color 0.4s ease-in-out;
}

.covered.active{
    opacity: 1;
    transform: translateX(0%);
    background-color: #ffffff80;
}
/* --- Select --- */
.select-standart~.select2{
    min-width: 270px!important;
    width: 100%!important;
    max-width: 335px!important;
}
    .select-standart~.select2 .select2-selection,
    .select-standart~.select2.select2-container--focus .select2-selection,
    .select-standart~.select2.select2-container--open .select2-selection,
    .select-standart~.select2 .select2-selection:focus {
        width: 100%;
        height: 50px;
        background-color: transparent;
        border: 2px solid var(--studio__white, #fff);
        border-radius: 0!important;
        padding: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        outline: solid transparent;

        position: static;
    }
        .select-standart~.select2 .selection .select2-selection__rendered {
            padding: 0;            
            font-weight: 400;
            color: var(--studio__white, #fff);
            font-family: 'Fira-Sans';
            font-size: 18px;
            line-height: 1.2;
        }
        .select-standart~.select2-container .select2-selection--single .select2-selection__arrow {
            position: static;
        }
            .select-standart~.select2-container .select2-selection--single .select2-selection__arrow b{
                position: static;
                margin: 0;
                border: none;
                display: block;
                width: auto;
                height: 100%;
                background-image: url(../../img/icon/select_arrow_white.svg);
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                transform: rotate(0);
                transition: transform 0.4s ease-in-out;
            }
            
            .select-standart~.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b{
                border: none;
                transform: rotate(180deg);
            }

.select2-container .select2-dropdown{
    border: 2px solid var(--studio__white, #fff);
    border-radius: 0!important;
    outline: solid transparent;    
    background-color: var(--studio__dark, #060606);
    padding: 20px 0;
}
    .select2-container .select2-dropdown .select2-results{
        /* overflow-x: hidden; */
    }
    .select2-container .select2-dropdown .select2-results>.select2-results__options{
        max-height: none;
        padding: 0 15px;
        overflow-y: hidden;
    }
        .select2-container .select2-dropdown .select2-results__option{
            background-color: transparent;
            font-weight: 400;
            color: var(--studio__white, #fff);
            font-family: 'Fira-Sans';
            font-size: 18px;
            line-height: 1.2;
            padding-bottom: 15px;
            margin-top: 10px;
            border: none;
            padding: 10px 0;
            position: relative;
        }
        .select2-container .select2-dropdown .select2-results__option:first-child{
            display: none;
        }
        .select2-container .select2-dropdown .select2-results__option:nth-child(2){
            margin-top: 0;
        }
        .select2-container .select2-dropdown .select2-results__option[aria-selected=true]{
            background-color: transparent;
            color: var(--studio__blue, #1A73E8);
        }
        .select2-container .select2-dropdown .select2-results__option.select2-results__option--highlighted{
            background-color: transparent;
            color: var(--studio__blue-hover, #0D47A1);
        }

        .select2-container .select2-dropdown .select2-results__option::after{
            position: absolute;
            content: '';
            left: 0;
            top: 100%;
            width: 100%;
            height: 1px;
            background-color: #ffffff80;
            background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
        }
        .select2-container .select2-dropdown .select2-results__option:last-child:after{
            content: none;
        }
        .select2-container .select2-dropdown .select2-results__option::before{
            content: '/';
            display: inline-block;
            margin-right: 5px;
            color: var(--studio__blue, #1A73E8);
        }

/* --- Container --- */
.main-container{
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /* max-width: 1440px; */
}

.main-container-less__p{
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    /* max-width: 1440px; */
}

@media screen and (min-width: 768px){
    .main-container{
        padding: 0 28px;
    }
}
@media screen and (min-width: 992px){
    .main-container{
        padding: 0 20px;
    }
}
@media screen and (min-width: 1200px){
    .main-container{
        padding: 0 30px;
    }
}

/* --- checkbox --- */
.checkbox{
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    margin: 0;
}
.checkbox input[type=checkbox],
.checkbox .checkbox_input{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: none;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.checkbox_box{
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: solid 2px var(--studio__white, #ffffff);
    flex-shrink: 0;
    cursor: pointer;

    transition: border-color 0.4s ease-in-out;
}
.checkbox_box svg{
    width: 0px;
    height: 0px;
    fill: var(--studio__white, #ffffff);
    opacity: 0!important;
    transition: fill 0.4s ease-in-out;
}
.checkbox_input:checked+.checkbox_box svg{
    width: auto;
    height: 12px;
    opacity: 1!important;
    fill: var(--studio__blue, #1A73E8);
}
.checkbox_input:focus:not(:disabled)+.checkbox_box{     
    box-shadow: none;
    box-shadow: 0px 1px 25px #dddddd80;
}
.checkbox_input:hover:not(:disabled)+.checkbox_box{    
    border-color: var(--studio__blue-hover, #0D47A1);
}
.checkbox_input:checked:focus:not(:disabled)+.checkbox_box{     
    box-shadow: none;
    box-shadow: 0px 1px 25px #1A73E880;
    border-color: var(--studio__blue-hover, #0D47A1);
}
.checkbox_input:checked:hover:not(:disabled)+.checkbox_box svg{    
    fill: var(--studio__blue-hover, #0D47A1);
}
.checkbox_input:disabled{    
    pointer-events: none;
}
.checkbox_input:disabled+.checkbox_box{    
    opacity: 0.5;
    cursor: auto;
}
.checkbox.disabled {
    pointer-events: none;
    cursor: not-allowed	;
}
.checkbox.disabled:hover {
    pointer-events: none;
    cursor: not-allowed	;
}



.radioButton{
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
}
.radioButton input[type=radio],
.radioButton .radioButton_input{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: none;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.radioButton_box{
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: solid 2px var(--studio__white, #ffffff);
    flex-shrink: 0;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    
    transition: border-color 0.4s ease-in-out;
}
.radioButton_box svg{
    width: 0px;
    height: 0px;
    fill: var(--studio__white, #ffffff);
    opacity: 0!important;    
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;

    transition: fill 0.4s ease-in-out, stroke 0.4s ease-in-out;
}
.radioButton_input:checked:not(:disabled)+.radioButton_box svg{
    width: 16px;
    height: 16px;
    fill: var(--studio__blue, #1A73E8);
    opacity: 1!important;
}
.radioButton_input:focus:not(:disabled)+.radioButton_box{    
    box-shadow: none;
    box-shadow: 0px 1px 25px #dddddd80;
}
.radioButton_input:hover:not(:disabled)+.radioButton_box{    
    border-color: var(--studio__blue-hover, #0D47A1);
}
.radioButton_input:checked:focus:not(:disabled)+.radioButton_box{     
    box-shadow: none;
    box-shadow: 0px 1px 25px #1A73E880;
    border-color: var(--studio__blue-hover, #0D47A1);
}
.radioButton_input:checked:hover:not(:disabled)+.radioButton_box svg{
    fill: var(--studio__blue-hover, #0D47A1);
}
.radioButton+.radioButton{
    margin-left: 30px;
}
.radioButton_input:disabled{    
    pointer-events: none;
}
.radioButton_input:disabled+.radioButton_box{    
    opacity: 0.5;
    cursor: auto;  
}
.radioButton.disabled {
    pointer-events: none;
    cursor: not-allowed	;
}
.radioButton.disabled:hover {
    pointer-events: none;
    cursor: not-allowed	;
}

/* --- Other --- */

.overflow{
    overflow: hidden;
}

.pointer-events{
    pointer-events: none;
}

.main-p{
    padding-top: 40px;
    padding-bottom: 40px;
}
.main-m{
    margin-top: 80px;
    margin-bottom: 80px;
}

.inner-p{
    padding-top: 40px!important;
    padding-bottom: 40px!important;
}

.inner-m{    
    margin-top: 40px!important;
    margin-bottom: 40px!important;
}

@media screen and (min-width: 992px ) {
    .main-p{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .main-m{
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.text-color__red{
    color: var(--studio__blue, #1A73E8);
}

.custom-scroll .mCSB_container{
    margin: 0;
}
.custom-scroll .mCSB_scrollTools {
    z-index: 10;
}

.break-text{
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
}

pre.break {
    white-space: pre-wrap;
    white-space: break-spaces;
}

/* *** WIDGET ORDER CONSULTATION *** */

.widget-order-consultation {
    margin: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #DADADA 100%);
    border: 1px solid #FFFFFF;
    border-radius: 2px;

    position: relative;
}

    .widget-order-consultation a {
        padding: 15px;
        text-decoration: none;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    @media screen and (min-width: 992px) {
        .widget-order-consultation a {
            padding: 15px 15px 15px 53px;
            flex-direction: row;
            align-items: center;
            gap: 50px;
        }
    }

    .widget-order-consultation .pre-styled {
        border: 3px #000 solid;
        background: #1A73E8;
        border-radius: 50px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 50px;
        height: 50px;

        left: calc(50% - 25px);
        top: -40px;
        position: absolute;

        transition: box-shadow 0.3s ease-in-out;
    }
    @media screen and (min-width: 992px) {
        .widget-order-consultation .pre-styled {
            border: 0;

            width: 77px;
            height: 77px;

            left: -38px;
            top: -5px;
        }
    }
    .widget-order-consultation:hover .pre-styled {
        box-shadow: 0 0 15px rgba(26, 115, 232, 0.5);
    }

        .widget-order-consultation .pre-styled svg {
            width: 24px;
            height: 24px;

            stroke: #FFFFFF;
        }

    .widget-order-consultation .widget-order-consultation-label {
        text-align: center;
    }
    @media screen and (min-width: 992px) {
        .widget-order-consultation .widget-order-consultation-label {
            text-align: left;
        }
    }

        .widget-order-consultation .widget-order-consultation-label strong {
            font-family: 'Fira-Sans', sans-serif;
            font-style: normal;
            font-weight: 500;
            font-size: 14px;
            line-height: 120%;

            text-transform: uppercase;

            color: #000000;
        }

        .widget-order-consultation .widget-order-consultation-label span {
            font-family: 'Fira-Sans', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 120%;

            color: #8D8D8D;

            display: block;
        }

    .widget-order-consultation .btn-fake {
        padding: 12px 15px 11px 15px;
        background: #1A73E8;
        border-radius: 2px;

        font-family: 'Fira-Sans', sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;

        text-transform: uppercase;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        color: #FFFFFF;

        transition: box-shadow 0.3s ease-in-out;
    }
    .widget-order-consultation:hover .btn-fake {
        box-shadow: 0 5px 15px rgba(26, 115, 232, 0.5);
    }

.figcaption-besides {
    margin: 50px 50px 50px -150px;
    max-width: 450px;

    float: left;

    text-align: center;
    font-style: italic;
    font-size: 0.9em;

    color: #848484;
}
.figcaption-besides.right {
    margin: 50px -150px 50px 50px;
    float: right;
}

    .figcaption-besides img {
        margin: 0 0 20px 0;
        max-width: 100%;
        height: auto;
    }

hr {
    margin: 3rem 0;
    border-top: 1px solid rgba(255,255,255,.3);
}