* {
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-size: 100%;
    list-style: none;
    user-select: none;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

p {
    line-height: 1.5rem;
}

lite-vimeo {
    background: #000 url('./img/bg-video.jpg') no-repeat center center !important;
    border-radius: 5px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px #ff431dec;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ff431dec;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff431dec;
}

body {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    line-height: 32px;
    letter-spacing: 0px;
    font-weight: 300;
    font-style: normal;
    color: #333;
    font-size: 18px;
}

.header {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    margin: 0.75rem 0 ;
    padding: 0 5rem;
    z-index: 3;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
}

.header ul {
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    overflow: hidden;
    background-color: #fff;
}

.header .logo {
    display: block;
    float: left;
    padding: 10px 0;
    text-decoration: none;
}

.header .logo img {
    height: 40px;
}

/* menu */

.header .menu {
    max-height: 0;
    transition: max-height .2s ease-out;
    text-align: end;
}

.menu li {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    text-transform: none;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: normal;
    color: #1f1f1f;
    font-size: 14px;
}

.menu li a {
    color: #1f1f1f;
}

.menu li a:hover {
    color: #ff441d;
}

.menu .sub-menu  {
    position: relative;
    padding-right: 1rem;
}

.menu .sub-menu .sub-items {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:rgb(0, 183, 255);
    width: max-content;
    height: max-content;
    padding: 0.5rem;
    position: absolute;
}

.menu .sub-menu .sub-items li {
    color: #fff;
    padding: 0.5rem;
}

.menu .sub-menu .sub-items a {
    color: #fff;
}

.menu .sub-menu .sub-items a:hover {
    color: rgb(110, 108, 108);
}

.menu .sub-menu:hover .sub-items {
    opacity: 1;
    visibility: visible;
}

.menu .sub-menu span:hover {
    color: #ff441d;
    cursor: pointer;
}

.menu li a:hover {
    color: #ff441d;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.active {
    color:#ff441d !important;
}

#bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: max-content;
    padding: 0;
    margin-bottom: 4rem;
}

#bg .limit {
    max-width: 1300px;
}

#bg h1 {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    line-height: 60px;
    letter-spacing: -2px;
    font-weight: 300;
    font-size: 60px;
    border-color: rgb(31, 31, 31);
    border-style: none;
    margin: 0px;
    border-radius: 0px;
    padding: 0px;
    color: rgb(31, 31, 31);
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: 5rem;
}

#bg strong {
    font-weight: 700;
}

#bg h1 span {
    padding-left: 50px;
}

#bg h1 .with-salesforce {
    padding-left: 60px;
}

#bg .start-here {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 68, 29);
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    line-height: 45px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    width: 310px;
    height: 45px;
    padding: 0.5rem 2rem;
    margin-top: 1rem;
}

#bg .start-here:hover {
    background: #7b7676;
}

#bg .logo-SF {
    width: 141px;
    height: 99px;
}

#bg h2 {
    margin-top: 4rem;
    text-align: start;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: -1px;
}

#bg p:first-child {
    margin-top: 5rem !important;
}

#why {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin-top: 5rem;
    background-color: #eee;
}

#why p strong {
    font-size: 2rem;
    font-weight: 700;
}

#why h3, h2 {
    text-align: center;
    font-weight: 700;
}

#why p {
    letter-spacing: 0;
}

#why .center {
    text-align: center;
    padding: 0 1rem;
}

#how {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: #802ce3;
    color: #eee;
}

#how h3 {
    font-weight: 700;
}

#how .description {
    font-weight: 700;
    line-height: 1.5rem;
    padding-top: 0.5rem;
}

#how .step-description-hide {
    display: none;
}

#how .price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#how .price-tag span {
    line-height: 1.5rem;
    padding-left: 1rem;
    letter-spacing: -0;
}

#how .border-dotted {
    border-left: 2px dotted rgba(255, 255, 255, 0.61);
}

#how .border-dotted .step {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

#how .card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    border-radius: 1rem;
    color:rgb(31, 31, 31);
    padding: 1rem .5rem;
    min-height: 150px;
}

#how .card h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

#how .border-dotted .step-description {
    display: block;
    text-align: center;
    line-height: 1.5rem;
}

