:root {
    --fntMon: 'Montserrat', Helvetica, Tahoma, Arial, sans-serif;
    --fntUnb: 'Unbounded', Helvetica, Tahoma, Arial, sans-serif;
    --clrAccent: #b71313;
    --clrTextAccent: rgb(183, 19, 19);
    --clrTextStdDark: rgb(255, 255, 255);
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    min-height: 100%;
    font-family: var(--fntMon);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #777777;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

body > :last-child {
    margin-top: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fntUnb);
    color: rgb(0, 0, 0);
}

h1 .accent,
h2 .accent,
h3 .accent,
h4 .accent,
h5 .accent,
h6 .accent {
    color: var(--clrTextAccent);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    color: #161616;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

@media screen and (min-width: 980px) {
    body {
        padding-top: 118px;
    }
}


.close {
    width: 24px;
    height: 20px;
    transform: rotate(0deg);
    z-index: 999;
    margin-top: 11px;
    margin-left: 8px;
    color: #fff
}

.close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
}

.close-button .close {
    margin: 0
}

.close span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    height: 2px;
    background-color: currentcolor
}

.close span:nth-child(1) {
    top: 0;
}

.close span:nth-child(2), .closed .close span:nth-child(3) {
    top: 8px;
}

.close span:nth-child(4) {
    top: 16px;
}

.closed .close span:nth-child(1) {
    top: 0;
}

.closed .close span:nth-child(2), .close span:nth-child(3) {
    top: 8px;
}

.closed .close span:nth-child(4) {
    top: 16px;
}

.opened .close span:nth-child(1) {
    top: 8px;
    width: 0;
    left: 50%;
}

.opened .close span:nth-child(2) {
    transform: rotate(45deg);
}

.opened .close span:nth-child(3) {
    transform: rotate(-45deg);
}

.opened .close span:nth-child(4) {
    top: 8px;
    width: 0;
    left: 50%;
}


.ta-left {
    text-align: left;
}

.ta-center {
    text-align: center;
}

.ta-right {
    text-align: right;
}

.ta-justify {
    text-align: justify;
}


.tooltip {
    --tooltip-corner-width: 20px;
    --tooltip-background-color: white;
    --text-color: black;
    display: none;
    font-size: 16px;
    padding: 2em;
    position: absolute;
    z-index: 100000;
    flex-direction: column;
    background-color: var(--tooltip-background-color);
}

.tooltip > * {
    display: block;
}

.tooltip:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    top: auto;
    margin-left: calc(-1 * var(--tooltip-corner-width) / 2);
    border: calc(var(--tooltip-corner-width) / 2) solid transparent;
    border-bottom: calc(var(--tooltip-corner-width) / 2) solid var(--tooltip-background-color);
    width: 0;
    height: 0;
}

.tooltip.above:after {
    top: 100%;
    bottom: auto;
    border: calc(var(--tooltip-corner-width) / 2) solid transparent;
    border-top: calc(var(--tooltip-corner-width) / 2) solid var(--tooltip-background-color);
}

.tooltip.showed {
    display: flex;
    /*animation: aniShowTooltip 0.35s forwards;*/
}

.tooltip.closed {
    display: none;
    /*animation: aniHideTooltip 0.35s forwards;*/
}

