/*
    Variables
*/

:root {
    --main-size: 1.5rem;
    --primary-color: #80FF80;
    --secondary-color: #ADABAB;
    --tertiary-color: #BDBBBB;
    --bs-secondary-rgb: 93, 91, 91;
    --bs-danger-rgb: 239, 65, 54;
    --bs-border-color: rgb(93, 91, 91);
    --bs-border-radius: 10px;
    --icon-check: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2380FF80'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2380FF80'%3e%3cpath fill-rule='evenodd' d='m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05'/%3e%3c/svg%3e");
    --icon-circle: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2380FF80'%3e%3cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3e%3c/svg%3e");
}



/*
    Generic styling rules
*/

body {
    background-color: #000;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.875rem, 0.838rem + 0.1852vw, 1rem);
}

a {
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, hr {
    -webkit-margin-before: var(--main-size);
    margin-block-start: var(--main-size);
    -webkit-margin-after: 0;
    margin-block-end: 0;
}
  
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child, ul:first-child, ol:first-child, hr:first-child {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}
  
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    -webkit-margin-after: 0;
    margin-block-end: 0;
    color: #FFF;
}
  
p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}
  
ul.list-check li {
    margin-top: 0.5em;
    display: flex;
    align-items: flex-start;
}
  
ul.list-check .check-icon {
    margin-top: 0.1em;
    margin-right: 0.8rem;
    flex: 0 0 1.0625rem;
} 

img {
    max-width: 100%;
    height: auto;
}

label {
    color: #FFF;
}

dl dt {
    color: #FFF;
    font-size: clamp(1rem, 0.8519rem + 0.7407vw, 1.5rem);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
}
  
dl dd {
    margin-top: calc(var(--main-size) / 2);
    padding-left: 1.8125rem;
}
  
ol {
    list-style-type: none;
    counter-reset: item;
    -webkit-margin-before: var(--main-size);
    margin-block-start: var(--main-size);
    padding: 0;
}

ol li:not(:first-child) {
    -webkit-margin-before: var(--main-size);
    margin-block-start: var(--main-size);
}
  
ol > li {
    display: table;
    counter-increment: item;
}
  
ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    -webkit-padding-end: 0.6em;
    padding-inline-end: 0.6em;
    color: #FFF;
}
  
ol > li ol > li {
    margin: 0;
}

ol > li ol > li:before {
    content: counters(item, ".") " ";
    color: unset;  
}
  
ol ol {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}
  
ol ol li:not(:first-child) {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}
  
a:not(.btn) {
    color: var(--main-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
  
a:not(.btn):hover {
    color: var(--main-color);
    opacity: 0.8;
}



/*
    Page layout styling rules
*/

#main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#main-footer {
    background-image: url(/images/bg-footer.png);
    background-repeat: no-repeat;
    background-position: center;

    .logo {
        display: inline-block;
        margin-bottom: 2rem;
    }

    .links {
        width: 100%; 
        display: flex; 
        justify-content: space-between; 
        flex-direction: row; 
        flex-wrap: wrap-reverse;
        gap: 1rem;

        .legal {
            display: flex; 
            flex-direction: row; 
            gap: 0.5rem;

            a {
                font-weight: bold; 
                flex: 0 0 auto;
            }
        }
    }
}

/* #main-footer .legal-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
}

#main-footer .legal-links a:not(:last-child):after {
    content: "|";
} */



/*
    Custom classes    
*/

.container,
.container-xxl,
.container-xl,
.container-fluid {
    padding-left: var(--main-size);
    padding-right: var(--main-size);
}

.container-xxl {
    max-width: 1328px;
}

.section {
    padding-top: calc(var(--main-size) * 1.7);
    padding-bottom: calc(var(--main-size) * 1.7);
}

.section-2 {
    padding-top: calc(var(--main-size) * 1.7);
    /* padding-bottom: calc(var(--main-size) * 1.7); */
}

.btn-close:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}



.fw-bold,
strong {
font-weight: 600;
}



.fs-1 {
font-size: clamp(1.625rem, 0.625rem + 4vw, 5rem) !important;
}

.fs-2 {
font-size: clamp(1.625rem, 0.9954rem + 3.1481vw, 3.75rem) !important;
}

.fs-3 {
font-size: clamp(1.375rem, 1.1528rem + 1.1111vw, 2.125rem) !important;
}

.fs-4 {
font-size: clamp(1rem, 0.8519rem + 0.7407vw, 1.5rem) !important;
}

.highlight {
color: var(--tertiary-color);
}

.redline {
text-decoration: underline; 
text-decoration-color: red;
text-decoration-thickness: 2px;
text-underline-offset: 2px;
}

