@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
    font-family: 'BOWLER';
    src: url('../fonts/BOWLER.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #0A0E19;
    line-height: 70%;
    color: #FFFFFF;
}
body.lock {
    overflow: hidden;
}
p {
    margin: 0;
}
ol,
ul {
  padding: 0;
  margin: 0;
}
li {
    list-style-type: none;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
button {
    border: none;
    cursor: pointer;
    outline: none;
}
input,
textarea {
    border: none;
    outline: none;
    font-family: inherit;
    margin: 0;
}
textarea {
    resize: none;
}
.btn {
    border-radius: 7px;
    font-family: "IBM Plex Sans", sans-serif;
    color: #FFFFFF;
    transition: .3s;
    text-transform: uppercase;
    font-weight: 700;
}
.btn-red {
    background-color: #F1122F;
}
.btn-red:hover {
    background-color: #FFFFFF;
	color: #1f2434;
}
.btn-white {
    background-color: #FFFFFF;
    color: #090F1E;
    font-weight: 600;
}
.btn-white:hover {
    background-color: #ffffff98;
}
.btn-outline {
    border: 1px solid #FFFFFF;
    background-color: transparent;
}
.btn-outline:hover {
    background-color: #FFFFFF;
    color: #090F1E;
}
.main {
	display: flex;
	flex-direction: column;
	min-height: calc(100 * var(--vh));
    overflow: hidden;
}
.container {
    max-width: 1326px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.m-page {
	flex-grow: 1;
}

.d-none {
    display: none!important;
}
.title {
    font-size: 40px;
    line-height: 34px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}


.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #0a0e19;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.preloader img {
	
}


@media(max-width: 1405px) {
    .container {
        max-width: 1019px;
    }
}
@media(max-width: 1024px) {
    .d-none_tablet {
        display: none !important;
    }
    .d-flex_tablet {
        display: flex !important;
    }
    .d-block_tablet {
        display: block !important;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .title {
        font-size: 32px;
    }
}
@media(max-width: 740px) {
    .d-none_mobile {
        display: none !important;
    }
    .d-flex_mobile {
        display: flex !important;
    }
    .d-block_mobile {
        display: block !important;
    }
    .title {
        font-size: 26px;
    }
}


@media(max-width: 540px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}