/*Common styles*/
body, html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
}

h2 {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    text-transform: none;
    text-align: center;
}

h2:not(.no-mb) {
    margin-bottom: 40px;
}

.gradient {
    background: linear-gradient(90deg, #1F6EF2 0%, #8B20AA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.secondary {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23.98px;
    letter-spacing: 0;
    text-align: center;
    color: #909090;
}

/*rs styles*/
.rs-app {
    background-color: #000000;
    color: #FFFFFF;
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    width: 100%;
    margin: auto;

}

.rs-app__header {
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: 70% 67%;
    background-size: 170%;
}

.rs-container {
    max-width: 1320px;
    padding: 20px 15px;
    margin: auto;
}

.rs-logo {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 25px;
    letter-spacing: 0;
    color: white;
}


.rs-logo.colored {
    font-size: 36px;
    line-height: 40px;
}

.rs-list {
    font-size: 14px;
    margin-bottom: 15px;
}

.rs-list__item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.rs-list__item svg {
    width: 17px;
    height: 17px;
}

.rs-list__item:not(:last-child) {
    margin-bottom: 8px;
}

.flex-center-mobile {
    display: flex;
    justify-content: center;
}

.rs__stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.rs-btn {
    font-family: Montserrat, serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 34px;
    letter-spacing: 0.82px;
    text-transform: uppercase;
    background-color: white;
    padding: 12px 34px;
    border-radius: 123px;
    color: #000;
    display: inline-block;
}

.rs-btn-blue {
    font-family: Montserrat, serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.82px;
    text-transform: uppercase;
    background-color: #1179FC;
    padding: 12px 34px;
    border-radius: 123px;
    color: white;
    display: inline-block;
}


.rs-btn:hover {
    opacity: .8;
}

.rs-btn-blue:hover {
    opacity: .8;
}

.flexed {
    display: flex;
    justify-content: center;
}

.mt-standard {
    margin-top: 25px;
}

.mt-big {
    margin-top: 40px;
}

.pt-big {
    padding-top: 40px;
}

.rs-photo__list {
    display: flex;
}

.rs-photo__list img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.rs-photo__list img:not(:first-child){
    margin-left: -12px;
}

.rs-featured {
    overflow: hidden;
    width: 100%;
}

.rs-featured__list {
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(200% + 20px);
}


.rs-featured__list {
    --marquee-item-width: 220px;
    --marquee-item-height: 200px;
    --marquee-duration: 10s;
    --marquee-items: 6;

    display: flex;
    block-size: var(--marquee-item-height);
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(
            to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
    );
}

.rs-featured__item {
    padding: 0 20px;
    --marquee-item-offset: max(
            calc(var(--marquee-item-width) * var(--marquee-items)),
            calc(100% + var(--marquee-item-width))
    );
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}


.rs-featured__item:nth-child(4n) {
    border-top-right-radius: 1rem;
}

.rs-featured__item:nth-child(4n + 1) {
    border-bottom-right-radius: 1rem;
}

.rs-featured__item:nth-child(4n + 2) {
    border-bottom-left-radius: 1rem;
}

.rs-featured__item:nth-child(4n + 3) {
    border-top-left-radius: 1rem;
}


.rs-featured__item:nth-of-type(1) {
    --marquee-item-index: 1;
}

.rs-featured__item:nth-of-type(2) {
    --marquee-item-index: 2;
}

.rs-featured__item:nth-of-type(3) {
    --marquee-item-index: 3;
}

.rs-featured__item:nth-of-type(4) {
    --marquee-item-index: 4;
}

.rs-featured__item:nth-of-type(5) {
    --marquee-item-index: 5;
}

.rs-featured__item:nth-of-type(6) {
    --marquee-item-index: 6;
}



@keyframes go {
    to {
        inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}


@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

.rs-featured__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-featured__item img {
    max-width: 280px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.rs-featured__item img:hover {
    opacity: 1;
}

.rs-star {
    display: flex;
}

.rs-star img {
    margin-right: 2px;
}

.rs-photo__main {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}


.rs-photo__main img {
    max-width: 100%;
    width: 70%;
}

.rs-main {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 10px;
}

.rs-app__menu  {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.rs-app__menu-head {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.33px;
    text-transform: uppercase;
}

.rs-app__menu-list {
    display: flex;
    flex-direction: column;
}

.rs-app__menu-item {
    margin-top: 16px;
    color: #B0B0B0;
    display: inline-block;
    font-size: 16px;

}


.rs-app__secondary-footer {
    margin-top: 50px;
    border-top: 1px solid #2D2D2D;
    font-family: 'Open Sans', serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    padding: 20px 0 0;
    color: #A7A7A7;
    display: flex;
    flex-direction: column;
}

.rs-app__footer {
    position: relative;
    z-index: 1;
}


.rs-regards {
    display: flex;
    justify-content: space-between;
    border-radius: 8px!important;
}


.rs-gray__circle {
    background-color: #212426;
    border: 1px solid #3c3f41;
    padding: 25px;
    border-radius: 27px;
    position: relative;
    box-shadow: 0.44px -0.44px 0.44px 0px #FFFFFF0D inset;
    box-shadow: 0.44px 0.44px 0.44px 0px #FFFFFF52 inset;
    box-shadow: 5px 10.17px 11px 0px #00000026;
    backdrop-filter: blur(31.876399993896484px);
}

.rs-gray__circle:after {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 70%;
}

.rs-gray__circle.short:after {
    background-size: auto 25%;
}

.rs-regards__item {
    display: flex;
    flex-direction: column;
}

.rs-regards__item-head {
    font-family: Montserrat, serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 21.84px;
    letter-spacing: 0;
    text-align: center;
}

.rs-regards__item-body {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 8px;
    line-height: 9px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    margin-top: 5px;
}

.rs-section {
    position: relative;
    margin-top: 40px;
}

.rs-section > * {
    position: relative;
    z-index: 2;
}

.rs__desc {
    display: none!important;
}

.rs__mobile {
    display: block!important;
}

.rs__mobile-f {
    display: flex!important;
    margin-top: 7px;
}

.rs-works {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rs-works__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 25px 20px;
    border-radius: 8px;
}

.rs-works__head {
    font-family: Montserrat, serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.rs-works__body {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0;
}


.rs-reviews {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.rs-reviews__item {
    display: inline-flex!important;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 12px -11.59px 85px 0 #0509171A;
    max-width: calc(100% - 50px);

    position: relative;
    height: 520px;
}

.rs-reviews__item.rs-gray__video .rs-reviews__desc {
    display: none;
}


.rs-reviews__video {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.rs-reviews__video video {
    max-width: 80%;
}

.rs-reviews__desc {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    width: 90%;
    margin: 0 auto;
}

.rs-reviews__desc .blue {
    background: linear-gradient(90deg, #1F6EF2 0%, #8B20AA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rs-reviews__body {
    display: flex;
    gap: 15px;
}

.rs-reviews__photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.rs-reviews__title {
    display: flex;
    flex-direction: column;
}

.rs-reviews__header {
    font-family: 'Open Sans', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rs-reviews__footer {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
    margin-top: 8px;
    color: #FFFFFF99;
}

.slick-dots {
    display: flex!important;
    justify-content: center;
    padding-left: 0;
}

.slick-dots li {
    list-style-type: none;
    height: 12px;
    width: 12px;
    position: relative;
    margin: 0 3px;
    display: block;
}

.slick-dots li:not(.slick-active):after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 9px;
    width: 9px;
    background-color: black;
    color: transparent;
    border-radius: 50%;
    display: block;
}

.slick-dots li:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 12px;
    background-color: white;
    color: transparent;
    border-radius: 50%;
    display: block;
}

.slick-dots button {
    display: none;
}

.rs-youtube {
    position: relative;
}

.rs-youtube:hover .rs-youtube__icon{
    filter: brightness(80%);
}

.rs-youtube__photo {
    width: 100%;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rs-youtube__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
}

.rs-accordion {
    padding: 30px 20px;
    border-radius: 10px;
}

.rs-accordion__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.rs-accordion__item:not(:last-child) .rs-accordion__end {
    border-bottom: 1px solid #444444;
    padding-bottom: 30px;
}

.rs-accordion__item:not(:first-child) .rs-accordion__head {
    padding-top: 30px;
}

.rs-accordion__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rs-accordion__title {
    font-family: Montserrat, serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0;
}

.rs-accordion__close {
    padding-left: 20px;
}


.rs-accordion__close:hover {
    opacity: .8;
}


.rs-accordion__close .plus {
    display: block;
}

.rs-accordion__close .minus{
    display: none;
}

.rs-accordion__item .rs-accordion__description {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    /*transition: max-height 0.5s ease-out, opacity 0.5s ease-out;*/
}

.rs-accordion__item:not(.active) {
    gap: 0;
}

.rs-accordion__item.active .rs-accordion__description {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
    transition: max-height 1s ease-in, opacity 1s ease-in;
}

.rs-accordion__item.active .rs-accordion__close .plus {
    display: none;
}

.rs-accordion__item.active .rs-accordion__close .minus{
    display: block;
}

@keyframes open {
    0% {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    100% {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.rs-accordion__description {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0;
    color: #B0B0B0;
}

.rs-accordion__description a {
    color: #FFF;
}

.rs-calendly__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rs-calendly__title {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0;
    margin-top: 20px;
}
.rs-calendly__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.rs-calendly__item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0;
}

.rs-star-all {
    margin-top: 20px;
}

.rs-youtube__item {
    background: #202325;
    padding: 13px;
    display: block;
    border: 1px solid #434445;
    border-radius: 13px;
}
.rs-calendly__number {
    min-width: 27px;
    width: 27px;
    height: 27px;
    font-family: Montserrat, serif;
    font-weight: 700;
    font-size: 13.5px;
    line-height: 27px;
    letter-spacing: 0;
    color: #1179FC;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rs-calendly__speak {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0;
    gap: 25px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.rs-header {
    display: flex;
    align-items: center;
    gap: 125px;
    justify-content: space-between;
}

.rs-header__link {
    font-family: Montserrat, serif;
    color: #FFF;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
}

.rs-header__mobile:not(.active) {
    display: none;
}

.rs-header__burger {
    cursor: pointer;
}

.rs-header__mobile {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.rs-header__mobile .rs-header__link {
    padding: 10px 0;
    border-top: 1px solid white;
}

.rs-header__mobile .rs-header__link:hover {
    opacity: .9;
}

.rs-header__mobile .rs-header__link:last-child {
    border-bottom: 1px solid white;
}

.rs-app__main {
    background-position: bottom -65px center;
    background-repeat: no-repeat;
    background-size: contain;
}

.rs-calendly {
    margin-bottom: 20px;
}


.rs-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    cursor: pointer;
    z-index: 4;
    overflow-y: hidden;
    background: #000000AB;
}


.rs-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.rs-modal-body  {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, black, black);
    /*#8B20AA*/
    color: #B0B0B0;
    overflow-y: auto;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    cursor: default;
    display: flex;
    justify-content: center;
}

.rs-modal-body__wrap > *:not(h3) {
    margin-top: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.rs-modal-body h3 {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    position: relative;
    margin-top: 30px;
}

.rs-modal-body h3:after {
    content: '';
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 3px solid white;
    width: 190px;
    max-width: 50%;
    height: 10px;
    position: absolute;
}


.rs-modal-body h3, .rs-modal-body strong{
    color: white;
}


.rs-modal-body::-webkit-scrollbar {
    width: 0;
}
.rs-modal-body::-webkit-scrollbar-track {
    background: unset;
}
.rs-modal-body::-webkit-scrollbar-thumb {
    background-color: lightgrey;
    border-radius: 20px;
}

.rs-modal-body  li {
    margin-left: 25px;
}

.rs-close {
    position: absolute;
    font-weight: bold;
    font-size: 2rem;
    right: 15px;
    top: 15px;
    cursor: pointer;
    color: white;
    max-width: 25px;
}

.rs-close svg {
    max-width: 100%;
}

@media only screen and (min-width: 900px) {
    .rs-featured__list {
        --marquee-item-width: 100px;
        --marquee-item-height: 200px;
        --marquee-duration: 10s;
        --marquee-items: 6;

        display: flex;
        block-size: var(--marquee-item-height);
    }

    .flex-center-mobile {
        justify-content: flex-start;
    }

    .rs-close {
        max-width: 40px;
    }

    .rs-modal {
        left: 0;
        top: 0;
        width: 100vw;
        padding: 0 20px;
    }

    .rs-modal-body  {
        width: 100%;
        height: 80%;
        max-width: 60%;
    }

    .rs-modal-body h3 {
        margin-top: 0;
    }

    .rs-works__item {
        padding: 25px 25px 65px;
    }

    .rs-modal-body__wrap {
        max-width: 70%;
    }

    .rs__desc {
        display: block!important;
    }
    .rs__mobile {
        display: none!important;
    }
    .rs__mobile-f {
        display: none!important;
    }

    .rs-header__body {
        display: flex!important;
        gap: 60px;
    }

    .rs-header {
        justify-content: flex-start;
    }

    .rs-app {

    }

    .subtitle {
        font-size: 26px;
        line-height: 26px;
    }

    .rs-container {
        padding: 50px 15px;
    }

    .rs-logo {
        font-size: 36px;
        line-height: 41px;
    }

    h1 {
        font-size: 50px;
        line-height: 65px;
        text-align: left;
        margin-top: 120px;
    }

    .rs-list__item svg {
        width: 20px;
        height: 20px;
    }

    .mt-standard {
        margin-top: 28px;
    }

    .rs-btn {
        font-size: 18px;
        line-height: 50px;
        padding: 10px 41px;
    }

    .rs-app__footer-mob {
        display: flex;
        justify-content: center;
    }

    .rs-list {
        margin-top: 10px;
        font-size: 20px;
        line-height: 20px;
        margin-bottom: unset;
    }

    .subtitle-secondary {
        font-size: 22px;
        line-height: 22px;
    }


    .rs__stars {
        gap: 20px;
        margin-top: unset;
    }

    .rs-photo__list img {
        width: 45px;
        height: 45px;
        border: 3px solid white;
    }

    .rs-photo__list img:not(:first-child){
        margin-left: -18px;
    }

    .rs-featured__list {
        gap: 20px;
        width: calc(200% + 20px);
    }

    .rs-featured__item img {
        max-width: 400px;
        max-height: 200px;
    }

    .rs-star img {
        width: 22px;
        height: 22px;
        margin-right: 4px;
    }

    .rs-main {
        flex-direction: row;
        align-items: center;
        margin-top: unset;
    }

    .rs-photo__main {
        margin-bottom: 30px;
        width: 36%;
        justify-content: flex-start;
        padding-top: 70px;
    }


    .rs-photo__main img {
        width: 100%;
    }

    .rs-photo__submain {
        width: 50%;
    }

    .rs-app__header {
        background-size: cover;
        padding-bottom: 380px;
        background-position-y: 0;
        background-position-x: center;
    }

    .rs-regards {
        padding: 78px;
        border-radius: 27px!important;
    }

    .rs-regards__item-head {
        font-size: 70px;
        line-height: 70px;
    }

    .rs-regards__item-body {
        font-size: 24px;
        line-height: 29px;
        margin-top: 15px;
    }

    h2 {
        margin-top: 90px;
        font-size: 50px;
        line-height: 66px;
    }

    h2:not(.no-mb) {
        margin-bottom: 90px;
    }

    .rs-works {
        flex-direction: row;
        gap: 25px;
    }

    .rs-star-all {
         margin-top: 0;
    }

    .rs-works__item {
        flex: 1;
        gap: 0;
    }

    .rs-works__head {
         font-size: 36px;
         line-height: 68px;
    }

    .flexed {
        margin-top: 65px;
    }


    .rs-gray__circle:after {
        /*background-size: unset;*/
        background-size: auto 70%;
    }

    .rs-gray__circle.short:after {
        background-size: unset;
    }

    .rs-btn-blue {
        font-size: 18px;
        line-height: 28px;
        padding: 14px 42px;
    }

    .rs-reviews {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
    }

    .rs-reviews__item {
        justify-content: space-between;
        height: unset;
        gap: 25px;
    }

    .rs-reviews__video video {
        height: 400px;
    }

    .rs-reviews__desc {
        font-size: 20px;
        line-height: 32px;
    }

    .secondary {
        font-size: 22px;
        line-height: 34px;
        margin-top: 10px;
    }

    .rs-youtube {
        margin: 40px auto auto;
        width: 60%;
    }

    .rs-youtube__photo {
        border-radius: 13px;
    }

    .rs-youtube__icon {
        width: 160px;
    }

    .rs-accordion {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        padding: 45px 30px;
    }

    .rs-accordion__title {
        font-size: 23px;
        line-height: 35px;
    }

    .rs-accordion__item.active .rs-accordion__description {
        font-size: 20px;
        line-height: 30px;
    }

    .rs-accordion__item:not(:last-child) .rs-accordion__end {
        padding-bottom: 35px;
    }

    .rs-accordion__item:not(:first-child) .rs-accordion__head {
        padding-top: 35px;
    }

    .pt-big {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }


    .rs-app__main {
        margin-top: -350px;
        background-repeat: no-repeat;
        background-position: bottom center;
    }

    .rs-calendly {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-bottom: 200px;
    }

    .rs-app__footer-body {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .rs-app__footer {
        margin-top: -150px;
        padding: 50px 15px 25px;
    }

    .rs-calendly__widget {
        width: 40%;
        padding: 0 30px;
    }

    .rs-calendly__desc {
        width: 55%;
        margin-left: 70px;
    }

    .rs-calendly__title {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .rs-calendly__number {
        margin-top: 7px;
    }

    .rs-calendly__list {
        max-width: 90%;
        gap: 20px;
    }

    .rs-calendly__item {
        font-size: 22px;
        line-height: 34px;
    }

    .rs-calendly__speak {
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 20px;
        font-size: 32px;
        line-height: 32px;
    }

    .rs-app__menu {
        margin-top: 0;
    }

    .rs-app__menu-item {
        margin-top: 40px;
    }

    .rs-app__secondary-footer {
        margin-top: 100px;
        flex-direction: row;
        justify-content: center;
        padding-top: 25px;
    }
}



@media (min-width: 1025px) {
    .rs-app__main {
        background-position: bottom -235px center;
    }
}


@media (min-width: 1900px) {
    .rs-app__header {
        background-position: bottom -80px center;
    }

    .rs-app__main {
        background-position: bottom -300px center;
    }
}