.small, small {
font-size: 0.875rem;
}

.check-icon {
    display: inline-block;
    width: 1.0625rem;
    height: 1.0625rem;
    background-size: 100%;
    background-image: var(--icon-check);
    background-repeat: no-repeat;
    background-size: contain;
}

.circle-icon {
    display: inline-block;
    width: 1.0625rem;
    height: 1.0625rem;
    background-size: 100%;
    background-image: var(--icon-circle);
    background-repeat: no-repeat;
    background-size: contain;
}

/* dl {
-webkit-margin-before: var(--main-size);
        margin-block-start: var(--main-size);
} */


.btn {
border-radius: 3.5rem;
font-size: 0.875rem;
--bs-btn-font-weight: 600;
}

.btn-primary {
--bs-btn-color: #000;
--bs-btn-bg: var(--primary-color);
--bs-btn-border-color: var(--primary-color);
--bs-btn-hover-color: #000;
--bs-btn-hover-bg: color-mix(in oklab, var(--primary-color) 90%, black);
--bs-btn-hover-border-color: color-mix(in oklab, var(--primary-color) 90%, black);
--bs-btn-active-color: #000;
--bs-btn-active-bg: color-mix(in oklab, var(--primary-color) 90%, black);
--bs-btn-active-border-color: color-mix(in oklab, var(--primary-color) 90%, black);
--bs-btn-disabled-color: #000;
--bs-btn-disabled-bg: var(--primary-color);
--bs-btn-disabled-border-color: var(--primary-color);
}

.btn-glow {
color: #FFF;
position: relative;
overflow: hidden;
}
.btn-glow span {
position: relative;
z-index: 5;
}
.btn-glow:after, .btn-glow:before {
content: "";
position: absolute;
}
.btn-glow:before {
background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#232121));
background: linear-gradient(180deg, #000000 0%, #232121 100%);
z-index: 2;
width: calc(100% - 4px);
height: calc(100% - 4px);
left: 2px;
top: 2px;
border-radius: 3.5rem;
}
.btn-glow:after {
background: -webkit-gradient(linear, left top, right top, from(#FF8080), color-stop(30%, #FFFF80), color-stop(66%, #80FF80), to(#66AAFF));
background: linear-gradient(90deg, #FF8080 0%, #FFFF80 30%, #80FF80 66%, #66AAFF 100%);
border-radius: 0;
z-index: 1;
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
top: 50%;
left: 50%;
width: 130%;
aspect-ratio: 1/1;
-webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
-webkit-animation: gradientMove 7s linear infinite;
        animation: gradientMove 7s linear infinite;
}
.btn-glow:hover {
color: #FFF;
}

.tax-definitions {
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start;
    gap: 1rem;

}
.tax-definitions dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: normal;
    gap: 0.25rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
}
.tax-definitions dt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    font-size: clamp(1rem, 0.8519rem + 0.7407vw, 1.5rem);

    span {
        margin-top: 0.3em;
        flex: 0 0 1.0625rem;
    }
}
.tax-definitions dd {
    display: inline-block;
    font-weight: normal;
    margin-top: 0rem;
    margin-bottom: 0rem;
    padding-left: 0rem;
    text-align: left;
}

.customer-service-stories {
height: 80px; 
width:100%; 
margin-left: auto; 
margin-right: auto; 
margin-bottom: 2rem; 
background-color: #66AAFF;
color:#000;
font-size: 1rem;
border-radius: 40px;
display: flex; 
flex-direction: column; 
justify-content: center; 
align-items: center;
}
.customer-service-stories > div {
color: #000;
}

.gradient-box-pricing {
color: #FFF;
border: 1px solid #5D5B5B;
}
.gradient-box-pricing .text-offering {
margin-inline: auto;
font-size: 1rem;
background-color: #5D5B5B;
padding: 0.75em 2em;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
border-radius: 0 0 0.5rem 0.5rem;
font-weight: 600;
}
.gradient-box-pricing ul {
list-style: none;
padding: 0;
text-align: start;
}
.gradient-box-pricing .price {
font-size: clamp(2.8125rem, 2.5347rem + 1.3889vw, 3.75rem);
font-weight: 600;
}
.gradient-box-pricing .price small {
font-size: 1rem;
}
.gradient-box-pricing hr {
background: #000000;
background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), color-stop(30%, rgb(67, 65, 65)), color-stop(70%, rgb(67, 65, 65)), to(rgba(0, 0, 0, 0)));
background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgb(67, 65, 65) 30%, rgb(67, 65, 65) 70%, rgba(0, 0, 0, 0) 100%);
border: none;
height: 1px;
opacity: 1;
}

