@font-face {
    font-family: 'ESBuildReg';
    src: url('../fonts/ESBuild-Regular.woff2') format('woff2'),
        url('../fonts/ESBuild-Regular.woff') format('woff'),
        url('../fonts/ESBuild-Regular.otf')  format("opentype");
}
@font-face {
    font-family: 'ESBuildSemiBold';
    src:  url('../fonts/ESBuild-Semibold.woff2') format('woff2'),
        url('../fonts/ESBuild-Semibold.woff') format('woff'),
        url('../fonts/ESBuild-Semibold.otf')  format("opentype");
}
@font-face {
    font-family: 'ESBuildReg';
    src:  url('../fonts/ESBuild-Semibold.woff2') format('woff2'),
    url('../fonts/ESBuild-Semibold.woff') format('woff'),
    url('../fonts/ESBuild-Semibold.otf')  format("opentype");
    font-weight: 600;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ESBuildReg', 'Arial';
    color: var(--ink-blue);
}
:root{
    font-size: 18px;
    line-height: 1.45;
    --width-container: 1362px;
    --xl-margin: 160px;
    --lg-margin: 75px;
    --pad-vertical: 78px;
    --h1: 86px;
    --h2: 67px;
    --h3: 55px;
    --h4: 44px;
    --h5: 35px;
    --h6: 28px;
}
h1,h2,h3,h4,h5,h6{
    font-family: ESBuildSemiBold;
    margin-bottom: 20px;
    color: var(--mid-blue);
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-family: ESBuildSemiBold;
}
h1{
    font-size: 86px;
}
h2{
    font-size: 67px;
}
h3{
    font-size: 55px;
}
h4{
    font-size: 44px;
}
h5{
    font-size: 35px;
}
h6{
    font-size: 28px;
}
a{
    color: var(--ink-blue) !important;
}
a:hover{
    color: var(--mid-blue) !important;
}
#wpadminbar *{
    color: grey !important;
}
@media(max-width: 992px){
    :root{
        font-size: 16px;
        --h1: 65px;
        --h2: 50px;
        --h3: 41px;
        --h4: 33px;
        --h5: 26px;
        --h6: 22px;
    }
    h1{
        font-size: 65px;
    }
    h2{
        font-size: 50px;
    }
    h3{
        font-size: 41px;
    }
    h4{
        font-size: 33px;
    }
    h5{
        font-size: 26px;
    }
    h6{
        font-size: 22px;
    }
}
body{
    overflow-x: hidden;
}
.vr-container{
    width: 100%;
    margin: 0;
    padding: 0 75px;
}
@media(min-width: 1512px) {
    .vr-container{
        width: var(--width-container);
        margin: 0 auto;
        padding: 0;
    }
}
@media(max-width: 1200px){
    .vr-container{
        padding: 0 30px;
    }
}
html{
    --ubg-button: var(--white); //background-under-button
}
.vr-button{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    height: 40px;
    padding: 10px 0 10px 20px;
    border-radius: 140px;
    color: var(--white);
    background: var(--mid-blue);
    font-size: 18px;
    line-height: 0.8;
    position: relative;
    overflow: hidden;
    column-gap: 20px;
    font-family: 'ESBuildSemiBold', 'sans-serif';
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.vr-button>span{
    color: var(--white);
}
.vr-button:hover{
    color: #fff;
}
.vr-button .arrow {
    width: 40px;
    height: 15px;
    background: url(../svg/btn-arrow-white.svg) round;
    background-position-x: 8px;
    transition: background-position-x .1s;
}
.vr-button.button-varn-blue {
    background: var(--varn-blue);
}
.vr-button.button-white {
    background: var(--white);
}
.vr-button.button-varn-blue>span,
.vr-button.button-white>span {
    color: var(--ink-blue);
}
.vr-button.button-varn-blue .arrow,
.vr-button.button-white .arrow{
    background-image: url(../svg/btn-arrow-ink.svg);
}
.vr-button:hover .arrow{
    --arrow-from: 8px;
    --arrow-to: 56px;
    animation: move-arrow .2s linear;
    background-position-x: 56px;
    transition: background-position-x .5s;
}
/*class text color*/
.text-mblue{
    color: var(--mid-blue);
}
.text-white{
    color: var(--white);
}
.text-vblue{
    color: var(--varn-blue);
}
.text-iblue{
    color: var(--ink-blue);
}
.fw-semibold{
    font-family: ESBuildSemiBold;
}
