@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Global Styles */
* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  padding: 20px 5%;
  background: #F5F5F5;
}
a{
  text-decoration: none;
}
    a.gien:link {   
    color: #c4942f;
}
    a.gien:visited {
    color: #c4942f;
}
    a.gien:hover {
    color: #ece19d;
}
    a.gien:active {
    color: #c4942f;
} 
/* Container Styles */
.container {
  display: flex;
  height: 89vh;
}
.main-wrapper{
  flex: 2;
  overflow-y: scroll;
}
.side-bar{
  background: #46425d;
  flex: .5;
  padding: 40px;
  /* background-color: white; */
}
.side-bar ul{
  padding: 0 40px;
  list-style: none;
}
.side-bar{
  background: #46425d;
}
@media only screen and (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .side-bar{
    background: #114;
    color: #46425d !important;
  }
  .side-bar a{
    color: #46425d !important;
  }
}
/* Navigation Menu Styles */
nav.nav-menu {
  width: 100%;
  text-align: right;
  background-color: #46425d;
  padding: 10px;
}
nav.nav-menu ul {
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  font-size: clamp(.8rem, 1.2vw, 2rem);
}
.nav-menu .nav-item {
  padding: 15px;
  transition: background-color 500ms ease-in-out;
}
.nav-menu .nav-item:hover {
  cursor: pointer;
}
.nav-menu .nav-item a{
  text-decoration: none;
}
/* Style the links inside the navigation bar */
.topnav-right a {
  color: #F2F2F2;
}
/* Change the color of links on hover */
.topnav-right a:hover {
  color: #c4942f;
}
/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
  font-size: 20px;
  font-weight: bold;
  padding-top: 40px;
  margin-right: 50px;
}
/* Main Content Wrapper Styles */
.main-wrapper {
  background: white;
  padding: 40px;
}
a {
  color: #4496c8;
}
a:hover{
  color: #484361;
}
section {
  margin-bottom: 20px;
}
section.head,
section.youtube-embed {
  text-align: center;
}
.button-link {
  display: block;
  margin: 20px 0 0 0;
  padding: 10px 50px;
  width: fit-content;
  background: #5b9695;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: 0.3s transform ease-in-out;
}
.button-link1 {
    display: block;
    margin: 2px 0 0 0;
    padding: 2px 8px;
    margin-bottom: 10px;
    width: fit-content;
    background: rgb(230, 230, 231);
    border-radius: 12px;
    text-decoration: none;
    color: #46425d;
    transition: 0.3s transform ease-in-out;
  }
.button-link:hover {
  transform: scale(1.05);
  background-color: #d69b4f;
}
.button-link1:hover {
    transform: scale(1.05);
    background-color: rgb(230, 230, 231);
    border: 1px solid #d69b4f;
    color: #d69b4f;
  }
h1 {
  font-size: 25px;
}
h2 {
  margin-bottom: 20px;
  font-size: 28px;
}
h3 {
   font-size: 22px;
   padding-top: 15px;
}
ul{
  padding-left: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.7rem;
  text-align: justify;
  font-size: 15px;
}
  .side ul{
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.5rem;
    font-family: "Cormorant SC", sans-serif;
    font-size:30px;
  }
ol{
    padding-left: 30px;
    text-align: justify;
    line-height: 1.5rem;
}
    .side ol{
      text-align: justify;
      margin-bottom: 10px;
      line-height: 1.5rem;
      font-family: "Cormorant SC", sans-serif;
      font-size:30px;
    }
p {
  text-align: justify;
  margin-bottom: 10px;
  line-height: 1.5rem;
  font-size: 15px;
}
img {
  max-width: 100%;
  float: left;
  border: 0px solid white;
  border-radius: 0px;
  margin: 0px;
}
img.gien {
    max-width: 100%;
    float: left;
    border: 0px solid white;
    border-radius: 0px;
    margin: 0px;
}
.hero-gien {
    background-image: linear-gradient(rgba(71, 71, 71, 0.5), rgba(77, 77, 77, 0.5)), url("https://www.hollandcapitalgroup.com/sites/hollandcapitalgroupcom.us1.advisor.ws/files/styles/slider_l/public/images/insidepage-banner_0.jpg?itok=5jtZ8-_1");
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
  
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    transform: translate(-0%, 0%);
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 30px;
}
.two-col {
  display: flex;
  justify-content: space-between;
  gap: 0px;
}
.two-col div {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  body {
    padding: 0;
  }
  .two-col {
    flex-direction: column;
  }
  .two-col div {
    width: 100%;
  }
  .main-wrapper {
    padding: 5%;
  }
}