* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-size: var(--white-color);
}

:root {
    --bg-body-color: #0A214F;
    --bg-sections-color: #162E5D;
    --bg-sections-color2: #162E5D;
    --bg-sections-color3: #011642;
    --elements: #324064;
    --white-color: #ffffff;
    --color-accent: #FF3939;
    --color-accent-2: #6070AB;
    --text-secondary: #BFC6E1;
}

body {
    background-color: var(--bg-body-color);
    overflow-x: hidden;
    width: 100%;
}

body>.container {
    width: 85%;
    background-color: transparent;
    margin: 0 auto;
}

header {
    width: 100%;
    max-height: 4rem;
    z-index: 1000;
    position: relative;
}

header .container {
    padding: 20px 0px;
}

header .container .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .container .wrapper .header_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.burger__menu {
    display: none;
    position: relative;
    width: 40px;
    height: 25px;
    cursor: pointer;
    margin-left: 10px;
}

.burger__menu span,
.burger__menu::before,
.burger__menu::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: var(--white-color);
    border-radius: 30%;
}

.burger__menu::before,
.burger__menu::after {
    content: "";
}

.burger__menu::before {
    top: 0;
}

.burger__menu::after {
    bottom: 0;
}

.burger__menu span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
}

.burger__menu._active span {
    transform: scale(0) translate(0px, -50%);
}

.burger__menu._active::before {
    top: 50%;
    transform: rotate(45deg) translate(0px, -50%);
}

.burger__menu._active::after {
    bottom: 50%;
    transform: rotate(-45deg) translate(0px, 50%);
}

header .container .wrapper .header_btns {
    display: flex;
    flex-direction: center;
    align-items: center;
    gap: 20px
}

.signupBtn {
    height: 25px;
    padding: 5px 20px;
    color: var(--white-color);
    background-color: var(--color-accent);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
}

.loginBtn {
    height: 25px;
    padding: 5px 40px;
    color: var(--white-color);
    background-color: var(--color-accent-2);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
}

.main .container {
    padding: 20px 0;
}

.main .container .wrapper {
    display: grid;
    grid-template-columns: 1.2fr 4fr;
    gap: 20px;
}

.main .container .wrapper aside .wrapper {
    background-color: var(--bg-sections-color);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.main .container .wrapper aside .wrapper .nav {
    background-color: var(--bg-sections-color3);
    padding: 10px;
    width: 100%;
}

.main .container .wrapper aside .wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main .container .wrapper aside .wrapper ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.main .container .wrapper aside .wrapper ul li._active {
    padding-bottom: 10px;
    border-bottom: 1px solid #1F2D43;
}

.main .container .wrapper aside .wrapper ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

.main .container .wrapper aside .wrapper ul li a:hover {
    color: var(--white-color)
}

.contact_section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    background-color: var(--bg-sections-color3);
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact_section .title .mainText {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-accent);
}

.contact_section .title .subText {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-secondary);
}

.contact_section .socialLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact_section .socialLinks img {
    width: 35px;
    height: 35px;
}

.sideImg {
    background-color: var(--bg-sections-color2);
    margin-top: 20px;
    padding: 5px;
    padding-bottom: 0px;
}

.sideImg img {
    width: 100%;
}

.textSection .content_section {
    background-color: var(--bg-sections-color);
    padding: 60px;
    color: var(--white-color)
}

.textSection .content_section h1 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 40px;
}

.textSection .content_section h2 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    margin: 20px;
    margin-left: 0;
}

.textSection .content_section h3 {
    font-size: 26px;
    margin: 10px;
    margin-left: 0;

}

.textSection .content_section p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}


.textSection .content_section ul {
    list-style: none;
    margin: 20px;
}

.textSection .content_section ul, .textSection .content_section ol{
    margin: 20px;

}


.textSection .content_section ul li, .textSection .content_section ol li {
    line-height: 30px;
}


