* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.7;
  overflow-x:hidden;
}


#header 
{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    transition: transform .5s, background-color .5s;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.09);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Charm", cursive;
  font-size: 42px;
}

.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

.nav a:hover {
  color: #f47622;
}

/* HERO */
.hero {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  padding: 120px 0;
  position: relative;
  text-align: center;
  min-height: 926px;
}

.hero blockquote {
    font-family: "Charm", Sans-serif;
    font-size: 52px !important;
    font-weight: 700;
    line-height: 72px;
    color: #000000;
    text-align:left;
}

.hero blockquote span {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  text-align:right !important;
}

/* WAVE */
.wave {
 direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    bottom: -20px;
    transform: rotate(180deg);
}
.waveicon
{
width: calc(100% + 1.3px);
    height: 86px;
    transform: translateX(-50%) rotateY(180deg);
}

.elementor-shape-fill
{
fill: #FFFFFF;
}

/* ABOUT */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about h2 {
 font-family: "Fasthand", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    color: #282828;
}

.about p {
  margin-bottom: 15px;
  color: #494848;
  font-size:17px;
  font-family: "Poppins", Sans-serif;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: #fff;
}

/* BACK TO TOP */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f47622;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 22px;
}

.to-top:hover {
  background: #f2a100;
}

.navbar-nav li a  
{
    line-height: 84px;
    height: 100px;
    color: #0b000f;
    padding: 0 25px;
}

.navbar-brand 
{
    color: rgba(34, 34, 34, 1);
    font-size: 42px;
    font-weight: 500;
    font-family: Fasthand, sans-serif;
    letter-spacing: normal;
    word-spacing: normal;
    padding-top: 0px;
    padding-bottom: 0px;
}

.innerhead 
{
  margin:100px 0;
  background-color: transparent;
  background-image: radial-gradient(at bottom left, #FFEFE3 0%, #FFD498 70%);
}

.innerhead h2 
{
      font-family: "Charm", Sans-serif;
    font-size: 54px;
    font-weight: 600;
    -webkit-text-stroke-width: 0px;
    stroke-width: 0px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    color: #000000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 32px;
  }
}

