<style>

.entry-title2 {
    font-size: 50px;
    line-height: 62.5px;
}

.two-column-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    padding: 20px 0;
    max-width: 1270px;
    margin: 0 auto;
}

.left-column-degree,
.right-column-degree {
    width: 48%;
    background-color: #F2F5FA;
    padding: 20px;
    border-radius: 8px;
}

.right-column {
    display: flex;
    align-items: flex-start;
}

#map {
    flex-grow: 1; 
}

.star-images-main {
    display: flex;
    align-items: center;
}

.star-images img, .star-images2 img {
    width: 30px; 
    margin-left: 10px;
}

/* Animation for the orange star */
.orange-star {
    animation: growPulseOrange 1s infinite; 
}

/* Animation for the purple star */
.purple-star {
    animation: growPulsePurple 1s infinite; 
}

/* Keyframes for orange star */
@keyframes growPulseOrange {
    0%, 50% { transform: scale(1); } 
    25%, 75% { transform: scale(1.2); } 
}

/* Keyframes for purple star */
@keyframes growPulsePurple {
    0%, 50% { transform: scale(1.2); }
    25%, 75% { transform: scale(1); }
}

.star-images {
    margin: 41px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -88px;
    bottom: 20px;
}

.star-images2 {
    margin: 41px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -64px;
    bottom: 0;
}

.star-images img {
    width: 30px; 
    margin-bottom: 10px; 
}

.two-column-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1270px;
    margin: 0 auto;
}

.left-column-blue {
    width: 30%; 
    padding: 20px;
}

.right-column-cards {
    width: 70%;
    padding: 20px;
    display: flex;
    justify-content: space-between; 
    gap: 15px;
}
   
.btn-visit-site {
    background-color: #223A65;
    color: #FFFFFF;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    width: 250px;
    height: 39px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.btn-visit-site:hover {
    background-color: #2f508b;
    color: #FFFFFF;
}

.external-link-icon2 {
    padding-left: 5px;
}

.school-address {
    text-align: left;
}

.school-star-image {
    padding-bottom: 15px;
    animation: growPulseSchool 1s infinite ease-in-out; 
}

/* Keyframes for orange star growing and shrinking */
@keyframes growPulseSchool {
    0%, 50% { transform: scale(1); } 
    25%, 75% { transform: scale(1.2); }
}

.school-line-image {
    width: 100%;
    max-width: 500px;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.school-line-image2 {
    width: 250px;
    padding-top: 1% 20px;
    margin-bottom: 20px;
    transition: filter 0.3s ease-in-out;
}

.school-line-image2:hover {
    filter: brightness(0.7); /* Darken the image to 70% brightness */
}

.white-background-section {
    background-color: white;
    padding: 50px 0;
    background-image: url(/wp-content/themes/wp-foundation-six/assets/images/color-dot-swoop-4.svg), 
                      url(/wp-content/themes/wp-foundation-six/assets/images/color-dot-swoop-3.svg);
    background-position: calc(0% - 130px) calc(100% + 70px), /* First image: Move left and down */
                         calc(100% + 90px) calc(0% - 90px); /* Second image: Move right and up */
    background-repeat: no-repeat, no-repeat;
    background-size: 350px, 350px;
}



.swirl-arrow {
  position: absolute;
  bottom: 0;
  left: 28%;
  transform: translateX(0%);
  width: 15%;
  z-index: 1;
  animation: moveLeftRight 5s ease-in-out infinite;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}


.visit-site-button {
    margin-top: 20px;
    text-align: left;
    padding-bottom: 40px;
}

.started-title {
    color: #FFBA08;
    font-size: 3em;
}

.external-link-icon {
    margin-left: 10px;
    fill: #FFFFFF; 
}

.full-width-background {
    background-color: #fdeed2;
    width: 100vw; 
    position: relative;
    margin-left: calc(-50vw + 50%); 
    margin-right: calc(-50vw + 50%); 
}

.page-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px 20px 20px; 
    max-width: 1200px;
    margin: 0 auto; 
    position: relative; 
}



.page-wrapper2 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px 20px 20px; 
    max-width: 1200px;
    margin: 0 auto; 
    position: relative; 
}

