:root {
    --orange: #ff5a00;
    --vk-blue: #07f;
    --ok-orange: #f7941d;
    --rutube-dartk-blue: #0b1d38;
    --button-ribbon-color: #ffede9;
    --small-title-color: #000003;
}

.bg-image {
    background-image: url('/img/bg.jpg');
    background-size: contain;
}

.logo-wrapper img {
    width: 110px;
    border-radius: 50%;
}

.logo-wrapper {
    text-align: center;
    padding: 20px 0;
}

h1.title {
    text-align: center;
    font-size: 40px;
}

hr.line-with-arrow {
    height: 1px;
    margin: 30px 0;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0, 0, 0, 0)), color-stop(0.5, #333333), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    background: linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0));
    border: 0;
}

hr.line-with-arrow:after {
    display: block;
    content: '';
    height: 30px;
    background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 116, color-stop(0%, #cccccc), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -moz-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
    background-image: radial-gradient(farthest-side at center top, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
}

.btn-contact {
    width: 100%;
    background-color: var(--orange);
    border: 3px solid var(--orange);
    color: #fff;
    margin: 7px 0;
    box-shadow: 3px 4px 5px 0px rgb(0 0 0 / 36%);
    height: 55px;
    line-height: 40px;
    border-radius: 3px;
    padding: 3px 14px;
    overflow: hidden;
}

.btn-contact:hover {
    background-color: var(--orange);
}

.btn-contact img {
    width: 40px;
}

.btn-vk, .btn-vk:hover {
    background-color: var(--vk-blue);
    border-color: var(--vk-blue);
    box-shadow: 3px 4px 4px 0px rgb(5 99 199);
}

.btn-ok, .btn-ok:hover {
    background-color: var(--ok-orange);
    border-color: var(--ok-orange);
    box-shadow: 3px 4px 4px 0px rgb(216 121 9);
}

.btn-ok .button-icon {
    width: 20px;
}

.btn-rut, .btn-rut:hover {
    background-color: var(--rutube-dartk-blue);
    border-color: var(--rutube-dartk-blue);
    box-shadow: 3px 4px 4px 0px rgb(9 9 9);
}

.ribbon-wrapper {
    position: relative;
}

.ribbon {
    background-color: var(--button-ribbon-color);
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    left: -25px;
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 140px;
    height: 25px;
}

h3.title-small {
    text-align: center;
    color: var(--small-title-color);
    margin: 20px 0;
}

.video-card {
    overflow: hidden;
    margin: 10px 0;
}

.form-wrapper input.form-control {
    height: 55px;
}

.btn-contact img.phone-icon {
    width: 23px;
}

@media screen and (max-width: 700px)
{
	.container {
		background-color: #ffffff63;
	}
}