@font-face {
    font-family: 'Cherilyn';
    src: url('/Fonts/cherilyn-webfont.woff') format('woff'),
         url('/Fonts/cherilyn-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ortica';
    src: url('/Fonts/OrticaLinear-Regular.woff') format('woff'),
         url('/Fonts/OrticaLinear-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ortica';
    src: url('/Fonts/OrticaLinear-Light.woff') format('woff'),
         url('/Fonts/OrticaLinear-Light.woff2') format('woff2');
    font-weight: light;
    font-style: normal;
}

@font-face {
    font-family: 'Ortica';
    src: url('/Fonts/OrticaLinear-Bold.woff') format('woff'),
         url('/Fonts/OrticaLinear-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ortica';
    src: url('/Fonts/OrticaAngular-Bold.woff') format('woff'),
         url('/Fonts/OrticaAngular-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Truculenta";
    src: url('/Fonts/Truculenta-VariableFont_opsz\,wdth\,wght.ttf');
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    background-color: #EBEBEB;
    margin: 0px;
}

p {
    font-family: "Alice", serif;
}

.email-button {
    color: #1F1F1F !important;
    background-color: #59B1A9;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Ortica';
    font-size: 20px;
    font-weight: bold;
}

.download-button {
    display: inline-flex;
    padding: 8px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #59B1A9;
    color:#1F1F1F;
    width: 228px;
    text-decoration: none;
    font-size: 20px;
    font-family: "Ortica";
    font-weight: bold;
}

.download-button:hover {
    background-color: #74BEB8;
    color: #1f1f1f;
}

.email-button:hover {
    color:#1f1f1f;
    background-color: #74BEB8;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.titleHeader {
    color: #417A9F;
    font-family: "Cherilyn";
    font-size: 64px;
    font-weight: 400;
    width: 80%;
    margin: auto;
    padding: 32px 0px;
}

.scroll-container {
    background-color: #1F1F1F;
    overflow: hidden;
    width: 100vw;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.scroll-text {
    font-family: 'Junction', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #DABE95;
    white-space: nowrap;


    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(0%);
    
    -moz-animation: scroll-right-animation 60s linear infinite;
    -webkit-animation: scroll-right-animation 60s linear infinite;
    animation: scroll-right-animation 60s linear infinite;
}

/* for Firefox */
@-moz-keyframes scroll-right-animation {
from { -moz-transform: translateX(0%); }
to { -moz-transform: translateX(-100%); }
}

/* for Chrome */
@-webkit-keyframes scroll-right-animation {
from { -webkit-transform: translateX(0%); }
to { -webkit-transform: translateX(-100%); }
}

@keyframes scroll-right-animation {
    from {
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.overview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin: auto;
    width: 80%;
    padding: 0;
}

.categoryHead {
    font-family: "Cherilyn", "open-sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1f1f1f;
    padding-bottom: 16px;
    margin: 0px;
    padding: 0;
}

.overHead {
    font-family: "Cherilyn", "open-sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #1f1f1f;
    margin: 0px;
    padding: 0;
}

p {
    font-family: "Alice", serif;
    font-size: 20px;
    font-weight:400;
    margin: 0px;
    padding: 0;
    line-height: 24px;

}

.list {
    list-style: none;
    padding-left: 40px;
    margin: 0px;
}

.list li{
    background-image: url("/images/Right\ nav\ arrow.png");
    background-repeat: no-repeat;
    background-position: left center;
    /*background-size: 30px;*/
    vertical-align: top;
    font-size: 20px;
    padding: 8px 8px 16px 48px;
}

.custom-ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px 8px 16px;
}

.custom-ul-item {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-left: 32px;
}

.custom-ul-item p{
    font-size: 20px;
    line-height: 24px;
}

.custom-ul-item img{
    width: 32px;
    height: 32px;
}

.head-break {
    font-size: 20px;
    font-family: "Cherilyn";
    line-height: 28px;
    font-weight: 700;
}

.overviewDetails {
    display: flex;
    padding: 32px 0px;
    justify-content: space-between;
    gap: 16px;
    margin: auto;
    width: 80%;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: top;
    gap: 32px;
    width: 67%;
    margin: 0px;
    padding: 0;
}

.sidePanel {
    background: #1F1F1F;
    border-radius: 8px;
    box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.40);
    display: flex;
    width: 33%;
    padding: 16px;
    flex-direction: column;
    margin: 0px;
}



.darkHead {
    color: #417A9F;
    font-family:  "Cherilyn", "Open Sans";
    font-size: 24px;
    font-weight: 700;
    background: #1F1F1F;
    padding: 8px 8px 8px 8px;
    margin: 0px;
}

.subHead {
    color: #EBEBEB;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    background: #1F1F1F;
    padding: 0px 8px 8px 8px;
    margin: 0px;
}

.darkText {
    color: #EBEBEB;
    font-family: "Alice";
    font-size: 16px;
    font-weight: 400;
    background: #1F1F1F;
    padding: 4px 8px 4px 0px;
    margin-left: 24px;
}

.panelList {
    padding-left: 32px;
    background: #1F1F1F;
    margin: 0px;
    padding: 0;
}

hr.solid {
    border-top: 2px solid #ccc;
    width: 80%;
    margin: auto;
}

.spacer {
    padding: 16px;
}

.mainCat {
    color: #417A9F;
    font-family: 'Cherilyn';
    font-size: 64px;
    font-weight: 400;
    width: 80%;
    left: 0px;
    padding-top: 8px;
    margin: 0px;
}

.previewImage {
    width: 90vw;
    height: auto;
    margin: auto;
    padding: 0px;
    max-width: 1440px;
}

.preview-container {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90vw;
    max-width: 1440px;
}

.sub-label {
    font-family: "Open Sans";
    font-weight: 500;
    font-size: 20px;
    text-decoration: underline;
}

.research {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin: auto;
    width: 70%;
    padding-bottom: 32px;
    padding-top: 24px;
}

.research p{
    padding: 8px 0px;
    line-height: 24px;

}

.solution {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    margin: auto;
    width: 70%;
    padding-bottom: 32px;
    padding-top: 24px;
}

.catHead {
    font-family: "open-sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #417A9F;
    padding: 0px;
    margin: 0px;
}

.header {
    background-color: #1f1f1f;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    z-index: 99999;
    margin: auto;
    padding: 0;
    top: 0;
}

.nav {
    background-color: #1f1f1f;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    z-index: 99999;
    margin: auto;
    padding: 0;
    top: 0;
    width: 80vw;
    max-width: 1440px;
}

.header img{
    display: block;
    /*padding: 0px 24px 0px 96px;*/
    overflow: clip;
    max-height: 70px;
}

.navRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    text-decoration: none;
    /*padding-right: 96px;*/
    color:#EBEBEB;
    gap: 24px;
}

.navRight a{
    text-decoration: none;
    color: #ebebeb;
}

a:hover {
    color:#518A79;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.content {
    background: #ebebeb;
    max-width: 2160px;
    margin: auto;
}

.slides {
    display: none;
}

.slides img{
    border-radius: 8px;
    max-width: 700px;
}

.slidesSG img{
    border-radius: 8px;
}

.slides {
    display: none;
}

.slideContainer {
    max-width: 67%;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.slides1 {
    display: none;
    width: 100%;
    margin: auto;
}

.slides1 img{
    border-radius: 8px;
    object-fit: contain;
}

.cursor {
    cursor: pointer;
}

.leftArrow {
    background: url(/images/Arrows/leftArrow.svg) no-repeat;
    display: inline-block;
    height: 50px;
    width: 50px;
    background-size: 40px 40px;
}

.leftArrow:hover {
    background: url(/images/Arrows/leftArrowHover.svg) no-repeat;
    height: 50px;
    width: 50px;
    background-size: 40px 40px;
}

.rightArrow {
    background: url(/images/Arrows/rightArrow.svg) no-repeat;
    display: inline-block;
    height: 50px;
    width: 50px;
    background-size: 40px 40px;
}

.rightArrow:hover {
    background: url(/images/Arrows/rightArrowHover.svg) no-repeat;
    height: 50px;
    width: 50px;
    background-size: 40px 40px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  user-select: none;
  -webkit-user-select: none;
}

.next {
    right: -74px;

}

.prev {
    left: -74px;
}

.slideNum {
    color: #417A9F;
    background: rgba(31, 31, 31, 0.90);
    border-radius: 4px;
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: 32px;
    left: 10px;
    z-index: 9999;
}

.gallery {
    width: 67%;
    margin: auto;
    position: relative;
    padding: 48px 0px;
}

.gallerySlides {
    width: 67%;
    margin: auto;
    position: relative;
    padding: 0px 0px 32px 0px;
}

.mainGal {
    display: flex;
    margin: auto;
}

.gallery2 {
    width: 67%;
    margin: auto;
    position: relative;
    padding: 24px 0px;
}

.galCap {
    display:flex;
    flex-direction: column;
    bottom: -80;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.galRow {
    display: none;
    height: 100px;
    background: #D9D9D9;
    border-radius: 0 0 8px 8px;
    overflow-x: scroll;
    width: 100px;
    white-space: nowrap;
}

.galCol img{
    height: 100px;
    object-fit: cover;
}

.trans {
    opacity: .6;
}

.active,
.trans:hover {
  opacity: 1;
}

.active {
    border-radius: 4px;
    border: 1px solid #DABE95;
}

.imgTitle {
    position: absolute;
    text-align: left;
    bottom: 230px;
    box-shadow: 4px 4px 10px rgba(31, 31, 31, 0.80);
 }

 .imgTitle h4{
    padding: 12px;
    font-size: 20px;
    background-color: #284B63;
    line-height: 32px;
    max-width: 280px;
    color:#EBEBEB;
 }

 .capTitCont {
    position: absolute;
    text-align: left;
    bottom: 230px;
    box-shadow: 4px 4px 10px rgba(31, 31, 31, 0.80);
 }

 .capTitCont h4{
    padding: 12px;
    font-size: 20px;
    background-color: #284B63;
    line-height: 32px;
    max-width: 280px;
    color:#EBEBEB;
 }

 .caption-container {
    text-align: left;
    background-color: #1F1F1F;
    height: 80px;
    color: #ebebeb;
    width: 360px;
    bottom: 140px;
    position: absolute;
    box-shadow: 4px 4px 10px rgba(31, 31, 31, 0.80);
}

.caption-container p{
    color: #ebebeb;
    padding: 16px;
    font-size: 12px;
}

.solutionContent {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.orderedList {
    padding: 0px 56px;
}

.orderedList li{
    padding: 8px 0px;
    font-size: 20px;
}

.listHead {
    font-family: "Ortica";
    font-weight: bold;
    font-size: 22px;
}

.postTitle {
    margin: 0;
}

.sliderContainer {
    margin: auto;
    width: 67%;
    height: auto;
}

.averyHats {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    /* Maintain aspect ratio */
    flex: 1 1 auto;
    /* Allow images to grow and shrink */
    object-fit: contain;
}

.heroContainer {
    background-color: #1F1F1F;
    border-radius: 16px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    width: 80vw;
    gap: 48px;
    box-shadow: 4px 4px 12px 0px rgba(31, 31, 31, 0.60);
    max-width: 1440px;
}

.leftHero {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 60%;
    padding: 0px;
    justify-content: center;

}

.rightHero {
    width: 40%;
    padding: 0px;
    display: flex;
    justify-content: center;
    object-fit: contain;
}

.homeHead {
    color: #417A9F;
    font-family: 'Cherilyn';
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin: 0px;
}

.homeSubHead {
    color: #FFF;
    font-family: 'Alice';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.heroHeaderContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heroContent {
    color:#EBEBEB;
}

.heroContent p{
    padding: 8px 0px;
    font-size: 1.15em;
}

.downloadButton a{
    text-decoration: none;
}

.resumeButton {
    background-color: #284B63;
    color: #ebebeb;
    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.resumeButton:hover{
    background-color: #DABE95;
    color:#1F1F1F;
}

.resume.a:hover{
    color: #1f1f1f;
}

.btnres {
    max-width: 221px;
}

/*.portfolioContainer a{
    text-decoration: none;
}*/

.portItem {
    width: 375px;
    height: 575px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 8px rgba(31, 31, 31, 0.70);
}

.portItem:hover {
    opacity: 80%;
}

.portImage {
    width: 100%;
    height: 60%;
    object-fit: contain;
    padding:16px 8px;
}

.portBanner {
    font-family: 'Alice', serif;
    padding: 8px;
    margin: 0px 16px 16px 16px;
}

.blueItem {
    background-color: #4686B0;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.blueItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.blueItem .portBanner {
    background-color: #F5F1ED;
    color: #4686B0;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.portDescription {
    padding: 16px;
    font-family: 'Alice', serif;

}

.tealItem {
    background-color: #6FBDA5;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.tealItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.tealItem .portBanner {
    background-color: #F5F1ED;
    color: #6FBDA5;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.plumItem {
    background-color: #6B025A;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.plumItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.plumItem .portBanner {
    background-color: #F5F1ED;
    color: #6B025A;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.mbItem {
    background-color: #2D5570;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.mbItem .portBanner {
    background-color: #F5F1ED;
    color: #2D5570;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.mbItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.mtItem {
    background-color: #518A79;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.mtItem .portBanner {
    background-color: #F5F1ED;
    color: #518A79;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.mtItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.mpItem {
    background-color: #4F0242;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.mpItem .portBanner {
    background-color: #F5F1ED;
    color: #4F0242;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.mpItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.dbItem {
    background-color: #1E384A;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.dbItem .portBanner {
    background-color: #F5F1ED;
    color: #1E384A;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.dbItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.dtItem {
    background-color: #305248;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.dtItem .portBanner {
    background-color: #F5F1ED;
    color: #305248;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.dtItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.dpItem {
    background-color: #290122;
    color: #ebebeb;
    border: 2px solid #F5F1ED;
}

.dpItem .portBanner {
    background-color: #F5F1ED;
    color: #290122;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
}

.dpItem h3{
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 0px 16px 8px 16px;
    margin: 0px;
}

.video {
    width: 80vw;
    height: auto;
    margin: auto;
}

.myStory {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    margin: auto;
    gap: 24px;
    padding: 32px 0px;
    max-width: 1440px;
}

.myHope {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1F1F1F;
    width: 80vw;
    margin: auto;
    gap: 24px;
    padding: 32px 0px;
    box-shadow: 4px 4px 12px 0px rgba(31, 31, 31, 0.60);
    border-radius: 16px;
}

.storyContainer {
    display: flex;
    flex-direction: column;
    max-width: 67%;
    gap: 24px;
    padding: 24px;
}

.storyHope {
    display: flex;
    flex-direction: column;
    max-width: 67%;
    gap: 24px;
    padding: 24px;
    color:#ebebeb;
}

.meImg {
    max-width: 33%;
    border-radius: 8px;
    align-items: top;
    display: flex;
    justify-content: top;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.40);
}

.meImgHunger {
    max-width: 33%;
    align-items: top;
    display: flex;
    justify-content: top;
    margin: 0px 48px 0px 0px;
}

.capTitCont1 {
    background-color: #1E384A;
    color:#EBEBEB;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    border-radius: 8px;
    padding: 16px;
    z-index: 101;
}

.caption-container1 {
    background-color: #1F1F1F;
    color: #EBEBEB;
    font-family: 'Alice', serif;
    font-size: 14px;
    padding: 32px 16px 16px 16px;
    margin: -16px 0px 0px 0px;
    z-index: 100;
    border-radius: 0px 0px 8px 8px;
}

.sorryText {
    font-family: 'Cherilyn', cursive;
    font-size: 56px; 
    margin: auto;
    padding: 16px;
    color:#518A79;
    max-width: 33%;
    text-align: center;
}

.infoText {
    font-family: 'Cherilyn', cursive;
    font-size: 32px; 
    margin: auto;
    padding: 16px;
    color:#518A79;
    max-width: 33%;
    text-align: center;
}

.vids {
    max-width: 80%;
    max-height: 400px;
    margin: auto;
    display: flex;
    padding: 16px;
}

.contactForm {
    width: 100%;
    background-color: #4F0242;
    padding: 32px;
}

.contactFormContainer {
    display: flex;
    gap: 24px;
    margin: auto;
    width: 80%;
    justify-content: space-between;
}

.contactForm-form {
    width: 60%;
}

.hungry {
    display: flex;
    margin: 0;
    justify-content: Center;
}

.hungry img{
    max-width: 40%;
}

.contactHead {
    color: #D9D9D9;
    font-family: 'Cherilyn';
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin: 56px 0px 16px 0px;
}

.feeed {
    color: #d9d9d9;
    font-family: 'Alice', serif;
    font-size: 32px;
    margin: 0px;
}

.figma {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    margin: 0;
    max-width: 1440px;
}

.figma-container {
    margin: auto;
    width: 80vw;
    height: 450px;
    padding: 32px 0px;
    max-width: 1440px;
}

.myHunger {
    background-color: #1f1f1f;
}

.hungerContent {
    width: 80vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    margin: auto;
    gap: 32px;
}

.leftHunger {
    color:#ebebeb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: 60%;
}

.rightHunger {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hungryTitle {
    color:#DABE95;
    font-family: 'Cherilyn',script, serif;
    font-size: 60px;
    margin: 0;
}

.hungryAvery {
    max-width: clamp(280px, 400px, 85%);
    height: auto;
}

.paraContainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paraContainer p{
    font-size: 1.15rem;
    font-family: 'Alice', serif;
}

.callout {
    font-size: 1.20rem;
    font-weight: bold;
}

.svg {
    width: 70vw;
    margin: auto;
    max-width: 1440px;
}

h4 {
    font-weight: normal;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.helper-text {
    font-size: 14px;
    color:#1f1f1f;
}

.figma-container-prototype {
    width: 80vw;
    margin: auto;
    height: 450px;
    padding: 32px 0px;
    max-width: 1440px;
}

.figma-proto {
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 100%;
    width: 100%;
    margin: 0;
    max-width: 1440px;
}

.custom-list {
    width: 60vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-list p{
    font-size: 20px;
    line-height: 26px;
}

.custom-list-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.custom-list img{
    max-height: 72px;
}

.note {
    max-width: 800px;
    width: 80vw;
    font-size: 14px;
    font-family: 'Alice';
    font-weight: normal;
    margin: auto;
    text-align: center;
    padding: 16px;
}


@media only screen and (max-width: 768px) {
    /* For Mobile */

    .hats-pic {
        width: 67vw;
    }

    .hungerContent {
        flex-direction: column-reverse;
    }

    .leftHunger {
        width: 80vw;
    }

    .rightHunger {
        width: 80vw;
    }

    .paraContainer {
        padding-bottom: 24px;
    }

    .header img{
        padding: 0px 32px;

    }

    .navRight {
            display: none;
    }

    .heroContent {
        font-size: 12px;
    }

    .homeHead {
        font-size: 50px;
    }

    .homeSubHead {
        font-size: 20px;
    }

    .heroContainer {
        flex-direction: column-reverse;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 95%;
        gap: 0;
    } 

    .leftHero {
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .rightHero {
        justify-content: center;
        align-items: center;
        display: flex;
        margin: auto;
        flex-basis: 50%;
        flex-shrink: 1;

    }

    .heroHeaderContainer {
        width: 100%;
        justify-content: left;
        align-items: left;
        gap: 8px;
    }

    .overviewDetails {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 32px;
    }

    .list li{
        font-size: 16px;
    }

    .list {
        width: 85vw;
    }

    .titleHeader {
        font-size: 32px;
    }

    .categoryHead {
        font-size: 20px;
    }

    .overHead {
        font-size: 24px;
    }

    p{
        font-size: 16px;
        font-family: "Alice", serif;
    }

    .sidePanel {
        width: 100%;
    }

    .capTitCont {
        display: none;

    }

    .caption-container {
        display: none;
    }

    .leftArrow {
        background: url(/images/Arrows/leftArrow.svg) no-repeat;
        display: inline-block;
        height: 30px;
        width: 30px;
        background-size: 24px 24px;
        left: 30px;
        position: absolute;
    }
    
    .leftArrow:hover {
        background: url(/images/Arrows/leftArrowHover.svg) no-repeat;
        height: 30px;
        width: 30px;
        background-size: 24px 24px;
        left: 30px;
        position: absolute;
    }
    
    .rightArrow {
        background: url(/images/Arrows/rightArrow.svg) no-repeat;
        display: inline-block;
        height: 30px;
        width: 30px;
        background-size: 24px 24px;
        right: 30px;
        position: absolute;
    }
    
    .rightArrow:hover {
        background: url(/images/Arrows/rightArrowHover.svg) no-repeat;
        height: 30px;
        width: 30px;
        background-size: 24px 24px;
        right: 30px;
        position: absolute;
    }

    .mainCat {
        font-size: 50px;
    }

    .slides img {
        max-width: 80vw;
    }

    .slideContainer {
        width: 100%;
        margin: auto;
    }

    .sliderContainer {
        width: 80%;
        margin: auto;

    }

    .slideNum {
        display: none;
    }

    .myStory {
        flex-direction: column;
    }

    .meImg {
        width: 100%;
        max-width: 90%;
    }

    .storyContainer {
        width: 100%;
        max-width: 100%;
    }

    .capTitCont1 {
        display: none;
    }
    
    .caption-container1 {
        display: none;
    }
    
    .sorryText {
       font-size: 40px;
       max-width: 90%;
       font-family: 'Cherilyn', cursive;
    }

    .vids {
        max-width: 90%;
        max-height: 50%;
    }

    .figma-container {
        height: 33vh;
    }
}

/* New Home */

.portfolioHeader {
    width: 100vw;
    margin: auto;
    padding: 0px 24px;
}

.portfolioHeader h2{
    font-family: "Cherilyn";
    font-size: 40px;
    font-weight: 400;
    color:#1F1F1F;
    margin: 0;
}

.portfolioContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    padding: 32px 24px;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    gap: 24px;
    background: #ebebeb;
    max-width: 2160px;
    margin: auto;
}

.linkdecoration {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.portfolio-item {
    display: flex;
    min-width: 325px;
    width: calc((100vw - 200px) / 3);
    max-width: calc((2160px - 200px) / 3);
    padding-bottom: 24px;
    flex-direction: column;
    gap: 24px;
    border-radius: 8px;
    border: var(--stroke-weight-2, 2px) solid #1F1F1F;
    background: var(--color-white-solid, #FFF);
    flex: 1 1 100%;
    opacity: 0;

    /* Elevation 2 */
    box-shadow: 0px 2px 6px 2px rgba(35, 31, 32, 0.15), 0px 1px 2px 0px rgba(35, 31, 32, 0.30);
}

.portfolio-item-hero {
    background: rgba(31, 31, 31, 0.15);
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 0 2 auto;
}

.preview-image {
    display: flex;
    flex: 0 1 auto;
    max-width: 80%;
    height: 250px;
}

.portfolio-badge-container {
    display: inline-block;
    padding: 0px 24px;
}

.portfolio-badge {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    border-radius: 24px;
    max-width: 275px;
    color: #fff;
    font-family: "Truculenta";
    font-weight: 700;
    font-size: 16px;
    letter-spacing: +0.08px;
}

.portfolio-badge.port-plum {
    background-color: #4F0242;
}

.portfolio-badge.port-blue {
    background-color: #2D5570;
}

.portfolio-badge.port-teal {
    background-color: #59B1A9;
}

.portfolio-item-header {
    color: var(--color-black-solid, #000);
    font-family: "Truculenta";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
    padding: 0px 24px;
}

.portfolio-item-description {
    display: flex;
    max-width: 500px;
    max-height: 80px;
    flex-direction: column;
    justify-content: center;
    color: #6E7274;
    font-family: "Ortica";
    font-size: var(--font-size-16, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.8px;
    padding: 0px 24px;
}

.port-item-highlights {
    display: flex;
    min-width: 150px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.highlight-container {
    display: flex;
    min-width: 180px;
    width: 100%;
    height: 100%;
    padding: 0px 24px;
    margin: auto;
    flex: 1;
    align-self: center;

}

.port-highlight {
    display: flex;
    padding: 8px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(31, 31, 31, 0.15);
    width: 100%;
    flex: 0 1 auto;
    min-width: 125px;
}

.highlight-head {
    color: var(--color-grey-12, #1F1F1F);
    font-family: "Truculenta";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.highlight-sub {
    color: var(--color-grey-12, #1F1F1F);
    font-family: "Ortica";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.7px;
}

/*plum highlight */
.port-plum:hover .portBG {
    color: var(--color-magenta-21, #6B025A);
    background: rgba(107, 2, 90, 0.15);
} 

.port-plum:hover .portColor {
    color: var(--color-magenta-21, #6B025A);
}

.port-plum:hover .portfolio-item {
    border: var(--stroke-weight-2, 2px) solid #6B025A;
} 

/*blue highlight */
.port-blue:hover .portBG {
    color: #2D5570;
    background: rgba(45, 85, 112, 0.15);
} 

.port-blue:hover .portColor {
    color: #2D5570;
}

.port-blue:hover .portfolio-item {
    border: var(--stroke-weight-2, 2px) solid #2D5570;
}

/*teal highlight */
.port-teal:hover .portBG {
    color: #59B1A9;
    background: rgba(89, 177, 169, 0.15);
} 

.port-teal:hover .portColor {
    color: #59B1A9;
}

.port-teal:hover .portfolio-item {
    border: var(--stroke-weight-2, 2px) solid #59B1A9;
}

.hats-section {
    background-color: #1F1F1F;
    width: 100vw;
    padding: 64px 64px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hats-header {
    color: #ebebeb;
    font-family: "Cherilyn";
    font-size: 64px;
    font-weight: 400;
    margin: 0;
    display: flex;
    justify-content: left;
    align-items: left;
}

.hats {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    gap: 32px;
    justify-content: center;
    align-items: center;
    max-width: 1440px;

}

.hat {
    display: flex;
    flex-direction: column;
    width: calc(80vw / 3);
    max-width: calc(1376px / 3);
    min-width: 350px;
    justify-content: center;
    align-items: center;;
}

.hat-pic {
    display: flex;
    flex: 0 1 auto;
    max-width: 80%;
}

.hat-text {
    color: #ebebeb;
    font-family: "Ortica", serif;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
}


/* Home Animations */

.portfolio-item.fade-in-bottom {
	animation: fade-in-bottom 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}

.fade-in-left {
	animation: fade-in-left .8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in-left {
    0% {
      transform: translateX(-50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  

.fade-in-right {
	animation: fade-in-right .8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in-right {
    0% {
      transform: translateX(50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}

.hat.scale-in-center {
	animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}

@keyframes scale-in-center {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
}