/* Ozzy Pro */
/* www.ozzy.pro */

@font-face {
    font-family: 'Montserrat'; /* Гарнитура шрифта */
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Medium'; /* Гарнитура шрифта */
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat SemiBold'; /* Гарнитура шрифта */
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Bold'; /* Гарнитура шрифта */
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-display: swap;
}

/*.mrg-tag {
    margin-top: 30px;
    
    @media (max-width: 767px) {
        margin-top: 15px;
    }
    
    
    div div {
        width: 100% !important;
        height: 100% !important;
        
        div {
            border-color: #e2e2e2 !important;
            border-radius: 3px !important;
            height: 100% !important;
            
            @media (max-width: 767px) {
                a div {
                    display: block !important;
                    
                    div div div {
                        width: 92% !important;
                        bottom: 0 !important;
                    }
                }
                
                div {
                    right: 0 !important;
                }
            }
        }
    }
}
*/

.grecaptcha-badge {
    display: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.error_g-recaptcha-response {
    margin-left: -2px;
}

@color-brand: #00a3ed;
@color-black: #3e3a3a;
@color-green: #0cac25;
@color-orange: #fa8d00;
@color-red: #FF4C4C;
@color-brown: #a90000;
@color-blue: #537fbe;
@color-link: #0095ff;

@color-vk: #4a76a8;
@color-facebook: #3b5998;
@color-twitter: #1da1f2;
@color-instagram: #517fa4;
@color-youtube: #ff0002;

@color-ok: #ed721d;
@color-viber: #7d4e9f;
@color-whatsapp: #62bc4e;
@color-telegram: #61a8de;
@color-skype: #00aef3;

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;  
    background: #fff;
    transition: all 0.5s;
    opacity: 1;
}
.preloader-remove {
    opacity: 0;
    z-index: -10;
}

