<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.navbar {
    background-color: #5271FF !important;
    color: white !important;
    position: fixed !important;
    width: 100% !important;
    padding: 0% 1.5rem;
}

.navbar-brand{
    font-size: 2.5em;
}

.nav-link{
    font-size: 1.5em !important;
    color: white !important;
}

.nav-link p{
    padding-right: 1em;
}


.nav-item{
    padding-left: 1.5em;
}
.caveat{
    font-family: "Caveat Brush", cursive;
    font-weight: 700;
    font-style: normal;
}

img{
    width: 100px;
    height:auto;
}

/* section one */
.section-5{
    padding-top: 8%;
    width: 100%;
    height: auto;
    background-color: #FFE9C2;
    padding-bottom: 10em;
}

.text-container{
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5em;
    padding-bottom: 3em;
}

h3{
    font-size: 2.5em;
    text-align: center;
    line-height: 300%;

}

h2{
    font-size: 3em;
    text-align: center;
    line-height: 200%;

}

h4{
    font-size: 2em;
    text-align: center;
    /* line-height: 200%; */
}

/* checkbox */
.check-box-container{
    display: block;
    margin-left: auto;
    margin-right:auto;
    padding-top: 2em;
    padding-bottom: 2em;
    border: 3px solid white;
    background-color: #5271FF;
    width: 500px;
    border-radius: 15px;
}

/* Customize the label (the container) */
.check-box-container .container {
    /* border: 3px solid green; */
    width: 450px;
    display: block;
    position: relative;
    padding-left: 50px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: #eee;
    border-color: black;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: white;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #5271FF;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 20px;
    height: 40px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/* section two */
.section-2{
    width: 100%;
    height: auto;
    background-color: #FFDE59;
    padding-bottom: 8em;
    padding-top: 3em;

}

.left-text-container{
    /* margin-left: 6em; */
    padding-top: 3em;
    width: 80%;
    margin: auto;

}

.section-header{
    font-size: 3em;
    color: black;
}

.section-text{
    padding-top: 1em;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-size: 1.5em;
}

.image-container{
    width: 70%;
    /* height:auto; */
    margin-left: auto;
    margin-right: auto;
}

.section-2 img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height:auto;
}

/* grid in section two */

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 20px;
  }
  
  .grid-item {
    text-align: center;
  }
  
  .grid-item img {
    width: 100px; /* Adjust the width as needed */
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .grid-container .grid-item:nth-child(4),
  .grid-container .grid-item:nth-child(5) {
    grid-column: span 1;
  }
  
  .grid-container .grid-item:nth-child(4) {
    grid-column-start: 2; /* Start the 4th item in the middle of the bottom row */
  }


/* section three */
.section-3{
    width: 100%;
    height: auto;
    background-color: #CAE2AC;
    padding-bottom: 8em;
    padding-top: 3em;

}

/* image section in section three  */
/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
    float: left;
    width: 33.33%;
    padding: 15px;
  }
  
  /* Clear floats after image containers */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }

/* section four */
.section-4{
    width: 100%;
    height: auto;
    background-color: #CEE6FF;
    padding-bottom: 8em;
    padding-top: 3em;

}

/* introduction section four */
* {
    box-sizing: border-box;
  }
  
  .box {
    float: left;
    width: 50%;
    padding: 50px;

  }

  .box img {
    width: 50%;
    height: 287px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .box p{
    margin-top: 3em;
    width: 100%;
    font-size: 0.8em;
    text-align: left;
  }
  
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }


.section-1{
  width: 100%;
  height: auto;
  background-color: #ffc2b4;
  padding-bottom: 8em;
  padding-top: 5em;
}

.section-5 iframe{
  display:block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}


</pre></body></html>