:root {
    --pink: #ec3779;
    --black: rgba(0, 0, 0, 0.8);
    --bgcolor: #151d27;
    --btnbg: rgba(26, 84, 75, 1);
    --btnborder: rgba(47, 254, 224, 1);
    --btncolor: rgba(255, 255, 255, 1);
    --grayborder: rgba(137, 137, 137, 0.4);
    --graytext: rgba(122, 122, 122, 1);
    --bgblue: rgba(10, 9, 16, 0.5);
    --bgnewgray: rgba(93, 93, 93, 0.2);
    --black: rgba(0, 0, 0, 1);
    --btnbackground: #4A4A4A;
    --btngrayborder: #B2B2B2;
    --white: #FFFFFF
}

:root {
    --font-family: "Podkova", serif;
    --font-family-2: "Source Sans 3", sans-serif;
    --font-light: 300;
    --font-normal: 400;
    --font-sub-normal: 500;
    --font-sb: 600;
    --font-weight-bold: 700;
    --font-extra-bold: 900;
    --text-xs: 10px;
    --text-xs-plus: 11px;
    --text-sm: 12px;
    --text-sm-plus: 13px;
    --text-md: 14px;
    --text-md-plus: 15px;
    --text-lg: 16px;
    --text-lg-plus: 17px;
    --text-xl: 18px;
    --text-xl-plus: 19px;
    --text-xxl: 20px;
    --text-xxl-plus: 21px;
    --text-heading-xs: 22px;
    --text-heading-sm: 23px;
    --text-heading-md: 24px;
    --text-heading-lg: 25px;
    --text-heading-xl: 26px;
    --text-thirty: 30px;
    --text-thrtytwo: 32px;
    --text-thirtysix: 36px;
    --text-fifty: 50px;
    --text-xxxxl: 56px;
    --text-xxxxlll: 60px;
    --text-forty: 40px;
    --text-vlll: 80px;
    --text-seventy: 70px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.header-parent {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:1350px) {
    .header-parent {
        max-width: 93%
    }
}

.container {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto
}

.container-about {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px
}

@media (max-width:1200px) {
    .container-about {
        max-width: 1140px;
        padding-left: 80px;
        padding-right: 80px
    }
}

@media (max-width:991px) {
    .container-about {
        max-width: 960px;
        padding-left: 64px;
        padding-right: 64px
    }
}

@media (max-width:767px) {
    .container-about {
        max-width: 720px;
        padding-left: 48px;
        padding-right: 48px
    }
}

@media (max-width:575px) {
    .container-about {
        max-width: 540px;
        padding-left: 32px;
        padding-right: 32px
    }
}

@media (max-width:430px) {
    .container-about {
        max-width: 100%
    }
}

body {
    background-color: var(--bgcolor);
    font-family: var(--font-family);
    font-weight: var(--font-normal)
}

.img-response {
    max-width: 100%;
    height: auto
}

input, button {
    font-family: var(--font-family)
}

p {
    margin-bottom: 0
}

ol, ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

a {
    text-decoration: none
}

a:focus {
    outline: none
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0
}

.spinner-container {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.u-d-block {
    display: block !important
}

.u-d-none {
    display: none !important
}

@media (max-width:950px) {
    .deactive {
        display: none
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    opacity: 0;
    transition: opacity 0.3s ease
}


.modal-content {
  background-color: var(--black);
  margin: 15% auto;
  padding: 40px 40px 44px 40px;
  border: 1px solid transparent;
  width: 407px;
  opacity: 0;
  border-radius: 24px;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  min-height: 372px;
}
.modal-content.help-modal {
  min-height: 200px;
}


@media screen and (min-width:280px) and (max-width:420px) {
    .modal-content {
        width: 85%;
        padding: 40px 30px 44px 30px
    }
}

.modal-content p {
    color: var(--btncolor);
    font-size: var(--text-lg);
    text-align: center;
    font-family: var(--font-family-2);
    font-weight: var(--font-normal)
}
.modal-content .help-message {
  color: var(--btncolor);
  font-size: var(--text-lg);
  text-align: center;
  font-family: var(--font-family-2);
  font-weight: var(--font-normal);
  margin-top: 40px;
}
.modal-content .input-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 46px
}

.modal-content .input-wrap input {
    padding: 8px 20px;
    border: 2px solid var(--btnborder);
    border-radius: 24px;
    margin-top: 6px;
    margin-bottom: 46px;
    color: var(--btncolor);
    background-color: var(--black);
    outline: none;
    font-size: var(--text-xxl)
}

@media screen and (min-width:280px) and (max-width:420px) {
    .modal-content .input-wrap input {
        width: 100%
    }
}

.modal-content .download-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center
}

.modal-content .download-btn-wrap .download-new-btn {
    padding: 4px 16px;
    background: var(--btnbg);
    border: 2px solid var(--btnborder);
    border-radius: 24px;
    font-size: var(--text-lg);
    color: var(--btncolor);
    font-weight: var(--font-normal);
    cursor: pointer;
    font-family: var(--font-family-2)
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0)
}

