/* =========================
    Growtio - Finance
============================ */

/* grotesk and general sans font */
@import url('../../fonts/custom-fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&amp;display=swap');

/* finance demo variable */
:root{
    --font-heading: "Unbounded", sans-serif;
    --font-primary: 'Syne', sans-serif;
    --base-color: #304309;
    --primary-color: #009688;
    --lh: 30px;
    --body-font-size: 16px;
    --btn-bg: #009688;
    --menu-hover: #223883;
    --border-header: #ECE0D5;
}

body{
    line-height: var(--lh);
    font-size: var(--body-font-size);
    font-family: var(--font-primary);
    color: var(--gray-1);
    background-color: #f5f3ed;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--base-color);
}
h2{
    font-size: 70px;
    line-height: 75px;
}
.container{
    max-width: 1480px;
}
.container-1600{
    max-width: 1600px;
    margin: 0 auto;
}
.container-1500{
    max-width: 1500px;
    margin: 0 auto;
}
.container-1560{
    max-width: 1560px;
    margin: 0 auto;
}
.base-bg{
    background: var(--base-color) !important;
}
.base-color{
    color: var(--base-color) !important;
}
.finance__bg{
    background-color: var(--base-color);
}
.finance__bg__2{
    background-color: #E67332;
}
.rts__btn.finance{
    background: var(--btn-bg);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    border-radius: 15px;
    height: 70px;
    max-width: 250px;
}
.rts__btn.finance::before{
    background: var(--primary-color);
}
.rts__btn.with__arrow {
    font-family: 'cabinet grotesk';
    font-weight: 700;
    color: var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
    &::before{
        display: none;
    }
  }
  .rts__btn.with__arrow span {
    transform: rotate(-40deg);
    transition: var(--transition);
  }
  
  .rts__btn.with__arrow:hover {
    color: var(--btn-bg);
    border-color: var(--btn-bg);
    background: transparent;
  }
  .rts__btn.with__arrow:hover span {
    transform: rotate(0);
  }
  
  .single__blog__postmeta span, .single__blog__postmeta a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

/* section css  */
.rts-section__serialize {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .rts-section__serialize .serialize__btn {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: max-content;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--white);
  }
  .rts-section__serialize .serialize__btn span.section__serial {
    border-radius: 50%;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rts-section__serialize .serialize__btn span.sub__heading {
    background-color: var(--primary-color);
    display: block;
    padding: 12px 20px;
    line-height: 1;
    border-radius: 25px;
  }