* {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

html {
    overflow-x: hidden;
}

body {
    /* background: #010101; */
    overflow-x: hidden;
}

.first-block {
    height: 100vh;
}

.first-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.footer {
    background: #070602;
    padding: 45px 0;
}

.footer .nav-item {
    color: #aaaaaa;
    font-size: 16px;
    margin-top: 15px !important;
}

.footer .text-content {
    padding-top: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.footer .nav-title {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    margin-top: 20px;
}

.footer .nav-description {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
}

.navbar a {
    font-style: normal;
    font-weight: normal;
    color: #17181E;
    text-decoration: none;
    transition-duration: 0.5s;
}

.navbar a:hover {
    color: #6A70FF;
}

#login {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    padding: 8px 30px;
    margin-right: 10px;
    transition-duration: 0.5s;
}

#login:hover {
    color: #000;
    border: 1px solid #000;
}

#registration,
.basic-btn {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    border: 2px solid #74CAEE;
    border-radius: 5px;
    background: transparent;
    padding: 12px 32px;
    transition-duration: 0.5s;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-bg {
    background: #DEF3FE;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    opacity: 0.8;
    border-radius: 5px;
    transition-duration: .3s;
}

.basic-btn:hover .btn-bg {
    top: 0;
    left: 0;
    opacity: 1;
}

#registration:hover,
.basic-btn:hover {
    background: transparent !important;
    color: #0025E8 !important;
    border-color: #0025E8 !important;
}

.modal-container {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    background: rgba(253, 253, 253, 0.75);
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    /* background: transparent; */
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-container .custom-modal {
    width: 460px;
    border-radius: 8px;
}

.modal-container .custom-modal .modal-head {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.modal-container .custom-modal .modal-head div {
    width: 50%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding-bottom: 10px;
}

.modal-container .custom-modal .modal-head div.active {
    border-bottom: 3px solid #6A70FF;
}

.modal-container .custom-modal .modal-head i {
    position: absolute;
    top: -10px;
    right: -5px;
}

.modal-container.active {
    display: flex;
}

.custom-modal {
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    background: #fff;
    box-shadow: inset -5px -5px 250px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    position: relative;
    z-index: 5;
    box-shadow: 1px 4px 10px 6px rgba(34, 60, 80, 0.2);
}

.custom-modal form {
    padding-top: 20px;
}

.custom-modal form #phone {
    padding-left: 45px;
    width: 100%;
    margin-top: 3px !important;
    margin-bottom: 8px !important;
}

.custom-modal .forgot-pass-btn {
    text-align: center;
    opacity: 0.7;
    margin-top: 20px;
    cursor: pointer;
}

.custom-modal #forgot_pass,
#reset_pass {
    text-align: center;
}

.custom-modal #forgot_pass p {
    /* color: #fff; */
    padding: 12px;
}

.custom-modal #forgot_pass .success-message {
    color: green;
}

.custom-modal form input.error {
    border-color: rgb(252, 110, 110) !important;
    margin-bottom: 0 !important;
}

.custom-modal form label.error {
    color: rgb(252, 110, 110) !important;
}

.custom-modal form .error-form {
    color: rgb(252, 110, 110) !important;
    text-align: center;
}

.custom-modal form .modal-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.custom-modal form .modal-input input {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    border: 2px solid #e3e3e3;
    /*     color: #88949C; */
    border-radius: 4px;
    outline: none;
    margin-top: 5px;
    margin-bottom: 10px;
}

.custom-modal form .modal-input label {
    font-weight: 200;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}

.custom-modal form button {
    border-radius: 12px;
    width: 100%;
    padding: 17px 0;
    border: none;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
}

.custom-modal .modal-body form {
    display: none;
}

.custom-modal .modal-body form.active {
    display: block;
}

.modal-body #login,
.modal-body #registration,
.custom-modal form button {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    border: 1px solid #0025E8;
    border-radius: 10px;
    background: #0025E8;
    padding: 12px 20px;
}

.modal-body #login:hover,
.modal-body #registration:hover,
.custom-modal form button:hover {
    background: transparent !important;
    color: #0025E8;
    border: 1px solid #0025E8;
}

