html, body {
    overflow-x: hidden;
  }
  body {
    position: relative;
    width: 100%;
  }

  body::-webkit-scrollbar{
    display: none;
  }

p {
    max-width: 100%;
}

.body {
    background-color: #222433;
    overflow-x: hidden;
  }
  
  /* Starts styling the order forms */
  
  #contact-form {
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    margin-top: 100px;
  }
  
  
  /* Style inputs with type="text", select elements and textareas */
  input[type=text], select, textarea {
      width: 100%; /* Full width */
      padding: 12px; /* Some padding */ 
      border: 1px solid #ccc; /* Gray border */
      border-radius: 4px; /* Rounded borders */
      box-sizing: border-box; /* Make sure that padding and width stays in place */
      margin-top: 6px; /* Add a top margin */
      margin-bottom: 16px; /* Bottom margin */
      resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
    }
  
  /* Style inputs with type="email", select elements and textareas */
  input[type=email], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
    
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #313356;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #54578d;
  }
  
  /* Add a background color and some padding around the form */
  .container2 {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 30px;
    margin-top: 30px;
  }
  
  /* Ends styling for the order forms */
  
  /* Starts styling for the nav */
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: #54578d;
    color: white;
  }
  
  
  a {
    color: white;
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  a::before {
    text-decoration: none;
  }
  a::after {
    text-decoration: none;
  }
  
  /* header   box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1); */
  
  .header {
    position: fixed;
    width: 80%;
    z-index: 3;
    padding: 20px 0;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px 4px 20px;
    text-decoration: none;
  }
  
  .header .logo {
    color: white;
    display: block;
    float: left;
    font-size: 1.4em;
    padding: 0px 0px;
    text-decoration: none;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 15px 15px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 350px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* section */
  
  .section {
    overflow: hidden;
    margin: auto;
    max-width: 1400px;
  }
  
  .section a {
    position: relative;
    float: left;
    width: 100%;
  }
  
  .section a img {
    width: 100%;
    display: block;
  }
  
  .section a span {
    color: #fff;
    position: absolute;
    font-size: 2em;
    text-shadow: 1px 1px 0 #000;
  }
  
  .section-split a span {
    display: none;
  }
  
  .section-split a:hover span {
    display: block;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 875px) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 0px 0px 0px 0px;
      margin-left: 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  
    /* - link under - */
  
  .link-arrow:after {
      content: '';
      background-size: 100% 100%;
      width: 16px;
      height: 12px;
      position: absolute;
      top: 5px;
      right: -28px;
      -webkit-transition: all .4s cubic-bezier(.35, 1, .33, 1);
      transition: all .4s cubic-bezier(.35, 1, .33, 1)
    }
    
    .link-arrow:hover:after {
      right: -35px
    }
    
    .link-arrow.link-arrow-white:after {
      background-size: 100% 100%
    }
    
    .link-arrow-hover:after {
      right: -35px
    }
    
    .link {
      display: inline-block;
      position: relative;
      border: none;
      padding-bottom: 4px;
      font-weight: 400;
      font-size: 1.15em
    }
    
    .link:active,
    .link:focus,
    .link:hover {
      outline: 0;
    }
    
    .link:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      background: #000;
      width: 0;
      height: 2px;
      -webkit-transition: all .4s cubic-bezier(.35, 1, .33, 1);
      transition: all .4s cubic-bezier(.35, 1, .33, 1)
    }
    
    .link:hover {
      color: white;
    }
    
    .link:hover:before {
      width: 100%
    }
    
    .link-theme:before {
      background: #c36dce
    }
  }
  
  /* 48em = 768px */
  
  @media (min-width: 48em) {
    .section-split a {
      width: 50%;
    }
  }
  
  .background-nav {
    background-color: #18191F;
  }
  
  
  @media (max-width: 875px) {
    .nav-color:hover {
      text-decoration: none;
      color: #c197eb; 
    }
  }
  
  .full-width-div {
    position: absolute;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* ends styling for the nav */
  
  .parallax-container {
    display: flex;
    min-height: 85vh;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    /*  this is where the magic happens:  */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    row-gap: 4rem;
    text-align: center;
  }
  
  .parallax-container2 {
    padding: 6rem 0;
    gap: 1.6em;
    width: 100%;
    height: auto;
  }

  .art-image {
    background-image: url("../img/art.jpg");
  }

  .two-d {
    background-image: url("../img/2_d.jpg");
  }

  .three-d {
    background-image: url("../img/3_d.jpg");
  }

  .bio-image {
    background-image: url("../img/biology.jpg");
  }

  .ap-image {
    background-image: url("../img/ap-resources.jpg");
  }

  .apcsp-image {
    background-image: url("../img/apcsp.jpeg");
  }

  .apes-image {
    background-image: url("../img/apes.jpg");
  }

  .aphug-image {
    background-image: url("../img/aphug.jpg");
  }

  .apush-image {
    background-image: url("../img/apush.jpg");
  }

  .apwh-image {
    background-image: url("../img/apwh.jpg");
  }

  .art-history-image {
    background-image: url("../img/art_history.jpg");
  }

  .calc-ab-image {
    background-image: url("../img/calcab.jpg");
  }

  .calc-bc-image {
    background-image: url("../img/calcbc.jpg");
  }

  .chem-image {
    background-image: url("../img/chem.jpg");
  }

  .gov-image {
    background-image: url("../img/gov.jpg");
  }

  .lang-image {
    background-image: url("../img/lang.jpg");
  }

  .lit-image {
    background-image: url("../img/lit.jpg");
  }

  .macro-image {
    background-image: url("../img/macro.jpg");
  }

  .micro-image {
    background-image: url("../img/micro.jpg");
  }

  .music-image {
    background-image: url("../img/music.jpg");
  }

  .psych-image {
    background-image: url("../img/psych.png");
  }

  .e-and-m-image {
    background-image: url("../img/e_and_m.jpg");
  }

  .mechanics-image {
    background-image: url("../img/mechanics.jpg");
  }

  .physics1-image {
    background-image: url("../img/physics1.jpg");
  }

  .physics2-image {
    background-image: url("../img/physics2.jpeg");
  }

  .research-image {
    background-image: url("../img/research.jpg");
  }

  .seminar-image {
    background-image: url("../img/seminar.jpeg");
  }

  .apcsa-image {
    background-image: url("../img/apcsa.jpg");
  }

  .precalc-image {
    background-image: url("../img/precalc.jpg");
  }

  .stats-image {
    background-image: url("../img/stats.jpg");
  }

  .euro-image {
    background-image: url("../img/euro.jpg");
  }

  .chinese-image {
    background-image: url("../img/chinese.jpg");
  }

  .french-image {
    background-image: url("../img/french.png");
  }
  
  .german-image {
    background-image: url("../img/german.jpg");
  }

  .italian-image {
    background-image: url("../img/italian.jpg");
  }

  .japanese-image {
    background-image: url("../img/japanese.jpg");
  }

  .latin-image {
    background-image: url("../img/latin.jpg");
  }

  .spanish-lang-image {
    background-image: url("../img/spanish1.jpg");
  }

  .spanish-lit-image {
    background-image: url("../img/spanish2.jpg");
  }

  .college-apps-image {
    background-image: url("../img/college_apps.jpg");
  }


  .home-image {
    background-image: url("../img/home.jpg");
  }

  .act-image {
    background-image: url("../img/act.png");
  }

  .sat-image {
    background-image: url("../img/sat.jpg");
  }

  .tutoring-image {
    background-image: url("../img/tutoring.jpg");
  }
  
  .buffer {
    width: 100%;
    min-height: 60vh;
    background-color: #222433;
  }
  
  .home-btn {
    text-align: center;
    vertical-align: middle;
    color: black;
    width:150px;
    height: 50px;
    border-radius: 10em;
    border: 2px solid black;
    outline: none;
    background: #ddd;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 15px;
  }
  
  .home-btn:hover {
    border: 2px solid #c36dce;
  }
  
  .home-heading {
    color: white;
    font-size: 7.8em;
    font-weight: 600;
    position: relative;
    top: 50px;
    bottom: 50px;
  }
  
  @media (max-width: 875px) {
    .home-heading {
      font-size: 5em;
    }
  }
  
  .home-page-text {
    font-size: 2em;
    color: white;
    margin: 2em;
  }
  
  .home-subtext {
    font-size: 2em;
    color: white;
    justify-content: left; 
    margin-top: 15px;
  }
  
  .footer {
    min-height: 30vh;
    background-color: #18191F;
  }
  .footer-btn {
    display: block;
    background: none;
    color: #c36dce;
  
  }
  
  /* Styles indiv car page*/
  
  * {
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    vertical-align: top;
  }
  
  .gallery {
    display: flex;
    margin: 10px auto;
    max-width: 600px;
    position: relative;
    padding-top: 66.6666666667%;
  }
  @media screen and (min-width: 600px) {
    .gallery {
      padding-top: 70%;
    }
  }
  
  .gallery__img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    height: 75%;
    object-fit: cover;
  }
  
  .gallery__thumb {
    padding-top: 6px;
    margin: 6px;
    display: block;
  }
  .gallery__selector {
    position: absolute;
    opacity: 0;
    visibility: hidden;
  }
  .gallery__selector:checked + .gallery__img {
    opacity: 1;
  }
  .gallery__selector:checked ~ .gallery__thumb > img {
    box-shadow: 0 0 0 3px #6e49f3;
  }
  
  .gallery__item:hover {
    background-color: rgb(0, 0, 0, 0.1);
    background-blend-mode: multiply;
  }
  
  .car-gallery {
    margin-top: 100px;
  }
  
  /* End of styling indiv car page */
  
  /* Start of styling fleet images */
  
  .fleet {
    margin-top: 100px;
  }
  
  .fleet-text {
    margin-top: 10px;
    text-align: center;
    color: white;
    font-size: 1.5em;
    font-weight: 500;
  }
  
  .fleet-text:hover {
    color: #c197eb;
  }
  
  .car-box {
    margin-bottom: 15px;
  }
  
  .rounded:hover {
    opacity: 0.8;
  }
  
  .book-btn {
    text-align: center;
    vertical-align: middle;
    color: black;
    width:150px;
    height: 50px;
    border-radius: 10em;
    border: 2px solid black;
    outline: none;
    background: #dddddd;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .book-btn:hover {
    background: #c7d9f6;
  }
  /* End of styling fleet images */
  
  .home-text {
    margin-bottom: 30px;
  }
  
  .home-smalltxt {
    margin-top: 15px;
    color: white;
  }

  .home-bigtxt {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .words {
    color: white;
  }

  .pdf-link {
    color: white;
    text-decoration: underline;
    text-decoration-color: #c197eb;
    word-wrap:break-word;
  }

  .pdf-link:hover {
    color: #c197eb;
  }
  
  .home-smalllist {
    color: white;
    font-size: 1.2em;
  }
  
  .first-row {
    margin-top: 60px;
  }
  
  .home-book-btn {
    text-align: center;
    vertical-align: middle;
    color: white;
    width:170px;
    height: 70px;
    border-radius: 10em;
    border: 3px solid rgb(0, 0, 0);
    outline: none;
    background: #746abd;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
  .home-book-btn:hover {
    background: #c7d9f6;
    color: black;
  }
  
  .img-home {
    margin-top: 50px;
  }
  
  .home-heading-small {
    color: white;
    font-size: 4em;
    font-weight: 600;
    position: relative;
    margin-bottom: -50px;
  }

  .home-heading-padding {
    margin-top: 10px;
  }

  .bottom-margin {
    margin-bottom: 20px;
  }
  
  @media (min-width: 875px) {
    .smaller-text {
      display: none;
    }
    
    .embed-pdf {
        width: 800px;
        height: 480px;
        margin-bottom: 30px;
    }
  }
  
  @media (max-width: 875px) {
    .img-home {
      display: none;
    }

    .embed-pdf {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
  
    .parallax-container {
      display: flex;
      min-height: 0vh;
      width: 100%;
      height: auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    
      /*  this is where the magic happens:  */
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      row-gap: 4rem;
      text-align: center;
    }
    
    .parallax-container2 {
      padding: 6rem 0;
      gap: 1.6em;
      width: 100%;
      height: auto;
    }

    .art-image {
      background-image: url("../img/art.jpg");
    }
  
    .two-d {
      background-image: url("../img/2_d.jpg");
    }
  
    .three-d {
      background-image: url("../img/3_d.jpg");
    }

    .bio-image {
        background-image: url("../img/biology.jpg");
    }

    .ap-image {
        background-image: url("../img/ap-resources.jpg");
    }

    .apcsp-image {
        background-image: url("../img/apcsp.jpeg");
    }

    .apes-image {
        background-image: url("../img/apes.jpg");
    }

    .aphug-image {
      background-image: url("../img/aphug.jpg");
    }

    .apush-image {
      background-image: url("../img/apush.jpg");
    }

    .apwh-image {
      background-image: url("../img/apwh.jpg");
    }

    .art-history-image {
      background-image: url("../img/art_history.jpg");
    }

    .calc-ab-image {
      background-image: url("../img/calcab.jpg");
    }
  
    .calc-bc-image {
      background-image: url("../img/calcbc.jpg");
    }

    .chem-image {
      background-image: url("../img/chem.jpg");
    }

    .gov-image {
      background-image: url("../img/gov.jpg");
    }

    .lang-image {
      background-image: url("../img/lang.jpg");
    }

    .lit-image {
      background-image: url("../img/lit.jpg");
    }

    .macro-image {
      background-image: url("../img/macro.jpg");
    }

    .micro-image {
      background-image: url("../img/micro.jpg");
    }

    .music-image {
      background-image: url("../img/music.jpg");
    }

    .psych-image {
      background-image: url("../img/psych.png");
    }

    .e-and-m-image {
      background-image: url("../img/e_and_m.jpg");
    }
  
    .mechanics-image {
      background-image: url("../img/mechanics.jpg");
    }
  
    .physics1-image {
      background-image: url("../img/physics1.jpg");
    }
  
    .physics2-image {
      background-image: url("../img/physics2.jpeg");
    }

    .research-image {
      background-image: url("../img/research.jpg");
    }

    .seminar-image {
      background-image: url("../img/seminar.jpeg");
    }

    .apcsa-image {
      background-image: url("../img/apcsa.jpg");
    }

    .precalc-image {
      background-image: url("../img/precalc.jpg");
    }

    .stats-image {
      background-image: url("../img/stats.jpg");
    }

    .euro-image {
      background-image: url("../img/euro.jpg");
    }

    .chinese-image {
      background-image: url("../img/chinese.jpg");
    }
  
    .french-image {
      background-image: url("../img/french.png");
    }
    
    .german-image {
      background-image: url("../img/german.jpg");
    }
  
    .italian-image {
      background-image: url("../img/italian.jpg");
    }
  
    .japanese-image {
      background-image: url("../img/japanese.jpg");
    }
  
    .latin-image {
      background-image: url("../img/latin.jpg");
    }
  
    .spanish-lang-image {
      background-image: url("../img/spanish1.jpg");
    }
  
    .spanish-lit-image {
      background-image: url("../img/spanish2.jpg");
    }

    .college-apps-image {
      background-image: url("../img/college_apps.jpg");
    }

    .home-image {
        background-image: url("../img/home.jpg");
    }

    .act-image {
      background-image: url("../img/act.png");
    }
  
    .sat-image {
      background-image: url("../img/sat.jpg");
    }

    .tutoring-image {
      background-image: url("../img/tutoring.jpg");
    }
  
    .home-subtext {
      font-size: 2em;
      color: white;
      justify-content: left; 
      margin-top: 35px;
    }
  
    .bigger-text {
      display: none;
    }
  
    .body {
      overflow-x:hidden;
    }
  
    .faq-page {
      margin-top: 200px;
    }
  
  }
  
  .faq-page {
    margin-top: 100px;
  }

  @media (max-width: 480px) {
    #picblock {
      background-image: url(mobile.png);
      background-repeat: no-repeat;
      background-size: contain ;
    }
  }
  @media (min-width: 481px) {
    #picblock {
      background-image: url(desktop.png);
      background-repeat: no-repeat;
      background-size: contain ;
    }
  }

  .socials {
    margin-top: 8px;
  }

  .socials:hover {
    color: #c197eb;
  }

/* Code for the collapsible */

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #e9e7ea;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    width: 100%;
    border: 1px solid #222433;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #ccc;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    width: 100%
  }

  .collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  .collapsible-bottom {
    margin-bottom: 50px;
  }

  .collapsible-list {
    margin-top: 15px;
    margin-bottom: 15px;
    text-decoration: underline;
  }

  .collapsible-text {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .list-color {
    color: black;
  }

  .list-color:hover {
    color: #8b54c2;
    text-decoration: underline;
    text-decoration-color: #8b54c2;
  }

/* End code for the collapsible */

/* style going up button */
  

  .top {
    display: inline-block;
    width: 4em;
    height: 4em;
    border: 0.2em solid #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .top:after {
    content: '';
    display: inline-block;
    margin-top: 1em;
    width: 1.4em;
    height: 1.4em;
    border-top: 0.4em solid #333;
    border-right: 0.4em solid #333;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }


/*end styling going up button */

/* card styling */
.wrapper {
    margin: 10vh;
}
.card {
    border: none;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 20px;
    min-height: 350px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .card {
        min-height: 290px;
   }
}
@media (max-width: 420px) {
    .card {
        min-height: 250px;
   }
}
.card.card-has-bg {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center center;
}
.card.card-has-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.card.card-has-bg:hover {
    transform: scale(0.98);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
    background-size: 130%;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card.card-has-bg:hover .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #234f6d;
    background: linear-gradient(0deg, rgba(4, 69, 114, 0.5) 0%, rgba(4, 69, 114, 1) 100%);
}
.card .card-footer {
    background: none;
    border-top: none;
}
.card .card-footer .media img {
    border: solid 3px rgba(255, 255, 255, 0.3);
}
.card .card-meta {
    color: #26bd75;
}
.card .card-body {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover {
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover .card-body {
    margin-top: 30px;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #234f6d;
    background: linear-gradient(0deg, rgba(35, 79, 109, 0.3785889355742297) 0%, rgba(69, 95, 113, 1) 100%);
}

.mission {
    color: white;
}

.text-white {
    font-size: 1.5em;
}

/* end card styling */

.add-underline {
  text-decoration: underline;
}

.add-underline:hover {
  text-decoration-color: #c197eb;
  text-decoration: underline;
  color: #c197eb;
}