#how .line {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 1rem 0;
}

#how .line hr {
    width: 70%;
    border: none;
    border-top: 5px solid #fff;
    opacity: 1;
    position: absolute;
}

#how .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    color: #802ce3;
    font-weight: 500;
    font-size: 1.5rem;
    z-index: 1;
}

#profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: #eee;
}

#profile h3 {
    font-weight: 700;
}

#profile .card {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 1rem;
    color: #333;
}

#profile .card .bg-blue {
    position: relative;
    display: flex;
    justify-content: center;
    background: rgb(0, 183, 255);
    border-radius: 5px;
    padding: 1rem;
    min-height: 130px;
}

#profile .card .bg-blue img {
    position: absolute;
    bottom: -65px;
    border-radius: 50%;
}

#profile .card h1 {
    margin-top: 6rem;
    font-size: 1.5rem;
    text-align: center;
}

#profile .card span {
    margin-top: 2rem;
    text-align: center;
}

#profile .card:hover {
    color:rgb(255, 68, 29);
    cursor: pointer;
}

#profile .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#profile .center h3 {
    text-align: center;
    font-weight: 200;
}

#profile .start-here {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 68, 29);
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    line-height: 45px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    width: 210px;
    height: 45px;
    padding: 0.5rem 2rem;
    margin-top: 1rem;
}

#profile .start-here:hover {
    background: #7b7676;
}

#subscription {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 0;
    margin: 0;
}

.selection {
    padding: 0 !important;
}

#subscription p {
    margin-bottom: 0;
}

#subscription .description {
    padding-bottom: 1rem;
}

#subscription p strong {
    font-weight: 700;
}

#subscription h5 {
    margin-top: 1rem;
}

#first-screen {
    display: flex;
}

#second-screen, #third-screen, #congratulations, #errorProgram {
    display: none;
}

#errorProgram {
    margin: 5rem 0;
}

#congratulations {
    margin: 2rem 0;
}

#first-screen .submit, #second-screen .submit, #third-screen .submit {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#ff441d;
    color: #fff;
    border-radius: 5px;
    margin: 1rem 0 2rem;
}

#first-screen .submit:hover, #second-screen .submit:hover, #third-screen .submit:hover {
    background:#7b7676;
    color: #fff;
}

#second-screen .back, #third-screen .back {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    border-radius: 5px;
    margin: 1rem 0 2rem;
    color: #7b7676;
    border: 1px solid #ddd;
}

.hide, .graduation, .studying, .other-industry {
    display: none;
}
  
.hide-error {
    display: none !important;
}

.pages {
    display: flex;
    justify-content: flex-end;
    position: relative;
    bottom: -3rem;
    right: 1rem;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 239, 239, 0.88);
    padding: 4rem 8.5rem 2rem 7rem;
    font-family: 'Josefin Sans', Helvetica, sans-serif;
}

.footer .limit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;  
    max-width: 1300px;
}

.footer .social a {
    padding-right: 1rem;
}

.footer p {
    font-weight: 400;
}

.footer .links {
    display: flex;
    flex-direction: column;
}

.footer .link {
    display: flex;
    margin-bottom: 2rem;
}

.footer .links .careers {
    display: flex;
    flex-direction: column;
    padding-right: 2rem; 
}

.footer .links .careers span {
    color: #333;
    font-weight: 400;
    font-size: 1rem;
}

.footer .links .careers a {
    color: #333;
}

.footer .links .careers a:hover {
    color: #ff441d;
}

[data-highlight] {
    background: transparent;
    transition: background 1s;
}

.highlighted {
    background: #ff431d41;
    padding: 0 0.25rem;
}

/* Como funciona */

#first {
    display: flex;
    align-items: center;
    height: 80vh;
    color: #333;
}

#first h2 {
    font-size: 2.2rem;
    text-align: start;
    margin-bottom: 3rem;
}

#first p {
    font-size: 1.5rem;
}

#first span {
    font-size: 1.7rem;
    margin-bottom: 3rem;
}

#first .space {
    display: flex;
    flex-direction: column;
    width: 75%;
}

#first .space a {
    color: #333;
}

