:root {
    --page-size: 90vw !important;
}

.wrapper {
    width: var(--page-size);
    margin: 0 auto;
}

header {
    padding-top: 30px;
}

.nav {
    width: var(--page-size);
    height: 68px;
    background-color: #f4f4f4;
    border-radius: 100px;
    padding-left: 16px;
    padding-right: 9px;
    position: fixed;
    transform: translateX(-50%);
    left: 50%;
    z-index: 999999;
}

.nav .branding-logo {
    width: auto;
    height: 1.8rem;
}

.nav .branding-name {
    font-size: 1.2rem;
}

.link-shadow {
    text-shadow: 0 8px 30px rgba(10, 112, 186, .5);
}

.custom-container {
    padding-top: 80px;
}

header .custom-container {
    padding-top: 100px !important;
}

@media (min-width: 767px) {
    .nav .branding-logo {
        height: 2.3rem;
    }

    .nav .branding-name {
        font-size: 1.4rem;
    }
}

.btn:not(.btn-circle) {
    background-color: transparent;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 2px solid var(--primary-color);
    transition: color, background ease 500ms;
    font-size: .8rem;
    padding: .6rem 1.25rem;
}

.btn:not(.btn-start-now):not(.btn-circle):hover {
    background-color: var(--primary-color);
    box-shadow: 0 20px 30px rgba(10, 112, 186, .25);
    color: #fff !important;
}

.btn:focus {
    outline: none;
    box-shadow: unset;
}

.btn-circle {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    background-color: var(--primary-color);
    z-index: 2;
}

.around-shadow {
    position: relative;
}

.around-shadow::after {
    background-color: var(--primary-color);
    border-radius: 50%;
    content: "";
    cursor: pointer;
    display: block;
    height: 68px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 0.1;
    transition: 0.3s;
    width: 68px;
    z-index: 1;
}

header .custom-container h1 {
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-wrap: normal;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0 0 18px !important;
    text-transform: uppercase;
    font-family: "Montserrat Bold", "Open Sans", sans-serif;
}

header .custom-container h2 {
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.05em;
}

header .custom-container .btn.btn-start-now {
    width: 85%;
    height: 58px;
    max-width: 350px;
    background-color: var(--primary-color);
    box-shadow: 0 20px 30px rgba(10, 112, 186, .25);
    border-radius: 40px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.02em;
    padding: 16px 25px 17px;
    text-align: center;
}

header .custom-container .mobile-phone {
    width: 80%;
    max-width: 400px;
}

.section-title {
    font-size: 1.5rem !important;
    color: var(--primary-color);
    line-height: 3rem;
}

.section-subtitle {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 800;
    font-family: "Montserrat Bold", "Open Sans", sans-serif;
}

main .wrap-video {
    max-width: 600px;
    height: 500px;
    background-color: #e4e4e4;
    border-radius: 20px;
}

main .video-play-btn {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

main .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    animation: hidden-video-overlay 200ms ease forwards;
}

main .video-overlay.active {
    animation: show-video-overlay 200ms ease forwards;
}

@keyframes show-video-overlay {
    100% {
        background-color: rgba(0,0,0,.25);
    }
}

@keyframes hidden-video-overlay {
    100% {
        background-color: rgba(0,0,0,0);
    }
}

main .step-btn {
    width: 55px;
    height: 55px;
    position: relative;
    box-shadow: 0 18px 40px rgba(10, 112, 186, .3);
}

.step-btn:focus {
    box-shadow: 0 18px 40px rgba(10, 112, 186, .3) !important;
}

main .step-btn::after {
    content: '';
    background-color: rgba(10, 83, 190, 0.3);
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0%;
    left: 0%;
    border-radius: 50%;
    transform: translateX(-7.5px) translateY(-7.5px);
    z-index: -1;
}

.pricing-content {
    display: flex;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.pricing-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 380px;
    margin: auto;
    background: #F6F8F9;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-tab-item {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: all .3s;
    text-transform: uppercase;
}

