/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    font-size: 10px;
}

/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */


/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */

body {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.background {
    background: url(background.jpg) top center no-repeat;
    background-size: cover;
    background-color: #041726;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 700;
    text-shadow: 0px 0px 25px rgba(255, 255, 255, .5);    
}

li {
    list-style: none;
}

/* ------------------------------------------------------------ *\
	Btn
\* ------------------------------------------------------------ */

.btn {
    background: #51CFC9;
    text-decoration: none;
    border-radius: 3px;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    font-weight: lighter;
    text-decoration: none;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    padding: 17px 30px;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    transition: all .3s ease-out;
    box-shadow: 0px 2px 5px 0px #0000004D;

}

.btn:hover {
    color: #000;
    background-color: rgba(255, 255, 255, .8);
}

/* ------------------------------------------------------------ *\
	Opening
\* ------------------------------------------------------------ */

.opening {
    position: relative;
    flex-direction: column;
    max-width: 1440px;
    height: 100%;
    padding: 3em;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
}


.opening-content {
    margin: 5rem auto;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.opening-text {
    width: 100%;
    padding: 2rem;
    left: 0;
    bottom: 0;
    z-index: 10;
}
.opening-text {
    text-align: center;
}

.opening-text a {
    display: inline-block;
    background: #51CFC9;
}
.opening-text p {
    margin: 0;
    font-size: 16px;
    text-align: center;
}
.opening-logo {
    display: block;
    width: 100%;
}
.opening-logo .main-logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.banner-img {
    width: 100%;
}

.banner-img--desktop {
    display: block;
}

.banner-img--mobile {
    display: none;
}

@media (max-width: 767px) {
    .background {
        background: url(background.jpg) top left no-repeat;
        background-size: cover;
        background-color: #041726;        
    }

    .opening {
        padding-top: 2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .opening-content {
        width: 100%;
        max-width: 580px;
        height: 100%;
        z-index: 1;
        justify-content: space-between;
    }

    .opening-text {
        padding: 1rem;
    }

    .opening-text p {
        font-size: 11px;
    }
    
    .banner-img {
        margin-top: 5rem;
        width: auto;
        max-width: 400px;
    }

    .banner-img--desktop {
        display: none;
    }
    
    .banner-img--mobile {
        display: block;

    max-width: 100%;
    }

    .main-logo {
        display: block;
    }
}


/* ------------------------------------------------------------ *\
	Main Content
\* ------------------------------------------------------------ */

.main-container {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.main-content {
    max-width: 1440px;
    padding: 3em;
    margin: 0 auto;    
}

.main-container .js-moreless {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    background: linear-gradient(180deg, rgba(0, 23, 38, 0) 0%, #000b13 45%);
    z-index: 1;
}

.js-moreless .button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%; 
    padding: 50px;
    padding: 50px;
}

.js-moreless .button::after { 
    content: ""; 
    background: url(arrows.svg) center 20% no-repeat;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(0deg);
    width: 60px;
    height: 44px;
    z-index: 1;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    -ms-transition: -ms-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}

.js-moreless .expanded::after {
    content: ""; 
    transform: translateX(-50%) rotate(180deg);   
    width: 60px;
    height: 44px;
    z-index: 1;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    -ms-transition: -ms-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}

.main-content h1 {    
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.main-content h1 span {
    display: inline-block;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
}

.main-content h1 span:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}

.main-content h1 span.active:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.main-content h2 {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.main-content ul {
    list-style: none;
    padding: 0 0 0 38px;
}

.main-content ul > li,
.main-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    line-height: 1.2;
    text-shadow: 0px 0px 25px rgba(255, 255, 255, .5);
    color: #fff;
    margin-bottom: 20px;
}

.main-content ul > li {
    position: relative;
}

.main-content ul > li:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    right: 100%;
    top: 10px;
    margin-right: 14px;
}

@media (max-width: 767px) {
    .main-content {
        padding: 3rem;
    }

    .main-content  h1 {
        font-size: 20px;
    }

    .main-content  h2, 
    .main-content  ul > li,
    .main-content  p {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ------------------------------------------------------------ *\
	Accordion
\* ------------------------------------------------------------ */

.accordions {
    display: none;
}

.accordion .accordion-head h2 {
    display: inline-block;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
}

.accordion .accordion-head h2:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}

.accordion.active .accordion-head h2:after {
    -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
}

.accordion .accordion-body {
    display: none;
}

/* ------------------------------------------------------------ *\
	List Logos
\* ------------------------------------------------------------ */

.list-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.list-logos li {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
}

.list-logos li + li {
    margin-left: 10px;
}

.list-logos span {
    margin-right: 5px;
}

.list-logos img {
    height: auto;
}

.list-logos .icon-gan {
    font-size: 65px;
}

/* ------------------------------------------------------------ *\
	List Contacts
\* ------------------------------------------------------------ */

.list-contacts li + li {
    margin-top: 30px;
}

.list-contacts p {
    padding: 0;
}

.list-contacts span {
    text-transform: uppercase;
    font-size: 14px;
}

/* ------------------------------------------------------------ *\
	List Images
\* ------------------------------------------------------------ */

.list-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.list-images li + li {
    margin-left: 30px;
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.socials li + li {
    margin-left: 5px;
}

.socials a {
    text-decoration: none;
}

.socials strong {
    text-transform: uppercase;
    font-size: 12px;
}

.socials span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 23px;
}

.table-wrapper {
    margin-bottom: 20px;
}

.table-wrapper table {
    width: 100%;
    max-width: 640px;
}

.table-wrapper td {
    height: 32px;
    vertical-align: middle;
    padding: 10px;
}

table, th, td {
    border: 1px solid #fff;
    border-collapse: collapse;
}

@media (max-width: 767px) {
    .table-wrapper td {
        height: 28px;
        vertical-align: middle;
        padding: 6px;
        font-size: 16px;
        line-height: 20px;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.paging__item, li, p {
    font-size: 1rem;
}
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
footer {
    background-color: black;
    position: relative;
}
.custom-footer-txt {
    color: white !important;
    font-size: 17px !important;
    text-decoration: none;
}
.footer-secondary-nav.active {
    display: block;
}
.footer-secondary-nav ul {
    display: flex;
    flex-wrap: wrap;
}
.footer-secondary-nav ul li {
    width: 20%;
    margin-bottom: 0.5em;
}
.footer-secondary-nav ul li a {
    overflow: hidden;
    text-shadow: none;
    line-height: inherit;
    color: #fff;
    text-overflow: ellipsis;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
    padding: 0;
    font-weight: 700;
    text-align: center;
}
.footer-secondary-nav ul li a.active {
    color: #51cfc9;
    filter: invert(12%) sepia(83%) saturate(5841%) hue-rotate(124deg)
        brightness(87%) contrast(153%);
}
.footer-secondary-nav ul li img {
    display: block;
    height: 25px;
    margin: 0 auto 5px auto;
}

.custom-footer-container {
    max-width: 1200px;
    padding: 40px 7% 26px 7%;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

@media (min-width: 767px) {
.custom-footer-columns {
    display: flex;
    justify-content: space-between;
}
}
.custom-footer-social-links {
    text-align: center;
}
a {
    color: #34BAB3;
}
.custom-footer-payment-cards {
    margin: 30px 6% 0px 6%;
    padding: 8px 0px 2px 0px;
    text-align: center;
    border-top: 1px solid #2E7F8A;
    border-bottom: 1px solid #2E7F8A;
}
.custom-footer-authed-div {
    text-align: center;
    margin-top: 20px;
}

html .footer.widget-nav.unlogged {
    display: none;
}
html.no-mobile .footer.widget-nav {
    display: none;
}
html.no-mobile body.unlogged-user footer .regulatory .hide-on-desktop {
    display: block;
}
html.ios body.in-app footer .nav {
    display: none;
}
body.logged-out-page .secondary-wrapper {
    min-height: auto;
}
@media (min-width: 1366px) {
    html.no-mobile body.logged-out-page .secondary-wrapper {
        min-height: calc(100vh - (80px + 360px));
    }
}


::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #001726;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #51CFC9;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9fe5e1;
}