:root {
    --red: hsl(0, 78%, 62%);
    --cyan: hsl(180, 62%, 55%);
    --orange: hsl(34, 97%, 64%);
    --blue: hsl(212, 86%, 64%);
    --varyDarkBlue: hsl(234, 12%, 34%);
    --grayishBlue: hsl(229, 6%, 66%);
    --veryLightGray: hsl(0, 0%, 98%);
    --weight1: 200;
    --weight2: 400;
    --weight3: 600;
}

.box p {
    color: var(--grayishBlue);
}

.box {
    border-radius: 5px;
    box-shadow: 0px 30px 40px -20px var(--grayishBlue);
    padding: 30px;
    margin: 20px;  
    /* min-height: 220px; */
    display: flex;
    flex-direction: column;
}

.box-img {
    margin-top: auto;
    animation-duration: 12s !important;
}

.box img {
    float: right;
    width: 70px;
}

@media (max-width: 450px) {
    .box {
        /* height: 200px; */
    }
}

@media (max-width: 950px) and (min-width: 450px) {
    .box {
        /* text-align: center; */
        /* height: 180px; */
    }
}

.cyan {
    border-top: 3px solid var(--cyan);
}
.red {
    border-top: 3px solid var(--red);
}
.blue {
    border-top: 3px solid var(--blue);
}
.orange {
    border-top: 3px solid var(--orange);
}


.varyDarkBlue {
    border-top: 3px solid var(--varyDarkBlue);
}
.grayishBlue {
    border-top: 3px solid var(--grayishBlue);
}
.veryLightGray {
    border-top: 3px solid var(--veryLightGray);
}


.box h2 {
    color: var(--varyDarkBlue);
    font-weight: var(--weight3);
}


@media (min-width: 950px) {
    .row1-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .row2-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box-down {
        position: relative;
    }
    .box {
        width: 40%;
    }
    
}

.activity-section {
    overflow-y: auto;
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999999;
    transition: left .6s;
    /* display: none; */
}

.activity-section.hide {
    left: -100%;
}

.activity-section.show {
    left: 0;
}

  .activity-section h2 {
    font-size: 1.4em;
  }

  
  .activity-section .breadcrumb__text .title {
    width: 60%;
    overflow: hidden;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .activity-section .breadcrumb__text .title h2 {
    /* position: absolute;
    left: 50%;
    transform: translate(-50%);
    background-color: rgba(255,255,255, .5);
    padding: 20px; */
  }

  .arrow-left-icon-container {
    /* position: fixed;
    left: 25px;
    top: 55px; */
  }