@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
body {
    margin:0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
html {
    scroll-behavior: smooth !important;
}
input[type='number']::-webkit-inner-spin-button, 
input[type='number']::-webkit-outer-spin-button { 
    -webkit-appearance: none;    
    appearance: none;
    margin: 0;  
}
input[type='number'], 
input[type='number']:hover,
input[type='number']:focus {
  -moz-appearance: textfield;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
a, a:hover {
    text-decoration: none;
}
button:focus, input:focus {
    outline: none !important;
}
p {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    line-height: 1.3;
}

.header_area{
    background: #f4f4f4;
    padding: 25px 50px;
}
.logo{}
.logo img {
    width: 300px;
}

.header_right_items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.select-menu {
    position: relative;
}
.select-btn {
  cursor: pointer;
}
.sBtn-text, .show_language{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.sBtn-text span, .show_language span{
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
    margin-right: 10px;
}
.sBtn-text span img, .show_language span img{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    object-fit: cover;
}
.sBtn-text p, .show_language p{
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1em;
}
.show_language span{
    width: 30px;
    height: 30px;
}
.show_language span img{
    width: 20px;
    height: 20px;
}
.show_language p{
    font-size: 14px;
}
.select-menu .language_list {
    position: absolute;
    z-index: 11;
    width: 220px;
    height: 210px;
    padding: 5px;
    border-radius: 7px;
    background: #fff;
    animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
    display: none;
    left: 0;
    top: 45px;
    overflow: hidden;
    overflow-y: auto;
}
.select-menu .language_list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 100px;
}
.select-menu .language_list::-webkit-scrollbar-thumb {
    background-color: #8f2329;
    border-radius: 100px;
}
.select-menu .language_list .option {
    cursor: pointer;
    padding: 5px 5px;
    border-radius: 7px;
}
.select-menu .language_list .option:hover {
  background: #f2f2f2;
}
.select-menu.active .language_list {
  display: block;
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
}
to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
}
}
.primary_btn {
    display: inline-block;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFF;
    line-height: 1em;
    background: #8f2329;
    padding: 12px 25px;
    border: 2px solid #dbbd5a;
    border-radius: 100px;
    outline: none;
    text-align: center;
}

.hero_area{
    border-top: 5px solid #83161c;
}
.hero_slider > img{
    width: 100% !important;
    height: auto;
}