#first .space a:hover {
    color: rgb(0, 183, 255);
}

#second {
    display: flex;
    padding: 4rem 0;
    background: #802ce3;
    color: #fff;
}

#second .step, #third .step, #fourth .step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#second .step span, #third .step span, #fourth .step span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12rem;
    width: 300px;
    height: 300px;
    font-family: 'Anton', sans-serif;
}

#second .hide, #third .hide, #fourth .hide {
    display: none;
}

#second .step span {
    border: 15px solid #fff;
}

#second h2, #third h2, #fourth h2 {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 2rem;
    text-align: start;
}

#second h2 img, #third h2 img, #fourth h2 img {
    margin-right: 1rem;
}

#second h2 strong, #third h2 strong, #fourth h2 strong {
    font-weight: 700;
}

#second a {
    color: #fff;
}

#second a:hover {
    color: #333;
}

#second p, #third p, #fourth p {
    font-size: 1.5rem;
    margin-top: 2rem;
}

#third {
    display: flex;
    padding: 4rem 0;
    color: #333;
}

#third h2, p {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
}

#third .step span {
    color:#802ce3;
    border: 15px solid #802ce3;
}

#fourth {
    display: flex;
    padding: 4rem 0;
    color: #fff;
    background: rgb(0, 183, 255);
}

#fourth a {
    color: #fff;
}

#fourth a:hover {
    color: #333;
}

#fourth .step span {
    color:#fcdb20;
    border: 15px solid #fcdb20;
}

#fifth {
    display: flex;
    padding: 4rem 0;
    color: #333;
}

#fifth a {
    color: #333;
}

#fifth a:hover {
    color: rgb(0, 183, 255);
}

#fifth h2 {
    font-size: 2.5rem;
}

#fifth span {
    font-size: 1.7rem;
    text-align: center;
    padding-bottom: 5rem;
}

#fifth p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#fifth .center {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sixth {
    display: flex;
    padding: 4rem 0;
    color: #fff;
    background: #333;
}

#sixth .center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#sixth h2 {
    font-size: 2.5rem;
}

#sixth span {
    font-size: 1.8rem;
    margin: 1rem 0;
}

#sixth h3 {
    font-size: 3rem;
    margin: 1rem 0;
}

#sixth p {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    letter-spacing: 1px;
}

#seventh {
    display: flex;
    padding: 4rem 0;
    color: #333;
}

#seventh img {
    margin-right: 3rem;
}

#seventh span {
    font-size: 1.5rem;
    margin: 1rem 0;
    text-align: center;
}

#seventh  .do-not-worry {
    text-align: justify;
}

#seventh article {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

#seventh article img {
    border-radius: 5px;
}

#seventh article p {
    margin: 0;
    font-size: 1.3rem;
}

#seventh article p strong {
    margin: 0;
    font-size: 1.4rem;
}

#eighth {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 0;
    color: #fff;
    background: #ff8c00;
}

#eighth h2 {
    font-size: 2.5rem;
}

#eighth span {
    margin: 4rem 0;
    font-size: 2rem;
}

#eighth .btn-subscription {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 40px;
    color: #333;
    font-size: 1.5rem;
    background: #fff;
    border-radius: 5px;
    font-weight: 700;
}

#eighth .btn-subscription:hover {
    color: #ff8c00;
    background: #eee;
}

.doubt img {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
}

/* Dúvidas */

#doubts {
    margin-bottom: 3rem;
}

#doubts summary{
    font-weight: 400;
    font-size: 1.5rem;
}

#doubts details {
    margin-bottom: 1rem;
}

#doubts h2 {
    margin: 2rem 0;
    font-size: 2rem;
    font-weight: 700;
}

#doubts li {
    list-style-type: disc;
}

#doubts details p {
    font-size: 1.3rem;
    letter-spacing: -1px;
}

#doubts summary::-webkit-details-marker {
    display: none;
}

#doubts summary:after {
    border-radius: 5px;
    color: #333;
    float: right;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 20px;
    content: "+";
}

#doubts details[open] summary:after {
    content: "-";
}

/* Carreiras */

#information .ba {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

#information .way {
    margin-bottom: 3rem;
}

