*{
  margin: 0;
  padding: 0;
  font-family: arial, helvetica, sans-serif;
  list-style: none; /* removes any default markers, bullets, etc. */
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  background: #cccccc;
  display: block;
  justify-content: center; /* Horizontally center */
  background-image: url('images/cloud.png'); /* Replace with your image URL */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps the background fixed while scrolling */
  background-position: center top; /* Aligns the image to the top */
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 320 =====================================
* ==================================================================== */
.container{
  min-width: 320px;
  max-width: 599px;
}
/* HEADER Section Begins */
/* Position the <h1> on top of the navigation background */
header h1 {
  position: absolute;
  color: #FFF44F;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 40px;
  margin: 0 10px;
  z-index: 1;
}
/* NAV Begins */
nav{
  background: #4169E1;
  height: 40px;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
nav ul{
  display: grid;
  grid-template-columns: repeat(2, 50%); /* Two equal columns */
  column-gap: 0px;
  position: absolute;
  width: 100%;
  height: auto;
  background: #4169E1;
  border-radius: 0px 0px 10px 10px;
  top: 40px;
  left: -100%;
  text-align: center;
  transition: all .5s;
}
/* Align left column items */
nav ul li:nth-child(odd) {
  text-align: left;
}
/* Align right column items */
nav ul li:nth-child(even) {
  text-align: right;
}
nav ul li{
  display: block;
  margin: 10px 0;
  text-align: left;
  line-height: 16px;
}
nav ul li a{
  color: #FFF44F;
  font-size: calc(13px + 0.390625vw);
  padding: 6px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
}
.makeActive{
  background: #CC6633;
}
.makeActive:hover{
  background: #be4c23;
  color: #cfbc1a;
  transition: .2s;
}
nav ul a:hover {
  background: #CC6633;
  transition: .2s;
}
/* Style hamburger */
.checkbtn{
  font-size: 20px;
  color: #FFF44F;
  float: right;
  line-height: 40px;
  margin-right: 10px;
  cursor: pointer;
  display: block;
}
#check{
  display: none;
}
/* Make nav visible by moving from -100px to 0px */
#check:checked ~ ul{
  left: 0;
}
/* NAV Section Ends */
#logoContainer{
  display: flex;  
  align-items: top; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  width: 100%;
  height: 150px;  
}
#logo{
  max-width: 120px;
  max-height: 120px;
  z-index: 0;
}
.imgFeature{
  display: none;
}
.phrases-row{
  display: none;
}
.headline-container {
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  height: 40px;
  width: 100%;
  margin: 2px;
}
#headline{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  position: relative;
  font-weight: bold;
  font-size: calc(18px + 0.390625vw);
  color: #000;
}
#headline::before {
  content: ""; /* Create a pseudo-element to apply the background color */
  display: inline-block;
  background-color: #FFF44F; /* Set your desired background color */
  border-radius: 5px;
  height: 100%; /* Adjust the height as needed */
  width: 100%; /* Make the background span the entire width of the text */
  position: absolute; /* Position the pseudo-element relative to the text */
  width: calc(100% + 10px); /* Make the background slightly wider than the text */
  z-index: -1; /* Place the pseudo-element behind the text */
}
.txtFeature{
  height: auto;
  margin-bottom: 10px;
}
.reasons{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: left; /* Horizontally center the image */
  height: 60px;
}
.letter{ 
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  color: 000;
  width: 40px;
  height: 40px;
  background: rgba(204, 102, 51, 0.95);
  border-radius: 50%;
  border: 3px solid black;
}
.word{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  font-size: calc(15px + 0.390625vw);
  font-weight: bold;
  color: #000;
  height: 40px;
}
.phrase{
  font-size: calc(14px + 0.390625vw);
  background-color:#FFF44F;
  border-radius: 5px;
  color:#000;
  padding: 5px;
}
.main h1 {
  color: blue;
  font-size: calc(18px + 0.390625vw);
  font-weight: bold;
  line-height: 30px;
  text-align: center; /* Horizontally center */
  margin-top: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.detail li{
  padding: 10px;
}
.formatText {
  font-family: Arial, Helvetica, sans-serif;
  font-size: calc(13px + 0.390625vw);
  color: #000;
  padding: 6px;
}
.fa-solid .fa-square-check {
  color: #000;
  font-family: 'Font Awesome 5 Free', sans-serif; 
  font-weight: 900;
}
.type{
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: flex-start; /* Horizontally center the image */
  font-size: calc(15px + 0.390625vw);
  font-weight: bold;
  color: #000;
  width: 100%;
  height: auto;
  padding: 20px 0 20px 0;
}
.detail{
  font-size: calc(14px + 0.390625vw);
  background-color:#FFF44F;
  border-radius: 5px;
  color:#000;
  padding-bottom: 10px;
  width: auto;
  height: auto;
}
.escape{
  text-align: center;
  margin: 20px;
}
.startBtn, .startBtn2 {
  color: #FFF44F;
  background: #CC6633;
  font-size: calc(10px + 0.85vw);
  font-weight: bold;
  padding: 12px 12px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  width: 80%;
  transition: background-color 0.3s, color 0.3s;
}
.startBtn:hover, .startBtn2:hover {
  background-color: #4169E1; /* Reverse background color */
  color: #FFF44F; /* Reverse text color */
}
.offeringsSlider{
  display: none;
}
#self {
  display: flex;  
  align-items: center; /* Vertically center the image */
  justify-content: right; /* Horizontally center the image */
}
#self img {
  min-width: 300px;
  max-width: 400px;
}
footer{
  background: #4169E1;
  color: #FFF44F;
  font-size: calc(10px + 0.390625vw);
  font-weight: bold;
  height: 40px;
  width: 100%;
  line-height: 40px; /* Vertically center the text */
  text-align: center;
  border-radius: 10px 10px 0 0;
}
/* HEADER Section Ends */
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 600 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 600px) {
  #logo{
    max-width: 180px;
    max-height: 180px;
  }
  .txtFeature{
    display: none;
  }
  .imgFeature{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px; 
    padding: 0px 6px;
  }
  .image-item {
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
    padding: 6px;
    position: relative;
  }
  .image-item > img{
    width: 100%;
    max-width: 160px;
    max-height: 160px;
    border: 5px solid rgb(204, 102, 51);
    border-radius: 20px;
    cursor: pointer;
  }
  #image1 img:hover,
  #image2 img:hover,
  #image3 img:hover,
  #image4 img:hover,
  #image5 img:hover,
  #image6 img:hover {
    border-radius: 20px;
    box-shadow: 2px 2px 12px;
  }
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -40%;
    left: -26%;
    transform: scale(0.23);
    transition: all 0.2s 0.1s ease-in-out;
    border: 6px solid black;
    border-radius: 50%;
    background: rgba(204, 102, 51, 0.95);
    color: #000;
    font-size: 90px;
    font-weight: bold;
    font-family: Arial, Helvetica;
    /* center overlay content */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Add styles for the 6 phrases beneath the images */
  .phrases-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    font-size: calc(12px + 0.390625vw);
    font-weight: bold;
    color: #333;
    height: 38px;
    margin: 2px;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0px 6px;
  }
  #phrase-item1,
  #phrase-item2,
  #phrase-item3,
  #phrase-item4,
  #phrase-item5,
  #phrase-item6 {
    padding: 6px;
    visibility: hidden; /* Initially hide the phrases */
  }
  .inspiration {
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    height: 40px;
    width: 100%;
    margin: 2px;
    font-size: calc(14px + 0.390625vw);
    font-weight: bold;
    color: #000;
  }
  #inspiration {
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
    position: relative;
  }
  #inspiration::before {
    content: ""; /* Create a pseudo-element to apply the background color */
    display: inline-block;
    background-color: #FFF44F; /* Set your desired background color */
    height: 100%; /* Adjust the height as needed */
    width: 100%; /* Make the background span the entire width of the text */
    margin-left: 0.2em; /* Add some spacing between the text and background */
    margin-right: 0.2em; /* Add some spacing between the text and background */
    position: absolute; /* Position the pseudo-element relative to the text */
    vertical-align: middle;
    width: calc(100% + 20px); /* Make the background slightly wider than the text */
    z-index: -1; /* Place the pseudo-element behind the text */
  }   
}
/* =====================================================================
*  ========================== SHARED ===================================
*  =====================================================================
*  =========================== CSS =====================================
*  =====================================================================
*  ======================== MEDIA SCREEN ===============================
*  =====================================================================
*  ========================= 900 - 1200+ ===============================
* ==================================================================== */
@media screen and (min-width: 900px) {
  .offeringsGrid{
    display: block;
  }
  .offeringsSlider{
    display: none;
  }
  header h1 {
    font-size: calc(20px + 0.390625vw);
    line-height: 60px;
  }
  nav{
    height: 60px;
  }
  nav ul{
    top: 60px;
    left: 0;
  }
  /* Style hamburger */
  .checkbtn{
    display: none;
  }
  .image-item {
    max-width: 160px;
    max-height: 160px;
  }
  .main{
    background-image: linear-gradient(to left, #4169E1 20%, #9fb3e6 60%, #cccccc 80%);
    border-radius: 10px;
    border: 4px solid rgb(204, 102, 51);
    height: auto; 
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
  }
  .offeringsGrid{
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Six equal columns */
    grid-template-rows: 20% 1fr; 
    gap: 2px; /* Adjust spacing between columns and rows */
    padding-bottom: 40px;
    padding-right: 10px;
    padding-left: 5px;
  }
  .type {
    grid-row: 1; /* Place headers in the first row */
    padding: 2px;
    height: auto;
    text-align: center;
    align-self: start; /* vertically top-align headings */
    font-size: calc(14px + 0.390625vw);
  }
  .centered-text{
    margin: auto;
  }
  .detail {
    grid-row: 2; /* Place lists in the second row */
    font-size: calc(13px + 0.390625vw);
    font-weight: bold;
    padding: 5px 0px 5px 0;
    margin: 0px;
    position: relative;
    justify-content: center; /* Horizontally center the image */    
    align-items: center; /* Vertically center the image */
  }
  .formatText {
    font-size: calc(8px + 0.390625vw);
  }
  .startBtn{
    display: none;
  }
  .startBtn2 {
    font-size: calc(12px + 0.390625vw);
    padding: 7px 12px;
    width: 130px;
    height: 50px;
    display: flex; /* Enables justify-center */
    justify-content: center; /* Centers button text horizontally */
    position: absolute;
    left: 50%; /* Move the button horizontally to the center */
    transform: translateX(-50%); /* Adjust for half of the button's width */
  }
  footer{
    font-size: calc(12px + 0.390625vw);
  }
  #self img {
    max-width: 179px;
    z-index: 9;
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 600 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 600px) and (max-width: 899px) {
  .container{
    min-width: 600px;
    max-width: 899px;
  }
  nav ul li a{
    font-size: calc(14px + 0.390625vw);
  }
  /* Style hamburger */
  .checkbtn{
    font-size: 22px;
  } 
  .main h1 {
    font-size: calc(20px + 0.390625vw);
  }
  /* Javascript slider */
  .offeringsGrid{
    display: none;
  }
  .offeringsSlider{
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }
  /* Slider style begins */
  .slide-container{
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: relative;
    max-width: 480px;
    min-height: 380px;
    width: auto;
    height: auto;
    border: 3px solid #FFF44F;
    background-color: #4169E1;
    border-radius: 10px;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
  }
  .slide-container .slides{
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    overflow: visible;
    text-align: center;
  }
  .slide-container .slides .slide{
    margin: 0px 60px 50px 60px;
    text-align: left;
  }
  .slide-container .slides .slide h2{
    text-align: center;
    margin: 30px;
    color: #000;
    font-weight: bold;
  }
  .detail{
    font-size: calc(13px + 0.390625vw);
    background-color:#FFF44F;
    border-radius: 5px;
    color:#000;
    padding: 20px;
    width: 100%;
  }
  .slide-container .slides .slide:not(.active){
    display: none;
  } 
  span.next, span.prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    transition: 0.5s;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
  }
  span.next{
    right: 20px;
  }
  span.prev{
    left: 20px;
  }
  span.next:hover, span.prev:hover{
    background-color: #CC6633;
    opacity: 0.8;
    color: #222;
  }
  .dotsContainer{
    position: absolute;
    bottom: 5px;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
  }
  .dotsContainer .dot{
    width: 15px;
    height: 15px;
    margin: 0px 2px;
    border: 3px solid #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dotsContainer .active{
    background-color: #CC6633; 
  }
  @keyframes next1{
    from{
      left: 0%;
    }
    to{
      left: -100%;
    }
  }
  @keyframes next2{
    from{
      left: 100%;
    }
    to{
      left: 0%;
    }
  }
  @keyframes prev1{
    from{
      left: 0%;
    }
    to{
      left: 100%;
    }
  }
  @keyframes prev2{
    from{
      left: -100%;
    }
    to{
      left: 0%;
    }
  }
  .detail li{
    padding: 10px;
  }
  /* Slider style ends */  
  footer{
    font-size: calc(12px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 900 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .container{
    min-width: 900px;
    max-width: 1199px;
  }
  nav ul li a{
    font-size: calc(16px + 0.390625vw);
  }
  /* Add styles for the phrases */
  .phrases-row {
    font-size: calc(16px + 0.390625vw);
  }
  .inspiration {
    font-size: calc(16px + 0.390625vw);
  }
  .main h1 {
    font-size: calc(22px + 0.390625vw);
  }
}
/* =====================================================================
*  ========================== MEDIA ====================================
*  =====================================================================
*  ========================== SCREEN ===================================
*  =====================================================================
*  =========================== 1200 =====================================
*  =====================================================================
* ==================================================================== */
@media screen and (min-width: 1200px) {
  .container{
    min-width: 1200px;
    max-width: 1599px;
    margin: auto;
  }
  nav ul li a{
    font-size: calc(12px + 0.390625vw);
  }
  .imgFeature{
    place-items: center;
  }
  .image-item > img{
    min-width: 160px;
    min-height: 160px;
  }
  .overlay {
    top: -42%;
    left: -30%;
  }
  .main h1 {
    font-size: calc(20px + 0.390625vw);
    margin-bottom: 40px;
  }
  .type {
    margin-bottom: 30px;
  }
  .startBtn2 {
    height: 60px;
  }
}