main {
    width: 100%;
    position: relative;
    margin-bottom: 100vh;
    padding-top: 124px;
    background: var(--rvl-background-color);
    z-index: 5;
}

.container {
    padding-bottom: 100px;
    display: flex;
}

.content {
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.content.sticky {
    position: sticky;
    top: 124px;
    left: 0;
    height: 100%;
    z-index: 10;
}

.content__item .screens {
    position: relative;
    height: 680px;
}

.screens .mockup:nth-child(1) {
    width: 10em;
    position: absolute;
    top: 0;
    right: 5em;
    z-index: 4;
    animation-delay: .4s;
}

.screens .mockup:nth-child(2) {
    width: 14em;
    position: absolute;
    top: 12em;
    right: 0;
    z-index: 3;
    animation-delay: .4s;
}

.screens .mockup:nth-child(3) {
    width: 12em;
    position: absolute;
    top: 20em;
    right: 6em;
    z-index: 2;
    animation-delay: .4s;
}

.screens .mockup:nth-child(4) {
    width: 16em;
    position: absolute;
    top: 32em;
    right: 0;
    z-index: 1;
    animation-delay: .8s;
}

.screens .mockup:nth-child(5) {
    height: 100%;
    position: absolute;
    top: 0;
    left: -20em;
    z-index: 1;
}

.screens-2 {
    position: relative;
    height: 620px;
}

.screens-2 .mockup:nth-child(1) {
    width: 40%;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 3;
    animation-delay: .2s;
}

.screens-2 .mockup:nth-child(2) {
    width: 80%;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    z-index: 1;
}

.screens-2 .mockup:nth-child(3) {
    width: 60%;
    position: absolute;
    top: 45%;
    right: 0;
    z-index: 2;
    animation-delay: .4s;
}

.heading {
    font-size: 52px;
    line-height: 52px;
    font-weight: 700;
    color: var(--rvl-main-color);
    text-transform: uppercase;
}

.heading--small {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    color: #ffffff;
    text-transform: uppercase;
}

.sub-heading {
    display: block;
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
}

.sub-heading span {
    color: var(--rvl-main-color);
}

.description {
    margin: 20px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
}

.description.with-icon {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.with-icon img {
    max-width: 32px;
    min-width: 32px;
    width: 32px;
    height: 32px;
}

.contact-form__input {
    margin-bottom: 10px;
    border: 1px solid var(--rvl-main-color);
    padding: 0 20px;
    outline: none;
    width: 100%;
    height: 40px;
    background: transparent;
    color: #ffffff;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 40px;
}

.contact-form__input::placeholder {
    color: #ffffff;
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 40px;
}

textarea.contact-form__input {
    min-height: 100px;
    max-height: 200px;
    resize: vertical;
}

select.contact-form__input option {
    background-color: #000000;
}

.btn.orange {
    border: none;
    outline: none;
    background-color: var(--rvl-orange-color);
    color: var(--rvl-light-color);
}

a.btn.orange.bold {
    margin-top: 80px;
}

.btn.orange:hover {
    box-shadow: 0 0 10px var(--rvl-orange-color);
}

section#rvl-cont-2 {
    flex-direction: column;
    align-items: center;
}

h3.heading {
    margin-bottom: 0;
}

.accordion-wrapper {
    margin-top: 40px;
}

.accordion__title {
    border: none;
    border-bottom: 2px solid var(--rvl-main-color);
    padding: 24px;
    outline: none;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: transparent;
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
  
.accordion__title:after {
    content: '';
    position: absolute;
    top: 45%;
    right: 50px;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--rvl-orange-color);
    border-left: 2px solid var(--rvl-orange-color);
    transform: translateY(-50%) rotate(225deg);
}
  
.accordion__title.is-open:after {
    top: 55%;
    transform: translateY(-50%) rotate(45deg);
}
  
.accordion__title:hover {
    background-color: rgba(67, 152, 66, .25);
}

.accordion__title.is-open {
    background-color: rgba(67, 152, 66, .4);
}

img.accordion__icon {
    width: 32px;
    height: 32px;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.accordion__content p {
    padding: 0 20px;
}