body {
    font-weight: 300;
    color: rgb(255 255 255);
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align: baseline;
    background: transparent;
    cursor: pointer;
    z-index: 100;
    color: #e68722;
}
a:hover {
    cursor: pointer !important;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.row-end {
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.row-top {
    display: flex;
    position: relative;
    align-items: flex-start;
    width: -webkit-fill-available;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.row-center {
    align-items: center;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.row-sb {
    justify-content: space-between;
}

.transition {
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.flex {
    display: flex;
}

.col {
    flex-direction: column;
}

.col-center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 10;
}

.f-end {
    align-items: flex-end;
}

.center {
    text-align: center;
}

.orange {
    color: #f7840a;
}

.bold {
    font-weight: 800;
}
.thin {
    font-weight: 200;
}
.underline {
    text-decoration: underline;
}
.scroll {
    height: auto;
    overflow-y: auto;
    direction: ltr;
    scrollbar-width: thin;
    scrollbar-color: #222;
    overflow-x: hidden;
    z-index: 10;
}
.scroll::-webkit-scrollbar {
    width: 6px;
}
.scroll::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: #222;
}
.scroll::-webkit-scrollbar-thumb {
    border-left: 0;
    border-right: 0;
    border-radius: 10px;
    background-color: #e68722;
}

.m-1 {margin: 10px;}
.mt-1{margin-top: 10px;}
.mb-1{margin-bottom: 10px;}
.mr-1{margin-right: 10px;}
.ml-1{margin-left: 10px;}
.m-2 {margin: 20px;}
.mt-2{margin-top: 20px;}
.mb-2{margin-bottom: 20px;}
.mr-2{margin-right: 20px;}
.ml-2{margin-left: 20px;}
.m-3 {margin: 30px;}
.mt-3{margin-top: 30px;}
.mb-3{margin-bottom: 30px;}
.mr-3{margin-right: 30px;}
.ml-3{margin-left: 30px;}

.stripes {
    margin-right: 3px;
}
.stripes .strip {
    width: 2px;
    height: 13px;
    background-color: #e68722;
    margin-right: 3px;
    transform: rotate(30deg);
}
.stripes.big {
    margin-right: 3px;
}
.stripes.big .strip {
    width: 3px;
    height: 24px;
    margin-right: 5px;
}
.main_section_wrapper {
    overflow: hidden;
    position: relative;
    background-color: #0c0c0c;
}
.main_section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    color: #fff;
    height: inherit;
    position: relative;
}
.main_section .menuMob {
    position: absolute;
    right: 0px;
    top: 40px;
    text-align: right;
    background-color: #e68721;
    padding: 10px 40px;
    margin-top: 50px;
    border-radius: 2px;
}
.main_section .menuMob .nav {
    margin: 24px 0px;
}
.blue {
    color: #03a9f4;
}
.bar {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    color: #fff;
    flex-wrap: wrap;
}
.bar .icon img {
    width: 20px;
}

.button {
    height: 46px;
    cursor: pointer;
    padding: 0px 60px 0px 40px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 20;
    text-align: center;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button.orange {
    color: #fff4e9;
    background: #e68722;
    border: 1px solid #e68721;
}
.button.orange:hover {
    color: #fff;
    background: #d8750c;
}

#popup {
    position: fixed;
    bottom: 10px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 50;
}

#popup .list_wrapper {
    position: relative;
}
.close {
    width: 40px;
    height: 28px;
    cursor: pointer;
    margin-right: 10px;
}
.close:before, .close:after {
    position: absolute;
    right: 15px;
    content: ' ';
    height: 16px;
    width: 2px;
    border-radius: 10px;
    background-color: #ffffff;
    margin: 6px 10px;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}

.mariartyBG {
    position: absolute;
    right: 10%;
    bottom: 0px;
    z-index: -2;
    height: 100%;
    opacity: 0.3;
}

.button img {
    width: 20px;
    position: absolute;
    right: 24px;
}

.button.orange:hover img {
    right: 12px !important;
}

.section.top {
    background-color: #000000;
    color: #fff;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 80px 80px;
    overflow: hidden;
    position: relative;
}

.section.top h4 {margin-bottom: 8px;}
.section.top p {font-size: 14px;font-weight: 200;}
.section.top .block {
    margin: 20px 0px;
    z-index: 1;
}

.imgWave {
    position: absolute;
    display: flex;
    height: 250px;
    z-index: 0;
    align-items: center;
    align-content: center;
}
.imgWave img {
    opacity: 0.5;
    height: 100%;
}

.listBlock .liWrapper {
    font-weight: 600;
    color: #ccc;
}

.listBlock .liWrapper:hover {
    color: #fff;
}

.listBlock .liWrapper .num {
    margin-right: 20px;
}

.benefits .liWrapper .num {
    height: 10px;
    width: 2px;
    background-color: #ccc;
    transform: rotate(30deg);
    margin: 4px 20px 0px 0px;
}

.listBlock .liWrapper .icon {
    width: 24px;
    height: fit-content;
    margin: 0px 16px 0px -10px;
}

.tutorial {
    background-color: #0c0c0c;
}

.benefits {
    background-color: #111;
}

.benefits, .tutorial {
    position: relative;
    overflow: hidden;
}

.imgWrapper.main {
    bottom: 0px !important;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: -1;
}

.imgWrapper {
    position: absolute;
    height: inherit;
    overflow: hidden;
}

.imgWrapper.right {
    top: 0px;
    right: 0px;
}

.imgWrapper.left {
    top: 0px;
    left: 0px;
}

.imgWrapper.left img{
    height: 100%;
    object-fit: cover;
}

.imgWrapper.right img {
    width: 100%;
    object-fit: cover;
}

.mirrors {
    position: relative;
    background-color: #000001;
}

.mirrors li {
    font-weight: 600;
    color: #a7a7a7;
    cursor: pointer;
    line-height: 24px;
    list-style: none;
    font-family: monospace;
}

.mirrors .img {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50%;
}

.stripesMenu .strip {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    margin: 4px 0px;
}

.stripesMenuClose .strip {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    margin: 4px 0px;
    transform: rotate(-45deg);
}

.tr3 {transition: all 3s ease-in-out;}
.tr4 {transition: all 4s ease-in-out;}

.anPadLeft {padding-left: 30px;}
.anPadLeft.active {padding-left: 0px;}

.anOpacity {opacity: 0;}
.anOpacity.active {opacity: 1;}

.anScale {transform: scale(0.2);}
.anScale.active {transform: scale(1);}
