/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Plus Jakarta Sans", Helvetica;
    color: #1B1B1B;
}

a {
    color: #1B1B1B;
    text-decoration: none;
}

a:hover {
    color: #666666;
    text-decoration: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1B1B1B;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #666666;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(185, 192, 199, 0.9);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
}

#header .logo a {
    color: #1B1B1B;
    font-family: "Vidaloka", Helvetica;
    font-weight: 400;
    font-size: 24px;
    display: flex;
    align-items: center;
}

#header .logo img {
    max-height: 32px;
    margin-right: 10px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar .nav-none,
.navbar .nav-none:hover {
    cursor: default;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #1B1B1B;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #1B1B1B;
}

.navbar .register-now,
.navbar .register-now:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    border: 1px solid #1B1B1B;
    font-weight: 600;
    background-color: #1B1B1B;
}

.navbar .register-now:hover,
.navbar .register-now:focus:hover {
    color: #1B1B1B;
    background: #FFFFFF;
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: #1B1B1B;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(102, 102, 102, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #1B1B1B;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #666666;
}

.navbar-mobile .register-now,
.navbar-mobile .register-now:focus {
    margin: 15px;
    color: #FFFFFF;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 70vh;
    background-image: url("../img/bg-hero.png");
    background-size: cover;
    background-repeat: no-repeat;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #1B1B1B;
}

#hero h2 {
    color: #727070;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}

#hero .btn-take-a-look {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #FFFFFF;
    background: #1B1B1B;
    border: 1px solid #1B1B1B;
}

#hero .btn-take-a-look .bi-chevron-down {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

#hero .btn-take-a-look:hover {
    color: #1B1B1B;
    background: #FFFFFF;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 60vh;
        text-align: center;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-take-a-look {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

section .container .custom-row {
    display: flex;
    align-items: center;
}

section .frame-18 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
    margin: 15px 0px 10px;
}

section .frame-18 .line {
    position: relative;
    width: 110px;
    height: 1px;
    object-fit: cover;
}

section .frame-18 .text-custom {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Merriweather Sans", Helvetica;
    font-weight: 400;
    color: #666666;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    white-space: nowrap;
}

.section-bg {
    background-color: #1C1C1C;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    color: #FFFFFF;
}

.section-title p {
    margin-bottom: 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
}

.section .content h3 {
    font-weight: 600;
    font-size: 44px;
    color: #1B1B1B;
    padding: 20px 0px;
}

.section .content p {
    font-weight: 400;
    font-size: 16px;
    color: #666;
    padding-bottom: 60px;
}

.section {
    padding: 60px 0 0 !important;
}

@media (max-width: 991px) {
    #section-2 .content {
        order: 2;
    }

    #section-2 .img-custom {
        order: 1;
    }

    #section-2 .img-fluid,
    #section-3 .img-fluid {
        padding-bottom: 0px !important;
    }

    .pricing-section .count-down .text {
        text-align: center !important;
    }

    .pricing-section .count-down .list-time ul {
        justify-content: center !important;
    }
}

#section-1,
#section-3 {
    background-color: #F6F6F6;
}

#section-2,
#register,
#pricing {
    background-color: #F6EDE4;
}

#register {
    padding-bottom: 30px;
}

#pricing {
    padding: 0px 0px 120px;
}

#section-2 .img-fluid,
#section-3 .img-fluid {
    padding-bottom: 60px;
}


/*--------------------------------------------------------------
# Email
--------------------------------------------------------------*/
.pricing-section .email {
    position: relative;
    height: auto;
    background-image: url(../img/bg-email.png);
    background-size: cover;
    background-position: 50% 50%;
}

.pricing-section .email h4 {
    color: #1B1B1B;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
}

.pricing-section .email {
    border-radius: 36px;
    border: 1px solid #BBA89A;
    margin: 50px 0px 10px;
}

.pricing-section .email .t1 {
    margin-top: 20px;
}

.pricing-section .email .t2 {
    margin-top: -50px;
}

.pricing-section .email form {
    margin-top: 30px;
    background: #fff;
    padding: 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
    border: 1px solid #BBA89A;
}

.pricing-section .email form input[type=email] {
    border: 0;
    padding: 8px 8px;
    width: calc(100% - 100px);
}

.pricing-section .email form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    font-weight: 600;
    background: #1B1B1B;
    color: #fff;
    transition: 0.3s;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


/*--------------------------------------------------------------
# Count down
--------------------------------------------------------------*/

.pricing-section .count-down {
    display: flex;
    align-items: center;
    position: relative;
}

.pricing-section .count-down .text {
    text-align: right;
}