.close {
    float: right;
    margin-top: -28px;
    width: 22px;
    height: 22px;
    margin-right: -28px
}

@media screen and (min-width:280px) and (max-width:420px) {
    .close {
        margin-right: -14px;
        margin-top: -26px
    }
}

.close:hover, .close:focus {
    text-decoration: none;
    cursor: pointer
}

.hidden {
    display: none
}

.thank-modal {
    background-color: var(--black);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #fff0;
    width: 407px;
    opacity: 0;
    border-radius: 24px;
    transform: translateY(-50px);
    transition: opacity 0.3s ease, transform 0.3s ease
}

.thank-you-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 79px
}

.thank-you-wrap h4 {
    color: var(--btncolor);
    font-size: var(--text-thrtytwo)
}

.thank-you-wrap p {
    color: var(--btncolor);
    font-size: var(--text-lg);
    padding-bottom: 79px;
    text-align: center;
    margin-top: 46px
}

.header-right-btn {
    padding: 4px 16px;
    font-family: var(--font-family-2);
    font-size: var(--text-lg);
    background-color: #fff0;
    border: 2px solid #fff0;
    border-radius: 24px;
    color: var(--btncolor);
    cursor: pointer
}

.header-right-btn.about-us-btn {
    margin-right: 32px;
    background-color: var(--btnbackground);
    border-color: var(--btngrayborder)
}

.header-right-btn.download-btn {
    background-color: var(--btnbg);
    border-color: var(--btnborder)
}

.header-right-btn.about-hamburger-dropdown {
    margin-right: 0;
    width: 126px;
    margin-top: 24px
}

.rayzer-wrap {
    overflow: hidden
}

.rayzer-wrap header {
    background-color: var(--black)
}

.rayzer-wrap header .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.rayzer-wrap header .header-wrap .header-left {
    padding: 16px 0
}

@media (max-width:575px) {
    .rayzer-wrap header .header-wrap .header-left img {
        width: 80%
    }
}

@media screen and (min-width:280px) and (max-width:420) {
    .rayzer-wrap header .header-wrap .header-left img {
        width: 60%
    }
}

.rayzer-wrap header .header-wrap .header-right {
    display: flex;
    align-items: center;
    padding: 28px 0
}

@media (max-width:575px) {
    .rayzer-wrap header .header-wrap .header-right {
        display: none
    }
}

@media (max-width:575px) {
    .rayzer-wrap header .header-wrap .header-right.header-about-right {
        display: flex
    }

    .rayzer-wrap header .header-wrap .header-right.header-about-right .download-btn {
        font-size: var(--text-sm)
    }
}

.rayzer-wrap header .header-wrap .header-right .header-right-btn {
    padding: 4px 16px;
    font-family: var(--font-family-2);
    font-size: var(--text-lg);
    background-color: #fff0;
    border: 2px solid #fff0;
    border-radius: 24px;
    color: var(--btncolor)
}

.rayzer-wrap header .header-wrap .header-right .header-right-btn.about-us-btn {
    margin-right: 32px;
    background-color: var(--btnbackground);
    border-color: var(--btngrayborder)
}

.rayzer-wrap header .header-wrap .header-right .header-right-btn.download-btn {
    background-color: var(--btnbg);
    border-color: var(--btnborder)
}

.rayzer-wrap header .header-wrap .hamburger-wrap {
    display: none
}

@media (max-width:575px) {
    .rayzer-wrap header .header-wrap .hamburger-wrap {
        display: flex
    }
}

.rayzer-wrap header .header-wrap .hamburger-wrap.about-us-hamburger {
    display: none
}

.rayzer-wrap .hero {
    background-image: url(../images/projector.png);
    background-position: center 0;
    background-repeat: no-repeat;
    height: 640px
}