.textSection .content_section ul li::before {
    content: "\2022";
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.textSection .content_section img {
    max-width: 90%;
    display: block;
    margin: 20px auto;
    border-radius: 5px;
}

.textSection .signupBtn.txtBtn {
    display: block;
    margin: 20px auto;
    text-align: center;
    word-break: break-all;
    height: 100%;
    width: 20%;
}

.paymentSection {
    background-color: var(--bg-sections-color);
    margin-top: 40px;
}

.paymentSection .container {
    padding: 30px;
}

.paymentSection .container .flexWrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.paymentSection .container .flexWrapper .title {
    color: var(--white-color);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.paymentSection .container .flexWrapper .payment_options ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
}

.paymentSection .container .flexWrapper .payment_options ul li svg {
    width: 100px;
    height: 50px;
}

footer {
    width: 100%;
}

footer .container {
    padding: 30px 0;
    width: 85%;
    margin: 0 auto;
}

footer .container .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .container .wrapper .copyright {
    text-align: center;
    color: var(--white-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    padding-left: 200px;
}

footer .container .wrapper .footer_buttons {
    display: flex;
    gap: 20px
}

.mob_nav {
    display: block;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--bg-sections-color3);
    z-index: 10;
    transition: all 0.5s ease 0s;
}

.mob_nav .container{
    margin: 0 auto;
    padding: 0px 20px;
    padding-bottom: 0px;
    height: 100%;
}


.mob_nav .container .wrapper{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.mob_nav .container .wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.mob_nav .container .wrapper ul li {
    list-style-type: none;
    text-align: center;
    border-bottom: 1px solid var(--text-secondary);
    padding-bottom: 30px;
}

.mob_nav .container .wrapper ul li a{
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.5rem;
}

.mob_nav .container .wrapper .chatBtn{
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 70px;
    animation: levitate-animation 2s ease-in-out infinite alternate;
    transform-origin: center;
    transform: translate3d(0, 0, 0);
}

.mob_nav._active{
    left: 0;
}

@keyframes levitate-animation {
    0% {
    transform: translate3d(0, 0, 0);
    }
    100% {
    transform: translate3d(0, -10px, 0);
    }
}


@media (max-width: 1200px) {
    .main .container .wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
    }

    .textSection .content_section {
        padding: 20px;
    }

    .paymentSection .container {
        padding: 20px;
    }

    .paymentSection .container .flexWrapper{
        gap: 20px;
    }

    .paymentSection .container .flexWrapper .title {
        color: var(--white-color);
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 18px;

    }

    .paymentSection .container .flexWrapper .payment_options ul li svg {
        width: 80px;
        height: 40px;
    }

    .paymentSection .signupBtn {
        width: 110px;
        font-size: 10px;
    }
}

@media (max-width: 900px) {
    .burger__menu {
        display: block;
    }

    aside {
        display: none;
    }

    .main .container .wrapper {
        display: block;
    }

    .textSection{
        width: 100%;
    }

    .textSection .content_section {
        padding: 40px;
    }

    .textSection .signupBtn.txtBtn {
        display: block;
        margin: 20px auto;
        width: 40%;
    }

    footer .container .wrapper .copyright {
        padding-left: 0px;
    }

    .paymentSection .container {
        padding: 20px;
    }

    .paymentSection .container .flexWrapper .title {
        color: var(--white-color);
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 14px;

    }

    .paymentSection .container .flexWrapper .payment_options ul li svg {
        width: 80px;
        height: 40px;
    }

    .paymentSection .signupBtn {
        width: 110px;
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    body >.container {
        width: 100%;
    }

    header .container .wrapper {
        justify-content: space-around;
    }

    .header_logo {
        width: 50px;
    }

    .signupBtn {
        height: 25px;
        padding: 5px 10px;
        color: var(--white-color);
        background-color: var(--color-accent);
        border: 0;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        line-height: 25px;
        font-weight: 700;
    }

    .loginBtn {
        height: 25px;
        padding: 5px 10px;
        color: var(--white-color);
        background-color: var(--color-accent-2);
        border: 0;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        line-height: 25px;
        font-weight: 700;
    }

    .main {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .textSection .content_section {
        padding: 20px;
    }

    .textSection .signupBtn.txtBtn {
        width: 90%;
    }

    .paymentSection .container {
        padding: 15px;
    }

    .paymentSection .container .flexWrapper {
        gap: 20px;
    }

    .paymentSection .container .flexWrapper .title {
        display: none;

    }

    .paymentSection .container .flexWrapper .payment_options ul li svg {
        width: 50px;
        height: 30px;
    }

    .paymentSection .signupBtn {
        font-size: 12px;
        text-align: center;
    }

    footer .container .wrapper {
        justify-content: space-around;
    }

    footer .container .wrapper .footer_logo {
        width: 100px;
    }


    footer .container .wrapper .copyright {
        text-align: center;
        color: var(--white-color);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        padding-left: 0px;
    }

    footer .container .wrapper .footer_buttons {
        display: none;
    }
}

@media (max-width: 400px) {

    header .container {
        padding: 20px 0px;
    }

    header .container .wrapper .header_btns {
        gap: 10px
    }

    .signupBtn {
        font-size: 12px;
    }
    
    .loginBtn {
        font-size: 12px;

    }

    .paymentSection .container {
        padding: 10px;
    }

    .paymentSection .container .flexWrapper .payment_options ul li svg {
        width: 30px;
        height: 20px;
    }
}

.btn{
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table,
th,
td {
    border: 1px solid #ccc;
}

th,
td {
    padding: 8px;
	color: var(--white-color);
}

table tr.title{
    background-color: #080a52;
    color: #fff;
}

@media screen and (max-width: 600px) {
    table.table-wrap {
      border: 0;
    }

    table.table-wrap tr.title{
        display: none;
    }

    table.table-wrap td.colored{
        background-color: #17185c;
    }

    table.table-wrap td.colored p{
        color: #fff;
    }
  
    table.table-wrap thead {
      display: none;
    }
  
    table.table-wrap tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
      border-right: 1px solid #ea2087;
    }
  
    table.table-wrap td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
      border-right: 1px solid transparent;
    }
  
    table.table-wrap td:last-child {
      border-bottom: 0;
    }
  
    table.table-wrap td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
  }