/* ================= RESET ================= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* ================= LAYOUT ================= */
.about-page {
    width: 100%;
    max-width: 1200px;
    height: 3000px;
    margin: 0 auto;
    overflow: scroll;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
    background-color: #abd1e9;
}

.top-bar {
    width: 100%;
    max-width: 1200px;
    background-color: #0a89f1;
    padding: 1.5rem 5rem 1.5rem 1rem;
    color: #fff;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
}

/* ================= DESKTOP ACTIONS ================= */
.desktop-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ================= CAB BUTTON ================= */
#CAB {
    height: 50px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(
        90deg,
        #0a89f1 0%,
        #0a89f1 10%,
        #2e65dd 45%,
        #2e65dd 100%
    );
    border-radius: 5px;
    font-size: large;
    transition: all 0.3s ease;
}

#CAB:hover,
#CAB:focus {
    outline: 2px solid #ffd400;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* ================= MOBILE SLIDE MENU ================= */
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;

    width: 30%;
    min-width: 260px;
    height: 100%;

    background-color: #2e65dd;
    padding: 2rem 1.5rem;

    display: none;
    flex-direction: column;
    gap: 1rem;

    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;

    z-index: 1000;
}

/* slide in */
.mobile-menu.active {
    transform: translateX(0);
    display: flex;
}

/* menu links */
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 3.5px;
    color: #000;
}

/* close button */
.close-menu {
    align-self: flex-end;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 1rem;
    padding-right: 5rem;
}

/* ================= LINK BAR ================= */
.link-box {
    background-color: #fff;
    width: 100%;
    height: 35px;
}

.link {
    display: flex;
    gap: 5.8rem;
    padding: 7px 5rem 0;
}

.link a {
    text-decoration: none;
    color: rgb(2, 23, 48);
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 3.5px;
    transition: all 0.3s ease;
    border-radius: 7px;
    display: inline-block;
}

.link a:hover,
.link a:focus {
    border: none;
    transform: scale(1.1);
    background-color: #0a89f1;
    color: #fff;
    
} 

/* ================= howtoapply bar ================= */
.howtoapply-bar {
       background-color: #0a89f1;
    width: 100%;
    height: 40px;
}

/* ================= howtoapply-droplink ================= */
.howtoapply-droplink {
    display: flex;
    padding: 7px 0px 0px 1.3rem;
    gap: 0.5rem;
}

/* ================= howtoapply-droplink a ================= */
.howtoapply-droplink a {
    text-decoration: none;
    font-size: 1.02rem;
    color: #fff;
    transition: all 0.3s ease;
     font-family: Arial, Helvetica, sans-serif;
     text-transform: uppercase;
}

/* ================= home a ================= */
#home a{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color:#fff;
}

#home a:hover,
#home a:focus {
     border: none;
    border-radius: 7px;
    background-color: #000;
    color: #fff;
    padding: 5px;
    font-size: 1.05rem;
    text-decoration: none;
}

/* ================= howtoapply a ================= */
#howtoapply a {
    text-decoration: none;
}

.footer-links a:hover  {
           color: #000;
}

/* ================= Reach Out header ================= */
#Reach-Out {
             font-weight: normal;
       font-family: Arial, sans-serif;
}

/* ================= Reach Out mail ================= */
.mail {
    font-size: 1.05rem;
    color: #fff;
    font-family: Arial, sans-serif
}

/* ================= Reach Out telephone ================= */
#telephone { 
    color: #fff;
    font-family: Arial, sans-serif
}

/* ================= phone ================= */
.phone-circle {
             width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer hr {
    border: none;           
    height: 1px;               
    background-color: rgba(255, 255, 255, 0.4);
}

/* ================= copy ================= */
#copy {
    padding-top: 2rem;
    text-align: center;
    font-family: Arial, sans-serif;
}


/* ================= RESPONSIVE RULES ================= */
/* Tablet & Mobile */
@media (max-width: 1024px) {

    /* hide desktop-only items */
    .desktop-actions {
        display: none;
    }

    /* show hamburger */
    .hamburger {
        display: block;
    }

    /* hide link bar */
    .link-box {
        display: none;
    }

      #slash{
    font-weight: bold;
}

     /* hr */
     hr {
        display: none;
    }
}

/* ================= TABLET & DESKTOP ================= */
@media (min-width: 768px) {
   /* howtoapply-droplink */
.howtoapply-droplink {
    display: flex;
    padding: 7px 5rem 0;
    gap: 0.5rem;
}

/* footer */
.footer {
     color: #fff;
     background-color: #1e5be0;
     font-family: Arial, sans-serif;
      margin-top: 3rem;
}

/* second-row */
.second-row {
    display: flex;
    flex-direction: column;
}

/* footer-paragraph */
#footer-paragraph {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
     word-spacing: 0.1em;
     padding: 10rem 40px 20px;
}

