@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,,500,600,700,900,&subset=cyrillic,cyrillic-ext);
:root {
    --main-color: #77c7d1;
}
*{
    font-family: Montserrat, sans-serif;
}
main{
    background-color: #ffffff;
}
.color-blue{
    color: var(--main-color);
}
.color-orange{
    color: #f96031;
}
.border-b-5-orange{
    border-bottom: 5px solid #f96031;
}
.border-b-5-blue{
    border-bottom: 5px solid var(--main-color);
}
.border-b-5-white{
    border-bottom: 5px solid #ffffff;
}
.border-b-5-gray{
    border-bottom: 5px solid #888888;
}
.bg-white-noise{
    background-image: url('../content/index/bg.webp')
}
.load {
    padding: 2rem .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 180px;
    width: 100%;
}

.load > img {
    width: auto;
    height: 150px;
}
.wh-100{
    width: 100%;
    height: 100%;
}