.preloader-5 {
    display: block;
    position: relative;
    width: 150px;
    height: 150px;
    margin: 30px auto;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: @color-brand;
    animation: preloader-5-spin 2s linear infinite;
}
.preloader-5:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: lighten(@color-brand, 30%);
    animation: preloader-5-spin 3s linear infinite;
}
.preloader-5:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: lighten(@color-brand, 50%);
    animation: preloader-5-spin 1.5s linear infinite;
}
@keyframes preloader-5-spin {
    0%   {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 70px;
    margin-top: 30px;
    margin-bottom: 30px;
}

selection,
-moz-selection,
-webkit-selection,
-o-selection,
::selection,
::-webkit-selection {
    background-color: @color-brand;
    color: #fff;
}

input, textarea {
    background-color: #fafafa;
    border: 1px solid #fafafa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    color: #000;
    padding: 10px;
    margin-bottom: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
    &:hover {
        border-color: @color-brand;
    }
}

.error {
    border: 1px solid brown;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
input[type=number]{
  -moz-appearance: textfield;
}

.count-field {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    
    .count-field-control {
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: center;
        flex-basis: auto;
        flex-grow: 1;
        vertical-align: middle;
        text-align: center;
        cursor: pointer;
    }
    
    .count {
        border: none;
        width: 30px;
        padding: 0;
        margin: 8px 0;
        text-align: center;
        -webkit-rtl-ordering: logical;
        cursor: text;
        box-sizing: border-box;
        text-rendering: auto;
        -webkit-appearance: textfield;
        -webkit-writing-mode: horizontal-tb !important;
    }
}

input[type="checkbox"] {
    width: inherit;
    -webkit-appearance: none;
    
    &:checked + label:before {
	    content: "\2713";
    	position: absolute;
        left: -25px;
    }
}

.radio-group {
    display: flex;
    width: 100%;
    
    input[type=radio] {
        position: absolute;
        visibility: hidden;
        display: none;
    }
    
    label {
        position: relative;
        background-color: #f2f2f2;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        font-size: 18px;
        line-height: 120%;
        color: #000;
        display: block;
        width: 100%;
        text-align: center;
        cursor: pointer;
        padding: 10px;
        margin: 0;
        margin-right: 10px;
        
        @media (max-width: 767px) {
            font-size: 15px;
            padding: 3px;
        }
        
        &:last-child {
            margin-right: 0;
        }
    }
    
    input[type=radio]:checked + label{
        color: #000;
        background: @color-brand;
    }
}

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="phone"]:focus,
input[type="color"]:focus,
.form-control:focus,
.uneditable-input:focus {
    background-color: #f9f9f9;
    border-color: @color-brand !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.form-control {
    height: 45px;
    font-style: italic;
    background-color: #fafafa;
    border: 1px solid #fafafa;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

button:focus,
button.active:focus {
    border-color: none;
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.icon-close {
    display: inline-block;
    width: 30px;
    height: 25px;
    background-image: url('../svg/close.svg');
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-position: center;
}

.icon-donat {
	display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url('../img/donation.png');
    background-repeat: no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-position: center;
    
    @media (max-width: 767px) {
        display: flex;
		width: 70px;
		height: 70px;
		margin: auto;
    }
}

.info-donat {
	background-color: rgba(255,236,166,0.5);
	border: 2px solid #ffa629;
    border-radius: 7px;
    padding: 20px;
    margin-bottom: 15px;
	display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    height: 100%;
    margin-bottom: 15px;
    
    .info-donat-text {
    	width: 100%;
    	text-align: justify;
    	padding-left: 20px;
    	
    	p {
    	    font-size: 15px;
    	    
    	    &:last-child {
    	        margin-bottom: 0;
    	    }
    	}
    }
    
    @media (max-width: 767px) {
        display: block;
        
        .info-donat-text {
    		padding-left: 0;
    		padding-top: 20px;
    	}
    }
}

.info-donat-bg {
    position: relative;
    margin-bottom: 40px;
    
    .info-donat-2 {
        position: relative;
        display: flex;
        align-content: center;
        align-self: center;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background-image: url(../img/donat-man.jpeg);
        -webkit-background-size: cover;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        font-size: 14px;
        color: #fff;
        padding: 45px;
        z-index: 1;
        
        @media (max-width: 767px) {
            display: block;
            background-position: left;
            padding: 35px;
        }
        
        &:before {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            background: -webkit-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
            background: -moz-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
            background: -o-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
            background: linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
            opacity: .85;
            z-index: -1;
        }
        
        p {
            font-size: 14px;
        }
        
        .box {
            text-align: center;
            
            &.box-one {
                <!-- border-right: 2px solid #fff;
                padding-right: 30px; -->
                
                @media (max-width: 767px) {
                    border-right: 0;
                    padding-right: 0;
                    border-bottom: 2px solid #fff;
                    padding-bottom: 15px;
                }
                
                ul {
                    font-family: 'Montserrat Medium';
                    margin: 0;
                    margin-top: 20px;
                    padding: 0;
                    text-align: left;
                    
                    @media (max-width: 767px) {
                        margin-top: 0;
                    }
                    
                    li {
                        padding-bottom: 10px;
                    }
                }
            }
            
            &.box-two {
                position: relative;
                padding-left: 30px;
                
                @media (max-width: 767px) {
                    padding-top: 15px;
                    padding-left: 0;
                }
                
                .btn-copy, a {
                    position: relative;
                    display: inline-flex;
                    align-items: center;
                    align-self: center;
                    justify-content: center;
                    min-width: 220px;
                    height: 50px;
                    font-size: 16px;
                    background-color: #fff;
                    -webkit-border-radius: 50px;
                    -moz-border-radius: 50px;
                    border-radius: 50px;
                    color: #000;
                    cursor: pointer;
                    margin: 10px 0 15px;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    -ms-transition: all .3s;
                    -o-transition: all .3s;
                    transition: all .3s;
                    
                    &:before {
                        content: '';
                        position: absolute;
                        top: 10px;
                        right: 20px;
                        display: flex;
                        align-items: center;
                        align-self: center;
                        justify-content: center;
                        width: 14px;
                        height: 14px;
                        background-color: #000;
                        opacity: .5;
                        cursor: pointer;
                        z-index: 1;
                        -webkit-mask-image: url('../svg/icon-copy.svg');
                        -moz-mask-image: url('../svg/icon-copy.svg');
                        -o-mask-image: url('../svg/icon-copy.svg');
                        mask-image: url('../svg/icon-copy.svg');
                        -webkit-mask-repeat: no-repeat;
                        -moz-webkit-mask-repeat: no-repeat;
                        -ms-webkit-mask-repeat: no-repeat;
                        -o-webkit-mask-repeat: no-repeat;
                        mask-repeat: no-repeat;
                        -webkit-mask-size: 100%;
                        -moz-webkit-mask-size: 100%;
                        -ms-webkit-mask-size: 100%;
                        -o-webkit-mask-size: 100%;
                        webkit-mask-size: 100%;
                        -webkit-mask-position: center;
                        -moz-webkit-mask-position: center;
                        -ms-webkit-mask-position: center;
                        -o-webkit-mask-position: center;
                        mask-position: center;
                        -webkit-transition: all .3s;
                        -moz-transition: all .3s;
                        -ms-transition: all .3s;
                        -o-transition: all .3s;
                        transition: all .3s;
                    }
                    
                    &:hover {
                        background-color: #8b49f9;
                        color: #fff;
                        
                        &:before {
                            background-color: #fff;
                            opacity: 1;
                        }
                    }
                }
                
                img {
                    height: 35px;
                    margin-bottom: 35px;
                    background-color: rgba(255, 255, 255, .3);
                    border-radius: 50px;
                    padding: 8px;
                    min-height: 45px;
                    width: 45%;
                }
            }
        }
        
        .info-donat-2-title {
            font-family: Montserrat SemiBold;
            font-size: 20px;
            padding: 10px 0 20px;
            text-transform: uppercase;
        }
        
        .info-donta-thanks {
            position: absolute;
            bottom: -30px;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            
            @media (max-width: 767px) {
                bottom: -20px;
            }
            
            span {
                margin-right: 7px;
            }
            
            .icon-heart {
                display: flex;
                align-items: center;
                align-self: center;
                justify-content: center;
                width: 14px;
                height: 14px;
                background-color: #fff;
                z-index: 1;
                -webkit-mask-image: url('../svg/icon-heart.svg');
                -moz-mask-image: url('../svg/icon-heart.svg');
                -o-mask-image: url('../svg/icon-heart.svg');
                mask-image: url('../svg/icon-heart.svg');
                -webkit-mask-repeat: no-repeat;
                -moz-webkit-mask-repeat: no-repeat;
                -ms-webkit-mask-repeat: no-repeat;
                -o-webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;
                -webkit-mask-size: 100%;
                -moz-webkit-mask-size: 100%;
                -ms-webkit-mask-size: 100%;
                -o-webkit-mask-size: 100%;
                webkit-mask-size: 100%;
                -webkit-mask-position: center;
                -moz-webkit-mask-position: center;
                -ms-webkit-mask-position: center;
                -o-webkit-mask-position: center;
                mask-position: center;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }
        }
    }
    
    &.info-donat-bg-right {
        @media (max-width: 991px) {
            display: none;
        }
        
        .info-donat-2 {
            display: block;
            background-position: left;
            padding: 35px;
            
            .box {
                
                &.box-one {
                    border-right: 0;
                    padding-right: 0;
                    border-bottom: 2px solid #fff;
                    padding-bottom: 15px;
                    
                    ul {
                        margin-top: 0;
                    }
                }
                
                &.box-two {
                    padding-top: 15px;
                    padding-left: 0;
                }
            }
            
            .info-donta-thanks {
                bottom: -20px;
            }
        }
    }
    
    .info-donat-bg-70 {
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        margin: auto;
        content: '';
        display: block;
        width: 95%;
        height: 100%;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: -webkit-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: -moz-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: -o-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        opacity: .5;
        z-index: -1;
    }
    
    .info-donat-bg-50 {
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
        margin: auto;
        content: '';
        display: block;
        width: 90%;
        height: 100%;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: -webkit-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: -moz-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: -o-linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        background: linear-gradient(99deg, #1F89EB 0%, #FF5187 98.75%);
        opacity: .3;
        z-index: -2;
    }
}

    

.icon-arrow-prev {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: @color-black;
    -webkit-mask-image: url('../svg/icon-arrow-prev.svg');
    -moz-mask-image: url('../svg/icon-arrow-prev.svg');
    -o-mask-image: url('../svg/icon-arrow-prev.svg');
    mask-image: url('../svg/icon-arrow-prev.svg');
    -webkit-mask-repeat: no-repeat;
    -moz-webkit-mask-repeat: no-repeat;
    -ms-webkit-mask-repeat: no-repeat;
    -o-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    -moz-webkit-mask-size: 100%;
    -ms-webkit-mask-size: 100%;
    -o-webkit-mask-size: 100%;
    webkit-mask-size: 100%;
    -webkit-mask-position: center;
    -moz-webkit-mask-position: center;
    -ms-webkit-mask-position: center;
    -o-webkit-mask-position: center;
    mask-position: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.info-donat-2-page {
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.info-donat-2-page ul {
    border:        0 solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, transparent 1%, white 1%, white 99%, transparent 99%) 1 stretch !important;
}
    
@media (min-width: 990px) {
    .info-donat-2-page { display: none!important; }
}
    
.info-donat-2-page::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(99deg, #1F89EB 0%, #FF5187 99%);
    opacity: .85;
    z-index: 0;
}

.info-donat-2-page > * {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.info-donat-2-page .box.box-one ul {
    display: block;
    text-align: left;
    list-style-position: inside;
    padding-left: 0;
    width: fit-content;
    margin: auto;
}

.icon-arrow-prev-2 {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: @color-black;
    -webkit-mask-image: url('../svg/icon-arrow-prev-2.svg');
    -moz-mask-image: url('../svg/icon-arrow-prev-2.svg');
    -o-mask-image: url('../svg/icon-arrow-prev-2.svg');
    mask-image: url('../svg/icon-arrow-prev-2.svg');
    -webkit-mask-repeat: no-repeat;
    -moz-webkit-mask-repeat: no-repeat;
    -ms-webkit-mask-repeat: no-repeat;
    -o-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    -moz-webkit-mask-size: 100%;
    -ms-webkit-mask-size: 100%;
    -o-webkit-mask-size: 100%;
    webkit-mask-size: 100%;
    -webkit-mask-position: center;
    -moz-webkit-mask-position: center;
    -ms-webkit-mask-position: center;
    -o-webkit-mask-position: center;
    mask-position: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.icon-arrow-next {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: @color-black;
    -webkit-mask-image: url('../svg/icon-arrow-next.svg');
    -moz-mask-image: url('../svg/icon-arrow-next.svg');
    -o-mask-image: url('../svg/icon-arrow-next.svg');
    mask-image: url('../svg/icon-arrow-next.svg');
    -webkit-mask-repeat: no-repeat;
    -moz-webkit-mask-repeat: no-repeat;
    -ms-webkit-mask-repeat: no-repeat;
    -o-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    -moz-webkit-mask-size: 100%;
    -ms-webkit-mask-size: 100%;
    -o-webkit-mask-size: 100%;
    webkit-mask-size: 100%;
    -webkit-mask-position: center;
    -moz-webkit-mask-position: center;
    -ms-webkit-mask-position: center;
    -o-webkit-mask-position: center;
    mask-position: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.icon-arrow-next-2 {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background-color: @color-black;
    -webkit-mask-image: url('../svg/icon-arrow-next-2.svg');
    -moz-mask-image: url('../svg/icon-arrow-next-2.svg');
    -o-mask-image: url('../svg/icon-arrow-next-2.svg');
    mask-image: url('../svg/icon-arrow-next-2.svg');
    -webkit-mask-repeat: no-repeat;
    -moz-webkit-mask-repeat: no-repeat;
    -ms-webkit-mask-repeat: no-repeat;
    -o-webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    -moz-webkit-mask-size: 100%;
    -ms-webkit-mask-size: 100%;
    -o-webkit-mask-size: 100%;
    webkit-mask-size: 100%;
    -webkit-mask-position: center;
    -moz-webkit-mask-position: center;
    -ms-webkit-mask-position: center;
    -o-webkit-mask-position: center;
    mask-position: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.donat-link {
    position: relative;
    width: 100%;
    min-height: 220px;
    background-color: rgba(139, 63, 253, .5) !important;
    border: 2px solid #9673d2 !important;
    color: #fff;
    padding: 20px;
    margin: auto;
    margin-top: 0 !important;
    
    .right-block-title {
        &:nth-child(2) {
            border: none;
        }
    }
    
    a {
        display: block;
        background: #9254f0;
        border: 2px solid #8355c7;
        border-radius: 50px;
        font-size: 15px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        padding: 10px 0;
        margin-bottom: 7px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        
        &:last-child {
            margin-bottom: 0;
        }
        
        &:hover {
            background-color: #5e28af;
            color: #fff;
            box-shadow: 0 0px 10px 5px rgba(180, 134, 249, .35);
        }
    }
    
    .top {
      background: linear-gradient(90deg, #762bd9, #db7933, #ffeb3b, #762bd9);
      background-size: 400%;
      border-color: transparent;
      
      &:before {
          content: "";
          position: absolute;
          top: -15px;
          right: -15px;
          bottom: -15px;
          left: -15px;
          z-index: -1;
          background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
          background-size: 400%;
          border-radius: 40px;
          opacity: 0;
          transition: .5s;
      }
      
      &:hover {
          animation: animate 8s linear infinite;
          
            &:before {
                filter: blur(20px);
                opacity: 1;
                animation: animate 8s linear infinite;
            }
      }
    }
    
    .normal:hover {
        background: #5e28af;
        color: #fff;
        animation: shadow 1s infinite alternate;
    }
     
    @keyframes animate {
      0% {
        background-position: 0%;
      }
      100% {
        background-position: 400%;
      }
    }
    
    @keyframes shadow {
      from {
        box-shadow: 0 0 25px 5px rgba(255, 223, 255, .6);
      }
      to {
        box-shadow: 0 0 40px 15px rgba(255, 223, 255, .6);
      }
    }
}

.modal-dialog {
    max-width: 540px;
    
    .modal-body {
        padding: 20px;
        
        .success-form {
            display: none;
            text-align: center;
            
            .thanks-text {
                border-top: 1px solid #ededed;
                color: #8491a5;
                text-align: center;
                padding: 25px;
                margin-top: 30px;
            
                .phone {
                    font-size: 170%;
                    padding: 15px 0;
                }
            }
            
            .social {
                margin-top: 30px;
                margin-bottom: 0;
                margin-right: 0;
            }
        }
    }
    
    .modal-content {
        .policy {
            font-size: 80%;
            color: #777;
            margin: -15px 0 30px;
        }
    }
}

@media (max-width: 767px) {
    .modal-open {
        .icon-contact {
            visibility: visible;
            opacity: 1;
        }
    }
}

.plr-0 [class*="col-"] {
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.row.plr-0 {
    margin-right: 0;
    margin-left: 0;
}

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    
    @media (max-width: 767px) {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.mw-820 {
    max-width: 810px;
    width: 100%;
    
    @media (max-width: 767px) {
        max-width: 100%;
    }
}

.mw-320 {
    max-width: 330px;
    width: 100%;
    
    @media (max-width: 767px) {
        max-width: 100%;
        margin-top: 10px;
    }
}

#vk_groups1 {
    width: 100%;
    max-width: 290px;
    margin: auto;
    
    @media (max-width: 767px) {
        max-width: 384px !important;
    }
    
    @media (max-width: 375px) {
        max-width: 345px !important;
    }
    
    @media (max-width: 320px) {
        max-width: 290px !important;
    }
}

/* Базовые HTML теги */

body {
    font-family: Montserrat;
    font-size: 15px;
}

.h1, h1 {
    font-size: 28px;
    
    @media (max-width: 767px) {
        font-size: 150%;
    }
}
.h2, h2 {
    font-size: 22px;
    
    @media (max-width: 767px) {
        font-size: 130%;
    }
}
.h3, h3 {
    font-size: 20px;
    
    @media (max-width: 767px) {
        font-size: 110%;
    }
}
.h4, h4 {
    @media (max-width: 767px) {
        font-size: 100%;
    }
}
.h5, h5 {
    @media (max-width: 767px) {
        font-size: 90%;
    }
}
.h6, h6 {
    @media (max-width: 767px) {
        font-size: 85%;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #000;
    margin: 30px 0;
    
    @media (max-width: 767px) {
        margin: 15px 0;
    }
}

h3, .h3 {
    margin: 50px 0 15px;
    
    @media (max-width: 767px) {
        margin: 40px 0 15px;
    }
}

.title {
    text-align: left;
    margin: 70px 0 50px;
    
    @media (max-width: 767px) {
        margin: 40px 0 20px;
    }
    
    h1 {
        text-align: left;
        margin: 0 0 5px;
    }
}

.title-2 {
    margin: 10px 0 30px;
}

.desc {
    border-left: 3px solid @color-brand;
    color: @color-black;
    padding-left: 15px;
}

.link {
    font-family: Montserrat Medium;
    color: #777;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
    @media (max-width: 767px) {
        margin-bottom: 20px;
    }
    
    &:hover, &:focus {
        color: @color-brand;
    }
}

a {
    color: @color-link;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    
    &:hover, &:focus {
        color: darken(@color-link, 40%);
        text-decoration: none;
    }
}

p {
    font-size: 16px;
    
    @media (max-width: 767px) {
        font-size: 14px;
    }
}

b, strong {
    font-family: Montserrat Bold;
}

ul:not([class]) li a {
    @media (max-width: 767px) {
        font-size: 13px;
    }
}

button {
    position: relative;
    display: inline-block;
    background-color: @color-brand;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-color: transparent !important;
    min-width: 230px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1;
    
    &:hover, &:focus, &:active {
        background-color: #000;
        color: #fff;
    }
}

.button {
    display: inline-block;
    background-color: @color-brand;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    min-width: 230px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    
    @media (max-width: 767px) {
        width: 100%;
    }
    
    &:hover, &:focus, &:active {
        background-color: #000;
        color: #fff;
    }
    
    &.black-button {
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: center;
        height: 50px;
        padding: 10px 30px;
        background-color: #000;
        
        @media (max-width: 767px) {
            height: 70px;
            margin-bottom: 20px;
        }
        
        &:hover, &:focus, &:active {
            background-color: @color-brand;
        }
        
        icon {
            margin-left: 20px;
        }
    }
}

.btn-border {
    background-color: transparent;
    border: 1px solid #000 !important;
    color: #000;
}

.btn-more {
    background-color: transparent;
    border: 1px solid @color-brand !important;
    color: @color-brand;
    min-width: 170px;
    font-size: 90%;
    text-transform: inherit;
    padding: 8px 15px;
    margin: 30px auto !important;
    
    &:hover, &:focus {
        background-color: @color-brand;
        color: #fff;
    }
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    min-width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    color: #000;
    opacity: 1;
    
    &:hover {
        background-color: transparent;
    }
}

.dropdown {
    
    .dropdown-toggle {
        color: #000;
        background-color: #f0f0f0;
        border-color: #f0f0f0;
        display: block;
        text-transform: uppercase;
        padding: 10px 20px;
        margin-bottom: 5px;
        
        &:after {
            position: absolute;
            top: 18px;
            right: 10px;
        }
    }
    
    .dropdown-menu {
        width: 100%;
        border: 1px solid #f0f0f0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
}
.jGrowl-notification {
    width: auto;
    
    .jGrowl-close {
        width: auto;
        min-width: auto;
        height: auto;
        min-height: auto;
        padding: 0;
        margin: 0;
        letter-spacing: 0;
    }
}

hr {
    border-top: 1px solid #c5c5c5;
    margin: 30px 0;
}

img {
    width: 100%;
    object-fit: contain;
}

pre {
    background-color: #e7effe;
    border: none;
    white-space: pre-wrap;
}

.ui-front {
    z-index: 1020 !important;
}

#breadcrumbs {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    
    @media (max-width: 767px) {
        display: none;
    }
    
    li {
        display: inline-block;
        position: relative;
        
        &:after {
            content: ' / ';
            display: inline-block;
            color: #777;
        }
        
        &:last-child:after {
            display: none;
        }
        
        a {
            font-size: 90%;
            color: #777;
        	padding: 0 3px;
        	-webkit-transition: all .3s;
        	-moz-transition: all .3s;
        	-ms-transition: all .3s;
        	-o-transition: all .3s;
        	transition: all .3s;
        	
        	&:hover, &:focus {
        	    color: #000;
        	}
        }
        
    }
}

.neighbors {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-between;
    margin-top: 15px;
    
    @media (max-width: 767px) {
        flex-wrap: wrap;
        
        span {
            display: block !important;
            width: 100%;
            margin-bottom: 5px;
            
            a {
                display: block;
                font-size: 80%;
            }
        }
        
        span:nth-child(1) {
            order: 2
        }
        span:nth-child(2) {
            order: 1
        }
        span:nth-child(3) {
            order: 3
        }
    }
}

.date {
    font-size: 90%;
    color: @color-black;
    padding: 10px 2px 0;
}

.doc {
    background-color: #fafafa;
    padding: 10px 15px;
    margin-bottom: 5px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
    &:hover {
        background-color: #f3f4f6;
    }
}

.document {
    position: relative;
    bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: block;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
    &:hover {
        bottom: 5px;
        border-color: transparent;
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    }
    
    img {
        height: 170px;
        margin-bottom: 20px;
    }
    
    .document-name {
        color: #000;
        padding: 0 0 10px;
    }
}

.fa-file-pdf {
    color: #ff4c4c;
    margin-right: 12px;
}

/* Основные стили */

header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #fafafa;
    border-bottom: 1px solid #efefef;
    height: 55px;
    
    @media (max-width: 767px) {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: 55px;
    }
    
    .header-button {
        @media (max-width: 767px) {
            margin: 10px auto 0;
        }
    }
    
    .search {
        font-size: 18px;
        color: #777;
        text-align: right;
        padding: 15px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        
        &:hover, &:focus, &:active {
            color: #000;
        }
        
        @media (max-width: 767px) {
            position: absolute;
            top: 0;
            right: 5px;
            height: 50px;
            z-index: 20;
            display: flex;
            align-items: center;
            padding: 10px;
            z-index: 20;
            
            span {
                font-size: 15px;
                margin-right: 5px;
            }
        }
    }
    
    .search-form {
        display: flex;
        visibility: hidden;
        opacity: 0;
        z-index: 22;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        
        &:before {
            content: '';
            display: block;
            background-color: rgba(0,0,0,0.7);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            visibility: hidden;
            opacity: 0;
        }
        
        .search-form-conteiner {
            position: fixed;
            top: -80px;
            left: 0;
            right: 0;
            align-items: center;
            vertical-align: middle;
            background-color: #fff;
            padding: 10px 0;
            z-index: 1;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }
        
        &.open {
            visibility: visible;
            opacity: 1;
            
            .search-form-conteiner {
                top: 0px;
            }
            
            &:before {
                visibility: visible;
                opacity: 1;
            }
        }
        
        form {
            display: flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            
            input {
                margin-bottom: 0;
            }
        }
        
        button, .search-close {
            display: flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            background-color: transparent;
            width: auto;
            min-width: auto;
            height: auto;
            font-size: 120%;
            color: #000;
            padding: 10px;
            margin: 0 5px;
        }
        
        @media (max-width: 767px) {
            height: 50px;
            
            button, .search-close {
                padding: 0;
            }
            
            input {
                margin: 0;
            }
        }
    }
    
    .header-social {
        display: none;
        
        @media (max-width: 767px) {
            position: absolute;
            top: 14px;
            right: 100px;
            display: block;
            z-index: 21;
            
            ul {
                margin: 0;
                padding: 0;
                
                li a {
                    font-size: 16px;
                    width: 25px;
                    height: 25px;
                }
            }
        }
    }
}

.logo {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 150px;
    margin-right: 30px;
    
    @media (max-width: 767px) {
        position: absolute;
        top: 0;
        width: auto;
        height: 50px;
        margin: auto;
        margin-right: 0;
        z-index: 1;
        
        img {
            width: 140px;
            margin: auto;
            margin-left: 70%;
        }
    }
}

.menu {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: flex-start;
    
    @media (max-width: 767px) {
        display: block;
    }
}

nav {
    ul {
        display: flex;
        list-style: none;
        text-align: center;
        padding: 5px 0;
        margin: 0 auto;
        
        li {
            position: relative;
            flex-basis: auto;
            flex-grow: 1;
            margin-right: 15px;
            
            a {
                color: #000;
                text-decoration: none;
                padding: 20px 0;
                -webkit-transition: all 0.2s;
                -moz-transition: all 0.2s;
                -ms-transition: all 0.2s;
                -o-transition: all 0.2s;
                transition: all 0.2s;
                
                &:hover, &:focus {
                    color: @color-brand;
                    text-decoration: none;
                }
            }
            
            ul {
				visibility: hidden;
				opacity: 0;
				position: absolute;
				display: none;
				-webkit-border-radius: 0 0 3px 3px;
                -moz-border-radius: 0 0 3px 3px;
                border-radius: 0 0 3px 3px;
				width: auto;
				padding: 0;
                margin-top: 19px;
				-webkit-box-shadow: 0 15px 20px 0 rgba(0,0,0,.15);
                -moz-box-shadow: 0 15px 20px 0 rgba(0,0,0,.15);
                box-shadow: 0 15px 20px 0 rgba(0,0,0,.15);
				z-index: 16;

	    		li {
	    		    position: relative;
	    			background-color: #fafafa;
	    			min-width: 300px;
	    			margin: 0;
	    			display: block;
	    			text-align: left;
	    			
	    			&.last {
                        -webkit-border-radius: 0 0 3px 3px;
                        -moz-border-radius: 0 0 3px 3px;
                        border-radius: 0 0 3px 3px;
                        
                        a {
                            border-bottom: none;
                            -webkit-border-radius: 0 0 3px 3px;
                            -moz-border-radius: 0 0 3px 3px;
                            border-radius: 0 0 3px 3px;
                        }
                    }

	    			a {
                        display: block;
                        border-bottom: 1px solid #eee;
                        padding: 15px;
                        color: #000;
                        text-transform: inherit;
	    				
	    				&:hover, &:focus {
	    				    opacity: 0.7;
	    				}
	    			}

	    			ul {
						position: absolute;
                        top: 0px;
                        left: 300px;
                        margin: 0;
                        visibility: hidden;
				        opacity: 0;
				        -webkit-box-shadow: 15px 0px 20px -5px rgba(0,0,0,.15);
				        -moz-box-shadow: 15px 0px 20px -5px rgba(0,0,0,.15);
				        box-shadow: 15px 0px 20px -5px rgba(0,0,0,.15);

						a {
							color: #777;
						}
	    			}
	    			
	    			&:hover {

        				>ul {
        					visibility: visible;
        					opacity: 1;
        				}
        			}
	    		}
			}
			
			&.active {
			    >a {
			        color: @color-brand;
			    }
			}
			
			&:hover {

				>ul {
					visibility: visible;
					opacity: 1;
					display: block;
				}
			}
        }
    }
}

@media (max-width: 767px) {
    .menu {
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 0vh;
        background-color: @color-brand;
        z-index: 21;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        
        &.open {
            height: 100vh;
            overflow: auto;
            
            .icon-menu {
                span {
                    background-color: #fff;
                }
            }
        }
        
        
        .icon-menu {
            position: absolute;
            top: 5px;
            left: 5px;
            width: 50px;
            cursor: pointer;
            padding: 10px;
            z-index: 1050;
            
            span {
                background-color: #000;
                display: block;
                width: 100%;
                height: 2px;
                margin: 7px 0;
            }
            
            span:nth-child(1) {
                transition-timing-function: linear;
                transition-duration: 0.3s;
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -webkit-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            span:nth-child(2) {
                transition-timing-function: linear;
                transition-duration: 0.3s;
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -webkit-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }
        }
        
        nav {
            display: none;
            visibility: hidden;
            opacity: 0;
            margin: 70px 0;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        
            ul {
                display: block;
                width: 100%;
                text-align: left;
                padding: 0 20px;
                
                li {
                    width: 100%;
                    margin: 0;
                    margin-bottom: 5px;
                    
                    a {
                        display: block;
                        color: #fff;
                        padding: 5px 0;
                    }
                    
                    ul {
                        position: relative;
                        top: 0;
                        background-color: transparent;
                        border-bottom: 0 solid #fff;
                        visibility: visible;
                        opacity: 1;
                        margin: 5px 0;
                        padding: 0;
                        
                        &:before, &:after {
                            content: none;
                        }
                        
                        li {
                            display: block;
                            background-color: transparent;
                            
                            a {
                                display: block;
                                border-bottom: none;
                                color: #c7c7c7;
                                padding: 0;
                                padding-bottom: 2px;
                            }
                            
                            ul {
                                display: none;
                                left: 0;
                            }
                        }
                    }
                }
            }
        }
    }
    
    .open {
        nav {
            display: block;
            visibility: visible;
            opacity: 1;
        }
        
        .icon-menu {
            span:nth-child(1) {
                transition-timing-function: linear;
                transition-duration: 0.3s;
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
                margin: 0;
                margin-top: 10px;
            }
            span:nth-child(2) {
                transition-timing-function: linear;
                transition-duration: 0.3s;
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
                margin: -2px 0;
            }
        }
    }
}

.slider {
    img {
        height: 350px;
        object-fit: cover;
        
        @media (max-width: 767px) {
            height: 140px;
        }
    }
}

.item {
    position: relative;
    bottom: 0;
    border: 1px solid #e2e2e2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    min-height: 150px;
    margin-top: 30px;
    padding: 15px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
    @media (max-width: 767px) {
        min-height: 130px;
        margin-top: 15px;
    }
    
    &:hover {
        border-color: transparent;
        -webkit-box-shadow: 0 0 5px 0 rgba(79, 165, 221, .15);
        -moz-box-shadow: 0 0 5px 0 rgba(79, 165, 221, .15);
        box-shadow: 0 0 5px 0 rgba(79, 165, 221, .15);
    }
    
    .date {
        padding: 0;
    }
    
    .item-name {
        display: block;
        width: 100%;
        font-family: Montserrat Bold;
        font-size: 20px;
        color: #000;
        text-transform: uppercase;
        margin: 5px 0 15px;
        
        @media (max-width: 767px) {
            font-size: 14px;
        }
        
        &:hover {
            color: @color-link;
        }
    }
    
    .item-desc {
        color: @color-black;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    
    .item-action {
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .item-btn {
        display: inline-block;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #f8f9fa;
        color: #212529;
        padding: 5px 15px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        
        &:hover {
            background-color: @color-brand;
            color: #fff;
        }
    }
}

.right-block {
    background-color: #f8f9fa;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    border: 2px solid rgba(97,168,222,.7);
    margin-top: 15px;
    padding: 10px;
    min-height: 160px;
    
    @media (max-width: 767px) {
        margin-top: 10px;
        min-height: auto;
    }
    
    &.white-block {
        background-color: transparent;
        padding: 0;
    }
    
    .right-block-title {
        position: relative;
        text-transform: uppercase;
        margin-bottom: 5px;
        padding-bottom: 5px;
        
        &:before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            width: 85%;
            height: 1px;
            background-color: rgba(100, 169, 220, .5);
            margin: auto;
        }
        
        &:last-child {
            border-bottom: 0;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        @media (max-width: 767px) {
            text-align: center;
        }
    }
    
    .news {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin-bottom: 15px;
        
        &:last-child {
            margin-bottom: 0;
        }
        
        a {
            color: @color-black;
            
            &:hover {
                color: @color-link;
            }
        }
    }
}

.right-block2 {
    margin-left: -8px;
    
    .youmoney-title {
        background-color: #f5f5f5;
        font-family: Montserrat Bold;
        border: 2px solid #f5f5f5;
        border-bottom: 0;
        border-radius: 8px 8px 0 0;
        margin-left: 8px;
        margin-bottom: 0 !important;
        padding: 12px 0 0;
        text-align: center;
        
        span {
            display: block;
            font-family: Montserrat;
            font-size: 14px;
            line-height: 110%;
            padding-top: 2px;
            padding-bottom: 5px;
        }
    }
    .youmoney {
        position: relative;
        overflow: hidden;
        height: 220px;
        
        iframe {
            position: absolute;
            top: -281px;
        }
    }
}

footer {
    background-color: #120D21;
    color: #fff;
    padding: 50px 0;
    margin-top: 45px;
    
    @media (max-width: 767px) {
        padding: 15px 0;
        margin-top: 15px;
    }
    
    .copy {
        color: #e2e2e2;
        text-align: center;
        
        a {
            border-bottom: 1px solid;
            color: #e2e2e2;
            
            &:hover {
                color: @color-link;
            }
        }
    }
}

.informer {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    margin: 15px 0;
    
    a {
        min-width: 66px;
        max-width: 88px;
        margin: 0 5px;
        
        img {
            @media (max-width: 767px) {
                width: 66px !important;
            }
        }
    }
}

.scroll_button {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
    &.view {
        visibility: visible;
        opacity: 1;
    }
    
    icon {
        background-image: url(../svg/icon-up.svg);
        background-repeat: no-repeat;
        -webkit-background-size: 100%;
        background-size: 100%;
        border: 1px solid #fff;
        border-radius: 50px;
        width: 60px;
        height: 60px;
        position: fixed;
        bottom: 30px;
        right: 20px;
        cursor: pointer;
        z-index: 9999;
        
        @media (max-width: 767px) {
            width: 50px;
            height: 50px;
            bottom: 30px;
        }
    }
    
    &.scroll_bottom {
        icon {
            transform: rotate(180deg);
        }
    }
}

.telegram {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    background-color: @color-telegram;
    border-radius: 3px;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    height: 46px;
    padding: 5px 10px;
    text-transform: none;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    
    &:hover, &:focus, &:active {
        background-color: @color-brand;
        color: #fff;
    }
    
    svg {
        font-size: 35px;
        margin-right: 10px;
    }
    
    span {
        width: 62%;
    }
}

.social {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    
    li {
        margin-right: 5px;
        
        a {
            background-color: @color-black;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #fff;
            text-decoration: none;
            -webkit-transition: all .4s;
            -moz-transition: all .4s;
            -ms-transition: all .4s;
            -o-transition: all .4s;
            transition: all .4s;
            
            &:hover, &:focus, &:active {
                background-color: @color-brand;
            }
        }
    }
}

.tags {
    list-style: none;
    padding: 0;
    margin: 0;
    
    li {
        display: inline-block;
        margin-right: 2px;
        margin-bottom: 3px;
        
        &:last-child {
            margin-right: 0;
        }
        
        a {
            border: 1px solid #e4e4e4;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            font-size: 80%;
            color: #a5a5a5;
            padding: 3px 7px;
            
            &:hover {
                border-color: @color-brand;
                color: @color-brand;
            }
        }
    }
}

#progress_line {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #00a5e9;
    z-index: 9999;
    
    @media (max-width: 767px) {
        height: 3px;
    }
}

.mt-30 {
    margin-top: 30px;
    
    @media (max-width: 767px) {
        margin-top: 10px;
    }
}
.mb-30 {
    margin-bottom: 30px;
    
    @media (max-width: 767px) {
        margin-bottom: 15px;
    }
}

.ad-promo {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: #fff;
    
    b {
        &:last-child {
            background-color: #e4f966;
            color: #000;
            padding: 10px 15px;
            border-radius: 50px;
        }
    }
    
    @media (max-width: 767px) {
        b {
            &:last-child {
                display: block;
                margin-top: 10px;
            }
        }
    }
}

.block-figure-3 * {
    box-sizing: border-box;
}    
.block-figure-3 {
    border-radius: 20px;
    margin: 20px auto;
    padding: 0;
    position: relative;
    width: 100%;
}
.block-figure-3 .figure-txt {
    border: 6px solid #61a8de;
}
.block-figure-3 .image-wrap {
    border: 6px solid #61a8de;
    border-radius: 100%;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 30px;
    background: #FFF;
    z-index: 1;
    right: 0;
}
.block-figure-3 .image-lay {
    width: 100px;
    height: 200px;
    position: absolute;
    top: -6px;
    background: #FFF;
    z-index: 2;
    right: -6px;
}
.block-figure-3 .image {
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    height: 176px;
    width: 176px;
    top: 6px;
    right: 6px;
}
.block-figure-3 .front,
.block-figure-3 .back {
    background-size: cover;
    background-position: center;
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    height: 176px;
    width: 176px;    
    border: 6px solid #61a8de;    
    position: absolute;
}
.block-figure-3 .inner {
    transform: translateY(-50%) translateZ(60px);
    top: 50%;
    position: absolute;
    margin: auto;
    z-index: 4;
    width: 100%;
}
.block-figure-3 .image .back{
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}
.block-figure-3:hover .back{
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}
.block-figure-3:hover .front{
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}
.block-figure-3 .inner a {
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #337AB7;
    text-align: center;
    margin: auto;
    display:block;
    font-size: 14px; 
    line-height: 130px;
    height: 142px;
    width: 142px;
    border:6px solid #61a8de;
    border-radius: 50%;
    transition:all .6s ease-in-out;
    overflow:hidden;    
}
.block-figure-3 .inner a::before{
    content:'';
    position:absolute;
    top:-12px;
    margin:auto;
    display:block;
    border-radius:50%;
    width:166px;
    height:166px;
    left:-1px;
    transition:box-shadow .6s ease-in-out;
    z-index:-1;
}
.block-figure-3 .inner a:hover{
    color:#fff;
}
.block-figure-3 .inner a:hover::before{
    box-shadow: inset 0 0 0 166px #61a8de;
}
 
.block-figure-3 .figure-txt {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    margin-right: 100px;
    min-height: 260px;
    border-radius: 20px;
}
.block-figure-3 .figure-txt h3 {  
    text-transform: uppercase;
    color: #337AB7;
    font-weight: bold;
    font-size: 20px; 
    margin: 6px 100px 12px 0;    
}
.block-figure-3 .figure-txt p { 
    margin: 10px 100px 10px 0;
}
@media (max-width: 560px) {
    .block-figure-3 {
        margin-bottom: 50px;
    }
    .block-figure-3 .figure-txt,
    .block-figure-3 .figure-txt h3,
    .block-figure-3 .figure-txt p {
        margin-right: 0;
    }
  .block-figure-3 .figure-txt {
    padding-bottom: 100px;
  }
    .block-figure-3 .figure-txt {
        min-height: auto;
        border-radius: 20px;
    }
    .block-figure-3 .image-lay {
      width: 200px;
      height: 100px;
      top: 84px;
  }
    .block-figure-3 .image-wrap {
        border: 6px solid #61a8de;
        border-radius: 50%;
        width: 180px;
        height: 180px;
        margin: auto;
        position: relative;
        margin-top: -120px;
      z-index: 2;
    }  
    .block-figure-3 .image {
        border-radius: 20px;
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
        height: 160px;
        width: 160px;
    }
    .block-figure-3 .front,
    .block-figure-3 .back {
        height: 154px;
        width: 154px;
        position: static;
        border-radius: 50%;
        border: none;
        margin: auto;
    }
    .block-figure-3 .inner {
        transform: translateY(-100%) translateZ(60px);
        top: -6px;
    }
    .block-figure-3 .inner a::before{
        display: none;
    }
    .block-figure-3 .inner a:hover{
        color:#000;
    }
}

.pagination {
    justify-content: center;
    margin-top: 30px !important;
    
    .page-item, li {
        .page-link, a {
            border: none;
            border-radius: 4px;
            min-width: 36px;
            min-height: 36px;
            display: flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            padding: 5px 10px;
            color: #000;
            
            @media (max-width: 767px) {
                min-width: 28px;
                min-height: 28px;
                width: 28px;
                height: 28px;
            }
        }
        
        &.active {
            .page-link, a {
                background-color: @color-brand;
                border-color: @color-brand;
                color: #fff;
            }
        }
    }
}

.push-info {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    display: none;
    z-index: 9999;
    
    .push-info-box {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
        margin: auto;
        display: flex;
        align-items: start;
        align-self: center;
        background-color: #fff;
        border-radius: 10px;
        max-width: 500px;
        padding: 25px;
        box-shadow: 0 0px 7px rgba(0, 0, 0, .2);
        z-index: 9999;
        
        @media (max-width: 767px) {
            padding: 15px;
            max-width: 280px;
        }
        
        .push-info-icon {
            margin-right: 15px;
            
            @media (max-width: 767px) {
                margin-right: 10px;
                
                svg {
                    width: 24px;
                    height: 24px;
                }
            }
        }
        
        .push-info-content {
            margin-right: 15px;
            
            @media (max-width: 767px) {
                margin-right: 0;
            }
            
            .push-info-title {
                font-size: 17px;
                font-family: 'Montserrat Bold';
                line-height: 130%;
                color: #2589bd;
                padding-bottom: 5px;
                
                @media (max-width: 767px) {
                    font-size: 15px;
                    padding-right: 10px;
                    padding-bottom: 7px;
                }
            }
            
            .push-info-text {
                font-size: 14px;
                line-height: 130%;
                color: #5a5a5a;
                
                @media (max-width: 767px) {
                    font-size: 12px;
                }
            }
        }
        
        .push-info-btn {
            display: inline-flex;
            align-items: center;
            align-self: center;
            justify-content: center;
            background-color: #33aae7;
            border-radius: 7px;
            color: #fff;
            padding: 7px 15px;
            margin-top: 12px;
            
            @media (max-width: 767px) {
                font-size: 14px;
                padding: 5px 15px;
            }
            
            &:hover {
                background-color: #0095ff;
            }
        }
    }
}

img {
  width: 300px;
}

.vibro {
    animation: vibrate 0.1s;
    animation-iteration-count: infinite;
}

@keyframes vibrate {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-1deg); }
    20% { transform: rotate(1deg); }
    30% { transform: rotate(0deg); }
    40% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    60% { transform: rotate(0deg); }
    70% { transform: rotate(-1deg); }
    80% { transform: rotate(1deg); }
    90% { transform: rotate(0deg); }
    100% { transform: rotate(-1deg); }
}


/* Обнова чтобы старые стили не удалять */ 

.info-donta-list-block {
    display: flex!important;
    flex-direction: row-reverse!important;
    align-items: center!important;
    justify-content: center!important;
}

.btn-copy {
    margin: 10px 0!important;
    min-width: 140px!important;
    height: 35px!important;
    font-size: 14px!important;
    padding: 0 35px 0 10px!important;
    min-width: unset!important;
    
    text-wrap: nowrap !important;
}

.btn-copy:before {
    right: 15px!important;
}

.box.box-two img {
    min-height: 35px!important;
    padding: 2px!important;
    margin-right: 5px!important;
    margin-bottom: unset!important;
    max-width: 100px!important;
}

.info-donat-2 {
    padding: 5px 25px 10px!important;
}

.info-donat-2-title {
    padding: 10px 0 5px!important;
}

.box.box-one {
    padding-bottom: unset!important;
}

.box.box-two {
    padding-top: unset!important;
    padding-bottom: 5px!important;
}

.info-donat-bg .info-donat-2 p {
    margin-bottom: 5px!important;
}

.info-donat-bg .info-donat-2 .info-donta-thanks {
    position: unset!important;
    bottom: unset!important;
}

@media (min-width: 768px) {
  header {
      height: unset;
  }
  
  nav ul li {
      margin: auto;
      margin-right: 15px;
  }
}