/*  Reach Out header */
#Reach-Out {
             font-weight: normal;
       font-family: Arial, sans-serif;
       padding-left: 40px;
       margin-top: 2rem;
       text-transform: uppercase;
}

/* Reach Out mail  */
.mail {
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
}

/*  Reach Out telephone  */
#telephone {
     display: flex;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
    font-size: 1.2rem;
}

/*  phone  */
.phone-circle {
             width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular-links */
#Popular-links {
     font-size: 2rem;
     font-family: Arial, sans-serif;
     padding: 40px 0px 20px 50px;
}

/* footer-links */
.footer-links {
    font-family: Arial, sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    padding: 0px 40px 10px;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
     text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 3.5px;
    transition: all 0.3s ease;
    border-radius: 7px;
    display: inline-block;
}

footer hr {
    border: none;           
    height: 1px;               
    background-color: rgba(255, 255, 255, 0.4);
}

}

/* ================= MOBILE ONLY ================= */
@media (max-width: 400px) {
    /* howtoapply-bar  */
     .howtoapply-bar {
        background-color: #fff;
}

     /* howtoapply-droplink a  */
     .howtoapply-droplink a {
    text-decoration: none;
    font-size: 1.02rem;
    color: #000; 
}

/* home a  */
#home a{
    text-decoration-color: #000;
    text-decoration-color: #000;
}

#home a:hover,
#home a:focus {
    background-color: #0a89f1;
    color: #fff;
}

/* GFS */
#GFS {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 2.7rem;
    margin: 2rem 1rem;
}

/* Foundational-Ethics-Training */
#Foundational-Ethics-Training {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #6b7280;
    word-spacing: 0.1em;
    letter-spacing: 1px;
    padding-left: 16px;
    margin-bottom: 3rem;
}

/* program-box */
.program-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

/* programs */
.programs {
    width: 90%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
      background-color: #0a89f1;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
}

.programs:hover {
    border-color: #666;
    background-color: #fff;
    color: #000;
}

.programs:focus {
    border-color: #000;
    color: #000;
    background-color: #fff;
}

/* box-container */
.box-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 2rem;
}

/* box */
.box {
    width: 90%;
    height: 1100px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

/* box-header */
#box-header {
    font-size: 32px;
    font-weight: normal;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    text-align: center;
    padding: 5px;
}

/* amount */
#amount {
    font-size: 40px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* highlights p*/
.highlights p{
      font-size: 24px;
      font-weight: normal;
      color: #555;
      text-align: center;
    padding: 10px;
}

/* apply-btn */
.apply-btn {
      width: 200px;
      height: 60px;
      background-color: #2e65dd;
      color: #fff;
      border-radius: 5px;
      margin: auto;

      font-size: 24px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      font-weight: normal;

      transition: 0.3s ease;
      
}

.apply-btn :hover{
    background-color: #2452b8;
}

.apply-btn:focus {
    outline: 3px solid #7aa7ff;
    outline-offset: 3px;
}
}

/* ================= MOBILE ONLY ================= */
@media (min-width: 401px) and (max-width: 767px) {
       /* howtoapply-bar  */
     .howtoapply-bar {
        background-color: #fff;
}

     /* howtoapply-droplink a  */
     .howtoapply-droplink a {
    text-decoration: none;
    font-size: 1.02rem;
    color: #000; 
}

/* home a  */
#home a{
    text-decoration-color: #000;
    text-decoration-color: #000;
}

#home a:hover,
#home a:focus {
    background-color: #0a89f1;
    color: #fff;
}

/* GFS */
#GFS {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 2.7rem;
    margin: 2rem 1rem;
}

/* Foundational-Ethics-Training */
#Foundational-Ethics-Training {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #6b7280;
    word-spacing: 0.1em;
    letter-spacing: 1px;
    padding-left: 16px;
    margin-bottom: 3rem;
}

/* program-box */
.program-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

/* programs */
.programs {
    width: 90%;
    padding: 12px;
    font-size: 19px;
    font-weight: 600;
      color: #fff;
    background-color: #0a89f1;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
}

.programs:hover {
    border-color: #666;
    background-color: #fff;
    color: #000;
}

.programs:focus {
    border-color: #000;
    color: #000;
    background-color: #fff;
}

/* box-container */
.box-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 2rem;
}