.modal-footer {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.header {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 4;
    filter: drop-shadow(0px 9px 29px rgba(0, 0, 0, 0.11));
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content img {
    width: 150px;
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav-item {
    color: #17181E;
    text-decoration: none;
    font-size: var(--basic-font-size);
    line-height: var(--basic-line-height);
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition-duration: 0.5s;
}

.nav-item:hover {
    color: #6A70FF;
}

.login-nav {
    display: flex;
    position: relative;
    align-items: center;
}

.login-nav .user-info {
    display: flex;
    align-items: center;
}

.login-nav .balance-container {
    display: none;
}

.login-nav .balance-container.active {
    display: flex;
}

.nav-icons,
.mobile-nav-user {
    display: none;
}

.mobile-nav-user.active {
    display: none;
}

.nav-icons .mobile-nav-user i {
    color: #fff;
    font-size: 50px;
    margin-right: 20px;
}

.login-nav .name,
.login-nav .lastname,
.login-nav .balance,
.login-nav span {
    margin: 0 5px;
    color: #17181E;
    font-size: 16px;
    cursor: pointer;
}

.login-nav span {
    color: rgb(163, 163, 163);
    margin: 0 !important;
}

.login-nav .balance {
    color: rgb(0, 194, 0);
}

.user-settings {
    position: absolute;
    width: 145px !important;
    top: 55px;
    right: 17px;
    z-index: 10;
    width: max-content;
    background: linear-gradient(180deg,
            #2a2836 83.52%,
            rgba(255, 255, 255, 0.11) 129.09%);
    text-align: start;
    font-size: 14px;
    font-weight: bold;
    display: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.user-settings .title {
    font-size: 22px;
}


.user-settings.active {
    display: block;
}

.user-settings .settings-item {
    padding: 10px;
    /* border-bottom: 1px solid rgb(209, 209, 209); */
    cursor: pointer;
}

.user-settings .settings-item a {
    text-decoration: none;
    color: #fff;
}

.user-settings .settings-item:hover,
.user-settings .settings-item:hover a {
    color: #6A70FF !important;
}

.mobile-nav-btn {
    display: none;
    color: #000;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 3px 15px;
    width: 23px;
}

.mobile-nav-btn i {
    font-size: 26px;
}

.logo-container {
    display: flex;
    justify-content: space-between;
}

.mobile-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-settings .title {
    display: none;
}

.nav-item i {
    font-size: 10px;
    cursor: pointer;
    margin-left: 3px;
}

.navbar .nav-dropdown-open:hover i {
    color: #ffe600;
}

.nav-dropdown-open {
    position: relative;
}

.nav-dropdown-open:hover {
    color: #ffe600 !important;
}

.open_dropdown {
    position: relative;
}

.nav-dropdown {
    padding: 5px 0;
    width: max-content;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    left: 0;
    top: 30px;
    display: none;
    /*     background: linear-gradient(
        180deg,
        #111018 93.52%,
        rgba(255, 255, 255, 0.61) 129.09%
    ); */
    background-color: #fff;
    backdrop-filter: blur(2px);
    z-index: 10;
    transition-duration: 0.5s;
}

.nav-dropdown.active {
    display: flex;
}

.nav-dropdown .nav-item {
    padding: 8px 0 !important;
}


.button {
    /* margin: 0 0 60px; */
    text-align: center;
}


.lang_bl img {
    width: 25px !important;
    height: 15px !important;
}


.lang_assets {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 5px 0;
    display: none;
}

.lang_assets.active {
    display: block;
}

.lang_assets li {
    list-style-type: none;
}

.study {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.study .study-header {
    width: 100%;
    padding: 150px 0 100px;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.study .study-header .title {
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    color: #FFFFFF;
}

.study .study-header .subtitle {
    margin-top: 30px;
    width: 50%;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.study .study-nav {
    width: 100%;
    padding: 20px 0;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-hours-container {
    background: #fff;
    padding: 20px 20px 50px 20px;
}

.work-hours-head {
    display: flex;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 20px 0 20px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.work-hours-table {
    display: flex;
    justify-content: space-between;
    color: #000;
    border-left: 1px solid #c6ced3;
    border-right: 1px solid #c6ced3;
    border-bottom: 1px solid #c6ced3;
    padding: 10px 0 10px 15px;
}

.work-hours-head-item {
    width: 25%;
    font-size: 25px;
    font-weight: 800;
}

.work-hours-table-item {
    width: 25%;
    font-size: 15px;
    font-weight: 500;
    margin-left: 13px;
}

.last-item {
    width: 20%;
}

.last-table {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.bg-ellipse {
    position: absolute;
    z-index: 1;
}

.bg-dots {
    position: absolute;
    z-index: 1;
}

.study .study-nav .text {
    width: 80%;
}

.study .study-nav span {
    color: #0025E8 !important;
}

.study .study-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.study .study-content .text {
    width: 50%;
    display: flex;
    /*     justify-content: center;
    align-items: center; */
    flex-direction: column;
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.study .study-content .study-content-nav {
    width: 30%;
    margin-top: 60px;
}

.study .study-content .text .title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-align: start;
    color: #302F2D;
    margin: 60px 0 30px;
}

.study .study-content .text .description {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(48, 47, 45, 0.8);
    text-align: start;
}

.study .study-content .text .description span {
    color: #0025E8 !important;
}

.study .study-content .text img {
    width: 100%;
    margin-top: 20px;
}

.study .study-content .study-content-nav .action {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #A8BAD3;
    margin: 5px 0 5px 50%;
}

.study .study-content .study-content-nav .action.active {
    font-weight: bold;
    font-size: 20px;
    color: #0025E8 !important;
}

.terms {
    background: #EEEEEE;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    outline: none;
    border: none;
    margin: 0 10px;
    text-decoration: none;
    color: #000;
}


@media screen and (max-width: 1200px) {
    .header-content {
        width: 95%;
    }
}

@media screen and (max-width: 820px) {

    .work-hours-table-item,
    .work-hours-head-item {
        font-size: 10px;
    }

    .work-hours-container {
        padding: 20px 0 !important
    }

    .study .study-content .text,
    .study .study-content .text .title {
        width: 88%;
    }

    .lang_bl {
        margin: 20px 0;
    }

    #registration,
    #login {
        width: 100%;
    }


    .header-content img {
        width: 200px;
    }

    .nav-dropdown {
        padding: 5px 10px;
        top: 50px;
    }

    .open_dropdown .nav-item {
        margin-left: 0 !important;
    }

    .footer .text-content {
        text-align: center;
    }

    .footer .text-content {
        padding: 20px 15px;
    }

    .user-settings .title {
        display: flex;
        flex-direction: column;
        padding: 0 8px;
    }

    .user-settings .title .balance {
        color: green;
        margin-left: 3px;
    }

    .user-settings .user-info {
        display: flex;
    }

    .user-settings .user-info .name {
        margin-right: 5px;
    }

    .user-settings {
        width: 100% !important;
        top: 66px;
        right: 0 !important;
        padding-bottom: 30px;
        font-size: 20px;
        background: #061333;
    }

    .header-content,
    .login-nav,
    .navbar,
    .mobile-nav {
        display: flex;
        flex-direction: column;
    }

    .navbar {
        align-items: flex-start;
    }

    .navbar .nav-item {
        margin-top: 25px;
        font-size: 20px;
        margin-left: 0;
    }

    .nav-dropdown .nav-item {
        margin-top: 5px;
    }

    #login {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .mobile-nav {
        align-items: initial;
        height: 0;
        overflow: hidden;
        animation: close_nav 1s;
    }

    .mobile-nav.active {
        height: max-content;
        animation: open_nav 1s;
    }

    .logo-container {
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgb(153, 153, 153);
    }

    .mobile-nav-btn,
    .nav-icons {
        display: flex;
    }

    .mobile-nav-btn .fa-bars.remove,
    .mobile-nav-btn .fa-times.remove {
        animation: change_nav_btn 1s;
    }

    .login-nav {
        margin: 10px 0 20px;
        align-items: baseline;
        /* justify-content: space-between; */
        /* height: 85px; */
    }

    .button {
        display: flex;
        justify-content: center;
        margin-top: 20px !important;
    }

    .lang_bl img {
        width: 25px !important;
        height: 15px !important;
        margin-left: 1px;
        margin-top: 20px;
    }

    .lang_bl .dropdown {
        position: relative;
        z-index: 9;
    }

    .lang_assets.active {
        display: flex;
    }

    .lang_assets {
        top: -5px;
        left: 30px;
    }

    .footer .nav-description {
        color: #fff;
        font-size: 14px;
        font-style: normal;
        font-weight: 200;
        width: 80%;
        text-align: center;
    }

}

.custom-modal label {
    display: none;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-button {
    background-color: #666;
    height: 0;
}

::-webkit-scrollbar-track {
    background-color: #999;
}

::-webkit-scrollbar-track-piece {
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    border-radius: 3px;
}

::-webkit-scrollbar-corner {
    background-color: #999;
}

/* .nav-item {
    visibility: hidden;
} */



/* new style */


body {
    min-width: 375px;
}

* {
    font-family: Gilroy, sans-serif;
}


.agreement {
    color: #17181E;
    text-decoration: none;

}

.agreement:hover {
    color: #6A70FF;
}





/* new styles */

.title {
    font-style: normal;
    font-weight: 700;
    font-size: 68px;
    line-height: 86px;
    text-align: center;
}

.undertitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #238BE2;
}

.subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 59px;
    line-height: 70px;
    text-align: center;
}

.smalltitle {
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 52px;
    color: #302F2D;
}

.description {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -0.035em;
    color: #302F2D;
    text-align: center;
}

.blue-line {
    width: 100%;
    height: 400px;
    background: #0025E8;
}

.investments {
    background: #FCF9F0;
}

.investments .basic-btn {
    padding: 15px 50px;
    background: #fff;
    color: #0025E8;
}

.profit {
    background: #252331;
    padding: 40px 20px;
    border-radius: 40px;
}

.user__wrap {
    padding: 36px 36px 36px 222px;
}

.market-noclick {
    background: transparent;
    z-index: 2;
    position: absolute;
    top: 0;
    width: 190px;
    height: 450px;
}


.user__avatar {
    width: 140px;
    height: 140px;
    bottom: -45%;
    left: 50px;
    transform: translate(0%, 0%);
}

.review__wrap {
    margin: 20px 20px;
}

.review {
    box-shadow: 0 4px 20px #D1D1D1;
    border-radius: 15px;
    overflow: hidden;
}

.user__wrap {
    background-color: #417CCA;
    color: #FFFFFF;
    padding: 20px 36px 55px 36px;
}

.user__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 162%;
    text-align: center;
}

.user__subtitle {
    font-weight: 700;
    font-size: 11px;
    line-height: 23px;
}

.user__review {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

.user__avatar {
    width: 115px;
    height: 115px;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 50%;
    border: 8px solid #FFFFFF;
    overflow: hidden;
}

.user__review__wrap {
    padding: 65px 20px 20px 20px;
}

.review__img1 {
    width: 47px;
}

.review__img2 {
    width: 117px;
}

.reviews__wrap>.slick-prev {
    right: 75px;
    width: 30px;
    height: 30px;
    z-index: 2;
    position: absolute;
    top: -15px;
    border: none;
    border-radius: 25px;
    background: #92bfe6;
    color: #fff;
    font-size: 20px;
    display: none !important;
}

.reviews__wrap>.slick-next {
    right: 25px;
    width: 30px;
    height: 30px;
    z-index: 2;
    position: absolute;
    top: -15px;
    border: none;
    border-radius: 25px;
    background: #92bfe6;
    color: #fff;
    font-size: 20px;
    display: none !important;
}

.slick-dots li::marker {
    content: '';
}

.slick-dots {
    display: flex;
    justify-content: space-between;
    width: 355px;
    margin: 0 auto;
    padding: 0 !important;
}

.slick-dots li button {
    width: 19px !important;
    height: 19px !important;
    border-radius: 12px !important;
    color: transparent !important;
    border: none !important;
}



.slick-dots li.slick-active button {
    background-color: #417CCA !important;
}

.slick-prev:before,
.slick-next:before {
    color: #417CCA;
    font-size: 50px;
}


/* .slick-dots li button:before {
    display: none !important;
} */

.account {
    padding: 25px;
    background: #DEF3FE;
}

.account .account-title {
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 40px;
    color: #302F2D;
}

.account .account-description {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}

.account-feature {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    color: #302F2D;
}

/*-------------FAQ-----------------*/

.btn-faq {
    text-decoration: none;
    display: block;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    color: #1a1b1d;
    margin: 15px 0;
    border-bottom: 2px solid #0575F6;
    padding-bottom: 15px;
}

.onclick {
    border-bottom: 2px solid #DEDEDE;

}

.onclick:after {
    content: "";
    right: 15px !important;
    border-left: 3px solid #DEDEDE !important;
    border-bottom: 3px solid #DEDEDE !important;
    transform: rotate(135deg) translateY(-50%) !important;
}

.btn-faq:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 35%;
    height: 15px;
    width: 15px;
    border-left: 3px solid #0575F6;
    border-bottom: 3px solid #0575F6;
    transform: rotate(-45deg) translateY(-50%);
}

.btn-faq:hover {
    color: #000;
}

.card {
    border: 0 !important;
}

.stat-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 49px;
}

.stat-description {
    font-weight: 200;
    font-size: 15px;
    line-height: 24px;
}

.circle {
    background-color: #A0C6D6;
    height: 12px;
    width: 12px;
    border-radius: 50px;
}


.formwrap {
    background-color: #252331;
    border-radius: 15px;
    margin-top: 70px;
}

.contact_us {
    margin-top: 50px;
    margin-bottom: 40px;
}

#contact_us .error {
    color: red !important;
}

#contact_us .form-input,
#contact_us2 .form-input {
    display: flex;
    flex-direction: column;
}

#contact_us3 .form-input {
    display: flex;
    flex-direction: column;
}

#contact_us .form-input label,
#contact_us2 .form-input label,
#contact_us3 .form-input label {
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    padding: 0;
    color: #fff;
}

#contact_us .form-input input,
#contact_us2 .form-input input {
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    padding: 8px 0;
    max-width: 340px;
    font-size: 24px;
    color: #fff;
}

