:root {
    --orange: #C96125;
    --dark-blue: #141A38;
    --white: #ffffff;
    --base-font: 'Lato', sans-serif;
    --rmarket-green: #4A9837;
    --rmarket-green-hover: #2e5e21;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /*zoom: 0.8;*/
}

html, body, div {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    background-color: var(--white);
    font-family: var(--base-font);
}

.content {
    overflow: hidden;
}

.hide-on-mobile {
    display: none;
}

.container_1260 {
    display: block;
    width: 100%;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container {
    display: flex;
    width: 100%;
    padding-top: 20px;
}

#hero {
    background-image: url("/static/images/hero_bg.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    margin-bottom: -90px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content .left-col {
    width: clamp(400px, 100%, 740px);
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 42px);
    line-height: clamp(30px, 5vw, 49px);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 0;
}

.hero-content h1 .blue {
    font-size: clamp(46px, 8vw, 86px);
    line-height: clamp(52px, 8vw, 106px);
    color: var(--dark-blue);
    font-weight: 900;
    margin: 15px 0;
}

.hero-content p {
    font-size: clamp(20px, 3vw, 25px);
    line-height: clamp(28px, 3vw, 35px);
    color: var(--white);
}

.hero-btns-container {
    display: flex;
    flex-wrap: wrap;

}

.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 16px 26px 18px;
    max-width: 240px;
    font-size: clamp(23px, 3vw, 30px);
    line-height: clamp(26px, 3vw, 36px);
    font-weight: 900;
    text-align: center;
    border-radius: 100px;
    margin: 0 auto;
    margin-top: 10px;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.hero-btn.inverted {
    background-color: var(--orange);
}

.hero-btn.inverted:hover {
    background-color: var(--white);
}

.hero-setlak {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    width: clamp(280px, 50vw, 370px);
    height: auto;
}

.card_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

#firstCard {
    padding: 90px clamp(50px, 13vw, 230px) 0;
    background-color: var(--dark-blue);
    font-size: clamp(22px, 3vw, 30px);
    line-height: clamp(26px, 3vw, 36px);
    text-align: center;
}

.newsletter_header {
    font-size: clamp(44px, 3vw, 50px);
    line-height: clamp(40px, 3vw, 50px);
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter_subheader {
    font-size: clamp(35px, 3vw, 41px);
    line-height: clamp(40px, 3vw, 50px);
    margin-bottom: 30px;
}

.newsletter_form {
    display: block;
    width: 100%;
}

.newsletter_form .input_container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter_form input[type='text'] {
    width: 100%;
    height: 50px;
    font-size: 20px;
    color: #141A38;
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.newsletter_form input::placeholder {
    color: #141A38;
}

.newsletter_form label[for="webform_consent#hhIT_0"] {
    font-size: 18px;
    line-height: 22px;
    display: inline-block;
    margin-left: 5px;
}

.newsletter_form input[id="webform_consent#hhIT_0"] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    position: relative;
    bottom: -1px;
}

.newsletter_form .check_cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter_form input[type=submit] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange);;
    border: 4px solid var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 16px 26px 18px;
    width: 100%;
    max-width: 460px;
    font-size: clamp(21px, 3vw, 30px);
    line-height: clamp(26px, 3vw, 36px);
    font-weight: 600;
    text-align: center;
    border-radius: 100px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 30px;
}

.newsletter_form input[type=submit]:hover {
    cursor: pointer;
    background-color: var(--white);
    color: var(--orange);
}

.newsletter_form .send-btn {
    width: 100%;
    max-width: 460px;
    font-size: clamp(26px, 3vw, 30px);
    line-height: clamp(30px, 3vw, 36px);
    font-weight: 600;
    padding: 16px 26px 18px;
    border-radius: 100px;
    margin: 0 auto;
    margin-top: 30px;
    box-sizing: border-box;
    border: 4px solid var(--orange);
}

.newsletter_form .send-btn:hover {
    cursor: pointer;
    background-color: var(--white);
    color: var(--orange);
}

.bg-image {
    position: absolute;
}

#start_signpot {
    top: 48px;
    right: 76%;
}

#question_mark {
    bottom: 20px;
    right: 5%;
}

#white_arrow {
    left: calc(50%);
    transform: translateX(-50%);
    top: -60px;
}

#compass {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
}

#rope_arrow {
    bottom: -105px;
    right: 50%;
    transform: translateX(50%);
}

#good_names {
    padding: 80px 0px 0px;
}

#good_names .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
    color: var(--dark-blue);
    position: relative;
    padding-top: 54px;
    margin-bottom: 0;
    padding-bottom: 54px;
}

