:root {
    --link-color: #1A3461;
    --link-back-color: #FFD439;
    --color-text: #22497D;
    --color-blue__pale: #E1F3FA;
    --color-blue__pale2: #37B0DD;
    --color-pink: #F46BAE;
    --color-pink-pastel: #FFF0F2;
    --color-purple: #664EAA;
    --color-purple-pastel: #F3F4FF;


    /* ----------------- New colors */


    /* Primary color */
    --color-primary-dark: #1A3461;
    --color-primary-light: #FFFFFF;
    --color-primary-highlight: #FFD439;
    --color-primary-highlight-hover: #FFBB00;

    /* Secondary color */
    --color-secondary-first: #664EAA;
    --color-secondary-second: #37B0DD;
    --color-secondary-third: #F46BAE;
    --color-secondary-lighten-dark: #22497D;

    /* Secondary bg color */
    --color-secondary-first-bg: #F3F4FF;
    --color-secondary-second-bg: #E1F3FA;
    --color-secondary-third-bg: #FFF0F2;
    --color-secondary-lighten-dark-bg: #EAF1FF;

    /* Tertiary color */
    --color-tertiary-first: #52DB91;
    --color-tertiary-second: #FFA47D;
    --color-tertiary-third: #FF7171;

    /* Tertiary color */
    --color-tertiary-first-bg: #DFF4E9;
    --color-tertiary-second-bg: #F9ECE6;
    --color-tertiary-third-bg: #F9E4E4;

    /* Grey color */
    --color-dark-grey: #757983;
    --color-grey: #D7DEDE;
    --color-light-grey: #F6F8F8;

    /* Font size */
    --basic-font-size: 16px;



    /* ----------------- Hover transform */
    --transition-cta: 0.4s ease;

    --transition-zoom-in: 0.5s;
    --transform-zoom-in: scale(1.1);
}

@media only screen and (min-width: 768px) {
  :root {
    /* Font size */
    --basic-font-size: 16px;
  }
}

.t-font-fluid {
    font-size: 16px;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.t-wrapper {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
}

.t-desk{
    display:none !important;
}
.t-mob{
    display:grid;
}

.t-wrapper-full {
    display: grid;
    max-width: 100%;
    margin: 0 auto;
}

.t-para {
    font-style: normal;
    font-weight: normal;
    font-size: var(--basic-font-size);
}

.t-title {
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
}
@media screen and (max-width: 480px) {
    .t-title {
        font-size: 40px;
    }
}

.t-subtitle {
    font-family: vinyl, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
}




/*
* reusable CTA
*/
.t-cta {
  position: relative;
  /**/
  width: fit-content;
  margin: auto;
}

.t-cta--link a,
.t-cta:not(.t-cta--link) {
    align-items: center;
    background: var(--color-primary-highlight);
    border-radius: 50px;
    color: var(--color-primary-dark);
    display: inline-flex;
    font-family: vinyl, sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    transition: background var(--transition-cta);
    position: relative;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
}
.t-cta.t-cta--link a {
  padding: 10px 40px 10px 20px;
}
.t-cta.t-cta--download {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-cta--download .svg-icon {
  fill: var(--color-primary-dark);
}
.t-cta .svg__arrow {
  fill: var(--color-primary-dark);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
}
.t-cta--link a:hover,
.t-cta--link a:focus,
.t-cta:not(.t-cta--link):hover,
.t-cta:not(.t-cta--link):focus {
  background: var(--color-primary-highlight-hover);
}



.x-ctr {
    justify-self: center;
}

.x-end {
    justify-self: flex-end;
}

.y-ctr {
    align-self: center;
}

.w90 {
    width: 90%;
}

.pt-60 {
    padding-top: 60px;
}

.m-60 {
    margin: 60px auto;
}

.p-80 {
    padding: 3em 0;
}

.t-grid-full-fluid {
    display: grid;
}

.rgp-40 {
    row-gap: 2em;
}

.rgp-30 {
    row-gap: 1.5em;
}

.cgp-15 {
    column-gap: 0.8em;
}

.rgp-20 {
    row-gap: 1.1em;
}

.w100 {
    width: 100%;
}

.rgp-15 {
    row-gap: 0.8em;
}

.cl1 {
    grid-column: 1 / span 1;
}

.rw1 {
    grid-row: 1 / span 1;
}

.rw2 {
    grid-row: 2 / span 1;
}

.y-content-strt{
    align-content:flex-start;
}

.box-subtitle {
    border-bottom: 1px solid var(--color-text);
    border-top: 1px solid var(--color-text);
}

.box-subtitle__blue {
    border-bottom: 1px solid var(--color-blue__pale2);
    border-top: 1px solid var(--color-blue__pale2);
    max-width: 204px;
}

.box-subtitle__blue .t-subtitle {
    color: var(--color-secondary-second);
}

/* DESKTOP 768px */
@media only screen and (min-width: 768px) {
    .t-wrapper {
        width: 85%;
    }

    .t-wrapper-full {
        width: 100%;
    }

    .t-desk{
        display:grid !important;
    }
    .t-mob{
        display:none;
    }

    .wfit_md {
        width: fit-content;
    }

    .y-ctr_md {
        align-self: center;
    }

    .x-strt_md {
        justify-self: flex-start
    }

    .rgp-30_md {
        row-gap: 1.875em;
    }

    .cgp-30_md {
        column-gap: 1.875em;
    }

    .t-grid-auto-2_md {
        grid-template: auto / auto auto;
    }

    .x-ctr_md {
        justify-self: center;
    }

    .cgp-90_md {
        column-gap: 5.625em;
    }

    .box-subtitle__blue {
        max-width: none;
    }

    .mt-20_md {
        margin-block-start: 1.25em;
    }

    .rw1_md {
        grid-row: 1 / span 1;
    }

    .cl2_md {
        grid-column: 2 / span 1;
    }

    /* CTA */
    .t-cta.t-cta--big:not(.t-cta--link) {
      padding: 15px 40px 15px 22px;
    }
    .t-cta.t-cta--big.t-cta--link a {
      padding: 15px 40px 15px 22px;
    }
    .t-cta.t-cta--big {
      font-size: 1.5em;
    }
}

/* DESKTOP 1440px */
@media only screen and (min-width: 1440px) {


    .t-wrapper {
        font-size: 16px;
    }

    .t-wrapper-full {
        font-size: 16px;
    }

    .t-font-fluid {
        font-size: 16px;
    }
}
