﻿/**************************************************************************************/
/*    
    Fonts
    
 * Font Mapping Explanation:
 * 
 * In this stylesheet, the following font-weight values correspond to specific Avenir fonts as used in the Figma design:
 * 
 * font-weight: 900;  Avenir-Black 
 * font-weight: 800;  Avenir-Heavy
 * font-weight: 500;  Avenir-Medium 
 * font-weight: 400;  Avenir-Roman
 *
 * Ensure to use the appropriate font-weight to match the design specifications from Figma.

/**************************************************************************************/

@font-face {
    font-family: 'Avenir-Black';
    src: url('../font/Avenir-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Heavy';
    src: url('../font/Avenir-Heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Medium';
    src: url('../font/Avenir-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Roman';
    src: url('../font/Avenir-Roman.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratAlternates-Bold';
    src: url('../font/MontserratAlternates-Bold.ttf') format('truetype');
}


/**************************************************************************************/
/*
    Desktop Global
*/
/**************************************************************************************/

html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, dfn, del, p, blockquote, fieldset, input, textarea, select, article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, button, canvas, video {
    margin: 0;
    padding: 0;
}

:root {
    --tinyscholars-blue: #718AF4;
    --tinyscholars-indigo: #616897;
    --tinyscholars-lavender: #959BCD;
    --tinyscholars-light-purple: #B2B3CF;
    --tinyscholars-light-cream: #FCF4E7;
    --tinyscholars-light-grey: #E9DCC7;
    --tinyscholars-brown: #B1917C;
    --tinyscholars-black: #333333;
    --tinyscholars-orange: #DC8966;
}

* {
    transition: all 0.2s ease-in;
    box-sizing: border-box;
    text-rendering: optimizeLegibility !important;
    color-rendering: optimizeQuality !important;
    -webkit-font-smoothing: antialiased !important;
    scroll-behavior: smooth !important;
}

.wrapper {
   /* width: 100%;*/
    /*max-width: 2440px;*/
    margin: 0px 2.5%;
    /*margin-inline: 2.5%;*/
    padding: 0px;
}

html {
    scroll-behavior: smooth !important;
    /*background-color: var(--tinyscholars-light-cream);*/
}

body {
    /*background-color: var(--tinyscholars-light-cream);*/
}

.hero h1 {
    color: var(--tinyscholars-light-cream);
    font-family: Avenir-Black;
    font-size: 9.028vw;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 130px */
    letter-spacing: .02em;
    text-transform: lowercase;
}

.mainsubhead {
    color: var(--tinyscholars-light-cream);
    font-family: Avenir-Roman;
    font-size: 2.318vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}

h1, .home-h1 {
    color: var(--tinyscholars-light-cream);
    font-family: Avenir-Black;
    /*font-size: 6.125rem;*/
    font-size: 6.806vw;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.subhead {
    color: var(--tinyscholars-light-cream);
    font-family: Avenir-Roman;
    font-size: 2.305vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  /*  text-transform: capitalize;*/
}

h2 {
    color: var(--tinyscholars-indigo);
    font-family: Avenir-Black;
    font-size: 2.778vw;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

h3 {
    color: var(--tinyscholars-indigo);
    font-family: Avenir-Black;
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

p {
    color: var(--tinyscholars-black);
    font-family: Avenir-Roman;
    /*font-size: 1.125rem;*/
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

small {
    color: var(--tinyscholars-black);
    font-family: Avenir-Roman;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.button {
    border-radius: 2.778vw;
    padding: 1.181vw 2.5vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "MontserratAlternates-Bold";
    font-size: 1.528vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

div:not(.button) > a, p:not(.button) > a, li:not(.button) > a {
    color: var(--tinyscholars-orange);
}

div:not(.button) > a:hover,
p:not(.button) > a:hover,
li:not(.button) > a:hover {
    color: var(--tinyscholars-blue);
}
.breadcrumbs-sec {
    background: var(--tinyscholars-light-cream);
    padding-top: 2.083vw;
}
/* Table Wrapper Styles */
.table-wrapper {
    border-radius: 24.253px;
    overflow: hidden;
    border: 2.425px solid var(--tinyscholars-indigo);
}

/* Table Styles Start */
table {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 1.235vw;
    text-align: center;
    font-family: Avenir-Heavy;
    font-style: normal;
    font-weight: 800;
}

th, td {
    padding: 25px 0; 
}

th {
    background: var(--tinyscholars-indigo);
    color: var(--tinyscholars-light-cream);
    line-height: 100%; /* 17.785px */
}

tr {
    background: var(--tinyscholars-light-cream);
    color: var(--tinyscholars-indigo);
    line-height: 180%; /* 32.014px */
}

tfoot {
    color: var(--tinyscholars-indigo);
    text-align: center;
    font-family: Avenir-Black;
    font-size: 1.042vw;
    font-style: normal;
    font-weight: 900;
    line-height: 180%; /* 27px */
/*    text-decoration-line: underline;*/
    background: var(--tinyscholars-lavender);
}

    tfoot tr {
        background: #BDC0DC;
        border-top: 2.425px solid var(--tinyscholars-indigo);
    }

    tfoot tr a{
       color: var(--tinyscholars-indigo) !important;
    }

    tfoot tr a:hover {
    color: var(--tinyscholars-light-cream) !important;
    }

    tfoot td {
        padding: 18px 10px !important;
    }


/*@media (max-width: 1920px) {
    .hero h1 {
        font-size: 10.8rem;
    }
    .mainsubhead {
        font-size: 2.78rem;
    }

    p {
        font-size: 1.5rem;
    }
}

@media (max-width: 1680px) {
    .hero h1 {
        font-size: 9.47rem;
    }

    .mainsubhead {
        font-size: 2.43rem;
    }
    p {
        font-size: 1.3rem;
    }
}*/
@media (max-width: 1440px) {

    .hero h1 {
        font-size: 130px;
        letter-spacing: 2.6px;
    }

    .mainsubhead {
        font-size: 33px;
    }

    h1, .home-h1 {
        font-size: 98px;
    }

    .subhead {
        font-size: 25px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 18px;
    }

    small {
        font-size: 15px;
    }

    .button {
        border-radius: 40px;
        padding: 17px 36px;
        font-size: 22px;
    }

    table {
        font-size: 18px;
    }

    tfoot {        
        font-size: 15px;
    }

}

/* Tablet Styles */
@media (max-width: 1280px) {

    .hero h1 {
        font-size: 90px;
        line-height: 110%;
        letter-spacing: 1.8px;
    }

    .mainsubhead {
        font-size: 25px;
    }

    h1, .home-h1 {
        font-size: 70px;
    }

    .subhead {
        font-size: 20px;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    small {
        font-size: 15px;
    }

    .breadcrumbs-sec {
        padding-top: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 834px) {

    h1, .home-h1 {
        font-size: 60px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 14px;
    }

    table {
        font-size: 15px;
    }

    tfoot {
        font-size: 12px;
    }

    .breadcrumbs-sec {
        padding: 15px 2% 0 2%;
      /*  padding-top: 15px;*/
    }
}

@media (max-width: 425px) {

    table {
        font-size: 12px;
    }

    h2 {
        font-size: 25px;
    }
}

@media (max-width: 374px) {

    .hero h1 {
        font-size: 72px;
    }

    h1, .home-h1 {
        font-size: 58px;
    }

    h3 {
        font-size: 12px;
    }

    p {
        font-size: 13px;
    }

    .button {
        font-size: 18px;
    }

   
}
