.mainContainer{
    background-color: var(--background-color);
    gap: 20px;
    padding-top: clamp(60px, 10vw, 150px);
    position: relative;
}
.miniNav{
    background-color: #2E5077;
}
nav{
    background-color: #2E5077;
}


.headerWrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.headerWrapper *{
  text-align: center;
}

.headerWrapper .title{
  font-family: "Noto Sans";
}

.headerWrapper h1{
  font-family: "Helvetica";
  font-size: clamp(26px, 5vw, 54px);
  margin: 0 0 .5rem 0;
}


.headerWrapper img{
    width: 70%;
    max-width: 1500px;
    height: 700px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: 3rem;
}

.historyWrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 5rem;
}

.histCard{
    background-color: white;
    border-radius: 10px;
    border: 1px solid #B8B8B8;
    height: 240px;
    width: 30%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-width: 450px;
    justify-content: center;
    /* align-items: center; */
}

.histCard h1{
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    margin-bottom: 1rem;
}
.thimphuContentWrapper IMG{
    height: 50%;
}
.thimphuContentWrapper div{
    height: fit-content !important;
}
.symbolContent{
    display: flex;
    flex-direction: column;
    gap: 1rem
}
.symbolContent img{
    border-radius: 10px;
    margin-bottom: 1rem;
}
.symbolContent h1{
    font-size: clamp(18px, 2vw, 26px);
    margin-bottom: .5rem;
}

.firstSymbolWrapper{
    display: flex;
    gap: 1rem;
}
.otherfirst{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.firstSymbolWrapper{
    display: flex;
    gap: 1rem;
}
.secondSymbolWrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.flower, .firstSymbol , .symbol, .flag{
    border-radius: 10px;
    border: 1px solid #B8B8B8;
    padding: 20px;
    background-color: white;
}

.flower{
    width: calc(50% - 2rem);
    height: 650px;
}

.flower img{
    width: 100%;
    height: 450px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.firstSymbol{
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 300px;
}

.flag{
    height: 334px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.flag img{
    height: 294px;
    width: auto;
    margin-bottom: 0;
}

.flag div{
    padding: 2rem 0 0 0;
}

.symbol{
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


  @media (max-width: 1300px) {
    .firstSymbolWrapper{
        flex-direction: column;
    }
    .flower{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .secondSymbolWrapper{
        grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 900px) {
    .flag{
        flex-direction: column;
          text-align: center;
        justify-content: center;
    }
    .secondSymbolWrapper{
        grid-template-columns: 1fr;
    }
    .headerWrapper{
      margin: 50px 0;
    }
  }