#good_names .content {
    color: var(--dark-blue);
    font-size: clamp(22px, 3vw, 24px);
    line-height: clamp(36px, 3vw, 38px);
    padding: 0 clamp(30px, 6vw, 127px);
    position: relative;
}

#good_names .content ul {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

#good_names .container_1260 {
    position: relative;
}

#good_names #blue_light {
    top: 180px;
    left: -120px;
}

#good_names #group_368 {
    top: 120px;
    right: -170px;
}

#good_names #group_370 {
    left: -60px;
    display: none;
}

#logos {
    padding-top: 20px;
}

#logos .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
    color: var(--dark-blue);
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.check-now-btn-section {
    background: rgb(20, 26, 56);
    background: linear-gradient(180deg, rgba(20, 26, 56, 1) 50%, rgba(201, 97, 37, 1) 50%);
    padding: 0 30px;
}

.check-now-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--rmarket-green);
    border: 8px solid var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    padding: 26px 55px 28px;
    max-width: 370px;
    margin: 0 auto;
    font-size: clamp(22px, 3vw, 30px);
    line-height: clamp(26px, 3vw, 36px);
    font-weight: 900;
    text-align: center;
    border-radius: 100px;
}

.check-now-btn:hover {
    background-color: var(--rmarket-green-hover);
    color: var(--white);
}

#practicalCourseCard {
    padding: 0px clamp(30px, 8vw, 125px) 60px;
    background-color: #E8E8E8;
    font-size: clamp(22px, 3vw, 24px);
    line-height: clamp(26px, 3vw, 29px);
    align-items: flex-start;
    color: var(--dark-blue);
}

#practicalCourseCard p {
    margin: 10px 0;
}

#ms_02 {
    display: block;
    margin: 0 auto;
    margin-bottom: -5px;
    width: clamp(320px, 50vw, 551px);
    height: auto;
}

#practicalCourseCard .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
}

#practicalCourseCard .orange-text {
    color: var(--orange);
    font-weight: 900;
}

#arrow_shield {
    top: -60px;
    right: -90px;
}

#orange_hand {
    left: -35px;
    bottom: 50px;
    display: none;
}

#orange_spiral {
    bottom: -30px;
    right: -100px;
}

#whatYouGetCard {
    padding: 120px clamp(30px, 10vw, 145px) 145px;
    background-color: var(--orange);
    font-size: clamp(22px, 2vw, 24px);
    line-height: clamp(26px, 2vw, 29px);
}

#whatYouGetCard .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

#whatYouGetCard .subheader {
    font-size: clamp(22px, 3vw, 30px);
    line-height: clamp(26px, 3vw, 36px);
    text-align: center;
    max-width: 780px;
}

#whatYouGetCard ul {
    line-height: clamp(25px, 5vw, 45px);
    list-style-image: url('/static/images/icons/ul-dot.png');
}

#blue_book {
    top: 134px;
    left: -80px;
}

#blue_light {
    top: 600px;
    left: -70px;
}

#blue_plant {
    top: 300px;
    right: -100px;
}

#blue_pencil {
    right: 90px;
    bottom: 10px;
    z-index: 9;
}

#video_section {
    position: relative;
    color: var(--white);
}

#vs_box {
    background-color: var(--dark-blue);
    padding: 0 0 80px 0;
}

.sample_video {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 20px auto;
    margin-top: 70px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

#video_section .icons-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-top: 80px;
}

#video_section .icons-container .icon-brick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 410px;
}

#video_section .icons-container p {
    font-size: clamp(22px, 3vw, 28px);
    line-height: clamp(26px, 3vw, 34px);
    text-align: center;
    color: var(--white);
}

#video_section .title {
    margin-bottom: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
}

#video_section .subtitle {
    font-size: clamp(32px, 5vw, 42px);
    line-height: clamp(40px, 5vw, 48px);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

#video_section .module-agenda-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 3px dashed var(--orange);
    padding-bottom: 50px;
}

#video_section .module-agenda-container .module-title,
#video_section .module-agenda-container .module-desc {
    width: 100%;
    padding: 25px;
}

#video_section .module-agenda-container .module-nr {
    color: var(--orange);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: bold;
    margin: 0
}

#video_section .module-agenda-container .module-name {
    font-size: clamp(22px, 3vw, 24px);
}

#video_section .module-agenda-container .module-desc {
    font-size: clamp(18px, 3vw, 20px);
    line-height: 30px;
}

#video_arrow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

#reviews .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
    color: var(--dark-blue);
    padding: 0 25px;
}

