/*reset*/
*{
    margin: 0;
    padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
    /* background-color: rgba(194, 32, 215, 0.215); */
}
ul, li { list-style: none;}
a { display: inline-block;}
button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    border-radius: 0;
    cursor: pointer;
    font-size: inherit;
    background-color: unset;
}
/*fonts*/
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}
.russo-one-regular {
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*colors*/
:root {
    --red: #942924;
    --black: #000000;
    --white: #ffffff;
    --icons: #D9D9D9;
    --bg_accents: #F5F5F5;
    --time: #818181;
    --shadow_popup: rgba(0,0,0, 0.5);
    --shadow_banner: rgba(0,0,0, 0.25);
}
/*common*/
body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
}
.container {
    max-width: 1120px;
    margin: 0 auto;
}
.border {
    border-bottom: 7px solid var(--red);
}
/*all*/
/*header*/
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 50px;
    position:relative;
    z-index: 100;
}

.logo {
    padding-bottom: 9px;
}
/*menu*/
.main-nav {
    font-size: 16px; 
}
.main-nav-links a {
    padding: 9px 11px;
} 
/*COMMON IN MENU*/
.main-nav-links {
    display: flex;
}
.main-nav-links a {
    color: var(--black);
    text-decoration: none;
    line-height: 112%;
    transition: all 0.1s ease-in;
    display: block;
    padding: 10px 15px ;
}
.main-nav-links a:hover {
    background-color: var(--icons);
    transition: all 0.2s ease-in;
}
.main-nav-links .active a {
    background-color: var(--red);
    color: var(--white);
}
@media (max-width: 1075px) {  
    .container {
        padding: 0 20px;
    }
    .banner .container {
        padding: 0;
    }
    /*Hamburger menu*/
    .hamburger {
        position: absolute;
        bottom: 7px;
        right: 9px;
        width: 45px;
        height: 40px;
        padding: 5px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .hamburger span {
        display: block;
        height: 5px;
        width: 100%;
        background-color: var(--red);
        margin: 0;
        padding: 0;
        transition: 0.2s ease;
    }
    .open .hamburger span:nth-child(1) {
        transform: translateY(-1px) translateX(3px) rotate(45deg);
        transform-origin: bottom left;    
    }
    .open .hamburger span:nth-child(3) {
        transform: translateY(1px) translateX(3px) rotate(-45deg);
        transform-origin: top left;    
    }
    .open .hamburger span:nth-child(2) {
        opacity: 0;
        transition: 0.2s ease;
    }
    .main-nav-links {
        position: absolute;
        top: 100%;
        right: 9px;
        z-index: 100;
        background-color: var(--white);
        border-top: var(--red) 7px solid;
        flex-direction: column;
        font-size: 20px;
        opacity: 0;
        transition: 0.2s ease;
        visibility: hidden;
        display: none;
    }
    .open .main-nav-links {
        opacity: 1;
        transition: 0.2s ease;
        visibility: visible;
        display:block;
    }
    .main-nav-links a {
        padding: 10px 20px;
    }
    .open.overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #2a1b1b5b;
        backdrop-filter: blur(3px);
        opacity: 1;
        transition: 0.2s ease;
    }
}


/*banner*/

.carousel {
    width: 100%;
    max-width: 100%;
    max-height: 77vh;
    height: 600px;
    position: relative;
}