.page-wrapper-blue {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 20px 20px; 
    max-width: 1270px; 
    margin: 0 auto; 
    position: relative; 
}

.left-column {
    width: 50%;
    padding-right: 20px;
    text-align: center;
}

.right-column {
    width: 45%;
    padding-top: 60px;
    padding-bottom: 50px;
}

#map {
    width: 100%;
    height: 380px;
}

.animated-purple-star {
    position: absolute;
    left: -140px;
    width: 145px;
    z-index: 1; 
    animation: growPulsePur 8s infinite ease-in-out; 
}

/* Keyframes for Purple and green star*/
@keyframes growPulsePur {
    0%, 50% { 
        transform: scale(1); 
    } 
    25%, 75% { 
        transform: scale(1.05); /* Smaller pulse */
    }
}


.address-wrapper {
    position: relative;
    text-align: left;
}

.starter-wrapper {
    position: relative;
    text-align: left;
    width: 30%;
}

.rowblue { 
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto;
    display: flex; /* Add flex to align columns properly */
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
}

.get-started-section {
    background-color: #223A65;
    padding: 3.5rem 0;
    position: relative;
}


h2.startedtext {
    color: #FFBA08;
}


.sketch-line img {
    display: block;
    margin: 0 auto;
}

.card-wrapper {
    display: flex;
    justify-content: space-evenly;
}

.card {
    background-color: #fad486;
    border-radius: 4px;
    margin: 0.5rem;
    max-width: 100%;
    width: 230px;
}

.card a {
    text-decoration: none;
}

.image {
    height: 225px;
    overflow: hidden;
    width: 100%;
}

.image img {
    display: block;
    height: 115%;
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
}

.image .job {
    object-fit: none;
    width: 100%;
    object-position: center 4px;
    padding: 10px;
}

.text {
    background-color: #FFBA08;
    border-radius: 0 0 4px 4px;
    padding: 1rem;
}

.text h3 {
    color: #223A65;
    font-size: 18px;
    margin: 0;
}

.text p {
    color: #000;
    margin: 0;
}

@media (max-width: 1480px) {
.page-wrapper.two-column-section {
    max-height: 1500px;
}

.page-wrapper:not(.two-column-section) {
    max-height: 500px;
}

.entry-title2 {
   font-size: 2em;
   line-height: 1.5em;
 }

}

@media (max-width: 1280px) {
    .animated-purple-star {
        position: absolute;
        left: 0;
        margin-left: 0px;
        width: 50px; 
        z-index: -1;         
        opacity: 0.3; 
    }

    .address-wrapper {
        position: relative; 
    }
}




@media (max-width: 1124px) {
 .text {
    min-height: 119px;
 }
}


@media (max-width: 1023px) {
 .startedtext {
    text-align: center;
 }

 .text {
    min-height: 40px;
 }
}


@media (max-width: 768px) {

.page-wrapper.two-column-section {
    max-height: 1500px;
}

.page-wrapper:not(.two-column-section) {
    max-height: 5000px;
}
.text {
     min-height: 40px;
}

.two-column-section {
        flex-direction: column;
    }

    .left-column-blue,
    .right-column-cards {
        width: 100%; 
        text-align: center; 
        display: inline-block;
    }


.school-line-image2 {
       width: 100%;
       max-width: 300px;
       padding: 10px;
}

.two-column-section {
        flex-direction: column;
    }

    .left-column-degree,
    .right-column-degree {
        width: 100%;
        margin-bottom: 20px;
    }

    .page-wrapper {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%; 
        padding-right: 0; 
    }

    .right-column {
        margin-top: 20px;
    }
    .swirl-arrow  {
        display: none;
    }
}


@media (max-width: 749px) {

.text {
     min-height: 120px;
}

@media (max-width: 679px) {

.text {
     min-height: 142px;
}


@media (max-width: 639px) {
 .card-wrapper {
    display: grid;
    text-align: center;
 }
.text {
     min-height: 40px;
 }
}



</style>