.table-pricing {
max-width: 1080px;
margin-inline: auto;
}
.table-pricing .item {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: repeat(3, minmax(0, 1fr));
position: relative;
}
.table-pricing .item:not(:last-child):after {
content: "";
display: block;
height: 1px;
background: #000000;
background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgb(67, 65, 65)), to(rgba(0, 0, 0, 0.5)));
background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgb(67, 65, 65) 50%, rgba(0, 0, 0, 0.5) 100%);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.table-pricing .item:not(.item-head) {
font-weight: 700;
}
.table-pricing .item.item-head img.logo {
max-width: 220px;
}
.table-pricing .item span {
display: block;
padding: 0.75em 0.15em;
-ms-flex-line-pack: center;
    align-content: center;
}
.table-pricing .item span:not(:first-child) {
text-align: center;
}
.table-pricing .item span:not(:last-child) {
border-right: 1px solid #434141;
}
.table-pricing .item .icon-check {
display: block;
text-align: center;
}
.table-pricing .item .icon-check::after {
content: "";
display: inline-block;
width: 22px;
height: 22px;
background-image: url(../../images/icons/icon-check.svg);
background-repeat: no-repeat;
background-position: center;
}
.table-pricing .item .icon-x {
display: block;
text-align: center;
}
.table-pricing .item .icon-x::after {
content: "";
display: inline-block;
width: 22px;
height: 22px;
background-image: url(../../images/icons/icon-x.svg);
background-repeat: no-repeat;
background-position: center;
}
.table-pricing .item .icon-symmetricall {
text-align: center;
display: block;
}
.table-pricing .item .icon-symmetricall::after {
content: "";
display: inline-block;
width: 40px;
height: 40px;
background-image: url(../../images/icons/icon-symmetricall-circled.svg);
background-repeat: no-repeat;
background-position: center;
}






.nav {
--bs-nav-link-padding-x: 13px;
--bs-nav-link-padding-y: 13px;
--bs-nav-link-font-weight: ;
--bs-nav-link-color: #FFF;
--bs-nav-link-hover-color: #FFF;
--bs-nav-link-disabled-color: var(--bs-secondary-color);
gap: var(--main-size);
}

.nav-pills {
--bs-nav-pills-link-active-color: #000;
--bs-nav-pills-link-active-bg: var(--primary-color);
font-weight: 600;
}

.nav-link {
background: var(--secondary-color);
}
.nav-link:hover {
background: color-mix(in oklab, var(--secondary-color) 90%, black);
}

.accordion {
--bs-accordion-color: var(--secondary-color);
--bs-accordion-bg: transparent;
--bs-accordion-btn-padding-x: 0;
--bs-accordion-btn-padding-y: 1rem;
--bs-accordion-btn-color: #FFF;
--bs-accordion-btn-bg: transparent;
--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3e%3c/svg%3e");
--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3e%3c/svg%3e");
--bs-accordion-btn-focus-box-shadow: unset;
--bs-accordion-body-padding-x: 0;
--bs-accordion-active-color: #FFF;
--bs-accordion-active-bg: transparent;
}

.accordion-item {
    -o-border-image: linear-gradient(to right, #000000 0%, #434141 47%, #000000) 1;
    border-image: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(47%, #434141), to(#000000)) 1;
    border-image: linear-gradient(to right, #000000 0%, #434141 47%, #000000) 1;
    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
}

.accordion-body {
    font-size: 0.875rem;
}

.custom-pill {
    --bs-badge-padding-x: .5em;
    --bs-badge-padding-y: .5em;
    --bs-badge-font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.5rem);
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) padding-box, -webkit-gradient(linear, left top, right top, from(#5D5B5B), to(#FFFFFF)) border-box;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(to right, #5D5B5B, #FFFFFF) border-box;
    border-radius: 50em;
    border: 1px solid transparent;
}


.intro-text {
max-width: 59.375rem;
margin-inline: auto;
}

.intro-text-small {
max-width: 65rem;
margin-inline: auto;
}

.gradient-box {
background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#232121));
background: linear-gradient(180deg, #000000 0%, #232121 100%);
border-radius: var(--bs-border-radius);
}

/* ==========================================================================
SECTIONS
========================================================================== */



.why-list .col:not(:last-child):after {
content: "";
width: 100%;
height: 2px;
background: rgb(0, 0, 0);
background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgb(243, 243, 243)), to(rgba(0, 0, 0, 0)));
background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(243, 243, 243) 50%, rgba(0, 0, 0, 0) 100%);
opacity: 0.5;
display: block;
-webkit-margin-before: var(--bs-gutter-y);
        margin-block-start: var(--bs-gutter-y);
}


.list-pills {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
gap: 0.5rem;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}


.discount-box {
max-width: 33.125rem;
margin-inline: auto;
}

.list-icon-check {
text-align: left;
list-style: none;
padding: 0;
}
.list-icon-check li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 0.75rem;
}
.list-icon-check li:before {
content: "";
display: block;
width: 1em;
height: 1em;
aspect-ratio: 1/1;
background-image: var(--icon-check);
background-repeat: no-repeat;
background-size: cover;
-webkit-transform: translateY(0.3em);
        transform: translateY(0.3em);
}
.list-icon-check li:not(:first-child) {
margin-top: 1rem;
}