.pricing-tab-item:hover, .tab-active {
    background: var(--primary-color);
    color: #fff;
}

.pricing-content-items {
    display: flex;
    padding: 20px 0px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    transition: all .3s;
}

.pricing-item-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 35px 25px;
    transition: all .6s;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    background: #fff;
}

.plan-name {
    font-size: 22px;
    font-weight: 600;
}

.plan-text {
    margin: 10px 0px;
}

.plan-price-content {
    margin: 10px 0px;
    color: var(--primary-color);
}

.plan-price {
    font-size: 26px;
    font-weight: 600;
    /* color: #316bd6; */
}

.plan-price-text {
    color: #707070;
    margin-top: 2px;
}

.month-text {
    font-size: 20px;
}

.plan-features {
    flex: 1;
}

.plan-button a {
    flex: 1;
    display: flex;
    justify-content: center;
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 3px;
    text-decoration: none;
    color:  var(--primary-color) !important;
    transition: all .3s;
}

.plan-button {
    display: flex;
    margin-top: 16px;
}

.plan-button-blue {
    background: var(--primary-color);;
    color: #fff !important;
}
.plan-button a:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.pricing-item:hover .pricing-item-box {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    transform: translateY(-10px);
}

.plan-feature-item:before {
    content: "";
    width: 14px;
    height: 14px;
    background: #eee;
    margin-right: 7px;
    margin-bottom: 2px;
}

.ribbon:before, .ribbon:after {
    content: "";
    display: block;
    position: absolute;
    height: 0px;
    bottom: -8px;
    border: 13px solid var(--secondary-color);
}

.plan-discount {
    color: #fff;
    font-weight: bolder;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: var(--secondary-color);
}

.ribbon {
    position: absolute;
    right: 36px;
    top: 17px;
}

.ribbon:before {
    border-bottom-color: transparent;
    bottom: -26px;
}

.pricing-working-content {
    background: #F6F8F9;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 50px 0px;
}

.plan-cards {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-sizing: border-box;
}

.plan-card-item {
    flex: 1;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.09);
}

.pricing-content-items {
    display: flex;
    flex-direction: column;
    padding: 14px 0px;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

#mainIphone1 {
    transform-style: preserve-3d;
    max-width: 60vw;
    min-width: 320px;
}

#mainIphone1:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    opacity: 0;
}

.videos-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.videos-row {
    transition: transform 0.4s ease;
}

.video-card {
    border-radius: 30px;
    background-color: #f3f3f3;
    height: 100%;
}

.video-card .card-header img {
    border-radius: 20px;
    transform: scale(1.02);
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.05em;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-card .badge {
    font-size: .9rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    padding: 0rem .6rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: .02em;
    font-family: 'Comfortaa', sans-serif;
}


@media (max-width: 1365px) {
    .mobile-overflow-auto {
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: auto;
    }
    .mobile-overflow-auto::-webkit-scrollbar,
    .mobile-overflow-auto::-webkit-scrollbar {
        height: 0;
        width: 0;
        background-color: transparent;
    }
}

@media (min-width: 1200px) {
    .custom-container {
        max-width: 1200px;
    }

    .custom-container,
    header .custom-container {
        padding-top: 153px !important;
    }

    header .custom-container h1 {
        font-size: 3.5rem;
        line-height: 4.2rem;
    }

    header .custom-container .mobile-phone {
        width: 60%;
        max-width: 350px;
    }

    .w-xl-75 {
        width: 75%;
    }

    .section-title {
        font-size: 2rem !important;
        line-height: 4rem;
    }

    .section-subtitle {
        font-size: 3rem;
        line-height: 4rem;
    }

    header .custom-container .btn.btn-start-now {
        height: 68px;
        font-size: 18px;
    }

    main .wrap-video {
        border-radius: 60px;
    }
}

@media (min-width: 767px) {
    .section-title {
        font-size: 1.75rem !important;
        line-height: 3.5rem;
    }

    .section-subtitle {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
}
@media(min-width: 1440px) {
    :root {
        --page-size: 1400px !important;
    }
}
