* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.nav-top {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d151e;
    text-transform: uppercase;
}
.nav-top a {
    color: #9eacbd;
    font-size: 9pt;
    text-decoration: none;
}
.nav-top button {
    font-size: 9pt;
    text-transform: uppercase;
}

@media (max-width: 999px) {
    .nav-top a,
    .nav-top button {
        font-size: 9pt;
    }
}
.left-nav-top {
    display: flex;
    align-items: center;
}

.vidrev-cont {
    display: flex;
    align-items: center;
}
.vidrev-cont img {
    height: 20px;
    margin-right: 5px;
}

.hidden-sm {
    display: flex;
}
.hidden-sm div {
    margin-right: 20px;
}

.translate {
    margin-right: 45px;
}

.lr {
    display: flex;
    align-items: center;
}

.login-cont,
.register-cont {
    width: -moz-fit-content;
    width: fit-content;
}

.dot {
    margin: 0 10px;
    margin-right: 33px;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: #9eacbd;
}

.login {
    position: relative;
}
.login::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    height: 20px;
    width: 20px;
    transform: translate(-100%, -50%);
    /*background-color: #9eacbd;*/
    border-radius: 50%;
    padding: 0;
    background-image: url("../img/padlock-round.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.register {
    position: relative;
}
.register::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    height: 20px;
    width: 20px;
    transform: translate(-100%, -50%);
    background-image: url("../img/profile.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.tt {
    color: #9eacbd;
    border: none;
    background-color: transparent;
    position: relative;
}
.tt::after {
    content: "";
    height: 26px;
    width: 25px;
    background: url("../img/arrow-down.svg");
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
}

/* nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 20px;
  padding-right: 10px;
  background-color: #3d4b69;
  background: linear-gradient(90deg, #283245 0%, #131929 100%);
  position: relative;
  z-index: 9;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
} */

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

.nav-links li:not(:first-child) {
    margin-left: 30px;
}

.nav-links li a {
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-size: 9pt;
}

.logo {
    color: #fff;
    margin: 0;
    text-decoration: none;
}
.logo img {
    height: 30px;
}

.live {
    border: 1px solid #54778a;
    border-radius: 20px;
    padding: 9px 20px;
}

.live-illus {
    margin-right: 10px;
}
.live-illus img {
    width: 15px;
}