.section-be-the-first {
    background: linear-gradient(180deg, #000000 0%, #000000 90%,#232121 100%);
    border-radius: 0 0 2rem 2rem;
}





/*
    Media rules
*/

@media (max-width: 350px) {
    .btn-glow {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .btn {
        font-size: 1rem;
        --bs-btn-padding-x: 2rem;
        --bs-btn-padding-y: .75rem;
    }
    .customer-service-stories {
        width: 80%;
    }
}

@media (min-width: 992px) {
    .section {
        padding-top: calc(var(--main-size) * 3);
        padding-bottom: calc(var(--main-size) * 3);
    }
    .section-2 {
        padding-top: calc(var(--main-size) * 3);
        /* padding-bottom: calc(var(--main-size) * 3); */
    }
    .cc-interactions.nav-justified > .nav-link {
        -webkit-box-flex: unset;
        -ms-flex-positive: unset;
        flex-grow: unset;
        -ms-flex-preferred-size: unset;
        flex-basis: unset;
        min-width: 18.75rem;
    }
    .why-list .col {
        position: relative;
        padding-inline: calc(var(--main-size) * 2);
    }
    .why-list .col:not(:last-child):after {
        width: 2px;
        height: 100%;
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgb(243, 243, 243)), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(243, 243, 243) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-margin-before: 0;
        margin-block-start: 0;
        position: absolute;
        right: -1px;
        top: 0;
    }
    .list-pills {
        gap: 1rem;
    }
    .custom-pill {
        --bs-badge-padding-x: 1em;
        --bs-badge-padding-y: .5em;
    }
}

@media (min-width: 1200px) {
    .section {
        padding-top: calc(var(--main-size) * 4);
        padding-bottom: calc(var(--main-size) * 4);
    }
    .section-2 {
        padding-top: calc(var(--main-size) * 4);
        /* padding-bottom: calc(var(--main-size) * 4); */
    }
    .customer-service-stories {
        width: 60%;
    }
    .list-icon-check {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
}

@media (min-width: 1400px) {
    .container-fluid {
        padding-left: calc(var(--main-size) * 2);
        padding-right: calc(var(--main-size) * 2);
    }
}



@-webkit-keyframes gradientMove {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }
    30% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gradientMove {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0);
        transform: translate(-50%, -50%) rotate(0);
    }
    30% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



/*
    Phone Animation
*/

.phones {
    position: relative;
    overflow: hidden;
    padding-inline: var(--main-size);
}

.phones:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(90.26%, #000000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 90.26%);
    z-index: 99;
    content: "";
}

.phones-inner {
    max-width: 580px;
    margin-inline: auto;
    position: relative;
    -webkit-transition: all 0.3s 0.2s ease-out;
    transition: all 0.3s 0.2s ease-out;
    transform: translateY(200px);
    transform: translateY(200px);
    opacity: 0;
}

.phones-inner .phone-2 {
    position: relative;
    z-index: 5;
    width: 53.62%;
    margin: 0 auto;
}

.phones-inner .phone-1,
.phones-inner .phone-3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 47%;
}

.phones-inner .phone-1 img,
.phones-inner .phone-3 img {
    -webkit-transition: all 0.3s 0.2s ease-out;
    transition: all 0.3s 0.2s ease-out;
}

.phones-inner .phone-1 {
    left: 0;
}

.phones-inner .phone-1 img {
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%);
}

.phones-inner .phone-3 {
    right: 0;
}

.phones-inner .phone-3 img {
    -webkit-transform: translateX(70%);
        transform: translateX(70%);
}

.phones-inner.run-animation {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.phones-inner.run-animation .phone-1 img,
.phones-inner.run-animation .phone-3 img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.rotate-text {
    position: relative;
    display: block;
    height: 1.10em;
    overflow: hidden;
    text-align: center;
}

.rotate-text span {
    position: absolute;
    display: block;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.rotate-text span.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.rotate-text span.animated {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}