#information .way h1 {
    font-size: 3rem;
    color: #565656;
    line-height: 2.5rem;
    font-weight: 700;
    margin: 0;
}

#information .way span {
    font-size: 2.5rem;
    color: #565656;
    line-height: 2.5rem;
    font-weight: 200;
    margin: 0;
}

#information .way p {
    font-size: 1.5rem;
    color: #565656;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
}

#information .range {
    font-size: 1.5rem;
    color: #565656;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    padding-bottom: 1.5rem;
}

#information .salary {
    display: flex;
}

#information .salary img {
    margin-right: 2rem;
}

#information .range-salary {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#information .salary p {
    font-size: 1.2rem;
    color: #565656;
    line-height: 20px;
    font-weight: 200;
    margin: 0;
}

#information .salary span {
    font-size: 1.5rem;
    color: #565656;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 0.5rem;
}

#information .box-orange {
    display: flex;
    background: #ff8c00;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
}

#information .box-orange span {
    line-height: 1.2rem;
    margin: 0;
    padding: 0;
}

#information .box-orange strong {
    font-weight: 700;
    font-size: 1.6rem;
}

#information .box-orange img {
    max-width: 70px;
    margin-right: 1rem;
}

#information .box-gray {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #bbb;
    color: #fff;
    padding: 1rem;
    margin-bottom: .5rem;
}

#information .box-dark-gray {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(100, 100, 100);
    color: #fff;
    padding: 1rem;
}

#information .box-gray p, .box-dark-gray p {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
}

#information .font {
    font-size: 0.9rem;
    color: #565656;
    line-height: 1rem;
    text-align: left;
    letter-spacing: 0;
}

#description {
    background: #802ce3;
    color: #fff;
    padding: 4rem 0;
}

#description h2 {
    font-size: 2.5rem;
    line-height: 45px;
    text-align: left;
    margin-bottom: 2rem;
}

#description p {
    font-size: 1.5rem;
    line-height: 30px;
    text-align: left;
}

#description .btn-subscription {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 40px;
    color: #333;
    font-size: 1.5rem;
    background: #fff;
    border-radius: 5px;
    font-weight: 400;
    margin-top: 2rem;
}

#description .btn-subscription:hover {
    color: #802ce3
}

#skills {
    padding: 4rem 0;
}

#skills h2 {
    font-size: 2.8rem;
    text-align: start;
    line-height: 2.8rem;
}

#skills span {
    font-size: 2rem;
}

#skills li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: .5rem;
}

#skills li p {
    text-align: right;
    width: 50%;
    padding-right: 1rem;
    font-weight: 400;
}

#skills .slot-skill {
    display: flex;
    width: 50%;
    background: #ddd;
    box-shadow: inset 0 1px 2px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
    height: 25px;
}

#skills .skill {
    background: rgb(0, 183, 255);
    border-radius: 5px;
    height: 25px;
}

#skills-second {
    padding: 4rem 0;
    background: #eee;
}

#skills-second h2 {
    font-size: 2.8rem;
    text-align: start;
    line-height: 2.8rem;
}

#skills-second span {
    font-size: 2rem;
}

#skills-second li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: .5rem;
}

#skills-second li p {
    text-align: right;
    width: 50%;
    padding-right: 1rem;
    font-weight: 400;
}

#skills-second .slot-skill {
    display: flex;
    width: 50%;
    background: #fff;
    box-shadow: inset 0 1px 2px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
    height: 25px;
    margin-right: 2rem;
}

#skills-second .skill {
    background: #ff8c00;
    border-radius: 5px;
    height: 25px;
}

#carrier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: #eee;
}

#carrier .d-flex {
    display: flex;
    justify-content: center;
}

#carrier h3 {
    font-weight: 700;
}

#carrier .card {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 1rem;
    color: #333;
}

#carrier .card .bg {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 5px 5px 0 0;
    padding: 1rem;
    min-height: 130px;
}

#carrier .card .bg-blue {
    background: rgb(0, 183, 255);
}

#carrier .card .bg-orange {
    background: #ff431dec;
}

#carrier .card .bg img {
    position: absolute;
    bottom: -65px;
    border-radius: 50%;
}