/* box */
.box {
    width: 90%;
    height: 900px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

/* box-header */
#box-header {
    font-size: 32px;
    font-weight: normal;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
}

/* amount */
#amount {
    font-size: 40px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* highlights p*/
.highlights p{
      font-size: 24px;
      font-weight: normal;
      color: #555;
      text-align: center;
    padding: 10px;
}

/* apply-btn */
.apply-btn {
      width: 200px;
      height: 60px;
      background-color: #2e65dd;
      color: #fff;
      border-radius: 5px;
      margin: auto;

      font-size: 24px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      font-weight: normal;

      transition: 0.3s ease;
      
}

.apply-btn:hover{
    background-color: #2452b8;
}

.apply-btn:focus {
    outline: 3px solid #7aa7ff;
    outline-offset: 3px;
}
}

/* ================= MOBILE =================*/
@media (max-width: 767px){
    /* footer */
.footer {
     color: #fff;
     background-color: #1e5be0;
     font-family: Arial, sans-serif;
     
}

/* second-row */
.second-row {
    display: flex;
    flex-direction: column;
}

/* footer-paragraph */
#footer-paragraph {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
     word-spacing: 0.1em;
     padding: 10rem 40px 20px;
}

/*  Reach Out header */
#Reach-Out {
             font-weight: normal;
       font-family: Arial, sans-serif;
       padding-left: 40px;
       margin-top: 2rem;
       text-transform: uppercase;
}

/* Reach Out mail  */
.mail {
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
}

/*  Reach Out telephone  */
#telephone {
     display: flex;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
    font-size: 1.2rem;
}

/*  phone  */
.phone-circle {
             width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular-links */
#Popular-links {
     font-size: 2rem;
     font-family: Arial, sans-serif;
     padding: 40px 0px 20px 50px;
}

/* footer-links */
.footer-links {
    font-family: Arial, sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    padding: 0px 40px 10px;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
     text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 3.5px;
    transition: all 0.3s ease;
    border-radius: 7px;
    display: inline-block;
}

footer hr {
    border: none;           
    height: 1px;               
    background-color: rgba(255, 255, 255, 0.4);
}

}


/* ================= MOBILE & TABLET ================= */
@media (min-width: 768px) and (max-width: 1024px){
    /* howtoapply-bar  */
     .howtoapply-bar {
        background-color: #fff;
}

     /* howtoapply-droplink a  */
     .howtoapply-droplink a {
    text-decoration: none;
    font-size: 1.02rem;
    color: #000; 
}

/* home a  */
#home a{
    text-decoration-color: #000;
    text-decoration-color: #000;
}

#home a:hover,
#home a:focus {
    background-color: #0a89f1;
    color: #fff;
}

/* GFS */
#GFS {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 2.7rem;
    margin: 2rem 1rem;
}

/* Foundational-Ethics-Training */
#Foundational-Ethics-Training {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #6b7280;
    word-spacing: 0.1em;
    letter-spacing: 1px;
    padding-left: 16px;
    margin-bottom: 3rem;
}

/* program-box */
.program-box {
    margin-bottom: 24px;
    padding-left: 16px;
}

/* programs */
.programs {
    width: 45%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
  color: #fff;
    background-color: #0a89f1;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
}

.programs:hover {
    border-color: #666;
    background-color: #fff;
    color: #000;
}

.programs:focus {
    border-color: #000;
    color: #000;
    background-color: #fff;
}

/* box-container */
.box-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 1rem;
}

/* box */
.box {
    width: 400px;
    height: 900px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

/* box-header */
#box-header {
    font-size: 32px;
    font-weight: normal;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    text-align: center;
}

/* amount */
#amount {
    font-size: 40px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* highlights p*/
.highlights p{
      font-size: 24px;
      font-weight: normal;
      color: #555;
      text-align: center;
    padding: 10px;
}

/* apply-btn */
.apply-btn {
      width: 200px;
      height: 60px;
      background-color: #2e65dd;
      color: #fff;
      border-radius: 5px;
      margin: auto;

      font-size: 24px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      font-weight: normal;

      transition: 0.3s ease;
      
}

.apply-btn :hover{
    background-color: #2452b8;
}

.apply-btn:focus {
    outline: 3px solid #7aa7ff;
    outline-offset: 3px;
}

/* footer */
.footer {
     color: #fff;
     background-color: #1e5be0;
     font-family: Arial, sans-serif;
     height: 700px;
}

/* second-row */
.second-row {
    display: flex;
    flex-direction: column;
}

/* footer-paragraph */
#footer-paragraph {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
     word-spacing: 0.1em;
     padding: 10rem 40px 20px;
}

