body {
    margin: 0;
}

/* =========================
   HEADER
========================= */
header {
    height: 90px;
    background-color:#0d0d0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #f15a24;
}

.logo img {
    height: 35px;
    
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.logo-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    margin-left: 20px;
}

.osu {
    color: #f15a24;
}

.unfiltered {
    color: white;
}

.navigation {
    display: flex;
     gap: 50px;
     font-family: Arial, sans-serif;
     font-size: 20px;
}
.navigation a {
    color: white;
    text-decoration: none;
}

.navigation a:hover {
    color:#f15a24;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-right: 80px;
}

.submit-button {
    background-color: #0d0d0c; 
    color: #0d0d0c;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 20px;
    margin-right: 150px;
    display: none;
    /* remember, i blacked this out to hide it from view on the main page but to keep the button on the page since its an inner html*/
     
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;

    background-color: #0d0d0c;
    border: 1px solid #444;

    min-width: 100px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;

    color: white;
    text-decoration: none;
}

/* =========================
   HERO
========================= */
.hero {
    height: 790px;
    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    width: 350px;

    position: relative;
    z-index: 1;
    top: 150px;
    left: 175px;
    padding: 30px;
    /*border: 2px solid red;*/
    margin-left: 80px;
    
    
}
/*This adds a little bit of a dark overcast
behind the text laying over the hero image
making it easier to read but not distinguishable*/
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15),
        transparent
    );
}
.hero-content h1 {
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}

