@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

:root {
    --bg-body-color: #171F32;
    --bg-sections-color: #1E2D42;
    --bg-sections-color2: #162E5D;
    --bg-sections-color3: #324063;
    --elements: #324064;
    --white-color: #ffffff;
    --color-accent: #FF3939;
    --color-accent-2: #3F59B2;
    --text-secondary: #BFC6E1;
}

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

body>.container {
    width: 90%;
    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: 4fr 1.2fr;
    gap: 20px;
}

.main_banner {
    position: relative;
    background-color: transparent;
}

.main_banner img {
    width: 100%;
    border-radius: 5px;
}

.main_banner .banner_content {
    position: absolute;
    left: 40px;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.main_banner .banner_content h2 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 62px;
    line-height: 60px;
    font-style: normal;
    font-weight: 800;
    color: var(--white-color);
    width: 60%;
}

.main_banner .banner_content a {
    max-width: 100px;
    padding: 10px 60px;
    text-decoration: none;
}

.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;
}

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

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

.main .container .wrapper aside .wrapper ul li:hover {
    background-color: #171F32;
}

.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 {
    margin-top: 20px;
    padding: 5px;
    padding-bottom: 0px;
}

.sideImg img {
    width: 100%;
}

.textSection{
    margin-top: 20px;
}

.textSection .content_section {
    background-color: var(--bg-sections-color);
    padding: 40px 60px;
    color: var(--white-color);
    border-radius: 5px;

}

.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;
    position: relative;
    display: inline-block;
}

.textSection .content_section h1::after{
    content: '';
    position: absolute;
    bottom: -20px;
    height: 2px;
    width: 100%;
    background-color: var(--color-accent);
    display: block;
}

.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;
}

.payment_options{
    width: 100%;
}


footer {
    width: 100%;
    background-color: #0E1420;
}

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: #8A8A8A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-left: 50px;
}

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

footer .container .wrapper .footer_buttons img {
    width: 30px;
}

.mob_nav{
    display: none;
}

table{
    margin: 20px auto;
}


table {
    width: 100%;
    table-layout: fixed;
}


.tbl-header {
    background-color: var(--color-accent);
}

.table{
    margin-top: 0px;
    margin: 40px auto;
}

table .title {
    background-color: var(--color-accent);
}

th {
    padding: 10px 8px;
    text-align: left;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    border: 1px solid var(--color-accent);
}

td {
    padding: 5px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
}


@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: 2fr 1fr;
        gap: 20px;
    }

    .main_banner .banner_content{
        width: 80%;
        gap: 20px;
    }
    
    .main_banner .banner_content h2 {
        width: 100%;
        font-size: 42px;
        line-height: 45px;
    }

    .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 {
        padding-top: 10px;
        padding-bottom: 0;
    }

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

    .main_banner .banner_content h2 {
        width: 100%;
        font-size: 42px;
        line-height: 35px;
    }

    .textSection {
        width: 100%;
    }

    .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;
    }


    .mob_nav{
        display: block;
    }

    .mob_nav{
        position: fixed;
        bottom: 0;
        z-index: 9997;
        width: 100%;
        height: 60px;
    }

    .mob_nav section{
        background: var(--bg-body-color);
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 10px;
        position: relative;
        height: 100%;
        padding: 10px 0;
        border-top: 1px solid hsla(0,0%,100%,.1);
    }

    .mob_nav .menu_item a{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .mob_nav section svg, .mob_nav section img{
        width: 24px ;
        height: 24px;
    }

    .mob_nav section p {
        margin-top: 8px;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 12px;
        text-transform: uppercase;
        color: var(--white-color);
    }

    .mob_nav section .menu_item svg{
        width: 60px !important;
        height: 60px !important;
        position: absolute;
        top: -10px;
        left: 46%;
    }

    .mob_nav section .menu_item .red{
        width: 42px !important;
        height: 42px !important;
        background-color: var(--color-accent);
        border-radius: 50%;
        position: absolute;
        top: -1px;
        left: 47.2%;
    }

    .mob_sport{
        position: absolute;
        z-index: 1000;
        top: 5px;
        width: 30px !important;
        height: 30px !important;
        left: 48%;
    }

    footer{
        margin-top: 20px;
    }

    footer{
        padding-bottom: 80px;
    }
}

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

    header {
        height: 80px;
    }

    header .container {
        padding: 0;
        height: 100%;
    }

    header .container .wrapper {
        justify-content: space-between;
        padding: 0 10px;
        height: 100%;
    }

    .header_logo {
        width: 100px;
    }

    .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;
        display: none;
    }

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

    .main_banner .banner_content {
        gap: 10px;
        left: 20px
    }

    .textSection .content_section h1 {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .main_banner .banner_content h2 {
        font-size: 24px;
    }

    .textSection .content_section {
        padding: 10px;
    }

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

    table.table-wrap {
        border: 0;
      }
  
      table.table-wrap tr.title{
          display: none;
      }
  
      table.table-wrap td.colored{
          background-color: var(--color-accent);
      }
  
      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 #677a9d;
      }
    
      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;
      }

    footer .container .wrapper {
        flex-direction: column;
        gap: 20px;
    }

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

    .mob_nav section .menu_item svg{
        left: 44%;
    }

    .mob_nav section .menu_item .red{
        left: 46.2%;
    }

    .mob_sport{
        left: 47.5%;
    }

}

@media (max-width: 400px) {


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

    .signupBtn {
        font-size: 12px;
    }

    .loginBtn {
        font-size: 12px;

    }

    .mob_nav section .menu_item svg{
        left: 44%;
    }

    .mob_nav section .menu_item .red{
        left: 46.5%;
    }

    .mob_sport{
        left: 48%;
    }
}

@media (max-width: 374px) {

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

    .signupBtn {
        font-size: 12px;
    }
    
    footer{
        padding-bottom: 60px;
    }

    .loginBtn {
        font-size: 12px;
    }
    .main_banner .banner_content h2{
        font-size: 20px;
    }
    .main_banner .banner_content{
        width: 90%;
    }

    .main_banner .banner_content a {
        padding: 5px 30px;
    }

    .mob_nav section .menu_item svg{
        width: 55px !important;
        height: 55px !important;
        position: absolute;
        top: -10px
    }

    .mob_nav section .menu_item .red{
        width: 40px !important;
        height: 40px !important;
        border-radius: 50%;
        position: absolute;
        top: -3px
    }

    .mob_sport{
        position: absolute;
        z-index: 1000;
        top: 4.2px;
        left: 48.6%;
        width: 25px !important;
        height: 25px !important;
    }

    .mob_nav section{
        justify-content: space-between;
        padding-left:10px;
        padding-right: 10px;
    }

    .mob_nav section .menu_item:nth-of-type(3){
        display: none;
    }


    .mob_nav section svg, .mob_nav section img{
        width: 20px ;
        height: 20px;
    }

    .mob_nav section .menu_item svg{
        left: 44%;
    }

    .mob_nav section .menu_item .red{
        left: 46.5%;
    }

    .mob_sport{
        left: 48.8%;
    }

    .mob_nav section{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


.btn {
    cursor: pointer;
}