.carousel-images {
    display: block;
}
.carousel button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 60px; 
    background: none;
    background-color: rgba(255,255,255, 0.45);
    line-height: 100%;
    transition: all 0.2s ease;
    color: var(--red);
    padding: 15px 15px 15px 15px;
}
.carousel button:hover {
    background-color: rgba(255,255,255, 0.4);
    transition: all 0.2s ease;
}
.carousel-prev {
    left: 20px;
    
}
.carousel-next {
    right: 20px;
}
.slide-btn span {
    display: block;
    width: 34px;
    height: 78px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.prev-btn span {    
    background-image: url(images/icons/png/left_arrow.png);
    margin-left: -5px;
}
.next-btn span {    
    background-image: url(images/icons/png/right_arrow.png);    
    margin-right: -5px;
}
.slide {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;    
}

.slide img {
    object-fit: cover;
    width:100%; height:100%;
}

.slide[data-active] {
    opacity: 1;
    transition-delay: 0ms;
}
/*moto*/
.moto {
    margin-top: 88px;
    margin-bottom: 100px;
    text-align: center;
}
.moto b, .moto p {
    line-height: 120%;
}
.moto b {
    font-size: 24px;    
    margin-bottom: 67px;
    display: inline-block;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
}
.moto p {
    font-size: 20px;
}

h2.border {
    font-size: 40px;
    line-height: 150%;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
}
/*next-event*/
.next-event-bg {
    background-color: var(--bg_accents);
}
i.knives {
    background-image: url(/images/icons/png/knifes_black.png);
    background-image: url(/images/icons/svg/knifes_black.svg);
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 200px;
    
}
.next-event-content {
    padding-top: 77px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items:center;
    justify-content: center;
    padding-bottom: 60px;
}
.next-event h2 {
    margin-bottom: 0;
}
.next-event p {
    font-size: 40px;
    font-family: "Russo One", sans-serif;
    max-width: 700px;
    margin-right: 20px;
}
/*news*/
h2 {
    font-size: 40px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 9px;
}

h3 {
    font-size: 24px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 9px;
}

h4 {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 120%;
    margin-bottom: 9px;
}

hnews {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 9px;
	margin-top: 9px;
}

.news h2 {
    margin-top: 60px;
}
.news-block {
    margin-bottom: 30px;
}

.news-block date {
    margin-bottom: 6px;
    display: inline-block;
	font-size: 20px;
    font-family: "Russo One", sans-serif;
    font-weight: 400;	
}
.read-more {
    text-decoration: none;
}
.read-more, .make-comment {
    color: var(--red);
}

.news-block button {
    margin-top: 22px;
    margin-bottom: 22px;
}

.red-button {
    font-size: 16px;
    color: var(--white);
    line-height: 120%;
    padding: 12px 10px;
    background-color: var(--red);
    font-family: "Russo One", sans-serif;
    font-weight: 400;
    text-decoration: none;
    outline: inherit;
    box-shadow: none;
    border: 0 none;
    cursor: pointer;
}

.more-news {
    font-size: 20px;
    color: var(--white);
    line-height: 120%;
    padding: 13px 8px;
    background-color: var(--red);
    font-family: "Russo One", sans-serif;
    margin-bottom: 80px;
}
/*footer*/
footer {
    background-color: var(--red);
    padding-top: 50px;
    padding-bottom: 40px;
    color: var(--white);
}
.footer-logo img {
    display: inline-block;
    padding: 6px 0;
    width: 337px;
    filter: invert(100%) sepia(11%) saturate(7457%) hue-rotate(183deg) brightness(115%) contrast(110%);
}
.footer .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-information {
    max-width: 600px;
    line-height: 150%;
}

.contact-information a {
    color: white;
}
.phones {
    display: flex;
    gap: 10px;
}
@media (max-width: 475px) {
    .carousel {
        max-height: 45vh;
        height: 45vh;
    }
    .carousel-prev {
        left: 5px;
    }
    .carousel-next {
        right: 5px;
    }
    .slide-btn span {
        width: 24px;
        height: 54px;
    }
    h2.border {
        font-size: 30px;
        line-height: 105%;
    }
    .moto b {
        margin-bottom: 20px;
    }
    .next-event p {
        font-size: 24px;
    }
}
@media (min-width: 395px) and (max-width: 475px) {
    .container {
        padding: 0 10px;
    }
    .header .container {
        padding-top: 30px;
    }
    .logo img, .footer-logo img {
        width: 300px;
    }
}
@media (max-width: 395px) {
    .header .container {
        padding-top: 30px;
    }
    .logo{
        padding-bottom: 11px;
    }
    .logo img, .footer-logo img {
        width: 250px;
    }
    .container {
        padding: 0 5px;
    }
}

.btl {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #630;
	text-align: left;
}

.btc {
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #630;
	text-align: center;
}

.frm {
	font-family: "Times New Roman", Times, serif;
	height: 40px;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #600;
}
input:invalid {
  border: 2px dashed red;
}

input:valid {
  border: 2px solid black;
}

.ttt_1 {
	width: 10%;
	text-align: center;
}

.contacts {
    margin-top: -9px;;
}

.contacts-hero {
    display: flex;
    gap: 30px;
}
.contacts-hero img{
    max-width: 477px;
    max-height: 374px;
    height: auto;
}
.contacts-hero {
    border-bottom: 7px solid var(--red);
}
.contacts-hero-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 35px;
    height: 35px;
    background-position: center;
    background-repeat: no-repeat;
}
.vk {
    background-image: url("images/icons/png/social/vk.png");
}
.whatsup {
    background-image: url("images/icons/png/social/wup.png");
}
.telegram {
    background-image: url("images/icons/png/social/tg.png");
}

@media (max-width: 360px) {
 .contacts-hero img{
    max-width: 180px;
    max-height: 120px;
    height: auto;
	}
}

.bold_ref {
	decoration: none;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 24px;	
	color: black;
}