* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #C3000B;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1 {
    color: #fff;
    font-family: 'LibreBaskerville-Regular';
    font-size: 7.2rem;
    line-height: 90px; 
}
h2 {
    color: #fff;
    font-family: 'LibreBaskerville-Regular';
    font-size: 5rem;
    line-height: 58px;
}
h3 {
    color: #fff;
    font-family: 'DMSans-SemiBold';
    font-size: 3.2rem;
    line-height: 40px;
}
h4 {
    color: #1D1D1B;
    font-family: 'DMSans-Medium';
    font-size: 2rem;
    line-height: 32px;
}
h6 {
    color: rgba(29, 29, 27, 0.70);
    font-family: 'DMSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
}
p {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'DMSans-Regular';
    font-size: 1.6rem;
    line-height: normal;
    margin-bottom: 18px;
}
ul {
    margin-bottom: 18px;
}
li {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'DMSans-Regular';
    font-size: 1.6rem;
    line-height: normal;
}
.common-btn {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(29, 29, 27, 0.50);
    color: #1D1D1B;
    background-color: #fff;
    padding: 11px 50px 11px 24px;
    border-radius: 5px;
    font-size: 1.6rem;
    font-family: 'DMSans-Regular';
    transition: .5s  cubic-bezier(.645, .045, .355, 1);
    z-index: 1;
    overflow: hidden;
}
.common-btn:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 24px;
    background-color: #C3000B;
    border-radius: 50%;
    transition: .5s cubic-bezier(.645, .045, .355, 1);
    transform: translateY(-50%);
    z-index: -1;
}
.common-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    background-image: url(../images/btn-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}
.common-btn:hover {
    color: #fff;
    border-color: #C3000B;
}
.common-btn:hover:before {
    top: 50%;
    left: 75%;
    transform: translate(-50%, -75%) scale(37);
    border-radius: 50%;
}
.dark-btn {
    background-color: #2F2F2D;
    border-color: #2F2F2D;
    color: #fff;
}
.red-btn {
    background-color: #C3000B;
    border-color: #C3000B;
    color: #fff;
}
.red-btn:hover::before {
    background-color: #fff;
}
.red-btn:hover::after {
    filter: brightness(0);
}
.red-btn:hover {
    color: #1D1D1B;
    border-color: #fff;
}
.round-btn {
    min-height: 60px;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background-color: #1D1D1B;
    border-radius: 100%;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.round-btn::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url(../images/next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.round-btn:hover {
    background-color: #C3000B;
}
.common-arrow {
    width: 90px;
    height: 90px;
    border: 1px solid #fff;
    background-color: #1D1D1B;
    border-radius: 100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #C3000B;
    border-color: #C3000B;
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 15px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.common-wrap {
    padding-right: 35px;
    padding-left: 35px;
}
