@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Colours */
:root {
    --primary-color: #1F80AA;
    --secondary-color: #FF7800;
    --font-gray: #504F4F;
    --background-light: #F7F7F7;
  }
  
/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: var(--font-gray);
    background-color:#FFFFFF;
    margin: 0;
    padding: 0;
}

/* Typography */
h1 {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 1rem;
}

h2 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 0.5rem;
} 

h4 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 0;
}

h5 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 0;
}

p.large {
    font-size: 20px;
    font-weight: 300;
}

p.regular {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 5%;
}

p.small {
    font-size: 16px;
    font-weight: 300;
    line-height: 17.5px;
    letter-spacing: 3.5%;
}
 
.semi-bold {
    font-weight: 600;
}
  
.bold {
    font-weight: 700;
}
  
.t-center {
    text-align: center !important;
}

.t-left {
    text-align: left !important;
}
  
.t-title {
    font-size: 35px;
}
  
.t-xxl {
    font-size: 30px;
}
  
.t-xl {
    font-size: 25px;
}
  
.t-l {
    font-size: 22px;
}
  
.t-regular {
    font-size: 20px;
}

.t-smallish {
    font-size: 18px;
}
  
.t-small {
    font-size: 16px;
}
  
/* FONT COLORS */
.blue-font {
    color: var(--primary-color);
}

.orange-font {
    color: var(--secondary-color);
}
  
.gray-font {
    color: var(--font-gray) !important;
}
  
.white-font {
    color: #FFFFFF;
}
  
a {
    color: inherit;
}
  
.bg-gray {
    background-color: #F5F5F5;
}

@media(min-width:1585px) {
  
    h1 {
        font-size: 45px;
    }

    h3 {
        font-size: 30px
    }
  
}

@media(max-width:1585px) {
  
    .t-title {
        font-size: 30px;
    }

    h1 {
        font-size: 35px;
    }
  
}

@media(max-width:1333px){
    .t-smallish {
        font-size: 16px;
    }
}
  
@media(max-width:1215px){

    .t-xl {
        font-size: 18px;
        margin: 0;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
        margin: 0;
    }
  
    .t-regular {
      font-size: 18px;
      font-weight: 600;
    }
  
    .t-title {
      font-size: 25px;
    }
  
}
  
@media (max-width:1100px) {

    h1 {
        font-size: 30px;
    }
  
    .t-regular {
      font-size: 16px;
    }
  
    .t-xxl {
      font-size: 25px;
    }
  
    .pmc-container {
      justify-content: center;
      flex-direction: column;
    }
  
}
  
@media(max-width: 862px){

    h1 {
        font-size: 25px;
        margin-bottom: 0.5rem;
    }

    .t-small {
      font-size: 15px;
    }

}
  
@media(max-width: 525px){
  
    .t-title {
      font-size: 18px;
      margin: 0;
    }

    .t-xl {
      font-size: 16px;
      margin: 0;
    }

    p.large {
        font-size: 18px;
    }

}

@media(max-width: 450px){
    h1 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
        margin: 0;
    }

    h4 {
        font-size: 16px;
        margin: 0;
    }

    h5 {
        font-size: 20px;
        margin: 0;
    }
}
  