*,
*:before,
*:after {
  box-sizing: border-box;
}
body{
   background-color: #213b4b;
   color: white;
   font-size: 20px;
   font-family: "Trebuchet MS";
   height: 100%;
   margin: 0 auto;
  }
h1{
  font-size: 50px;
}
h2{
  font-size: 36px;
}
h3{
  font-size: 30px;
}
h4{
  font-size: 26px;
}
a{
  color: #F2B705;
}
main{
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  }
section{
  width: 100%;
  position: relative;
  z-index: 2;
}
.content{
  max-width: 1400px;
  width: 100%; 
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.contentbg{
  background-color: #FFFFFF;
  width: 100%;
}
.content1{
  background-color: #FFFFFF;
  color: black;
  max-width: 1400px;
  width: 100%; 
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.button {
   padding: 10px 40px 10px 40px;
   font-size: 20px;
   font-weight: bold;
   border: 1px solid #dabe5d;
   border-radius: 10px 10px 10px 10px;
   background-color: #dabe5d;
   color: #FFFFFF;
  }
.header{
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  background-color: #213b4b;
  z-index: 100;
  }
.header div{
  color: #FFFFFF;
  font-size: 22px;
  max-width: 150px;
  }
.logoimg{
  width: 100%;
  margin: 20px;
}
footer{
  margin-top: 10px;
  padding: 60px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
  }
.footercontent{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
}
.hambox{
  width: 50px;
  height: 40px;
  border-radius: 5px;
  background-color: #213b4b;
  position: fixed;
  top: 38px;
  right: 38px;
  z-index: 100;
}
#menuToggle{
  display: block;
  margin: 9px;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle a{
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.3s ease;
}
#menuToggle li:hover{
  color: #F2B705;
}
#menuToggle input{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  right: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle span{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2){
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #FFFFFF;
}
#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2){
  transform: rotate(-45deg) translate(0, -1px);
}
#menu{
  position: absolute;
  max-width: 400px;
  width: 370px;
  max-height: 100vh;
  margin: -90px 0 0 -290px;
  padding: 50px;
  padding-top: 125px;
  border-radius: 0px 0px 0px 20px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #dabe5d;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu li
{
  padding: 10px 0;
  font-size: 22px;
  font-weight: bold;
}
#menu li label
{
cursor: pointer;
color: #FFFFFF;
text-align: right;
width: 100%;
}
#menuToggle input:checked ~ ul
{
  transform: none;
}
.heroheading{ 
  width: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
  .herocontent{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroimg{
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroheading h1{
  font-size: 36px;
}
.heroheading h2{
  font-size: 24px;
}
@media (min-width: 768px) {
.heroheading{ 
  width: 100%;
  padding: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
  .herocontent{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroimg{
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heroheading h1{
  font-size: 50px;
}
.heroheading h2{
  font-size: 36px;
}
}
.title-block{
  padding-top: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
.helpaction{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.helpaction div{
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bookCallout{
  background-color: #f0f5f5;
  border-radius: 25px;
  display: flex;
  flex-direction: row;
}
.bookCalloutTitle{
  display: flex;
  flex-direction: column;
}
.bookCalloutContent{
  display: flex;
  flex-direction: column;
}
.quoteCallout{
  background-color: #f0f5f5;
  color: black;
  font-style: oblique;
  padding: 20px;
  margin-top:30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
}
.helpaction{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.helpaction div{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookCallout{
  background-color: #f0f5f5;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bookCallout h2{
  margin:20px;
}
.bookCalloutTitle{
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bookCalloutContent{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quoteCallout h3{
  font-size: 20px;
}
.quoteCallout{
  background-color: #f0f5f5;
  color: black;
  font-style: oblique;
  font-size: 18px;
  padding: 10px;
  margin-top:30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quoteImg{
  width: 100%;
  max-width: 150px;
}
@media (min-width: 768px) {
.hero2{
  display: flex;
  flex-direction: row;
}
.heroimg2{
  display: flex;
  flex-direction: column;
}
  .heroimg2 img{
  width: 100%;
  max-width: 300px;
}
.heroimg2Btn{
  width: 100%;
  display: flex;
  flex-direction: column;
}
}
.heroimg2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  .heroimg2 img{
  width: 100%;
  max-width: 300px;
}
.heroimg2Btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lineDiv{
  border-top: 2px solid black;
  border-radius: 5px;
  margin-top: 30px;
}