@keyframes aniShowTooltip {
    0% {
        display: none;
    }
    1% {
        display: flex;
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        display: flex;
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes aniHideTooltip {
    0% {
        display: flex;
        transform: translateY(0px);
        opacity: 1;
    }
    99% {
        display: flex;
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        display: none;
    }
}


.rollRow {
    font-size: 22px;
    color: #9c9c9c;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (min-height: 640px) {
    .rollRow {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

@media screen and (min-height: 980px) {
    .rollRow {
        margin-top: 70px;
        margin-bottom: 70px;
    }
}

.rollRow > div {
    text-wrap: nowrap;
    margin-right: 30px;
    position: relative;
}

.rollRow.star > div:after {
    display: block;
    content: "";
    width: 10px;
    height: 100%;
    background: url('/imgs/icons/star_quality.svg');
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
}

.rollRow > div {
    animation-duration: 6.26s;
    animation-name: rollRowAnimation;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rollRowAnimation {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(-313px);
        transform: translateX(calc(-1 * (100% + 30px)));
    }
}


.timer {
    color: white;
    display: flex;
    padding: 20px;
    justify-content: center;
    font-family: var(--fntUnb);
}

.timer .sect {
    border-right: 1px Solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    width: 80px;
    flex-direction: column;
    padding-bottom: 7px;
}

.timer .sect:last-child {
    border-right: none;
}

.timer .counter {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.23;
}

.timer .label {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
}

@media screen and (min-width: 640px) {
    .timer .sect {
        width: 110px;
    }

    .timer .counter {
        font-size: 48px;
    }
}

@media screen and (min-width: 980px) {
    .timer .sect {
        width: 140px;
    }

    .timer .counter {
        font-size: 58px;
    }
}

@media screen and (min-width: 1200px) {
    .timer .sect {
        width: 150px;
    }

    .timer .counter {
        font-size: 64px;
    }
}


.accordeon {
    margin: 20px 0;
    max-width: 900px;
}

.accordeon_item {
    border-top: 1px Solid #beb9b9;
}

.accordeon_item:last-child {
    border-bottom: 1px Solid #beb9b9;
}

.accordeon_item_header {
    padding: 27px 50px 27px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.accordeon_item_header:hover .icon {
    background-color: #eeeeee;
}

.accordeon_item_header .title {
    font-family: var(--fntUnb);
    font-size: 18px;
    text-transform: uppercase;
}

.accordeon_item .icon {
    background: white url('/imgs/icons/accordeon_expand.svg') no-repeat center center;
    background-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -20px;
    transition: all 0.2s ease-in-out 0s;
    transform-origin: 50% 50%;
}

.accordeon_item .accordeon_item_body {
    height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out 0s;
}

.accordeon_item_body_inner {
    padding-bottom: 27px;
    box-sizing: border-box;
    max-width: 650px;
}

.accordeon_item.expanded .accordeon_item_body {
    height: auto;
}

.accordeon_item.expanded .icon {
    transform: rotate(-45deg);
}


ul.nav {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

ul.nav.socials {
    gap: 20px;
    flex-direction: row;
}


.separator {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    height: 1px;
    display: flex;
    flex-direction: row;
    opacity: 0.2;
}

.separatorL {
    width: 26.31%;
    background-image: linear-gradient(to left, #000000, rgba(0, 0, 0, 0));
}

.separatorM {
    background: #000000;
    flex-grow: 1;
}

.separatorR {
    width: 26.31%;
    background-image: linear-gradient(to right, #000000, rgba(0, 0, 0, 0));
}

@media screen and (min-width: 640px) {
    .separator {
        width: 540px;
        height: 1px;
        display: flex;
        flex-direction: row;
        opacity: 0.2;
    }

    .separatorL {
    }

    .separatorM {
    }

    .separatorR {
    }
}


.ucase {
    text-transform: uppercase;
}

.mb80 {
    margin-bottom: 80px;
}

.fixBg {
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 30px;
    min-height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


.line {
    position: relative;
    width: 250px;
    height: 10px;
    background: #cccccc;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--clrAccent);
}


.contactUsBtn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    padding: 0;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    -webkit-animation: aniBtnPulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation: aniBtnPulsate 2s ease-out;
    animation-iteration-count: infinite;
    transition: all 0.2s linear;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

@keyframes aniBtnPulsate {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    25% {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1)
    }

    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

.contactUs {
    --gap: 20px;
    --icon-size: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 50px;
    box-sizing: content-box;
    gap: var(--gap);
    flex-direction: column;
}

.iconGrp {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 62px;
    flex-direction: column;
    font-size: 12px;
}

.contactUs a,
.contactUs a:visited,
.contactUs a:active {
    color: black;
    font-family: var(--fntUnb);
    text-decoration: none;
    font-weight: 300;
}

.contactUs a:hover {
    color: var(--clrAccent);
    text-decoration: none;

}

.iconsSet {
    min-width: calc(var(--gap) * 2 + var(--icon-size) * 3);
    max-width: calc(var(--gap) * 2 + var(--icon-size) * 3);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.contactUsPopup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    min-height: 100%;
    overflow-y: auto;
}

.contactUsPopup .popupHeader {
    height: 30px;
    background-color: black;
    color: white;
}