.pricing-section .count-down h4 {
    font-size: 32px;
    font-weight: 700;
    color: #403124;
}

.pricing-section .count-down .list-time {
    z-index: 9;
}

.pricing-section .count-down .list-time ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.pricing-section .count-down .list-time ul span {
    color: #FF4D4F;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-section .count-down .list-time ul li {
    color: #BBA89A;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing-section .section-title h2 {
    color: #1B1B1B;
    font-size: 44px;
    font-weight: 600;
}

.pricing-section .section-title p {
    color: #858585;
    font-size: 20px;
    font-weight: 400;
}


.pricing-section .row {
    padding-top: 40px;
}

.pricing-section .pricing-section-row {
    padding: 20px 0px 50px;
}

.pricing-section .box {
    padding: 30px 35px 20px;
    margin: 0px 8px;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #8A796A;
    margin-top: 40px;
    text-align: center;
}

.pricing-section h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 32px;
    color: #2F2D2C;
    position: relative;
}

.pricing-section .box p {
    font-weight: 600;
    font-size: 18px;
    color: #858585;
}

.pricing-section .group-5 {
    position: absolute;
    top: 60%;
    left: 50%;
}

.pricing-section .group-5 .overlap-group-2 {
    position: relative;
    height: 48px;
}

.pricing-section .group-5 .text-custom-1 {
    position: absolute;
    left: 18px;
    font-weight: 500;
    color: #d0cdcd;
    font-size: 32px;
    text-align: center;
    line-height: 48px;
    letter-spacing: 0;
    white-space: nowrap;
}

.pricing-section .group-5 .text-custom-2 {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    color: #d0cdcd;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
}

.pricing-section .group-5 .vector-3 {
    position: absolute;
    height: 2px;
    top: 29px;
    left: 12px;
}

.pricing-section .one-number {
    transform: translate(-50%, -50%) translateX(-80px);
}

.pricing-section .two-number {
    transform: translate(-50%, -50%) translateX(-110px);
}

.pricing-section .three-number {
    transform: translate(-50%, -50%) translateX(-135px);
}


.pricing-section h4 {
    font-size: 48px;
    color: #2F2D2C;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
}

.pricing-section h4 sup {
    font-size: 32px;
    font-weight: 600;
}

.pricing-section h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing-section ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
    margin: 10px 0px 40px;
}

.pricing-section .pricing-row ul li {
    padding: 7px;
    position: relative;
    display: flex;
}

.pricing-section ul li img {
    margin-right: 15px;
}

.pricing-section ul li span {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #858585;
}

.pricing-section .buy-btn {
    padding: 12px 35px;
    border-radius: 50px;
    color: #FFFFFF;
    transition: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #1B1B1B;
    background: #1B1B1B;
    display: block;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.pricing-section .buy-btn:hover {
    background: #FFFFFF;
    color: #1B1B1B;
}

.pricing-section .featured {
    margin-top: 0px;
    position: relative;
}

.pricing-section .featured .tag {
    position: absolute;
    width: 144px;
    height: 112px;
    top: 0;
    right: 0;
}

.pricing-section .featured .tag .overlap-3 {
    position: relative;
    width: 122px;
    height: 110px;
    left: 22px;
    background-image: url(../img/vector-76.svg);
    background-size: 100% 100%;
}

.pricing-section .featured .tag .popular {
    position: absolute;
    top: 29px;
    left: 44px;
    transform: rotate(41.09deg);
    font-weight: 600;
    color: #1B1B1B;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 27px;
    white-space: nowrap;
}

.pricing-section .rw {
    position: absolute;
    width: 160px;
    right: 0;
    bottom: -25px;
}

.pricing-section .or p {
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    margin: 15px 0px 10px;
    text-align: center;
}

.pricing-section .btn-gg {
    padding: 0;
    margin: 5px 0px 50px;
    display: flex;
    justify-content: center;
}

.pricing-section .btn-gg .g-signin2 .abcRioButton {
    padding: 5px 20px !important;
    border-radius: 20px !important;
    height: auto !important;
    width: auto !important;
}

@media (max-width: 992px) {
    .pricing-section .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing-section .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing-section .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}


#footer {
    background-color: #1C1C1C;
    padding: 60px 0px;
}

#footer h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    font-family: "Vidaloka", Helvetica;
}

#footer h3 img {
    width: 36px;
    margin-right: 8px;
}

#footer p {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

#footer img {
    width: 24px;
    margin-right: 7px;
}

#thank img {
    width: 100%;
}

#thank .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

#thank .modal-body {
    padding: 0;
}