.marquee_area {
    overflow: hidden;
    background: #83161c;
    padding: 15px 0px;
    position: relative;
    z-index: 1;
}
.marquee_area .marquee_text {
    display: flex;
    animation: marquee 30s linear infinite;
    width: 250%;
    padding-left: 100%;
}
.marquee_text p {
    font-weight: 700;
    font-size: 18px;
    color: #FFF;
    line-height: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.marquee_text p img {
    width: 35px;
    margin-right: 15px;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


.main_bg_area {
    background: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.choose_area{
    padding: 40px 0px;
}
.titles h1{
    font-weight: 800;
    font-size: 32px;
    color: #000;
    line-height: 1.2em;
}
.titles p {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.3em;
    padding-top: 15px;
}
.choose_area .row.justify-content-center>*{
    margin-top: 25px;
}
.choose_items {
    background: linear-gradient(to top, #47050a, #8b262c);
    text-align: center;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.5);
    padding: 40px 15px 30px 15px;
    border-radius: 15px;
    height: 100%;
}
.choose_items span {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    overflow: hidden;
    background: #FFF;
    position: relative;
}
.choose_items span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
.choose_items h3 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 1.2em;
    padding-top: 40px;
}

.video_area, .work_area{
    padding: 40px 0px;
}
.video_box, .buttons{
    padding-top: 25px;
}
.videos {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 10px;
}
.video_box iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.work_list{
    padding-top: 15px;
}
.work_list ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.work_list ul li {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 10px;
    max-width: 870px;
}
.work_list ul li span {
    display: inline-block;
    padding-right: 5px;
}

.commission_area{
    padding: 40px 0px;
}
.commission_box{
    padding-top: 25px;
}
.com_row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.colset{
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.commission_items{
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}
.com_head{}
.com_hitems, .dep_head .dep_title{
    background: linear-gradient(to top, #63090a, #8b252b);
    padding: 10px 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.com_hitems h3{
    max-width: 200px;
}
.com_hitems h3, .com_bitems h3, .dep_title h3{
    font-weight: 700;
    font-size: 18px;
    color: #FFF;
    text-align: center;
}

.com_body{
    background: #ffffff;
}
.com_bitems, .dep_items{
    background: #FFF;
}
.com_bitems:nth-child(2n), .dep_body .dep_items:nth-child(2n){
    background: #f2f2f2;
}
.dep_body .dep_title{
    padding: 15px 15px;
}
.com_bitems h3{
    color: #000;
    max-width: 100%;
    line-height: 1em;
    text-transform: uppercase;
}
.commission_footer{
    padding-top: 25px;
}

.deposit_area{
    padding: 40px 0px;
}
.deposit_items {
    background: #dadada;
    padding: 25px 25px;
    border-radius: 20px;
}
.com_bitems {
    padding: 15px 15px;
}
.deposit_box {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    margin-top: 25px;
}
.dep_row {
    display: flex;
    flex-wrap: wrap;
}
.left_dcol{
    flex: 0 0 40%;
    max-width: 40%;
    width: 100%;
    position: relative;
}
.dep_head .left_dcol::after{
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #FFF;
    width: 1px;
    height: 50%;
}
.right_dcol{
    flex: 0 0 60%;
    max-width: 60%;
    width: 100%;
}
.dep_body .dep_title h3{
    color: #000;
    line-height: 1em;
}

.weekly_area{
    padding: 40px 0px;
}
.weekly_box {
    padding-top: 40px;
}
.weekly_head{}
.wkly_row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
}
.wkly_col_1{
    flex: 0 0 20%;
    max-width: 20%;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
}
.wkly_col_2{
    flex: 0 0 20%;
    max-width: 20%;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
}
.wkly_mtitle {
    background: linear-gradient(to top, #63090a, #8b252b);
    padding: 15px 15px;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 15px;
}
.wkly_mtitle h3 {
    color: #FFF;
    max-width: 120px;
}
.wkly_level_box p, .wkly_level_box h3, .wkly_mtitle h3{
    font-weight: 700;
    font-size: 16px;
}
.wkly_level_box {
    text-align: center;
    position: relative;
    height: 100%;
}
.wkly_level_box h3 {
    background: linear-gradient(to top, #63090a, #8b252b);
    display: inline-block;
    color: #FFF;
    line-height: 1em;
    padding: 7px 20px;
    border-radius: 100px;
    margin-bottom: 5px;
}
.wkly_level_box p {
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.2em;
}
.wkly_member_box{
    display: flex;
    flex-direction: column;
}
.member_items {
    background: #FFF;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 15px;
    width: 85%;
    margin: 0 auto;
}
.wkly_col_2:nth-child(2) .member_items:first-child{
    margin-bottom: 20px;
}
.wkly_col_2:nth-child(2) .member_items:last-child{
    margin-top: 20px;
}
.wkly_col_2:nth-child(3) .member_items:first-child{
    margin-bottom: 30px;
}
.wkly_col_2:nth-child(3) .member_items:last-child{
    margin-top: 30px;
}
.wkly_col_2:nth-child(4) .member_items:first-child{
    margin-bottom: 40px;
}
.wkly_col_2:nth-child(4) .member_items:last-child{
    margin-top: 40px;
}
.wkly_col_2:nth-child(5) .member_items:first-child{
    margin-bottom: 50px;
}
.wkly_col_2:nth-child(5) .member_items:last-child{
    margin-top: 50px;
}
.member_items > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: linear-gradient(to top, #63090a, #8b252b);
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 100%;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.wkly_col_2:nth-child(2n-3) > .wkly_level_box, .wkly_col_2:nth-child(2n-3) > .wkly_member_box{
    background: #eaeaea;
}
.weekly_body .wkly_col_2:nth-child(2n-3) > .wkly_member_box::after {
    position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #eaeaea;
    width: 100%;
    height: 125%;
}

.wkly_mtitle{
    position: relative;
    z-index: 1;
}
.weekly_body .wkly_mtitle::after {
    position: absolute;
    content: "";
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    width: 35px;
    height: 2px;
}
.weekly_body .wkly_mtitle::before {
    position: absolute;
    content: "";
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    width: 2px;
    height: 134px;
}
.weekly_body .member_items::after{
    position: absolute;
    content: "";
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    width: 75px;
    height: 2px;
}
.wkly_level_box, .wkly_member_box {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}
.weekly_head .wkly_col_2:nth-child(2n-3) > .wkly_level_box{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.weekly_footer .wkly_col_2:nth-child(2n-3) > .wkly_level_box{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.weekly_footer .wkly_level_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.weekly_footer .wkly_level_box h3{
    display: none;
}


.determination_box {
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    margin-top: 25px;
    width: 75%;
}
.det_col_1{
    flex: 0 0 40%;
    max-width: 40%;
    width: 100%;
    position: relative;
}
.det_col_2{
    flex: 0 0 30%;
    max-width: 30%;
    width: 100%;
    position: relative;
}
.det_col_1::after, .det_col_2::after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #FFF;
    width: 1px;
    height: 50%;
}
.det_col_2:nth-child(3)::after{
    display: none;
 }
.dep_title ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dep_title ul li{
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 1.3em;
}
.determination_box .dep_body .dep_title{
    height: 100%;
}
.dep_body .det_col_2:nth-child(2) .dep_title{
    background: #f3f3f3;
}


.sales_area{
    padding: 40px 0px;
}
.sales_box{
    padding-top: 25px;
}
.sales_row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -7px;
    margin-right: -7px;
}
.sales_col_1{
    flex: 0 0 24%;
    max-width: 24%;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
}
.sales_col_2{
    flex: 0 0 19%;
    max-width: 19%;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
}

.sales_btn, .sales_btn ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}
.sales_btn ul li{
    padding-top: 10px;
}
.sales_btn ul li a {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    line-height: 1em;
    background: linear-gradient(to top, #63090a, #8b252b);
    border-radius: 100px;
    outline: none;
    text-align: center;
    padding: 15px 10px;
    width: 220px;
}

.sales_items{
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.3);
}
.sales_head {
    background: linear-gradient(to top, #63090a, #8b252b);
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75px;
}
.sales_head h3, .sales_head p, .sales_body ul li h3, .sales_body ul li p, .sales_body ul li > span{
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2em;
}
.sales_head h3{
    color: #ffd877;
    padding-bottom: 5px;
}
.sales_body{
    background: #FFF;
}
.sales_body ul{
    display: flex;
    flex-direction: column;
}
.sales_body ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75px;
    padding: 15px 15px;
}
.sales_body ul li:nth-child(2n) {
    background: #f2f2f2;
}
.sales_body ul li h3, .sales_body ul li p, .sales_body ul li > span{
    color: #000;
    line-height: 1em;
}
.sales_body ul li h3 {
    padding-bottom: 5px;
}
.sales_body ul li p{
    padding-top: 5px;
}
.condition_box{
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #d0d0d0;
}
.condition_box h3 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1em;
    color: #000;
}
.condition_box ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5px;
}
.condition_box ul li {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5px;
    max-width: 805px;
}
.condition_box ul li span{
    padding-right: 5px;
}

.footer_area{
    background: #000000;
    padding: 30px 50px;
}
.left_footer_widget{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.right_footer_widget {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.left_footer_widget h3, .right_footer_widget h3{
    padding-bottom: 10px;
}
.left_footer_widget h3, .right_footer_widget h3, .copy_right p {
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    line-height: 1em;
    text-transform: uppercase;
}
.left_footer_widget img {
    width: 90%;
}
.right_footer_widget img {
    width: 70%;
    display: block;
    margin: 0 0 0 auto;
}
.copy_right{
    text-align: center;
    padding-top: 30px;
}