.hero-content p {
    color: white;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.accent {
    color: #f15a24;
}

.hero-accent {
    color: #f15a24 !important;
    font-weight: bold;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.primary-button {
    background-color: #f15a24;
    color: white;
    text-decoration: none;

    padding: 12px 20px;

    font-family: Arial, sans-serif;
    font-size: 14px;

    border-radius: 4px;
}

.secondary-button {
    border: 1px solid #f15a24;

    color: white;
    text-decoration: none;
    
    padding: 12px 20px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.25);
}

/* =========================
   CATEGORIES
========================= */
.categories {
    height: 350px;
    background-color: #1a1a18;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.category-card {
    width: 250px;
    height: 250px;
    background-color: #242421;
    border: 1px solid #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f2f2f2;
}

.category-card img {
    height: 50px;
     margin-top: 20px;
}

.category-card h3 {
    text-align: center;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 5px;
    
}

.category-card p {
    text-align: center;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin-top: 5px;
    font-size: 13px;
    padding-left: 20px;
    padding-right: 20px;
}

.category-card a {
    color: #f15a24;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.category-card a:hover {
    color: #f2f2f2;
    text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
footer {
    height: 80px;
    background-color: #0d0d0c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #444;
}

footer p {
    color: #666;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* =========================
    DEDICATION PAGE CSS
========================= */
.dedication-main {
    background-color: #1a1a18;
     padding-top: 30px;
     padding-bottom: 30px;
    
}

.dedication-content {
    text-align: center;
    padding-top: 60px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #242421;
    border: 1px solid #555;
    
}

.dedication-people {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.person-card img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    
}

.person-card h3 {
    color: white;
    font-family: Arial, sans-serif;
    margin-bottom: 5px;
}

.person-card p {
    color: #f15a24;
    font-family: Arial, sans-serif;
    margin-top: 0px;
    
}

.dedication-label {
    color: #f15a24;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.dedication-content h1 {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 50px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ampersand {
    color: #f15a24;
}

.d-text {
    color: #f15a24;
    font-weight: bold;
}
.dedication-text {
    max-width: 800px;
    margin: 60px auto 0 auto;

    color: #f2f2f2;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;

    border-top: 1px solid #444;
    padding-top: 40px;
    padding-bottom:70px;
}

/*=========================
    ABOUT PAGE CSS
========================= */

.about-main{
    background-color: #1a1a18;
    padding-top: 30px;
    padding-bottom: 30px;
}

.record-holders-columns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
    
}



.record-holders-columns .column {
    flex: 1;
    padding-right: 10px;
    align-self: flex-start;
    
    
}

.record-holders-columns .column:not(:last-child) {
    border-right: 1px solid #444;
}

.record-holders-columns ul {
    padding-left: 15px;
}

.record-holders-columns li {
    margin-bottom: 8px;
}

.column-text-orange{
    color:#f15a24;
    font-weight: 600;
}


.record-holders{
    display:flex;
    gap: 40px;
    
    
}

.information-asymmetry{
    display:flex;
    gap: 40px;
}

.information-asymmetry .column{
     flex: 1;
}
.information-asymmetry-columns{
    display: flex;
     gap: 60px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.information-asymmetry-columns p {
    color: #f15a24;
    font-weight: 600;
    margin-top: 0;
}

.information-asymmetry-columns ul {
    padding-left: 20px;
    margin-top: 15px;
}

.information-asymmetry-columns li {
    margin-bottom: 8px;
}

.information-asymmetry-columns .column:first-child {
    border-right: 1px solid #444;
    padding-right: 0px;
}

.information-asymmetry-columns .column:last-child {
    padding-left: 0px;
}

.student-rights-columns{
    display: flex;
}

.student-rights-columns .column {
    flex: 1;
}

.student-rights-columns .column:not(:last-child) {
    border-right: 1px solid #444;
    padding-right: 30px;
}

.student-rights-columns .column:not(:first-child) {
    padding-left: 30px;
}

.student-rights{
    display:flex;
    gap: 40px;
}

.incentive-problem{
    display:flex;
    gap: 40px;
}

.public-records-columns .column,
.auditing-columns .column {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.public-records-columns .column:not(:last-child),
.auditing-columns .column:not(:last-child) {
    border-right: 1px solid #444;
}

.public-records-columns {
    display: flex;
}

.public-records {
    display:flex;
    gap: 40px;
}

.auditing-columns {
    display: flex;
}

.auditing {
    display:flex;
    gap: 40px;
}

.why-archive-exists-columns {
    display: flex;
}

.why-archive-exists {
    display:flex;
    gap: 40px;
}

.closing-statement {
    display:flex;
    gap: 40px;
    background-color: #1a1a18;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 30px 40px;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
    
}

.header-orange {
    color:#f15a24;
}

.about-container {
     border: 1px solid  #666;
     max-width: 900px;
    margin: 0 auto;
    background-color: #242421;
    color: white;
     padding: 80px 100px;
}

.about-container h2 {
    font-family: Arial, sans-serif;
    font-size: 25px;
    
    
}

.about-container h1 {
    font-family: Arial, sans-serif;
    font-size: 35px;
}

.about-container h3{
    font-family: Arial, sans-serif;
    text-align: center;
    color: #f15a24;
    letter-spacing: 3px;
    font-weight:bold;
    
}

.about-container p{
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.about-container ul,
.about-container li {
    font-family: Arial, sans-serif;
}

.about-hero-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-image img{
    width: 400px;
    
}

.record-holders,
.information-asymmetry,
.student-rights,
.incentive-problem,
.public-records,
.auditing,
.why-archive-exists {
    border-top: 1px solid #666;
    padding-top: 20px;
    margin-top: 40px;
}

.hero-divider {
    width: 70px;
    height: 3px;
    background-color: #f15a24;
    margin: 0 auto;
}


.section-big-icon img {
    width:100px;
    
}

.section-book-icon img {
    width: 55px;
    
}

.section-single-person-icon img {
    width: 35px;
}

.section-warning-icon img {
    width: 45px;
}

.section-tiny-icon-file img {
    width: 40px;
}

.section-tiny-icon-eye img {
    width: 60px;
}

.section-tiny-icon-checklist img {
    width: 30px;
    
}

.section-tiny-icon-document img {
    width:35px;
}

.section-tiny-icon-group2 img {
    width: 65px;
}

.section-tiny-icon-cap img {
    width: 50px;
}

.section-tiny-icon-family img {
    width: 47px;
}

.section-tiny-icon-microphone img {
    width: 20px;
}

.section-tiny-icon-money img {
    width: 35px;
}

.section-tiny-icon-maginfy img {
    width: 35px;
}

.section-tiny-icon-group1 img {
    width: 50px;
}



.why-archive-exists-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-archive-exists-columns li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-archive-exists-columns li img {
    width: 20px;
    height: 20px;
}

.why-archive-exists-columns .column {
    flex: 1;
    padding: 0 30px;
}

.why-archive-exists-columns .column:not(:last-child) {
    border-right: 1px solid #444;
}


/*=========================
    CONTACT PAGE CSS
========================= */

.contact-main {
    min-height: 900px;

    background-image: url("images/contact/contact-hero.png");
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;

    position: relative;
}

.contact-left {
    width: 500px;
    height: 600px;
   
    align-self: center;
    transform: translateY(100px);
}

.contact-right {
    width: 650px;
    background-color: #1a1a18;
    border: 1px solid #555;
    padding: 50px;
}

.contact-form-title {
    color:white;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

.contact-label{
     color: #f15a24;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.required {
    color: #f15a24;
}

.contact-left h1{
    font-size: 50px;
    color: white;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    margin-bottom:10px;
}

.contact-left-p{
    color: white;
    font-family: Arial, sans-serif;
     max-width: 420px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background-color: #242421;
    border: 1px solid #555;

    color: white;

    padding: 15px;

    font-size: 16px;
}

.contact-form textarea {
    height: 200px;
    resize: none;
}

.contact-form label{
    color: white;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.contact-name-label input {
    flex: 1;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #f15a24;
    color: white;

    border: none;

    padding: 15px;

    font-weight: bold;
    cursor: pointer;
}

.contact-name-label{
    display:flex;
    gap: 20px;
}

.contact-divider {
    width: 70px;
    height: 3px;
    background-color: #f15a24;
}

.contact-orange {
    color:#f15a24;
}

.contact-form button {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

/*=========================
    PROFILE PAGE CSS
========================= */



/* =========================
  LOG IN CSS
========================= */

.login-main{

    min-height:calc(100vh - 170px);

    background-image: url("images/contact/contact-hero.png");
    background-size: cover;
    background-position: center;

    position: relative;

    padding-top: 150px;
    

}

.login-panel {

    width: 650px;

    margin: 0 auto;

    background-color: #1a1a18;

    border: 1px solid #555;

    padding: 50px;

    box-sizing: border-box;

}


.login-title {

    color: white;

    font-family: Arial, sans-serif;

    font-size: 50px;

    margin-top: 0;
    margin-bottom: 15px;

     text-align: center;

}

.login-title span {

    color: #f15a24;

}

.login-subtitle {

    color: #f2f2f2;

    font-family: Arial, sans-serif;

    line-height: 1.5;

    margin-top: 0;
    margin-bottom: 35px;

    text-align: center;

}

.login-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.login-field {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.login-field label {

    color: white;

    font-family: Arial, sans-serif;

    font-size: 13px;

}

.login-field input {

    width: 100%;

    box-sizing: border-box;

    background-color: #242421;

    border: 1px solid #555;

    color: white;

    padding: 15px;

    font-family: Arial, sans-serif;

    font-size: 16px;

    margin-bottom: 20px

}

.login-field input::placeholder {

    color: #8c8c8c;

}

.login-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 5px;

}

.login-remember {

    display: flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 13px;

    cursor: pointer;

}

.login-remember input {

    margin: 0;

}

.login-forgot {

    color: #bdbdbd;

    font-family: Arial, sans-serif;

    font-size: 13px;

    text-decoration: none;

}

.login-forgot:hover {

    color: #f15a24;

}

.login-button {

    background-color: #f15a24;

    border: none;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: bold;

    padding: 15px;

    margin-bottom: 40px;

    cursor: pointer;

}

.login-button:hover {

    background-color: #ff6a2f;

}


#message-box {

    position: fixed;
    top: 120px;
    right: 20px;

    padding: 12px 16px;
    font-size: 15px;
    background-color: #2cac57;
    color: white;

    border-radius: 6px;

    opacity: 0;

    transition: opacity 0.3s ease;
    width: 300px;
    font-family: Arial, sans-serif;
}

.mobile-menu-button,
.mobile-menu {
    display: none;
}


/* Laptop / smaller desktop */
/* Laptop / smaller desktop */
@media (max-width: 1366px) {

    .logo img {
    height: 30px;
    }

    .logo-text {
        font-size: 27px;
        margin-left: 15px;
    }

    .logo {
        margin-left: 45px;
    }

    .hero {
        height: 650px;
    }

    .hero-content {
        width: 320px;
        left: 55px;
        margin-left: 30px;
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 18px;
    }


    /* CATEGORY SECTION */
    .categories {
        height: 300px;
        gap: 20px;
        padding: 0 45px;
        box-sizing: border-box;
    }

    .category-card {
        width: 205px;
        height: 205px;
    }

    .category-card img {
        height: 40px;
        margin-top: 16px;
    }

    .category-card h3 {
        font-size: 16px;
        margin-top: 14px;
        margin-bottom: 4px;
    }

    .category-card p {
        font-size: 11px;
        line-height: 1.15;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 4px;
        margin-bottom: 10px;
    }

    .category-card a {
        font-size: 12px;
    }


    /* =========================
   CONTACT PAGE - 1366
========================= */

.contact-main {
    min-height: 700px;
    gap: 45px;
}


/* LEFT SIDE */

.contact-left {
    width: 430px;
    height: 500px;
    transform: translateY(70px);
}

.contact-label {
    font-size: 13px;
    letter-spacing: 3px;
}

.contact-left h1 {
    font-size: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.contact-left-p {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.4;
}

.contact-divider {
    width: 60px;
}


/* RIGHT / FORM PANEL */

.contact-right {
    width: 600px;
    padding: 35px;
    box-sizing: border-box;
}

.contact-form-title {
    font-size: 16px;
}


/* FORM */

.contact-form {
    gap: 12px;
}

.contact-form label {
    font-size: 11px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 13px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 160px;
}

.contact-name-label {
    gap: 15px;
}

.contact-form button {
    padding: 12px;
    font-size: 12px;
}

 .about-container {
        max-width: 820px;
        padding: 55px 70px;
    }

    .about-hero-section {
        gap: 45px;
    }

    .about-hero-image img {
        width: 330px;
    }

    .about-container h1 {
        font-size: 31px;
    }

    .about-container h2 {
        font-size: 22px;
    }

    .about-container p,
    .about-container li {
        font-size: 14px;
    }

    .section-big-icon img {
        width: 80px;
    }

    .record-holders,
    .information-asymmetry,
    .student-rights,
    .incentive-problem,
    .public-records,
    .auditing,
    .why-archive-exists {
        gap: 30px;
        margin-top: 30px;
        padding-top: 18px;
    }

    .record-holders-columns {
        gap: 15px;
        margin-top: 22px;
    }

    .information-asymmetry-columns {
        gap: 45px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .closing-statement {
        margin-top: 35px;
        padding: 25px 30px;
        gap: 30px;
    }

    /* =========================
   ABOUT PAGE - LARGE TABLET
   769px - 1024px
========================= */

.about-main {
    padding-top: 20px;
    padding-bottom: 20px;
}

.about-container {
    max-width: 680px;
    padding: 45px 45px;
    box-sizing: border-box;
}


/* HERO */

.about-hero-section {
    gap: 30px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-image img {
    width: 285px;
}

.about-container h3 {
    font-size: 13px;
    letter-spacing: 3px;
}

.about-container h1 {
    font-size: 27px;
    line-height: 1.15;
}

.hero-divider {
    width: 55px;
    height: 2px;
}


/* GENERAL TEXT */

.about-container h2 {
    font-size: 19px;
    line-height: 1.15;
}

.about-container p,
.about-container li {
    font-size: 12px;
    line-height: 1.35;
}


/* LARGE SECTION ICONS */

.section-big-icon img {
    width: 65px;
}


/* MAIN SECTIONS */

.record-holders,
.information-asymmetry,
.student-rights,
.incentive-problem,
.public-records,
.auditing,
.why-archive-exists {
    gap: 22px;

    margin-top: 25px;
    padding-top: 16px;
}


/* RECORD HOLDERS - THREE COLUMNS */

.record-holders-columns {
    gap: 10px;
    margin-top: 18px;
}

.record-holders-columns .column {
    padding-right: 8px;
}


/* INFORMATION ASYMMETRY */

.information-asymmetry-columns {
    gap: 30px;

    margin-top: 18px;
    margin-bottom: 18px;
}

.information-asymmetry-columns ul {
    padding-left: 16px;
}


/* STUDENT RIGHTS */

.student-rights-columns .column:not(:last-child) {
    padding-right: 18px;
}

.student-rights-columns .column:not(:first-child) {
    padding-left: 18px;
}


/* PUBLIC RECORD / AUDITING COLUMNS */

.public-records-columns .column,
.auditing-columns .column {
    padding: 0 8px;
}


/* WHY ARCHIVE EXISTS */

.why-archive-exists-columns .column {
    padding: 0 15px;
}


/* CLOSING STATEMENT */

.closing-statement {
    gap: 20px;

    margin-top: 30px;

    padding: 20px 25px;
}
}


/* Tablet portrait */
@media (max-width: 768px) {

    /* =========================
       HEADER
    ========================= */

    header {
        height: 65px;
    }

    .logo {
        margin-left: 20px;
    }

    .logo img {
        height: 22px;
    }

    .logo-text {
        font-size: 19px;
        margin-left: 10px;
        white-space: nowrap;
    }

    .header-right {
        margin-right: 25px;
        gap: 0;
    }

    .navigation {
        gap: 25px;
        font-size: 13px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
    height: auto;

    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #1a1a18;

    /* height of image portion */
    padding-top: 400px;

    box-sizing: border-box;
}

.hero::before {
    display: none;
}

.hero-content {
    position: static;

    width: 100%;
    max-width: none;

    margin: 0;
    padding: 28px 20px 25px;

    transform: none;

    box-sizing: border-box;
    text-align: center;
    background-color: #1a1a18;
}

.hero-content h1 {
    font-size: 23px;
    line-height: 1.15;

    margin: 5px auto 16px;
}

.hero-content p {
    width: 440px;
    max-width: 100%;

    margin: 0 auto 12px;

    font-size: 11px;
    line-height: 1.3;

    text-align: center;
}

.hero-accent {
    width: 440px;
    max-width: 100%;

    margin: 0 auto !important;

    font-size: 11px !important;
}
    /* =========================
       CATEGORY SECTION
    ========================= */

    .categories {
    height: auto;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: flex-start;

    gap: 20px;

    padding: 20px 40px 35px;

    box-sizing: border-box;
}

    .category-card {
        width: 190px;
        height: 190px;
    }

    .category-card img {
        height: 36px;
        margin-top: 15px;
    }

    .category-card h3 {
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 3px;
    }

    .category-card p {
        font-size: 10px;
        line-height: 1.15;

        padding-left: 12px;
        padding-right: 12px;

        margin-top: 4px;
        margin-bottom: 8px;
    }

    .category-card a {
        font-size: 10px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        height: 55px;
    }

    footer p {
        font-size: 9px;
    }


    /* =========================
   CONTACT PAGE - TABLET
   768px
========================= */

.contact-main {
    min-height: auto;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 25px;

    padding: 45px 25px 50px;

    box-sizing: border-box;

    background-size: cover;
    background-position: center;
}


/* =========================
   LEFT CONTACT INTRO
========================= */

.contact-left {
    width: 100%;
    height: auto;

    align-self: auto;
    transform: none;

    text-align: center;
}

.contact-label {
    font-size: 10px;
    letter-spacing: 3px;
}

.contact-left h1 {
    font-size: 32px;

    margin-top: 7px;
    margin-bottom: 8px;
}

.contact-left-p {
    max-width: 380px;

    margin-left: auto;
    margin-right: auto;

    font-size: 10px;
    line-height: 1.4;
}

.contact-divider {
    width: 50px;
    margin: 0 auto;
}


/* =========================
   FORM PANEL
========================= */

.contact-right {
    width: 520px;
    max-width: 100%;

    padding: 30px;

    box-sizing: border-box;
}

.contact-form-title {
    font-size: 14px;
}

.contact-form {
    gap: 10px;
}

.contact-form label {
    font-size: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;

    font-size: 11px;

    box-sizing: border-box;
}

.contact-form textarea {
    height: 140px;
}

.contact-name-label {
    gap: 12px;
}

.contact-form button {
    padding: 10px;
    font-size: 10px;
}


/* ABOUT PAGE - 768 */

.about-main {
    padding-top: 15px;
    padding-bottom: 15px;
}

.about-container {
    max-width: 680px;
    padding: 40px 40px;
    box-sizing: border-box;
}

/* =========================
   DEDICATION PAGE - 768
========================= */

.dedication-main {
    padding: 18px;
    box-sizing: border-box;
}

.dedication-content {
    width: 640px;
    max-width: 100%;

    padding: 35px 40px;

    box-sizing: border-box;
}


/* LABEL */

.dedication-label {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 9px;
}


/* HEADING */

.dedication-content h1 {
    font-size: 24px;
    line-height: 1.1;

    margin-top: 0;
    margin-bottom: 16px;

    text-align: center;
}


/* PEOPLE */

.dedication-people {
    gap: 22px;

    margin-top: 10px;
    margin-bottom: 25px;
}

.person-card {
    width: 155px;
}

.person-card img {
    width: 150px;
    height: 180px;

    object-fit: cover;
}

.person-card h3 {
    font-size: 12px;

    margin-top: 7px;
    margin-bottom: 2px;
}

.person-card p {
    font-size: 9px;
    margin-top: 0;
}


/* BODY */

.dedication-text {
    padding-top: 22px;

    font-size: 11px;
    line-height: 1.5;
}
}

/* Phone portrait */
@media (max-width: 480px) {

    /* =========================
       HEADER
    ========================= */

    header {
        height: 48px;
        position: relative;
    }

    .logo {
        margin-left: 12px;
    }

    .logo img {
        height: 16px;
    }

    .logo-text {
        font-size: 13px;
        margin-left: 7px;
    }

    .header-right {
        margin-right: 12px;
    }

    /* Hide normal desktop/tablet nav */
    .navigation {
        display: none;
    }


    /* =========================
       MOBILE MENU BUTTON
    ========================= */

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;

        width: 28px;
        height: 28px;

        padding: 5px;

        background: transparent;
        border: none;

        cursor: pointer;
    }

    .mobile-menu-button span {
        display: block;

        width: 18px;
        height: 2px;

        background-color: #777;
    }

    .mobile-menu {
        display: none;

        position: absolute;
        top: 48px;
        right: 0;

        width: 150px;

        background-color: #0d0d0c;
        border: 1px solid #444;

        z-index: 9999;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;

        font-family: Arial, sans-serif;
        font-size: 12px;

        padding: 12px 15px;

        border-bottom: 1px solid #333;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        color: #f15a24;
    }


    /* =========================
       HERO IMAGE
    ========================= */

    .hero {
        height: auto;

        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        background-color: #1a1a18;

        /* shorter image on phone */
        padding-top: 245px;

        box-sizing: border-box;
    }

    .hero::before {
        display: none;
    }


    /* =========================
       HERO TEXT
    ========================= */

    .hero-content {
        position: static;

        width: 100%;

        margin: 0;
        padding: 20px 25px 18px;

        transform: none;

        box-sizing: border-box;
        text-align: center;

        background-color: #1a1a18;
    }

    .hero-content h1 {
        max-width: 100%;

        font-size: 17px;
        line-height: 1.15;

        margin: 0 auto 14px;
    }

    .hero-content p {
        width: 300px;
        max-width: 100%;

        font-size: 8px;
        line-height: 1.25;

        margin: 0 auto 9px;
    }

    .hero-accent {
        width: 300px;
        max-width: 100%;

        font-size: 8px !important;

        margin: 0 auto !important;
    }


    /* =========================
       HERO BUTTONS
    ========================= */

    .hero-buttons {
        justify-content: center;

        gap: 10px;

        margin-top: 14px;
    }

    .primary-button,
    .secondary-button {
        font-size: 8px;
        padding: 8px 12px;
    }


    /* =========================
       CATEGORY SECTION
    ========================= */

    .categories {
        height: auto;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        align-items: flex-start;

        gap: 14px;

        /* MUCH LESS outside padding */
        padding: 20px 12px 30px;

        box-sizing: border-box;
    }

     .category-card {
        width: calc((100% - 14px) / 2);
        max-width: 165px;
        height: 145px;
        box-sizing: border-box;
    }

    .category-card img {
        height: 30px;
        margin-top: 12px;
    }

    .category-card h3 {
        font-size: 10px;

        margin-top: 8px;
        margin-bottom: 3px;
    }

    .category-card p {
        font-size: 8px;
        line-height: 1.15;

        padding-left: 8px;
        padding-right: 8px;

        margin-top: 3px;
        margin-bottom: 7px;
    }

    .category-card a {
        font-size: 8px;
    }


    /* =========================
   MOBILE NAV
========================= */

.navigation {
    display: none;
}

.header-right {
    margin-right: 12px;
}


/* Hamburger */

.mobile-menu-button {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 4px;

    width: 28px;
    height: 28px;

    padding: 0;

    background: transparent;
    border: none;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 18px;
    height: 2px;

    background-color: #777;
}


/* Dropdown */

.mobile-menu {
    display: none;

    position: absolute;

    top: 48px;
    right: 0;

    width: 155px;

    background-color: #0d0d0c;

    border-left: 1px solid #444;
    border-bottom: 1px solid #444;

    z-index: 9999;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 11px 14px;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 11px;

    text-decoration: none;

    border-bottom: 1px solid #333;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #f15a24;
}


/* Visually distinguish Dedication as child of About */

.mobile-sub-link {
    padding-left: 25px !important;
    color: #aaa !important;
}


    /* =========================
       FOOTER
    ========================= */

    footer {
        height: 42px;
    }

    footer p {
        font-size: 6px;
    }

    /* =========================
   CONTACT PAGE - PHONE
========================= */

.contact-main {
    min-height: calc(100vh - 90px);

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 20px;

    padding: 35px 15px 40px;

    box-sizing: border-box;

    background-size: cover;
    background-position: center;
}


/* =========================
   CONTACT INTRO
========================= */

.contact-left {
    width: 100%;
    height: auto;

    align-self: auto;
    transform: none;

    text-align: center;
}

.contact-label {
    font-size: 8px;
    letter-spacing: 3px;
}

.contact-left h1 {
    font-size: 25px;

    margin-top: 6px;
    margin-bottom: 7px;
}

.contact-left-p {
    max-width: 320px;

    margin-left: auto;
    margin-right: auto;

    font-size: 11px;
    line-height: 1.4;
}

.contact-divider {
    width: 45px;
    height: 2px;

    margin: 0 auto;
}


/* =========================
   FORM PANEL
========================= */

.contact-right {
    width: 340px;
    max-width: 100%;

    padding: 22px;

    box-sizing: border-box;
}

.contact-form-title {
    font-size: 12px;
}

.contact-form {
    gap: 9px;
}

.contact-form label {
    font-size: 8px;
}


/* STACK FIRST/LAST NAME */

.contact-name-label {
    flex-direction: column;
    gap: 9px;
}

.contact-name-label input {
    width: 100%;
}


/* INPUTS */

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 9px;

    font-size: 9px;

    box-sizing: border-box;
}

.contact-form textarea {
    height: 120px;
}


/* BUTTON */

.contact-form button {
    padding: 9px;

    font-size: 8px;
}


/* =========================
   ABOUT PAGE - PHONE
   max 480px
========================= */

 .about-main {
        padding: 15px 20px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

.about-container {
    width: 100%;
    max-width: 100%;
    padding: 30px 22px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================
   ABOUT HERO
========================= */

.about-hero-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.about-hero-content {
    width: 100%;
}

.about-container h3 {
    font-size: 11px;
    letter-spacing: 3px;
    text-align: center;
}

.about-container h1 {
    font-size: 25px;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 18px;
}

.hero-divider {
    width: 50px;
    height: 2px;
    margin: 0 auto 18px;
}

.about-hero-content p {
    font-size: 12px;
    line-height: 1.4;
}

.about-hero-image {
    width: 100%;
    text-align: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}


/* =========================
   ALL NUMBERED SECTIONS
========================= */

.record-holders,
.information-asymmetry,
.student-rights,
.incentive-problem,
.public-records,
.auditing,
.why-archive-exists {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 30px;
    padding-top: 25px;
}

.section-content {
    width: 100%;
    min-width: 0;
}

.about-container h2 {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 5px;
}

.about-container p,
.about-container li {
    font-size: 12px;
    line-height: 1.4;
}


/* =========================
   LARGE SECTION ICON
========================= */

.section-big-icon {
    width: 100%;
    text-align: center;
}

.section-big-icon img {
    width: 55px;
}


/* =========================
   RECORD HOLDERS
========================= */

.record-holders-columns {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.record-holders-columns .column {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.record-holders-columns .column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}


/* =========================
   INFORMATION ASYMMETRY
========================= */

.information-asymmetry-columns {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 18px;
    margin-bottom: 18px;
}

.information-asymmetry-columns .column {
    width: 100%;
}

.information-asymmetry-columns .column:first-child {
    border-right: none;
    border-bottom: 1px solid #444;
    padding-right: 0;
    padding-bottom: 15px;
}

.information-asymmetry-columns .column:last-child {
    padding-left: 0;
}


/* =========================
   STUDENT RIGHTS
========================= */

.student-rights-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.student-rights-columns .column {
    width: 100%;
    padding: 0 !important;
}

.student-rights-columns .column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #444;
    padding-bottom: 18px !important;
}


/* =========================
   PUBLIC RECORDS
========================= */

.public-records-columns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.public-records-columns .column {
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
}

.public-records-columns .column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #444;
}


/* =========================
   AUDITING
========================= */

.auditing-columns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auditing-columns .column {
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
}

.auditing-columns .column:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #444;
}


/* =========================
   WHY ARCHIVE EXISTS
========================= */

.why-archive-exists-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-archive-exists-columns .column {
    width: 100%;
    padding: 0;
}

.why-archive-exists-columns .column:not(:last-child) {
    border-right: none;
}


/* =========================
   CLOSING STATEMENT
========================= */

.closing-statement {
    flex-direction: column;
    gap: 10px;

    margin-top: 30px;
    padding: 20px;

    text-align: center;
}

.closing-statement h2 {
    font-size: 16px;
}


 .dedication-text {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* =========================
   LARGE TABLET
   769px - 1024px
   Galaxy Tab S7 portrait = 800px
========================= */

@media (min-width: 769px) and (max-width: 1024px) {

    /* =========================
       HEADER
    ========================= */

    header {
        height: 70px;
    }

    .logo {
        margin-left: 20px;
    }

    .logo img {
        height: 23px;
    }

    .logo-text {
        font-size: 20px;
        margin-left: 10px;
        white-space: nowrap;
    }

    .header-right {
        margin-right: 20px;
        gap: 0;
    }

    .navigation {
        gap: 22px;
        font-size: 13px;
    }


    /* =========================
       HERO
    ========================= */

    .hero {
        height: auto;

        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        background-color: #1a1a18;

        /* image portion */
        padding-top: 420px;

        box-sizing: border-box;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        position: static;

        width: 100%;
        max-width: none;

        margin: 0;
        padding: 30px 25px 28px;

        transform: none;

        box-sizing: border-box;
        text-align: center;

        background-color: #1a1a18;
    }

    .hero-content h1 {
        font-size: 25px;
        line-height: 1.15;

        margin: 5px auto 17px;
    }

    .hero-content p {
        width: 480px;
        max-width: 100%;

        margin: 0 auto 13px;

        font-size: 12px;
        line-height: 1.3;

        text-align: center;
    }

    .hero-accent {
        width: 480px;
        max-width: 100%;

        margin: 0 auto !important;

        font-size: 12px !important;
    }


    /* =========================
       CATEGORY SECTION
    ========================= */

    .categories {
        height: auto;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        align-items: flex-start;

        gap: 20px;

        padding: 25px 30px 40px;

        box-sizing: border-box;
    }

    .category-card {
        width: 200px;
        height: 190px;
    }

    .category-card img {
        height: 36px;
        margin-top: 15px;
    }

    .category-card h3 {
        font-size: 13px;

        margin-top: 10px;
        margin-bottom: 3px;
    }

    .category-card p {
        font-size: 10px;
        line-height: 1.15;

        padding-left: 12px;
        padding-right: 12px;

        margin-top: 4px;
        margin-bottom: 8px;
    }

    .category-card a {
        font-size: 10px;
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        height: 55px;
    }

    footer p {
        font-size: 9px;
    }

    /* =========================
   CONTACT PAGE - LARGE TABLET
   769px - 1024px
========================= */

.contact-main {
    min-height: auto;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 30px;

    padding: 55px 30px 60px;

    box-sizing: border-box;

    background-size: cover;
    background-position: center;
}


/* =========================
   LEFT CONTACT INTRO
========================= */

.contact-left {
    width: 100%;
    height: auto;

    align-self: auto;
    transform: none;

    text-align: center;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 3px;
}

.contact-left h1 {
    font-size: 38px;

    margin-top: 8px;
    margin-bottom: 10px;
}

.contact-left-p {
    max-width: 430px;

    margin-left: auto;
    margin-right: auto;

    font-size: 12px;
    line-height: 1.4;
}

.contact-divider {
    width: 60px;
    margin: 0 auto;
}


/* =========================
   FORM PANEL
========================= */

.contact-right {
    width: 600px;
    max-width: 100%;

    padding: 35px;

    box-sizing: border-box;
}

.contact-form-title {
    font-size: 16px;
}

.contact-form {
    gap: 12px;
}

.contact-form label {
    font-size: 11px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;

    font-size: 13px;

    box-sizing: border-box;
}

.contact-form textarea {
    height: 160px;
}

.contact-name-label {
    gap: 15px;
}

.contact-form button {
    padding: 12px;
    font-size: 12px;
}


/* =========================
   DEDICATION PAGE
   769px - 1024px
========================= */

.dedication-main {
    padding: 20px;
    box-sizing: border-box;
}

.dedication-content {
    width: 680px;
    max-width: 100%;

    padding: 40px 45px;

    box-sizing: border-box;
}


/* LABEL */

.dedication-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}


/* HEADING */

.dedication-content h1 {
    font-size: 27px;
    line-height: 1.1;

    margin-top: 0;
    margin-bottom: 18px;

    text-align: center;
}


/* PEOPLE */

.dedication-people {
    gap: 25px;

    margin-top: 10px;
    margin-bottom: 28px;
}

.person-card {
    width: 175px;
}

.person-card img {
    width: 165px;
    height: 200px;

    object-fit: cover;
}

.person-card h3 {
    font-size: 13px;

    margin-top: 8px;
    margin-bottom: 2px;
}

.person-card p {
    font-size: 10px;
    margin-top: 0;
}


/* BODY TEXT */

.dedication-text {
    padding-top: 25px;

    font-size: 12px;
    line-height: 1.5;
}
}

/* =========================
   CONTACT PAGE
   1367px - 1550px
========================= */

@media (min-width: 1367px) and (max-width: 1550px) {

    .contact-main {
        min-height: 780px;
        gap: 55px;
    }


    /* =========================
       LEFT SIDE
    ========================= */

    .contact-left {
        width: 450px;
        height: 530px;
        transform: translateY(80px);
    }

    .contact-label {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .contact-left h1 {
        font-size: 43px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .contact-left-p {
        max-width: 380px;
        font-size: 14px;
        line-height: 1.45;
    }

    .contact-divider {
        width: 62px;
    }


    /* =========================
       RIGHT / FORM PANEL
    ========================= */

    .contact-right {
        width: 580px;
        padding: 38px;
        box-sizing: border-box;
    }

    .contact-form-title {
        font-size: 16px;
    }


    /* =========================
       FORM
    ========================= */

    .contact-form {
        gap: 12px;
    }

    .contact-form label {
        font-size: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .contact-form textarea {
        height: 165px;
    }

    .contact-name-label {
        gap: 15px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 12px;
    }

}

/* =========================
   INDEX PAGE
   1367px - 1550px
========================= */

@media (min-width: 1367px) and (max-width: 1550px) {

    /* =========================
       HERO
    ========================= */

    .hero {
        height: 720px;
    }

    .hero-content {
        width: 340px;

        top: 135px;
        left: 115px;

        margin-left: 55px;
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 29px;
        line-height: 1.15;

        margin-bottom: 22px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.25;

        margin-bottom: 18px;
    }


    /* =========================
       CATEGORY SECTION
    ========================= */

    .categories {
        height: 320px;

        gap: 24px;

        padding: 0 35px;

        box-sizing: border-box;
    }

    .category-card {
        width: 225px;
        height: 225px;
    }

    .category-card img {
        height: 44px;
        margin-top: 18px;
    }

    .category-card h3 {
        font-size: 17px;

        margin-top: 15px;
        margin-bottom: 4px;
    }

    .category-card p {
        font-size: 12px;
        line-height: 1.15;

        padding-left: 16px;
        padding-right: 16px;

        margin-top: 4px;
        margin-bottom: 10px;
    }

    .category-card a {
        font-size: 13px;
    }

}


.contact-success {
    width: 100%;
    padding: 40px 0;
}

.contact-success .contact-form-title {
    margin-bottom: 20px;
}

.contact-success-message {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-right {
    width: 650px;
    background-color: #1a1a18;
    border: 1px solid #555;
    padding: 50px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 35px 0;
}


.contact-info-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #242421;
    border-radius: 50%;
}


.contact-info-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}


.contact-info-content {
    flex: 1;
}


.contact-info-title {
    color: white;

    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: bold;

    margin-top: 0;
    margin-bottom: 15px;
}


.contact-info-text {
    color: #f2f2f2;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;

    margin-top: 0;
    margin-bottom: 18px;
}


.contact-info-text strong {
    color: white;

    font-family: Arial, sans-serif;
    font-weight: bold;
}


.contact-email {
    color: #f15a24;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;

    text-decoration: none;
}


.contact-email:hover {
    color: #f15a24;
    text-decoration: underline;
}


.contact-info-divider {
    width: 100%;
    height: 1px;

    background-color: #444;

    margin: 30px 0;
}


/* =========================
   CONTACT RIGHT - 1366
========================= */

@media (max-width: 1366px) {

    .contact-right {
        width: 600px;
        padding: 40px;
    }

    .contact-info-row {
        gap: 28px;
        padding: 28px 0;
    }

    .contact-info-icon {
        width: 68px;
        height: 68px;
    }

    .contact-info-icon img {
        width: 38px;
        height: 38px;
    }

    .contact-info-title {
        font-size: 22px;
        margin-bottom: 11px;
    }

    .contact-info-text {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .contact-email {
        font-size: 19px;
    }

    .contact-info-divider {
        margin: 24px 0;
    }

}


/* =========================
   CONTACT RIGHT - 768
========================= */

@media (max-width: 768px) {

    .contact-right {
        width: 520px;
        max-width: 100%;
        padding: 32px;
    }

    .contact-info-row {
        gap: 22px;
        padding: 22px 0;
    }

    .contact-info-icon {
        width: 58px;
        height: 58px;
    }

    .contact-info-icon img {
        width: 32px;
        height: 32px;
    }

    .contact-info-title {
        font-size: 19px;
        margin-bottom: 9px;
    }

    .contact-info-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .contact-email {
        font-size: 17px;
    }

    .contact-info-divider {
        margin: 20px 0;
    }

}


/* =========================
   CONTACT RIGHT - 480
========================= */

@media (max-width: 480px) {

    .contact-right {
        width: 340px;
        max-width: 100%;
        padding: 22px;
    }

    .contact-info-row {
        gap: 15px;
        padding: 17px 0;
    }

    .contact-info-icon {
        width: 46px;
        height: 46px;
    }

    .contact-info-icon img {
        width: 25px;
        height: 25px;
    }

    .contact-info-title {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .contact-info-text {
        font-size: 11px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .contact-email {
        font-size: 14px;
    }

    .contact-info-divider {
        margin: 15px 0;
    }

}