@media (max-width:767px) {
    .rayzer-wrap .hero {
        background-position: center -80px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero {
        background-position: center -140px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .hero {
        background-position: center -190px;
        height: 564px
    }
}

.rayzer-wrap .hero .hero-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .hero .hero-wrap {
        padding-top: 18px
    }
}

.rayzer-wrap .hero .hero-wrap .hero-heading-icon {
    display: flex
}

.rayzer-wrap .hero .hero-wrap .hero-heading-icon img {
    width: 500px
}

@media (max-width:1439px) {
    .rayzer-wrap .hero .hero-wrap .hero-heading-icon img {
        width: 460px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .hero .hero-wrap .hero-heading-icon img {
        width: 360px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero .hero-wrap .hero-heading-icon img {
        width: 280px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .hero .hero-wrap .hero-heading-icon img {
        width: 235px
    }
}

.rayzer-wrap .hero .hero-wrap .hero-subtext {
    color: var(--btncolor);
    font-size: var(--text-heading-xl);
    font-weight: var(--font-sb);
    margin-top: 6px
}

@media (max-width:1439px) {
    .rayzer-wrap .hero .hero-wrap .hero-subtext {
        font-size: var(--text-heading-md)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .hero .hero-wrap .hero-subtext {
        font-size: var(--text-heading-md)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero .hero-wrap .hero-subtext {
        font-size: var(--text-xxl);
        margin-top: 2px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .hero .hero-wrap .hero-subtext {
        margin-top: 0;
        font-size: var(---text-md-plus)
    }
}

.rayzer-wrap .hero .hero-categories {
    margin-top: 64px;
    display: flex;
    justify-content: space-between
}

@media (max-width:1439px) {
    .rayzer-wrap .hero .hero-categories {
        max-width: 872px;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .hero-categories {
        margin-top: 34px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero .hero-categories {
        margin-top: 20px
    }
}

.rayzer-wrap .hero .hero-categories .single-category {
    display: flex;
    flex-shrink: 0;
    flex-basis: 50%
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .hero-categories .single-category {
        flex-direction: column;
        align-items: center
    }
}

.rayzer-wrap .hero .hero-categories .single-category .category-single-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 50%;
    text-align: center
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap {
        margin-top: 30px
    }
}

.rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-header {
    font-size: var(--text-thirtysix);
    font-weight: var(--font-weight-bold);
    color: var(--btncolor);
    text-align: center
}

@media (max-width:1439px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-header {
        font-size: var(--text-thrtytwo)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-header {
        font-size: var(--text-thrtytwo)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-header {
        font-size: var(--text-heading-xl)
    }
}

.rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-subtext {
    font-size: var(--text-xl);
    font-weight: var(--font-sb);
    color: var(--btncolor);
    margin-top: 5px
}

@media (max-width:1439px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-subtext {
        font-size: var(--text-md-plus)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-subtext {
        font-size: var(--text-lg)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-single-wrap .category-subtext {
        font-size: var(--text-sm-plus)
    }
}

.rayzer-wrap .hero .hero-categories .single-category .category-dots {
    position: relative
}

.rayzer-wrap .hero .hero-categories .single-category .category-dots::before {
    content: "";
    position: absolute;
    border: 1px solid #fff0;
    width: 10px;
    height: 10px;
    background: var(--btncolor);
    top: 25px;
    left: -5px;
    border-radius: 50%
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .hero-categories .single-category .category-dots::before {
        content: none
    }
}

.rayzer-wrap .hero .hero-categories .category-first-scan {
    display: none
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .hero-categories .category-first-scan {
        display: block
    }
}

@media (max-width:991px) {
    .rayzer-wrap .hero .hero-categories .category-first-scan {
        display: none
    }
}

.rayzer-wrap .hero .hero-categories .category-first-scan .category-btn {
    padding: 8px 25px;
    background: var(--btnbg);
    border: 2px solid var(--btnborder);
    border-radius: 24px;
    font-size: var(--text-lg);
    color: var(--btncolor);
    font-weight: var(--font-normal);
    cursor: pointer
}

.rayzer-wrap .hero .beta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px
}

.rayzer-wrap .hero .beta-btn .hero-beta-btn {
    padding: 8px 25px;
    background: var(--btnbg);
    border: 2px solid var(--btnborder);
    border-radius: 24px;
    font-size: var(--text-lg);
    color: var(--btncolor);
    font-weight: var(--font-normal);
    cursor: pointer
}

@media (max-width:1023px) {
    .rayzer-wrap .hero .beta-btn .hero-beta-btn {
        margin-top: -230px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .hero .beta-btn .hero-beta-btn {
        margin-top: 102px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .hero .beta-btn .hero-beta-btn {
        margin-top: 100px
    }
}

.rayzer-wrap .investment-category {
    margin-top: 100px;
    display: flex;
    justify-content: center
}

@media (max-width:1439px) {
    .rayzer-wrap .investment-category {
        margin-top: 80px;
        overflow: hidden
    }
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category {
        flex-direction: column;
        margin-top: 50px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .investment-category {
        margin-top: 0
    }
}

.rayzer-wrap .investment-category .investment-category-visuals {
    display: flex
}

@media (max-width:992px) {
    .rayzer-wrap .investment-category .investment-category-visuals {
        margin-right: 20px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .investment-category-visuals {
        margin-right: auto;
        margin-left: auto
    }
}

.rayzer-wrap .investment-category .investment-text-new {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    flex-basis: 60%;
    margin-right: 64px
}

@media (max-width:1439px) {
    .rayzer-wrap .investment-category .investment-text-new {
        flex-basis: 50%;
        margin-right: 34px
    }
}

@media (max-width:991px) {
    .rayzer-wrap .investment-category .investment-text-new {
        flex-basis: 70%;
        margin-right: 74px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .investment-text-new {
        flex-basis: 100%;
        margin-right: 36px
    }
}

.rayzer-wrap .investment-category .item-wrap {
    position: relative
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .item-wrap {
        margin-right: 0;
        text-align: center
    }
}

.rayzer-wrap .investment-category .item {
    padding: 10px 24px;
    cursor: pointer;
    margin: 12px 10px;
    position: relative
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .item {
        min-height: 155px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .investment-category .item {
        margin: 0 10px 16px;
        min-height: 160px
    }
}

.rayzer-wrap .investment-category .item h3 {
    color: var(--graytext);
    font-size: var(--text-forty)
}

@media (max-width:1439px) {
    .rayzer-wrap .investment-category .item h3 {
        font-size: var(--text-heading-xl)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .item h3 {
        font-size: var(--text-heading-md)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .investment-category .item h3 {
        font-size: var(--text-md-plus)
    }
}

.rayzer-wrap .investment-category .item .coming-soon-wrap p {
    color: var(--graytext);
    font-size: var(--text-xxl);
    margin-top: 16px
}

@media (max-width:1439px) {
    .rayzer-wrap .investment-category .item .coming-soon-wrap p {
        font-size: var(--text-xl)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .item .coming-soon-wrap p {
        font-size: var(--text-lg)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .investment-category .item .coming-soon-wrap p {
        font-size: var(--text-xs-plus)
    }
}

.rayzer-wrap .investment-category .item.selected {
    transition: color 0.3s ease
}

.rayzer-wrap .investment-category .item.selected h3 {
    color: var(--btncolor)
}

.rayzer-wrap .investment-category .item.selected p {
    color: var(--btncolor)
}

.rayzer-wrap .investment-category .item+.item::before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    left: -10px;
    height: 1px;
    top: -10px;
    background-color: rgb(137 137 137 / .4)
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .item+.item::before {
        display: none
    }
}

.rayzer-wrap .investment-category .line {
    position: absolute;
    left: 1px;
    width: 6px;
    background-color: #fff;
    transition: top 0.3s cubic-bezier(.39, .58, .57, 1)
}

.rayzer-wrap .investment-category .item_selector-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center
}

@media (min-width:767px) {
    .rayzer-wrap .investment-category .item_selector-wrap {
        display: none
    }
}

.rayzer-wrap .investment-category .item_selector-wrap .selector {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #7a7a7a;
    margin: 8px 14px;
    cursor: pointer
}

.rayzer-wrap .investment-category .item_selector-wrap .selector.selected {
    background-color: #fff
}

@media (max-width:767px) {
    .rayzer-wrap .investment-category .line, .rayzer-wrap .investment-category .item {
        display: none
    }

    .rayzer-wrap .investment-category .item.selected {
        display: block
    }
}

.rayzer-wrap .investment-category .investment-category-visuals {
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.rayzer-wrap .investment-category .investment-category-visuals img {
    width: 300px;
    margin-right: auto;
    margin-left: auto
}

@media (max-width:1439px) {
    .rayzer-wrap .investment-category .investment-category-visuals img {
        width: 270px;
        max-height: 548px;
        margin-right: auto;
        margin-left: auto
    }
}

.rayzer-wrap .budget-food {
    margin-top: 130px
}

@media (max-width:1439px) {
    .rayzer-wrap .budget-food {
        margin-top: 100px
    }
}

.rayzer-wrap .budget-food .budget-heading {
    text-align: center
}

.rayzer-wrap .budget-food .budget-heading h4 {
    font-size: var(--text-forty);
    font-weight: var(--font-weight-bold);
    color: var(--btncolor)
}

@media (max-width:1439px) {
    .rayzer-wrap .budget-food .budget-heading h4 {
        font-size: var(--text-thrtytwo)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .budget-food .budget-heading h4 {
        font-size: var(--text-heading-md)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-heading h4 {
        font-size: var(--text-lg-plus)
    }
}

.rayzer-wrap .budget-food .budget-heading p {
    font-size: var(--text-xxl);
    font-weight: var(--font-normal);
    color: var(--btncolor);
    margin-top: 8px
}

@media (max-width:991px) {
    .rayzer-wrap .budget-food .budget-heading p {
        font-size: var(--text-lg)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .budget-food .budget-heading p {
        font-size: var(--text-md)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-heading p {
        font-size: var(--text-lg);
        padding: 0 20px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-heading p {
        font-size: var(--text-xs)
    }
}

.rayzer-wrap .budget-food .budget-mobile-visuals-wrap {
    display: flex;
    margin-top: 56px;
    flex-direction: column
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-right: 32px
    }
}

.rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap {
        flex-direction: column;
        order: 2
    }
}

.rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: calc(25% - 40px)
}

@media (max-width:1439px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-img img {
        max-width: 210px;
        margin-left: 10px;
        margin-right: 10px
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-img img {
        max-width: 160px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-img img {
        max-width: 120px;
        margin-left: 10px;
        margin-right: 10px
    }
}

.rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-mobile-details {
    border: 1px solid var(--grayborder);
    color: var(--btncolor);
    padding: 12px 20px;
    background-color: var(--bgblue);
    border-radius: 22px;
    font-size: var(--text-xxl);
    font-weight: var(--font-normal);
    display: flex;
    flex-basis: calc(100% - 40px);
    justify-content: center;
    align-items: center;
    min-height: 74px;
    transition: border-color 0.3s ease, color 0.3s ease;
    margin-top: 16px;
    width: 100%
}

@media (max-width:1439px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-mobile-details {
        flex-basis: calc(25% - 50px);
        font-size: var(--text-lg);
        padding: 12px 18px;
        min-height: 62px;
        width: calc(100% - 28px)
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-mobile-details {
        font-size: var(--text-sm)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap .budget-mobile-details {
        width: calc(100% - 18px);
        font-size: var(--text-xs)
    }
}

.rayzer-wrap .budget-food .budget-mobile-visuals-wrap .budget-single-mobile-wrap.active {
    border-color: var(--btnborder);
    border-width: 2px;
    color: var(--btnborder);
    font-weight: var(--font-sb);
    cursor: pointer
}

.rayzer-wrap .budget-food .budget-sec-desktop {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:1439px) {
    .rayzer-wrap .budget-food .budget-sec-desktop {
        max-width: 1020px
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .budget-food .budget-sec-desktop {
        max-width: 810px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .budget-food .budget-sec-desktop {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-sec-desktop {
        display: none
    }
}

.rayzer-wrap .budget-food .budget-sec-mobile {
    display: none
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-sec-mobile {
        display: flex
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-sec-mobile {
        padding-right: 10px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-mobile-screen {
        display: none
    }

    .rayzer-wrap .budget-food .budget-mobile-screen.show {
        display: block
    }
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-single-text-part {
        flex-direction: column;
        display: flex;
        padding-left: 32px;
        padding-right: 26px;
        width: 52.5%
    }
}

@media screen and (max-width:575px) and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-single-text-part {
        width: auto;
        padding-left: 10px;
        padding-right: 10px
    }
}

.rayzer-wrap .budget-food .budget-single-text-part .budget-mobile-details-mobile {
    border: 1px solid var(--grayborder);
    color: var(--btncolor);
    padding: 12px 14px;
    background-color: var(--bgblue);
    border-radius: 22px;
    font-size: var(--text-md);
    font-weight: var(--font-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;
    transition: border-color 0.3s ease, color 0.3s ease;
    margin-top: 24px
}

.rayzer-wrap .budget-food .budget-single-text-part .budget-mobile-details-mobile:nth-child(1) {
    margin-top: 0
}

.rayzer-wrap .budget-food .budget-single-text-part .budget-mobile-details-mobile.active {
    border-color: var(--btnborder);
    border-width: 2px;
    color: var(--btnborder);
    font-weight: var(--font-sb);
    cursor: pointer
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-single-text-part .budget-mobile-details-mobile {
        font-size: var(--text-sm);
        min-height: 60px;
        padding: 6px 10px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .budget-food .budget-mobile-screen img {
        max-width: 182px
    }
}

@media (max-width:420px) {
    .rayzer-wrap .budget-food .budget-mobile-screen img {
        max-width: 162px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .budget-food .budget-mobile-screen img {
        width: 160px
    }
}

.rayzer-wrap .learning-topic {
    margin-top: 160px;
    overflow: hidden
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic {
        margin-top: 100px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .learning-topic {
        margin-top: 70px
    }
}

.rayzer-wrap .learning-topic .learning-visual-part {
    display: flex;
    animation: slideleft 160s linear infinite
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .learning-visual-part {
        animation: slideleft-l 160s linear infinite !important
    }
}

@media (max-width:1279px) {
    .rayzer-wrap .learning-topic .learning-visual-part {
        animation: slideleft-m 160s linear infinite !important
    }
}

@media (max-width:991px) {
    .rayzer-wrap .learning-topic .learning-visual-part {
        animation: slideleft-s 160s linear infinite !important
    }
}

@media (max-width:767px) {
    .rayzer-wrap .learning-topic .learning-visual-part {
        animation: slideleft-sm 160s linear infinite !important
    }
}

@media (max-width:575px) {
    .rayzer-wrap .learning-topic .learning-visual-part {
        animation: slideleft-xsm 160s linear infinite !important
    }
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
    position: relative;
    width: calc(20vw - 24px)
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
        width: calc(25vw - 24px)
    }
}

@media (max-width:1279px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
        width: calc(28.5714285714vw - 24px)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
        width: calc(40vw - 24px)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
        width: calc(50vw - 24px)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img {
        width: calc(66.6666666667vw - 24px)
    }
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img img {
    width: 100%
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-feature-img:hover .learning-feature-overlay {
    opacity: 1
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-visual-box {
    margin: 0 10px
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 50%;
    font-size: var(--text-md);
    color: var(--btncolor);
    background-color: rgb(0 0 0 / .3);
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding-left: 10px
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay {
        font-size: var(--text-sm)
    }
}

.rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay .sub-overlay {
    font-size: var(--text-xxl)
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay .sub-overlay {
        font-size: var(--text-xl)
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay .sub-overlay {
        font-size: var(--text-lg)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .learning-topic .learning-visual-part .learning-feature-overlay .sub-overlay {
        font-size: var(--text-sm)
    }
}

@keyframes slideleft {
    to {
        transform: translate(-240.1%)
    }
}

@keyframes slideleft-l {
    to {
        transform: translate(-301.06%)
    }
}

@keyframes slideleft-m {
    to {
        transform: translate(-344.76%)
    }
}

@keyframes slideleft-s {
    to {
        transform: translate(-474.4%)
    }
}

@keyframes slideleft-sm {
    to {
        transform: translate(-592.15%)
    }
}

@keyframes slideleft-xsm {
    to {
        transform: translate(-788.3%)
    }
}

.rayzer-wrap .learning-topic .learning-heading h4 {
    color: var(--btncolor);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-forty);
    text-align: center;
    margin: 72px auto;
    max-width: 1120px
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .learning-heading h4 {
        font-size: var(--text-thrtytwo);
        margin: 52px auto
    }
}

@media (max-width:1023px) {
    .rayzer-wrap .learning-topic .learning-heading h4 {
        padding-left: 16px;
        padding-right: 16px;
        font-size: var(--text-heading-md)
    }
}

@media (max-width:991px) {
    .rayzer-wrap .learning-topic .learning-heading h4 {
        font-size: var(--text-heading-md)
    }
}

@media (max-width:767px) {
    .rayzer-wrap .learning-topic .learning-heading h4 {
        font-size: var(--text-xxl)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .learning-topic .learning-heading h4 {
        font-size: var(--text-lg)
    }
}

.rayzer-wrap .learning-topic .visual-reverse {
    transform: translate(-339.8%);
    animation: slideright 160s linear infinite
}

@media (max-width:1439px) {
    .rayzer-wrap .learning-topic .visual-reverse {
        transform: translate(-451.2%);
        animation: slideright-l 160s linear infinite !important
    }
}

@media (max-width:1279px) {
    .rayzer-wrap .learning-topic .visual-reverse {
        transform: translate(-531.95%);
        animation: slideright-m 160s linear infinite !important
    }
}

@media (max-width:991px) {
    .rayzer-wrap .learning-topic .visual-reverse {
        transform: translate(-768.2%);
        animation: slideright-s 160s linear infinite !important
    }
}

@media (max-width:767px) {
    .rayzer-wrap .learning-topic .visual-reverse {
        transform: translate(-984.8%);
        animation: slideright-sm 160s linear infinite !important
    }
}

@media (max-width:575px) {
    .rayzer-wrap .learning-topic .visual-reverse {
        transform: translate(-1343%);
        animation: slideright-xsm 160s linear infinite !important
    }
}

@keyframes slideright {
    to {
        transform: translate(-59.61%)
    }
}

@keyframes slideright-l {
    to {
        transform: translate(-99.95%)
    }
}

@keyframes slideright-m {
    to {
        transform: translate(-129.28%)
    }
}

@keyframes slideright-s {
    to {
        transform: translate(-215.05%)
    }
}

@keyframes slideright-sm {
    to {
        transform: translate(-293.4%)
    }
}

@keyframes slideright-xsm {
    to {
        transform: translate(-423.3%)
    }
}

.rayzer-wrap .features {
    margin-top: 160px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:1439px) {
    .rayzer-wrap .features {
        margin-top: 100px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features {
        margin-top: 70px
    }
}

.rayzer-wrap .features .features-header {
    text-align: center
}

.rayzer-wrap .features .features-header h4 {
    font-size: var(--text-forty);
    font-weight: var(--font-weight-bold);
    color: var(--btncolor)
}

@media (max-width:1439px) {
    .rayzer-wrap .features .features-header h4 {
        font-size: var(--text-thrtytwo)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features .features-header h4 {
        font-size: var(--text-heading-lg)
    }
}

.rayzer-wrap .features .features-types-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 56px;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px
}

@media (max-width:1023px) {
    .rayzer-wrap .features .features-types-wrap {
        max-width: 880px;
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:991px) {
    .rayzer-wrap .features .features-types-wrap {
        max-width: 730px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .features .features-types-wrap {
        max-width: 580px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .features .features-types-wrap {
        max-width: 480px;
        padding: 0 10px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features .features-types-wrap {
        padding: 0 7px;
        margin-top: 32px
    }
}

.rayzer-wrap .features .features-types-wrap .features-single {
    border: 1px solid var(--grayborder);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    color: var(--btncolor);
    flex-basis: calc(25% - 24px);
    background-color: var(--bgnewgray);
    margin-bottom: 32px
}

@media (max-width:991px) {
    .rayzer-wrap .features .features-types-wrap .features-single {
        margin-bottom: 30px;
        padding: 18px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .features .features-types-wrap .features-single {
        flex-basis: calc(33.3333333333% - 24px);
        flex-grow: 1;
        justify-content: space-evenly;
        margin-left: 12px;
        margin-right: 12px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .features .features-types-wrap .features-single {
        flex-basis: calc(50% - 32px);
        flex-grow: 0;
        margin-left: 16px;
        margin-right: 16px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features .features-types-wrap .features-single {
        flex-basis: calc(50% - 15px);
        flex-grow: 0;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 18px
    }
}

.rayzer-wrap .features .features-types-wrap .features-single .feature-logo {
    display: flex
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features .features-types-wrap .features-single .feature-logo img {
        width: 40px
    }
}

.rayzer-wrap .features .features-types-wrap .features-single .feature-name h4 {
    font-size: var(--text-xxl);
    font-weight: var(--font-normal);
    text-align: center;
    max-width: 216px;
    margin-top: 24px
}

@media (max-width:991px) {
    .rayzer-wrap .features .features-types-wrap .features-single .feature-name h4 {
        font-size: var(--text-lg)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .features .features-types-wrap .features-single .feature-name h4 {
        font-size: var(--text-sm)
    }
}

.rayzer-wrap .footer {
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 32px;
    align-items: center
}

@media (max-width:1439px) {
    .rayzer-wrap .footer {
        padding-left: 32px;
        padding-right: 32px;
        margin-top: 100px
    }
}

@media (max-width:767px) {
    .rayzer-wrap .footer {
        margin-top: 80px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .footer {
        flex-direction: column;
        align-items: center;
        margin-top: 56px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .footer {
        margin-top: 26px
    }
}

.rayzer-wrap .footer .footer-left h4 {
    color: var(--btncolor);
    font-size: var(--text-xxl);
    font-weight: var(--font-normal)
}

@media (max-width:767px) {
    .rayzer-wrap .footer .footer-left h4 {
        font-size: var(--text-md)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .footer .footer-left h4 {
        font-size: var(--text-sm)
    }
}

.rayzer-wrap .footer .footer-right {
    display: flex;
    justify-content: space-between
}

.rayzer-wrap .footer .footer-right a {
    color: var(--btnborder);
    font-size: var(--text-xxl);
    font-weight: var(--font-normal);
    text-decoration: underline;
    cursor: pointer;
    margin-left: 32px
}

@media (max-width:767px) {
    .rayzer-wrap .footer .footer-right a {
        font-size: var(--text-md)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .footer .footer-right a {
        margin-top: 8px
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .footer .footer-right a {
        font-size: var(--text-xs)
    }
}

.rayzer-wrap .rayzer-details-section .about-us-features-text {
    margin-top: 72px
}

@media (max-width:575px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text {
        margin-top: 56px
    }
}

.rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-details {
    font-size: var(--text-xxl);
    color: var(--white);
    font-family: var(--font-family-2);
    text-align: center;
    line-height: 28px;
    margin-top: 5px
}

@media (max-width:767px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-details {
        font-size: var(--text-lg)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-details {
        margin-top: 8px;
        font-size: var(--text-sm-plus)
    }
}

.rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-details.bottom {
    margin-top: 35px
}

.rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-money {
    font-weight: var(--font-sb)
}

.rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-header {
    color: var(--btnborder);
    font-size: var(--text-heading-md);
    text-align: center;
    margin-top: 32px;
    font-weight: var(--font-normal)
}

@media (max-width:767px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-header {
        font-size: var(--text-xxl)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-header {
        font-size: var(--text-lg)
    }
}

.rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-subheading {
    font-size: var(--text-xxl);
    color: var(--white);
    font-family: var(--font-family-2);
    text-align: center;
    line-height: 28px
}

@media (max-width:767px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-subheading {
        font-size: var(--text-lg)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .rayzer-details-section .about-us-features-text .about-us-subheading {
        font-size: var(--text-sm-plus)
    }
}

.rayzer-wrap .about-footer {
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 120px
}

@media (max-width:1439px) {
    .rayzer-wrap .about-footer {
        padding-left: 32px;
        padding-right: 32px
    }
}

@media (max-width:991px) {
    .rayzer-wrap .about-footer {
        padding-left: 2px;
        padding-right: 2px;
        margin-top: 72px
    }
}

@media (max-width:991px) {
    .rayzer-wrap .about-footer {
        margin-top: 52px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .about-footer .footer-left h4 {
        font-size: var(--text-sm)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .about-footer .footer-right a {
        font-size: var(--text-sm)
    }

    .rayzer-wrap .about-footer .footer-right a:first-child {
        margin-left: 0
    }

    .rayzer-wrap .about-footer .footer-right a+a {
        margin-left: 16px
    }
}

.rayzer-wrap .dropdown {
    position: relative;
    display: inline-block
}

.rayzer-wrap .dropdown-content {
    position: absolute;
    background-color: var(--black);
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / .2);
    right: 0;
    z-index: 1;
    top: 66px;
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    transform-origin: top right;
    transform: translate(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out
}

@media (min-width:575px) {
    .rayzer-wrap .dropdown-content {
        display: none
    }
}

.rayzer-wrap .dropdown-content a {
    display: flex;
    justify-content: center;
    align-items: center
}

.rayzer-wrap .dropdown-content.menu-open {
    opacity: 1;
    transform: translate(-3px)
}

.rayzer-wrap .hamburger {
    width: 30px;
    height: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    background: none;
    border: none
}

.rayzer-wrap .hamburger .bar {
    height: 3px;
    width: 100%;
    border-radius: 9px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out
}

.rayzer-wrap .about-footer {
    padding-left: 80px;
    padding-right: 80px;
    margin-top: 120px
}

@media (max-width:1439px) {
    .rayzer-wrap .about-footer {
        padding-left: 32px;
        padding-right: 32px
    }
}

@media (max-width:991px) {
    .rayzer-wrap .about-footer {
        padding-left: 2px;
        padding-right: 2px;
        margin-top: 72px
    }
}

@media (max-width:991px) {
    .rayzer-wrap .about-footer {
        margin-top: 52px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .about-footer {
        padding-left: 5px;
        padding-right: 5px
    }
}

@media (max-width:575px) {
    .rayzer-wrap .about-footer .footer-left h4 {
        font-size: var(--text-sm)
    }
}

@media screen and (min-width:280px) and (max-width:420px) {
    .rayzer-wrap .about-footer .footer-left h4 {
        font-size: var(--text-sm)
    }
}

@media (max-width:575px) {
    .rayzer-wrap .about-footer .footer-right a {
        font-size: var(--text-sm)
    }

    .rayzer-wrap .about-footer .footer-right a:first-child {
        margin-left: 0
    }

    .rayzer-wrap .about-footer .footer-right a+a {
        margin-left: 16px
    }
}

.rayzer-wrap .hamburger.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(42deg)
}

.rayzer-wrap .hamburger.active .bar:nth-child(2) {
    opacity: 0
}

.rayzer-wrap .hamburger.active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg)
}

.help-message {
  color: var(--btncolor);
  font-size: var(--text-lg);
  text-align: center;
  font-family: var(--font-family-2);
  font-weight: var(--font-normal);
  margin-top: 40px;
}

.border-none {
  border-bottom: none !important;
}

.information-wrap {
  margin-left: 40px;
}
.information-wrap .info-details {
  font-size: var(--text-xxl);
  color: var(--white);
  font-family: var(--font-family-2);
  text-align: left;
  line-height: 28px;
}
.information-wrap .info-details.term-info::before {
  content: "–";
  color: var(--white);
  margin-right: 0.5em;
}
@media (max-width: 767px) {
  .information-wrap {
    font-size: var(--text-lg);
  }
}
@media (max-width: 575px) {
  .information-wrap {
    font-size: var(--text-sm-plus);
  }
}

.info-details::marker {
  color: var(--white);
}

.policy-wrap {
  margin: 40px;
}
.policy-wrap .app-c-policy-wrap {
  border-bottom: 1px solid var(--black);
  padding-bottom: 20px;
}
.policy-wrap .app-c-policy-wrap:last-child {
  border-bottom: none;
}
.policy-wrap .app-c-policy-wrap .information-wrap {
  margin-left: 40px;
}
.policy-wrap .app-c-policy-wrap .information-wrap .info-details {
  font-size: var(--text-xxl);
  color: var(--white);
  font-family: var(--font-family-2);
  text-align: left;
  line-height: 28px;
  list-style: disc;
}
@media (max-width: 767px) {
  .policy-wrap .app-c-policy-wrap .information-wrap .info-details {
    font-size: var(--text-lg);
  }
}
@media (max-width: 575px) {
  .policy-wrap .app-c-policy-wrap .information-wrap .info-details {
    font-size: var(--text-sm-plus);
  }
}
.policy-wrap .app-c-policy-wrap .info-details::marker {
  color: var(--white);
}
.policy-wrap .about-us-header {
  color: var(--btnborder);
  font-size: var(--text-heading-md);
  text-align: left;
  margin-top: 32px;
  font-weight: var(--font-normal);
}
@media (max-width: 767px) {
  .policy-wrap .about-us-header {
    font-size: var(--text-xxl);
  }
}
@media (max-width: 575px) {
  .policy-wrap .about-us-header {
    font-size: var(--text-lg);
  }
}
.policy-wrap .about-us-subheading {
  font-size: var(--text-xxl);
  color: var(--white);
  font-family: var(--font-family-2);
  text-align: left;
  line-height: 28px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .policy-wrap .about-us-subheading {
    font-size: var(--text-lg);
  }
}
@media (max-width: 575px) {
  .policy-wrap .about-us-subheading {
    font-size: var(--text-sm-plus);
  }
}
.policy-wrap .app-c-information-text {
  font-size: var(--text-xxl);
  color: var(--white);
  font-family: var(--font-family-2);
  text-align: left;
  line-height: 28px;
}
@media (max-width: 767px) {
  .policy-wrap .app-c-information-text {
    font-size: var(--text-lg);
  }
}
@media (max-width: 575px) {
  .policy-wrap .app-c-information-text {
    font-size: var(--text-sm-plus);
  }
}
.policy-wrap .dark {
  font-weight: var(--font-extra-bold);
}
.policy-wrap .subparts-header {
  margin: 10px 0 0 8px !important;
}/*# sourceMappingURL=style.css.map */