#reviews {
    padding: 50px 25px 80px 25px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.reviews-container img {
    width: 100%;
    max-width: 500px;
}

#hitCard {
    padding: 30px clamp(20px, 10vw, 50px) 60px;
    background-color: var(--dark-blue);
    font-size: clamp(22px, 2vw, 24px);
    line-height: clamp(26px, 2vw, 29px);
    align-items: flex-start;
}

#hitCard .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
}

#hitCard p {
    margin: 10px 0;
}

.hit-img {
    width: 100%;
    height: auto;
    max-width: 565px;
    margin-left: auto;
    margin-right: auto;
}

#magnifier_icon {
    top: 60px;
    left: -45px;
    display: none;
}

#computer_mouse {
    bottom: -45px;
    left: 187px;
}

#registered {
    top: 380px;
    right: -65px;
    display: none;
}

#order_section {
    padding-top: 130px;
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.order-container .left-col,
.order-container .right-col {
    width: 100%;
    position: relative;
}

.order-container .left-col {
    padding: 0 45px;
    text-align: center;
}

.order-container .right-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.order-container .right-col .setlak-img {
    width: clamp(280px, 50vw, 496px);
    height: auto;
    z-index: 9;
}

.order-container .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    color: var(--dark-blue);
    font-weight: 900;
}

.order-container .subtitle {
    font-size: clamp(30px, 5vw, 40px);
    line-height: clamp(36px, 5vw, 47px);
    color: var(--dark-blue);
}

.price-box {
    display: flex;
    max-width: 504px;
    height: 504px;
    background: url("/static/images/order_course/Group 515.png");
    color: var(--dark-blue);
    font-size: clamp(34px, 3vw, 42px);
    line-height: clamp(40px, 3vw, 50px);
    font-weight: 900;
    flex-direction: column;
    width: 100%;
    margin: 80px auto 75px;
    min-height: 180px;
    padding: 22px 30px 23px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.price-box .big {
    font-size: clamp(60px, 5vw, 79px);
    line-height: clamp(65px, 5vw, 95px);
}

.price-box .price {
    font-size: clamp(30px, 4vw, 42px);
    line-height: clamp(30px, 4vw, 50px);
}

.price-box .vat {
    font-size: clamp(26px, 3vw, 32px);
    line-height: clamp(34px, 3vw, 39px);
}

.order-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--rmarket-green);
    color: var(--white);
    text-decoration: none;
    padding: 26px 55px 28px;
    max-width: 555px;
    margin: 0 auto;
    font-size: clamp(20px, 3vw, 40px);
    line-height: clamp(22px, 3vw, 48px);
    font-weight: 900;
    text-align: center;
    border-radius: 100px;
    position: relative;
    z-index: 2;
}

.order-btn:hover {
    background-color: var(--rmarket-green-hover);
    color: var(--white);
}

.order-desription {
    font-size: clamp(16px, 3vw, 20px);
    line-height: clamp(20px, 3vw, 24px);
    color: var(--dark-blue);
    max-width: 400px;
    margin: 23px auto 45px;
}

#order_arrow_down {
    bottom: 100px;
    right: -130px;
    transform: scaleX(-1);
}

#paper_plane {
    left: -180px;
    bottom: 60px;
}

#order_arrow_up {
    right: 0;
    bottom: 60px;
}

#rocket {
    display: none;
}

#megafone {
    left: 50%;
    top: -55px;
    transform: translateX(-50%) scaleX(-1);
}

#contact_form {
    padding: 120px 30px 130px;
    background-color: #E8E8E8;
}

#contact_form .title {
    font-size: clamp(34px, 5vw, 54px);
    line-height: clamp(45px, 5vw, 65px);
    font-weight: 900;
    text-align: center;
    width: 100%;
    color: var(--dark-blue);
    position: relative;
    margin-top: 20px;
}

.contact-data-row {
    font-size: clamp(22px, 5vw, 40px);
    line-height: clamp(30px, 5vw, 48px);
    font-weight: 900;
    color: var(--orange);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 55px auto 30px;
}

.contact-data-row .phone {
    display: flex;
    height: 50px;
    background-image: url("/static/images/contact-form/Group 463.png");
    background-repeat: no-repeat;
    padding-left: 80px;
    max-width: 100%;
    margin-bottom: 30px;
}

.contact-data-row .email {
    display: flex;
    height: 50px;
    background-image: url("/static/images/contact-form/Group 480.png");
    background-repeat: no-repeat;
    padding-left: 80px;
    max-width: 100%;
    margin-bottom: 30px;
}

