@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --bg-primary: #fff!important;
    --bg-second: #F9F9F9!important;
    --bg-color:#3B1135!important;
    --text-primary: #000!important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}			

html,
body {
    width: 100%;
    height: 100%;
}

body {
    overflow-x: hidden!important;
    position: relative!important;
    font-family: 'Archivo Narrow', sans-serif!important;
    line-height: 1.5!important;
    font-size: 20px!important;
    font-weight: 300!important;
    color: var(--text-primary)!important;
    background-color: var(--bg-primary)!important;
}

.container,
.container-fluid {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0 30px;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 500!important;
    line-height: 1.1!important;
}	

h3 {
    font-size: 26px!important;
}

p {
    margin-bottom: 0!important;
    line-height: 1.3!important;
}

a {
    text-decoration: none!important;
    color:var(--text-color)!important;
}

ul li {
    list-style: none;
}

.classic-list {
    margin-bottom: 10px;
	margin-top: 10px;
	padding-left: 30px;
}

.classic-list li {
	font-size: 19px;
	list-style-type: square;    
}

.logo img{
    max-width: 150px;
}		

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style-type: none;
    transition: all 0.3s ease;
}

.navi {
    display: flex;
    gap: 10px;
}	

.navi ul {
    margin-bottom: 0!important;
}

.nav-menu li {
    margin-left: 15px;
    font-size: 18px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary)!important;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

.section-fullscreen,
[class*='section-spacing'] {
    position: relative
}

.section-fullscreen {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section-hero {
    padding: 100px 0 80px;
    background: url("banner.jpg") center top;
    background-size: cover;
}

.section-spacing-lg {
    padding: 120px 0
}

.section-spacing-sm {
    padding: 80px 0
}

.section-footer {
    padding: 25px 0
}

.section-footer p {
    font-size: 16px;
}

.bg-second {
    background-color: var(--bg-second);
}

.bg-color {
    background-color: var(--bg-color);
}

.simg {
    max-width: 100%;
}

.table {
    background: transparent;
 }
 
 .table-main {
    margin-top: 20px;
    margin-bottom: 30px;
 }

 .table thead.thead-primary {
    background: #1089ff;
 }
 
 .table thead th {
    border: none;
    padding: 20px 30px;
    font-size: 14px;
    color: #fff;
 }
 
 .table tbody tr {
    margin-bottom: 10px;
    border-left: 2px solid #9B2786;
    border-right: 2px solid #9B2786;
    box-shadow: 0 0 10px 0 #9B2786 inset;
 }
 
 .table tbody th,
 .table tbody td {
    border: none;
    vertical-align: middle;
    border-bottom: 2px solid #9B2786;
    border-top: 2px solid #9B2786;
    font-size: 18px;
 }
 
.brr tbody td {
    border-right: 2px solid #9B2786;
}

 .list span {
    position: relative;
    display: block;
    padding-left: 7px;
 }
 
 .list span:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    top: 10px;
    left: 0;
    border-radius: 50%;
    background: #3d3d3d;
 }
 
 .table .bonus {
    font-weight: 500;
    padding: 0 7%;
 }
 
 .bonus strong {
    display: block;
 }
 
 .tlogo img {
    max-width: 200px;
 }
 
 @media (max-width: 900px) {
    .tlogo {
       text-align: center;
    }
 
    .tlogo img {
       max-width: 200px;
    }
 }
 
 @media only screen and (max-width: 767px) {
    .table-main td {
       display: block;
       text-align: center;
    }
 
    .tlogo img {
       max-width: 250px;
       padding-top: 20px;
    }
 
    .bonus strong {
       font-size: 22px;
       padding: 15px 30px;
    }
 
    .table tbody tr td {
       border: none;
    }
 
    .table tbody tr {
       border-style: solid;
       border-width: 2px;
       border-color: #9B2786;
       box-shadow: 0 0 10px 0 #9B2786 inset;
    }
 
    .table tbody tr a {
       margin-bottom: 30px;
    }
 
 }
 
 @media (min-width: 930px) {
    .bonus strong {
       font-size: 25px;
       line-height: 30px;
       padding: 15px 0;
    }
 
    .table .btn {
       margin-right: 20px;
    }
 }
 
 .table .btn {
    text-transform: uppercase;
    background-color: #9B2786;
    color: #fff!important;
    font-size: 18px;
    padding: 15px 20px;
 }
 
 .table .btn:hover {
    background-color: #D62786;
 }