/*  Reach Out header */
#Reach-Out {
             font-weight: normal;
       font-family: Arial, sans-serif;
       padding-left: 40px;
       margin-top: 2rem;
       text-transform: uppercase;
}

/* Reach Out mail  */
.mail {
    display: flex;
    font-size: 1.2rem;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
}

/*  Reach Out telephone  */
#telephone {
     display: flex;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 40px;
    margin-top: 1rem; 
    font-size: 1.2rem;
}

/*  phone  */
.phone-circle {
             width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular-links */
#Popular-links {
     font-size: 2rem;
     font-family: Arial, sans-serif;
     padding: 40px 0px 20px 50px;
}

/* footer-links */
.footer-links {
    font-family: Arial, sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    padding: 0px 40px 10px;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
     text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 3.5px;
    transition: all 0.3s ease;
    border-radius: 7px;
    display: inline-block;
}

footer hr {
    border: none;           
    height: 1px;               
    background-color: rgba(255, 255, 255, 0.4);
}
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 1025px) {
    /* GFS */
#GFS {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    margin: 2rem 1rem;
}

/* Foundational-Ethics-Training */
#Foundational-Ethics-Training {
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #6b7280;
    word-spacing: 0.1em;
    letter-spacing: 1px;
    padding-left: 16px;
    margin-bottom: 3rem;
}

/* program-box */
.program-box {
    margin-bottom: 24px;
    padding-left: 16px;
}

/* programs */
.programs {
    width: 30%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #0a89f1;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.5rem;
}

.programs:hover {
    border-color: #666;
    background-color: #fff;
    color: #000;
}

.programs:focus {
    border-color: #000;
    color: #000;
    background-color: #fff;
}


/* box-container */
.box-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 1rem;
}

/* box */
.box {
    width: 400px;
    height: 900px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

/* box-header */
#box-header {
    font-size: 32px;
    font-weight: normal;
    margin-top: 2rem;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    text-align: center;
}

/* amount */
#amount {
    font-size: 40px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* highlights p*/
.highlights p{
      font-size: 24px;
      font-weight: normal;
      color: #555;
      text-align: center;
    padding: 10px;
}

/* apply-btn */
.apply-btn {
      width: 200px;
      height: 60px;
      background-color: #2e65dd;
      color: #fff;
      border-radius: 5px;
      margin: auto;

      font-size: 24px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      font-weight: normal;

      transition: 0.3s ease;
      
}

.apply-btn:hover{
    background-color: #2452b8;
     color: #000;
}

.apply-btn:focus {
    outline: 3px solid #7aa7ff;
    outline-offset: 3px;
}

/* footer */
.footer {
     color: #fff;
     background-color: #1e5be0;
     font-family: Arial, sans-serif;
     height: 650px;
}

/* left-side, right-side */
.left-side {
     width: 50%;
}

/* second-row */
.second-row {
    display: flex;
    flex-direction: row;
    padding: 0px 90px 30px 50px;
    justify-content: space-between;
    align-items: flex-start;
}


/* footer-paragraph */
#footer-paragraph {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
     word-spacing: 0.1em;
}

/*  Reach Out header */
#Reach-Out {
             font-weight: normal;
       font-family: Arial, sans-serif;
       padding: 7.5rem 1.5rem 0rem 1.5rem;
}

/* Reach Out mail  */
.mail {
    display: flex;
    font-size: 1.05rem;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 1.5rem;
    margin-top: 0.5rem; 
}

/*  Reach Out telephone  */
#telephone {
     display: flex;
    align-items: center;
    gap: 0.5rem; 
    color: #fff;
    font-family: Arial, sans-serif;
    padding-left: 1.2rem;
    margin-top: 1rem; 
}

/*  phone  */
.phone-circle {
             width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popular-links */
#Popular-links {
     font-size: 2rem;
     font-family: Arial, sans-serif;
     padding: 50px 0px 20px 50px;
}

/* footer-links */
.footer-links {
    font-family: Arial, sans-serif;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    padding: 0px 40px 0;
    gap: 2rem;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
     text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 3.5px;
    transition: all 0.3s ease;
    border-radius: 7px;
    display: inline-block;
}

footer hr {
    border: none;           
    height: 1px;               
    background-color: rgba(255, 255, 255, 0.4);
}
}

/* ================= MOBILE ================= */
@media (min-width: 500px) and (max-width: 700px) {
    /* footer */
    .footer{
        height: 800px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 400px) {
    /* footer */
    .footer{
        height: 1000px;
    }
}