#carrier .card h1 {
    margin-top: 6rem;
    font-size: 1.5rem;
    text-align: center;
}

#carrier .card span {
    margin-top: 1rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1.3rem;     /* fallback */
    max-height: 7rem;      /* fallback */
    -webkit-line-clamp: 4; /* number of lines to show */
    -webkit-box-orient: vertical;
}

#carrier .card input[type='button'] {
    margin-top: 2rem;
    border-radius: 4px;
}

#carrier .card input[type='button']:hover {
    filter: brightness(0.8);
}

#carrier .center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#carrier .center h3 {
    text-align: center;
    font-weight: 200;
}

#carrier .start-here {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 68, 29);
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    line-height: 45px;
    font-weight: 700;
    font-size: 20px;
    border-radius: 5px;
    color: rgb(255, 255, 255);
    width: 210px;
    height: 45px;
    padding: 0.5rem 2rem;
    margin-top: 1rem;
}

#carrier .start-here:hover {
    background: #7b7676;
}

#carrier #AM, #DEV {
    display: none;
}

#carrier .popUp-Container {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 15;
}

#carrier .popUp-Content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 90%;
    background: #fff;
    margin: 5rem 10rem;
    padding: 5rem;
    overflow-y: scroll;
    box-shadow: 0 0 5px rgb(43, 41, 41);
}

#carrier .popUp-Content input {
    background: transparent;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    border: 1px solid #ccc;
}

#carrier .popUp-Content .close:hover {
    color: rgb(175, 0, 0); 
    border: 1px solid rgb(175, 0, 0);
}

#carrier .popUp-Content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#carrier .popUp-Content p {
    font-size: 1.2rem;
}

#carrier .popUp-Content p strong {
    font-weight: 700;
    font-size: 1.1rem;
}

#carrier .popUp-Content ul li {
    list-style: decimal-leading-zero;
}

@media (min-width: 48em) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        min-height: 125px;
    }
    .header .menu-icon {
        display: none;
    }
}