#contact_form .form-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#contact_form .form-container .rodo-info {
    color: var(--dark-blue);
}

#contact_form .form-container .left-col,
#contact_form .form-container .right-col {
    width: 100%;
    max-width: 470px;
}

#contact_form .form-control {
    border: 1px solid #C5C5C5;
    border-radius: 10px;
    width: 100%;
    height: 65px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 24px;
    line-height: 29px;
    color: var(--dark-blue);
    font-family: var(--base-font);
}

#contact_form textarea.form-control {
    min-height: 255px;
    padding-top: 16px;
}

#contact_form .send-btn {
    max-width: 420px;
    border: none;
    margin-top: 60px;
    font-size: clamp(20px, 3vw, 30px);
    line-height: clamp(22px, 3vw, 36px);
    font-weight: 600;
    box-sizing: border-box;
}

#contact_form .send-btn:hover {
    background-color: var(--rmarket-green-hover);
    color: var(--white);
    cursor: pointer;
}

.contact-form {
    position: relative;
}

.contact-form #contact_light {
    left: -80px;
    bottom: -30px;
}

.contact-form #contact_question {
    bottom: -80px;
    right: 0;
}

footer {
    background-color: black;
    padding: 0 20px;
}

.footer-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    min-height: 236px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logos img {
    margin: 25px 40px;
    /* margin-right: 40px; */
    opacity: 0.45;
}

.footer-logos a:hover img {
    opacity: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3vw, 22px);
    line-height: 29px;
    color: var(--white);
    font-weight: 900;
    margin-top: 20px;
}

.fsl {
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.fsl:hover {
    background-color: white;
}

.fsl:hover svg {
    fill: black;
}

.copyright-line {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    line-height: 19px;
    color: #4C4C4C;
    text-align: center;
}

.copyright-line a {
    font-size: 16px;
    line-height: 19px;
    color: #4C4C4C;
}

.copyright-line a:hover {
    color: white;
}

.messages-form {
    padding: 0;
    margin: 0;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.messages-form li {
    list-style-type: none;
    border-radius: 5px;
    padding: 30px 40px;
    font-weight: 600;
    font-size: 20px;
    color: #FFF;
    text-align: center;
}

.messages-form .info {
    background-color: #1ab394;
}

.messages-form .error {
    background-color: #af003f;
}

.form-control.ff_error {
    border-color: #af003f !important;
    background-color: #f7c9da;
}

.tooltip {
    display: inline-block;
    position: relative;
    border-bottom: 1px dotted #666;
    text-align: left;
    cursor: pointer;
}

.tooltip h3 {
    margin: 12px 0;
}

.tooltip .right {
    min-width: 500px;
    max-width: 500px;
    top: 50%;
    left: 100%;
    margin-left: 20px;
    transform: translate(0, -50%);
    padding: 0;
    color: #FFFFFF;
    background-color: #444444;
    font-weight: normal;
    font-size: 13px;
    border-radius: 8px;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.8s;
}

.tooltip .right a {
    color: white !important;
}

.tooltip .right .rodo-clause p {
    line-height: normal !important;
    color: white !important;
}

.tooltip:hover .right {
    visibility: visible;
    opacity: 1;
}

.tooltip .text-content {
    padding: 10px 20px;
    color: #ffffff;
}

.tooltip .right i {
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -12px;
    width: 12px;
    height: 24px;
    overflow: hidden;
}

.tooltip .right i::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translate(50%, -50%) rotate(-45deg);
    background-color: #444444;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/*.g-recaptcha > div {*/
/*    width: 100% !important;*/
/*    min-height: 100px !important;*/
/*}*/

.g-recaptcha > div iframe {
    width: 100% !important;
    min-height: 100px !important;
}

.errorlist {
    color: #af003f !important;
    list-style-type: none;
    padding: 0;
}

@media screen and (max-width: 768px) {
    #video_section .icons-container {
        margin-top: 60px;
    }
    #video_section .icons-container .icon-brick:not(:last-child) {
        margin-bottom: 50px;
    }
    #video_section .icons-container .icon-brick img {
        width: 80px;
        height: 80px;
    }
    .order-btn {
        padding: 20px 10px 20px;
        min-width: 260px;
    }
    .order-btn:not(.send-btn) {
        margin-top: -160px !important;
    }
    .price-box {
        height: 400px;
        margin-top: 0;
    }
}

.buttons-bar {
    display: flex;
    width: 100%;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 2px solid #f9f9f9;
    z-index: 999;
}

.order-tut-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--rmarket-green);
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px 13px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    border-radius: 100px;
    position: relative;
}