#contact_us3 .form-input input {
    border: 1px solid rgba(10, 27, 38, 0.2);
    border-radius: 5px;
    background: transparent;
    outline: none;
    padding: 10px 17px;
    width: 100%;
    font-size: 18px;
    color: #fff;
}

#contact_us .form-input input::placeholder,
#contact_us2 .form-input input::placeholder {
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    color: rgba(255, 255, 255, 0.4);
}

#contact_us3 .form-input input::placeholder {
    font-weight: normal;
    font-size: 18px;
    line-height: 29px;
    color: rgba(0, 0, 0, 0.36);
}

#contact_us .form-button,
#contact_us2 .form-button {
    display: flex;
    align-items: flex-end;
}

#contact_us3 .form-button {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#contact_us .form-button button,
#contact_us2 .form-button button,
#contact_us3 .form-button button {
    background: #DEF3FE;
    color: #001E2A;
    padding: 10px 46px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    margin-left: 10px;
    font-weight: 600;
    transition: background 0.6s ease;
}

#contact_us .form-button button:hover,
#contact_us2 .form-button button:hover,
#contact_us3 .form-button button:hover {
    background: #a7e0fe;
}

.message {
    color: #A3A3A3;
    opacity: 0.5;
}

.newbie {
    background-color: #F4F4F4;
    padding: 25px 20px;
}

.newbie .button a {
    border: 2px solid #0025E8;
    border-radius: 5px;
    padding: 8px 12px;
    text-decoration: none;
}

.newbie-container {
    bottom: -20px;
}

.mycarousel-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 350px;
    width: 100%;
    margin: 0 32px;
    padding: 20px;
    background: #EEEEEE;
    border: 1px solid rgba(230, 236, 239, 0.2);
    border-radius: 20px;
}
.mycarousel-item .left .title,
.mycarousel-item .right .title{
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
}
.mycarousel-item .left .title,
.mycarousel-item .right .cost{
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    white-space: nowrap;
}
.mycarousel-item .left .period{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 10px;
}
.mycarousel-item .right .profit{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #00AC26;
    margin-top: 10px;
}
.mycarousel-item .center{
    max-width: 180px;
}
.mycarousel-item .center img{
    width: 100%;
    height: auto;
}


@media screen and (max-width: 600px) {
    .newbie-container {
        bottom: -40px;
    }

    .blue-line {
        height: 150px;
    }

    .title {
        font-size: 28px;
        line-height: 110%;
    }

    .subtitle,
    .smalltitle {
        font-size: 24px;
        line-height: 110%;
    }

    .description {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        letter-spacing: 0.02em;
    }
}