  @font-face {
    src: url("https://adelaideuni-aem-cdn-errorpage.s3.ap-southeast-2.amazonaws.com/national-2-condensed-medium.woff2") format("woff2");
    font-family: "National-2-Condensed";
  }

  /* For local only
  @font-face {
    src: url("fonts/national-2-condensed-medium.woff2") format("woff2");
    font-family: "National-2-Condensed";
  } 
  @font-face {
    src: url("fonts/RobotoSerif-Regular.ttf") format("ttf");
    font-family: "Roboto Serif";
  }  */

/* globals */
h1 {
    color: #140f50;
    font-family: "National-2-Condensed";
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    margin-bottom: 24px;
    margin-top: 0;
}

h2 {
    color: #140f50;
    font-family: "National-2-Condensed";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 40px;
    margin-top: 0;
}

h3 {
    color: #140f50;
    font-family: "National-2-Condensed";
    font-size: 32px;
    font-weight: 500;
    font-style: normal;
    line-height: 36px;
    margin-bottom: 24px;
    margin-top: 0px;
}

p {
    color: #140f50;
    font-style: normal;
    font-family: "Roboto Serif";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

a {
    color : #1448FF;
    font-family: "Roboto Serif";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* main styling */
#root {
    max-width: 1440px;
    padding: 0 56px;
    width: 100%;
}

body {
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #fafafb;
    width: 100%;
}

/* header */
.main_header {
    padding: 72px 0;
    max-width: 100%;
}

.main_logo {
    margin-bottom: 72px;
}

.main_logo img {
    height: 48px;
    max-width: 220px;
}

.outage_description {
    max-width: 718px;
    margin: auto;
}

/* contact us section  */
.contact_us {
    flex: 1; 
    text-align: center;
    background-color: #FFFFFF; 
    padding: 3.5rem; 
    margin: 56px 0; 
}

.enquiry_container {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.enquiry_section {
    width: 33.333%;
    padding: 40px 32px;
}
  
/* footer */
.footer {
    display: flex; 
    justify-content: space-between; 
    padding: 56px 0; 
} 

.social_icons img {
    height: 32px;
    width: 32px;
}

.social_icons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.providers_container {
    align-self: center;
}

.providers_container a {
    font-size: 14px;
    line-height: 20px;
}

.provider_link1::after {
    content: ' | ';
}

@media (max-width: 576px) {   
    h1 {
        font-size: 40px;
        line-height: 42px;
    }
    
    h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 24px;
    }
    
    h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 0px;
    }

    .main_logo {
        margin-bottom: 56px;
    }

    .main_logo img {
        height: 40px;
    }

    
    #root {
        padding: 0 24px;
    } 

    .enquiry_container {
        flex-direction: column; 
    }

    .contact_us {
        margin: 24px 0;
        padding: 32px 24px;
        text-align: start;
    }

    .enquiry_section {
        width: 100%;
    }

    .footer {
        padding: 56px 32px 56px 0;
    }

    .providers_container {
        margin-bottom: 32px;
        text-align: start;
        align-self: start;
        padding-right: 24px;
    }

    .social_icons {
        align-self: start;
    }
}

 @media (max-width: 1200px) {

    .enquiry_section {
        padding: 0;
    }

    .footer {
        flex-direction: column; 
        align-items: center; 
    }   

    .provider_link1 a{
        display: block;
    }

    .providers_container a{
        display: block;
    }

    .providers_container {
        margin-bottom: 32px;
    }
 }

