@charset "utf-8";
/* CSS Document */

.header {
  position: relative;
  width: 80vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.header ul {list-style: none;}

.header ul li a {text-decoration:none}

.menu-items{display: flex;  margin-left: auto;}
.menu-items li {padding: 0.5rem 1rem; transition: background 0.3s ease-in-out;}
.menu-items li:hover {background-color: #ff652f;}
.menu-item{
	display: flex;
  justify-content: space-between;
  width: 100%;
  color:var(--gold);
  font-size:1rem;
  font-weight:600;
}

.mileft { margin-left:-40px}

.mega-links li a {color:#faebd7; text-align:left}

.dropdown { position: relative;}
.dropdown-menu,
.menu-right {
  position: absolute;
  background: #122331;
  width: 100%;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-right {
  top: 0;
  left: 110%;
}

.dropdown:hover .dropdown-menu {
  top: 34px;
  opacity: 1;
  visibility: visible;
}
.dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

/* mega menu  */
.mega-menu {
  position: absolute;
  left: 0;
  width: 80vw;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mega-menu .content {
  background: #122331;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.blog .content {
  grid-template-columns: repeat(3, 1fr);
}

.hero .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero .col img {
  max-width:350px; height:auto;
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}
.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}
.content .col h2 {
  color: #ff652f;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}
.content .col p {
  line-height: 1.2rem; text-align:left
}
.content .col .mega-links {
  border-left: 1px solid #1a3246;
}
.content .col .read-more {
  display: inline-block;
  padding: 1rem 0 0 1rem;
  color: var(--gold);
  transition: color 0.3s ease;
}
.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem; display:inline-block; height:100%; width:100%;
}
.menu-items li:hover .mega-menu {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.content .col .read-more:hover {
  color: #000;
  background-color:var(--gold);
}

.hero {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*background-image:url(../images/hero-home.webp);*/
  font-size: clamp(1.5rem, 1.3277rem + 0.5602vw, 4rem)
}

/* nav menu button */
.menu-btn {
  position: absolute;
  top:15px;
  right:20px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn__lines::after {
  transform: translateY(0.5rem);
}
/* animation */
.menu-btn.open .menu-btn__lines {
  transform: translateX(2rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background: #ffffff;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background: #ffffff;
}

/*.tagline {display:none}*/
/* MEDIA QUERY */
@media screen and (max-width: 970px) {
  .menu-btn {
    display: flex;
  }


  .header .menu-items {
    position: absolute;
    height: calc(100vh - 60px);
    width: 100vw;
    /*max-width: 350px;
    top: 60px;*/
    right: 0;
    /*background: hotpink;*/
    display: block;
    /*padding: 1rem;*/
    line-height: 3rem;
    overflow-y: auto;
    transform: translateY(-100vh);
    transition: transform 0.3s ease-out;
  }
  .menu-items.open {
    transform: translateY(0);
	top:40px;
	background-color:#333;
  }

  /*.menu-items li {
    margin: 15px 10px;
  }*/
  .menu-items li a {
    padding: 0 1rem;
    display: block;
    font-size: 1.4rem;
  }
  .menu-items li:hover {
    background-color: transparent;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    padding-left: 1rem;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  
   .menu-left {
    position: relative;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    left: 0;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    /*overflow: hidden;*/
    transition: all 0.2s ease;
  }
  
  .expand-btn.open + .expandable {
    max-height: 100%;
	min-width:250px;
    transform: scaleY(1);
  }

  .expandable li {
    margin: 0;min-width:250px;
  }
  .expandable li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }
  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
    border-top: 1px solid #1a3246;
  }
  .mega-menu .content .col:nth-child(1) {
    border-top: 0px;
  }
  .content .col .mega-links {
    border-left: 0px;
    padding-left: 1rem;
  }
  .col .mega-links li {
    margin: 0;
  }
}

/*@media screen and (min-width: 1600px) {
  .tagline {display: inline;color:#fff; font-style:italic}
}*/