.live .h6 {
    color: #fff;
    font-size: 9pt;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc {
    background-color: #01b27a;
    color: #fff;
    border-radius: 15px;
    padding: 5px 10px;
    margin-left: 10px;
}

.nav-left {
    display: flex;
    align-items: center;
}

@media (min-width: 999px) {
    .nav-icon-5 {
        display: none !important;
    }
}
@media (max-width: 999px) {
    .hidden-sm {
        display: none;
    }
    .nav-screen {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3803921569);
        z-index: 9;
    }
    .nav-screen.open {
        display: block;
    }
    .nav-collapse {
        border-top: 0.5px solid rgba(254, 254, 254, 0.2039215686);
        padding-bottom: 10px;
        background-color: #3d4b69;
        background: linear-gradient(90deg, #283245 0%, #131929 100%);
        position: fixed;
        right: -100%;
        top: 68px;
        transition: right 0.3s ease;
        z-index: 9;
    }
    .nav-collapse .nav-links {
        flex-direction: column;
    }
    .nav-collapse.open {
        right: 0;
        overflow: hidden;
    }
    .nav-links li:not(:first-child) {
        margin: 0;
    }
    .nav-links li .nav-item {
        display: block;
        padding: 15px 20px;
        width: 100vw;
    }
}
@media (max-width: 500px) {
    .live {
        display: none;
    }
}
.landing {
    position: relative;
    height: 600px;
    background:
        linear-gradient(
            to right,
            rgba(16, 27, 47, 0.72),
            rgba(16, 27, 47, 0.72)
        ),
        url("../img/header-img-video.jpeg");
    background-size: cover;
    background-position: center;
}

.landing-txt {
    padding: 0 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-title {
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}
.landing-title span {
    font-family: "Playfair Display", serif !important;
    font-size: 24pt;
    letter-spacing: 1.2px;
}

.landing-sub {
    color: #fff;
    text-align: center;
    font-size: 11pt;
}

.cta-btn {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    border: none !important;
    color: #fff;
    font-size: 11pt;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #01b27a;
    background: linear-gradient(
        90deg,
        rgb(1, 178, 122) 0%,
        rgb(107, 232, 119) 100%
    );
}

.scroll-prompt {
    position: absolute;
    z-index: 998;
    bottom: 0px;
    left: 50%;
    margin-left: -80px;
    width: 160px;
    height: 160px;
}
.scroll-prompt .scroll-prompt-arrow-container {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -18px;
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow {
    animation-name: opacity;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
.scroll-prompt .scroll-prompt-arrow:last-child {
    animation-direction: reverse;
    margin-top: -6px;
}
.scroll-prompt .scroll-prompt-arrow > div {
    width: 36px;
    height: 36px;
    border-right: 5px solid #bebebe;
    border-bottom: 5px solid #bebebe;
    transform: rotate(45deg) translateZ(1px);
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(3px);
    }
    20% {
        transform: translateY(6px);
    }
    30% {
        transform: translateY(9px);
    }
    40% {
        transform: translateY(12px);
    }
    50% {
        transform: translateY(15px);
    }
    60% {
        transform: translateY(18px);
    }
    70% {
        transform: translateY(21px);
    }
    80% {
        transform: translateY(24px);
    }
    90% {
        transform: translateY(27px);
    }
    100% {
        transform: translateY(30px);
    }
}
@media (min-width: 500px) {
    .landing-title span {
        font-size: 28pt;
    }
}
@media (min-width: 999px) {
    .landing-title span {
        font-size: 40pt;
    }
}
@media (max-width: 500px) {
    .landing {
        height: 500px;
    }
    .scroll-prompt {
        bottom: -30px;
    }
}
.about {
    padding: 40px 0;
}
.video-cont iframe {
    width: 100%;
}

.title {
    color: #3d4b69;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
}
.title::before,
.title::after {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #3d4b69;
    position: absolute;
    top: 50%;
    transform: translate(20%, -50%);
}
.title::before {
    left: 0;
    top: 50%;
    transform: translate(-120%, -50%);
}

.title-accent {
    color: #00b27a;
    font-weight: 500;
}

.body-title {
    color: #3d4b69;
    font-size: 16pt;
    font-weight: 500;
}

.sub {
    font-size: 11pt;
}

.accent-link {
    color: #00b27a;
}

@media (max-width: 999px) {
    .title {
        font-size: 18pt;
        margin-left: 0;
    }
    .title::before {
        width: 0;
    }
    .body-title {
        font-size: 14pt;
    }
}
@media (max-width: 500px) {
    .sub,
    .accent-link {
        font-size: 9pt;
    }
}
.whyUs {
    padding: 40px 0;
}

.comp-sub {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14pt;
    text-align: center;
    color: #7d7d7d;
    letter-spacing: 1.3px;
}

.comp-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #333333;
    margin-bottom: 50px;
}

.comp-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.comp-card {
    flex: 0 1 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.comp-card-img {
    margin-bottom: 10px;
    width: 50px;
}

.comp-card-title {
    margin-bottom: 10px;
    font-size: 14pt;
    text-transform: capitalize;
}

.comp-card-title,
.comp-card-sub {
    text-align: center;
}

.comp-card-sub {
    font-size: 9pt;
}

@media (max-width: 768px) {
    .comp-sub {
        font-size: 11pt;
    }
    .comp-card-title {
        font-size: 12pt;
    }
}
@media (min-width: 768px) {
    .comp-cards {
        justify-content: space-around;
    }
    .comp-card-sub {
        font-size: 11pt;
    }
}
.plans {
    background-color: #f8f8f8;
    padding: 40px 0;
}

.yaga-pills-cont {
    display: grid;
    place-items: center;
    margin-bottom: 50px;
}

.yaga-pills {
    display: flex;
    border: 1px solid #333333;
    width: -moz-fit-content;
    width: fit-content;
}

.yaga-link {
    padding: 9px 20px;
    text-transform: uppercase;
    font-weight: 500;
}
.yaga-link.active {
    background-color: #333333;
    color: #fff;
}

.yaga-plans-cont {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.yaga-plan {
    flex: 0 1 400px;
    padding: 49px 20px 51px;
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    background: #fff;
    margin-bottom: 40px;
    border-radius: 5px;
}

.t2c {
    font-size: 11pt;
}

.yaga-plan-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 21px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.yp-img {
    background-image: linear-gradient(160deg, #fbf7f4 0%, #fefdfd 100%);
    position: relative;
    width: 162px;
    height: 162px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.percent {
    text-transform: capitalize;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.percent .p-Num {
    font-size: 38pt;
}
.percent .p-Sum {
    font-size: 12pt;
    margin: 0 5px 10px;
    position: absolute;
    top: 10px;
    color: #545454;
    font-weight: 500;
}
.percent .p-time {
    margin-left: 18px;
    font-size: 11pt;
    font-weight: 500;
    color: #545454;
}

.yp-link {
    display: block;
    padding: 12px 36px;
    border: 1px solid #086ad8;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    color: #086ad8;
}

.yp-cta-cont {
    margin-bottom: 30px;
}

.yp-feat {
    position: relative;
    display: block;
    list-style-type: disc;
    margin: 29px auto 0;
    max-width: 279px;
}
.yp-feat li {
    list-style: none;
    position: relative;
    position: relative;
    color: #696969;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 0 7px 15px;
}
.yp-feat li::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    height: 20px;
    width: 20px;
    background-image: url("../img/check.png");
    background-size: contain;
}
@media (max-width: 500px) {
    .yaga-plans-cont {
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: flex-start;
    }
    .yaga-plan {
        flex: 0 0 350px;
        margin-right: 30px;
        padding: 30px 20px 30px;
    }
    .yp-img {
        width: 100px;
        height: 100px;
    }
    .yp-img img {
        height: 50px;
    }
    .percent .p-Num {
        font-size: 30pt;
    }
    .yp-link {
        padding: 12px 36px;
        font-size: 11pt;
    }
    .yp-feat li {
        font-size: 11pt;
    }
}

.legal {
    padding: 60px 0;
    background-color: #fafafc;
}

.legal-title .title {
    margin-bottom: 0;
}

.legal-title {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.legal-title .lt-watermark {
    position: absolute;
    font-size: 70pt;
    font-family: "Playfair Display", serif !important;
    text-transform: uppercase;
    text-align: center;
    left: 50%;
    bottom: 50%;
    width: 100%;
    transform: translate(-50%, 50%);
    opacity: 0.05;
}

.legal-img {
    max-height: 500px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}

.legal-txt {
    margin-bottom: 40px;
    font-size: 11pt;
}

.yaga2-pills {
    margin-bottom: 30px;
}

.yaga2 .nav-link {
    color: #00b27a;
}
.yaga2 .nav-link:hover {
    cursor: pointer;
}
.yaga2 .nav-link.active {
    background-color: transparent;
}

#y2c-1 ul {
    padding-left: 0;
}
#y2c-1 ul li {
    margin-bottom: 10px;
    font-size: 11pt;
}

.legal-row {
    align-items: center;
}

.doc-download {
    height: 250px;
    width: 320px;
    border: 1px solid #e9ecef;
    position: relative;
    background-image: url("../img/fx.png");
    background-size: cover;
}
.doc-download a {
    color: #0d151e;
}
.doc-download:hover {
    border-color: #cfd2d6;
    cursor: pointer;
}

.dd-cap {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e9ecef;
    padding: 10px;
    background-color: #fff;
}

.dd-img {
    padding: 10px 0;
}
.dd-img img {
    width: 20px;
}

.dd-desc p {
    margin: 0;
}

@media (max-width: 1200px) {
    .legal-title .lt-watermark {
        font-size: 50pt;
    }
}
@media (max-width: 999px) {
    .legal-title .lt-watermark {
        font-size: 40pt;
        text-align: left;
        line-height: 1;
    }
    .legal-img {
        margin-bottom: 20px;
    }
    .legal-txt {
        font-size: 11pt;
    }
}
.live-stats {
    background-color: #00202f;
    padding: 60px 0;
}

.glider {
    padding-bottom: 10px;
}

.glider div {
    background-color: #fff;
}

.glider-contain {
    padding-right: 10px;
}

.update-bloc {
    background-color: #fefefe;
    padding: 30px 20px;
    border-radius: 10px 10px 0 0;
}

.ubs-desc {
    display: flex;
    flex-direction: column;
}
.ubs-desc h4 {
    margin-bottom: 0;
}
.ubs-desc span {
    margin-bottom: 10px;
    font-size: 11pt;
}
.ubs-desc a {
    font-size: 9pt;
    color: #333333;
}

.ub-item h6 {
    margin-bottom: 5px;
}
.ub-item p {
    margin: 0;
    font-size: 9pt;
}

.glider-next {
    right: 0;
}

.update-bloc-btm {
    padding: 20px;
    background: linear-gradient(90deg, #283245 0%, #131929 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ubb-item {
    flex: 0 1 200px;
    display: flex;
    align-items: center;
    color: #fff;
}
.ubb-item img {
    width: 20px;
    margin-right: 15px;
}
.ubb-item h5 {
    margin-bottom: 0;
    font-size: 11pt;
}
.ubb-item p {
    margin-bottom: 0;
    color: #587e8c;
    font-size: 9pt;
}

@media (max-width: 767px) {
    .ubs-desc {
        margin-bottom: 20px;
    }
    .ubs-desc span {
        margin-bottom: 5px;
    }
    .ubb-item {
        flex: 0 1 50%;
    }
    .ubb-item h5 {
        font-size: 9pt;
    }
    .ubb-item p {
        font-size: 7pt;
    }
    .ub-item h6 {
        margin-bottom: 5px;
        font-size: 11pt;
    }
    .ub-item p {
        font-size: 9pt;
    }
}
@media (max-width: 999px) {
    .ubb-item {
        margin-bottom: 20px;
    }
    .update-bloc-btm {
        padding-bottom: 0;
    }
}
.reff {
    padding: 40px 0 50px;
    position: relative;
    background: #fafafc;
}
.reff::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: url("../img/partners-d1.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.reff::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url("../img/partners-d2.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.reff .sub {
    z-index: 10;
    position: relative;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto 0;
}
.rating h6 {
    font-size: 15pt;
    margin-bottom: 5px;
}

.star-count {
    display: flex;
    margin-bottom: 20px;
}
.star-count img {
    width: 30px;
}

.ft-top-img {
    width: 100%;
}

@media (min-width: 999px) {
    .col-lg-1_5 {
        flex: 0 0 15% !important;
        max-width: 15% !important;
    }
}
.ft-top-row {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    justify-content: space-between;
}

.ft-top-col {
    width: 12.5%;
    float: left;
    text-align: center;
    vertical-align: middle;
}
.ft-top-col img {
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .ft-top-col {
        width: 24%;
        display: inline-block;
        float: none;
        margin: 5px 0;
    }
    .ft-top-col img {
        height: 50px;
    }
}
@media screen and (max-width: 540px) {
    .ft-top-col {
        width: 42%;
        display: inline-block;
        float: none;
        margin: 5px 0;
    }
    .ft-top-col img {
        height: 50px;
    }
}
.ft-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ft-col {
    flex: 0 0 300px;
    margin-bottom: 20px;
}

footer {
    background-color: #fafafc;
    padding: 30px 0;
}

.ft-col {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

.ft-links {
    list-style: none;
    padding: 0;
}

.ft-link-title {
    font-size: 14pt;
    margin-bottom: 15px;
}

.ft-link {
    margin-bottom: 10px;
}
.ft-link a {
    color: #9eacbd;
    text-decoration: none;
    font-size: 11pt;
}

.ft-logo {
    margin-bottom: 10px;
}
.ft-logo img {
    height: 30px;
}

.ft-sub {
    font-size: 11pt;
}

@media (max-width: 999px) {
    .ft-sub {
        font-size: 9pt;
    }
    .ft-link-title {
        font-size: 11pt;
    }
    .ft-link {
        margin-bottom: 5px;
    }
    .ft-link a {
        font-size: 9pt;
    }
    .sm-mb-4 {
        margin-bottom: 40px;
    }
} /*# sourceMappingURL=style.css.map */