@media (max-width: 48em) {
    html {
        font-size: 87.5%;
    }

    lite-vimeo {
        background-size: 324px !important;
    }

    .header {
        padding: 0 2rem;
    }

    .nav {
        justify-content: space-between;
        margin-bottom: 2rem;
        width: 100%;
    }

    .menu {
        width: 100%;
        margin-right: 1.5rem !important; 
    }

    .menu .sub-menu  {
        padding-right: 0;
    }

    .menu li {
        padding-bottom: 1rem;
    }

    .menu li span {
        padding: 0 !important;
    }

    .menu .sub-menu .sub-items {
        padding: 0.5rem;
        align-items: flex-start;
        position: absolute;
        top: 10px;
        right: 0;
    }

    #bg {
        background: #fff;
        background-size: 445px 233px;
        padding: 0 2rem;
        height: max-content;
    }
    
    #bg .people {
        display: none;
    }

    #bg h1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 2rem;
    }

    #bg .start-here {
        font-size: 15px;
        width: 210px;
        padding: 0.5rem;
        margin-top: 1rem;
    }

    #bg h2 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    #bg h4 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    #why {
        padding: 2rem;
    }

    #how {
        padding: 2rem;
    }

    #how span {
        text-align: center;
    }

    #how .price-tag span {
        padding-bottom: 3rem;
        text-align: start;
    }

    #how .border-dotted {
        border: none;
    }

    #how .border-dotted .step {
        margin: 1rem 0;
    }

    #how .border-dotted .card {
        margin-top: 1rem;
    }

    #how .line {
        display: none;
    }

    #how .step-description {
        display: none !important;
    }

    #how .step-description-hide {
        display: flex;
        padding: 0 0 3rem;
        line-height: 1.5rem;
    }

    #profile {
        padding: 2rem;
    }

    #profile span {
        padding: 1rem;
        text-align: center;
    }

    #profile .card {
        margin-bottom: 1rem;
    }

    #profile .card span {
        text-align: justify;
        font-size: 1.2rem;
    }

    #subscription {
        padding: 1rem;
    }

    #subscription p {
        padding: 1rem;
    }

    #subscription label {
        font-size: 1.2rem;
    }

    #first-screen, #second-screen, #third-screen, #congratulations {
        padding: 0 2rem;
    }

    .footer {
        flex-direction: column;
        padding: 4rem 3rem;
    }
    
    .footer p {
        padding-top: 1rem;
        letter-spacing: 0;
        font-size: 1rem;
        text-align: center;
    }

    #first {
        height: max-content;
        justify-content: center;
        padding: 2rem;
    }

    #first .space {
        width: 100%;
    }

    #first h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    #first p {
        font-size: 1.4rem;
        text-align: center;
    }
    
    #first span {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    #first img {
        display: none;
    }

    #second, #third, #fourth {
        padding: 4rem 1.5rem;
    }

    #second .step span, #third .step span, #fourth .step span {
        display: none;
    }

    #second img, #third img, #fourth img {
        display: none;
    }

    #second .hide, #third .hide, #fourth .hide {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #second .hide img, #third .hide img, #fourth .hide img {
        display: flex;
    }


    #second h2, #third h2, #fourth h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    #second p, #third p, #fourth p {
        font-size: 1.3rem;
    }

    #fifth {
        padding: 4rem 2rem;
    }

    #fifth h2 {
        font-size: 2rem;
    }

    #fifth p {
        font-size: 1.4rem;
    }

    #fifth img {
        width: 100px;
    }

    #fifth span {
        font-size: 1.5rem;
        padding-bottom: 2rem;
    }

    #sixth {
        padding: 4rem 2rem;
    }

    #sixth h2 {
        font-size: 1.8rem;
    }

    #sixth h3 {
        font-size: 2rem;
        margin: 1rem 0;
    }

    #sixth span {
        font-size: 1.5rem;
        text-align: center;
    }

    #sixth p {
        font-size: 1.3rem;
    }

    #seventh {
        padding: 4rem 2rem;
    }

    #seventh img {
        margin-right: 1rem;
    }

    #seventh p {
        font-size: 1.1rem;
        line-height: 1.1rem;
    }

    #seventh article p {
        font-size: 1rem;
    }

    #seventh article p strong {
        font-size: 1.1rem;
    }
    
    #seventh  .do-not-worry {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }

    #eighth {
        padding: 4rem 2rem;
    }

    #eighth span {
        margin: 4rem 0;
        font-size: 2rem;
        text-align: center;
    }

    #doubts {
        padding: 0 2rem 4rem;
    }

    #doubts h2 {
        margin: 2rem 0;
        font-size: 2rem;
        font-weight: 700;
    }

    #doubts summary:after {
        float: none;
        padding-left: 1rem;
    }

    #doubts summary{
        font-size: 1.3rem;
    }

    #doubts details p {
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    #information {
        padding: 4rem 2rem;
    }

    #information img {
        display: none;
    }

    #information .range-salary {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #information .box-orange, #information .box-gray, #information .box-dark-gray {
        min-height: 100px;
        justify-content: center;
        align-items: center;
    }

    #information .box-gray p, .box-dark-gray p {
        margin: 0;
        padding: 0;
        line-height: 1rem;
    }

    #information .box-gray span, .box-dark-gray span {
        margin: 0;
        padding: 0;
    }

    #description {
        padding: 4rem 2rem;
        justify-content: center;
    }

    #description h2 {
        font-size: 2rem;
        line-height: 2.2rem;
        text-align: center;
    }
    
    #description p {
        text-align: center;
        font-size: 1.4rem;
        line-height: 1.5rem;
    }

    #description  .center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #skills, #skills-second {
        padding: 4rem 2rem;
    }

    #skills h2, #skills-second h2 {
        font-size: 2rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }
    
    #skills span, #skills-second span {
        font-size: 1.5rem;
    }

    #skills ul, #skills-second up {
        margin-top: 2rem;
    }

    #skills li, #skills-second li {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #skills li p, #skills-second li p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }

    .link {
        flex-direction: column;
        align-items: center;
    }

    .link .careers {
        align-items: center;
    }

    .footer .limit {
        flex-direction: column;
    }

    .footer .logo-footer {
        width: 60px;
        height: 71px;
    }

    .link .careers {
        margin-top: 1.5rem;
    }
}