@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,500;1,400;1,500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  position: relative;
  padding-bottom: 440px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* header */

/* top bar */
.top-bar {
  width: 100%;
  height: 25px;
  background: #0c3300;
}

.top-info {
  width: 1250px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  padding: 0 30px;
  transition: all 0.3s ease;
}

.top-info .email a,
.top-info .call a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease;
}

.top-info .email a:hover,
.top-info .call a:hover {
  color: #d6ba19;
}

.top-info .fa-telegram {
  color: #ffff;
}

.top-info .fa-brands,
.top-info .fab,
.top-info .fas {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease;
}

.top-info .fa-facebook-f:hover {
  color: #3b5998;
}

.top-info .fa-twitter:hover {
  color: #55acee;
}

.top-info .fa-x-twitter:hover {
  color: black;
}

.top-info .fa-instagram:hover {
  color: transparent;
  background: -webkit-radial-gradient(
    30% 107%,
    circle,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -o-radial-gradient(
    30% 107%,
    circle,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.top-info .fa-telegram:hover {
  color: #0088cc;
}

.s-media a {
  padding-left: 10px;
}

nav.sticky {
  top: 0;
  transition: all 0.05s ease;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/*start of navbar css*/
nav {
  background: #fff;
  width: 100%;
  height: 65px;
  line-height: 65px;
  position: fixed;
  z-index: 500;
}

nav .wrapper {
  position: relative;
  max-width: 1250px;
  padding: 0 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .nav-links {
  display: inline-flex;
}

.logo {
  padding-top: 5px;
  height: 65px;
}

.logo .nav-links {
  align-items: center;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.nav-links li {
  list-style: none;
}

#links {
  border: 2px solid #ff6600;
  color: #ff6600;
  margin-right: 20px;
}

#links:hover {
  color: #ffff;
  background: #ff6600;
}

#give {
  border-radius: 50px;
  padding: 8px 25px;
  animation: giveBackground 3s infinite;
}

#give:hover {
  color: #fff;
}

@keyframes giveBackground {
  0% {
    background-color: #ffaa02;
  }
  25% {
    background-color: #6aff05;
  }
  50% {
    background-color: #ffaa02;
  }
  75% {
    background-color: #6aff05;
  }
  100% {
    background-color: #ffaa02;
  }
}

.nav-links li a {
  color: #242526;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 15px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #d6ba19;
}

.nav-links .drop-menu {
  background: #fff;
  width: 250px;
  top: 85px;
  line-height: 40px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  top: 65px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-size: 15px;
  font-weight: 400;
}

.mega-box {
  position: absolute;
  top: 85px;
  width: 100%;
  left: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
}

.mega-links li a {
  font-weight: 400;
  font-size: 15px;
}

.mega-box .content {
  background: #fff;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.content .row {
  width: calc(25% - 30px);
  line-height: 35px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #242526;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

.content .row .mega-links {
  margin-left: -20px;
  border-left: 1px solid rgb(0, 0, 0, 0.2);
}

.content .row:nth-child(1),
.content .row:nth-child(2) {
  border-left: 0px;
}

.row .mega-links li {
  padding: 0 8px;
}

.row .mega-links li a {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.nav-links .mobile-item {
  display: none;
}

.wrapper .btn {
  color: #242526;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.cancel-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1020px) {
  .wrapper .btn {
    display: block;
  }

  nav {
    width: 100%;
    position: fixed;
  }

  .mobile-item,
  .links {
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    background: #fff;
    display: block;
    top: 0;
    left: -400px;
    z-index: 1;
    overflow-y: auto;
    line-height: 50px;
    padding: 50px 10px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }

  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }

  .nav-links::-webkit-scrollbar {
    width: 0;
  }

  .logo {
    display: absolute;
  }
  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 18px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    top: 65px;
    padding-left: 20px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #showdrop:checked ~ .drop-menu,
  #showmega:checked ~ .mega-box {
    max-height: 100%;
  }

  #drop:checked ~ #drop {
    max-height: 100%;
  }

  #show:checked ~ #show {
    max-height: 100%;
  }

  .nav-links .drop-menu li {
    margin: 0;
  }

  .nav-links .drop-menu li a {
    font-size: 18px;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    font-size: 18px;
    color: #242526;
    font-weight: 600;
    padding-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    color: #d6ba19;
  }

  .mega-box {
    position: static;
    top: 65px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-links li a {
    font-weight: 400;
    font-size: 18px;
  }

  .mega-box .content {
    background: #fff;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: rgba(0, 0, 0, 0.2);
  }

  .content .row img {
    display: none;
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0;
  }

  #links {
    margin-right: 0;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .mega-links li {
    margin: -10px;
  }

  .content .row header {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .top-info {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  nav .wrapper {
    padding: 0 15px;
  }

  .top-bar {
    display: none;
  }

  nav {
    top: 0;
  }
}

.wrapper input {
  display: none;
}

/*End of navbar css*/

/*showcase*/
.hero-image {
  position: relative;
  height: 420px;
  background-size: cover;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  background: rgba(0, 0, 0, 0.08);
}

/* breadcrumb */
section {
  background: #d6ba19;
  width: 100%;
}

.breadcrumb {
  padding: 3px 30px 3.5px 30px;
  list-style: none;
  width: 1250px;
  margin: auto;
  align-items: center;
}

.breadcrumb li {
  display: inline;
  font-size: 13px;
  font-weight: 450;
  text-transform: uppercase;
  color: #4b4b4b;
}

.breadcrumb .fa {
  padding-right: 5px;
  color: #054a06;
}

.breadcrumb li + li:before {
  padding: 8px;
  color: #054a06;
  content: "\003E";
}

.breadcrumb li a {
  color: #054a06;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: #054a06;
  text-decoration: underline;
}

@media screen and (max-width: 1600px) {
  .hero-image {
    position: relative;
    height: 360px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 360px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 1500px) {
  .hero-image {
    position: relative;
    height: 320px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 320px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 1200px) {
  .hero-image {
    position: relative;
    height: 240px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 240px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 768px) {
  .hero-image {
    padding-top: 32px;
    height: 180px;
  }

  .hero-image img {
    height: 180px;
  }

  .overlay {
    padding-top: 212px;
    height: 180px;
  }

  .breadcrumb {
    width: auto;
    padding-top: 32px;
  }
}

@media screen and (max-width: 425px) {
  .hero-image {
    padding-top: 50px;
    height: 100px;
  }

  .hero-image img {
    height: 100px;
  }

  .overlay {
    padding-top: 150px;
    height: 100px;
  }

  .breadcrumb {
    padding-top: 65px;
  }

  .breadcrumb li {
    display: none;
  }
}

/* main */
main {
  width: 100%;
  background: #fff;
}

article {
  max-width: 1250px;
  margin: auto;
  padding: 30px;
}

.main-container {
  padding: 50px 0 50px 0;
  justify-content: center;
  align-items: center;
}

.newhere-text p {
  color: #4b4b4b;
  padding-top: 10px;
  font-size: 17px;
}

.newhere-text h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: #4b4b4b;
  padding-bottom: 20px;
}

.newhere-text h2 {
  font-weight: 450;
  color: #4b4b4b;
  font-size: 35px;
}

.newhere {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

#venue-address,
#newhere-content {
  margin-top: 60px;
}

#new-here {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 20px;
}

#new-here .location {
  margin-top: 10px;
}

#loc-bttn {
  background-color: #c7c7c7;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  padding: 4px 16px;
  font-weight: 600;
  font-size: 20px;
  color: #312f2f;
  text-transform: uppercase;
}

#location {
  padding-top: 0;
  font-weight: bold;
}

.newhere-text {
  width: 50%;
  text-align: center;
}

#a-tag {
  text-decoration: underline;
  font-weight: 550;
  color: #0c3300;
  transition: all 0.3s ease;
}

#a-tag:hover {
  color: #d6ba19;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.newhere-img img {
  width: 100%;
  border-radius: 20px;
}

.new-here {
  width: 500px;
}

.newhere-text h3 {
  font-weight: 600;
  color: #4b4b4b;
  text-transform: uppercase;
}

#bttn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 50px;
  font-size: 24px;
  font-weight: 600;
  color: #ffff;
  text-transform: uppercase;
}

button {
  margin-top: 20px;
  background-color: #d6ba19;
  border: 1px solid #d6ba19;
  border-radius: 30px;
}

button:hover {
  background-color: #b69c0a;
  border: 1px solid #b69c0a;
  transition: 0.3s ease;
}

#faq-main {
  align-items: baseline;
  gap: 60px;
}

#faq-main h2 {
  padding-bottom: 10px;
}

#connect {
  width: 50%;
}

#connect p {
  text-align: left;
}

#connect #connect-content {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 20px;
}

#accordion-main {
  width: 65%;
  margin-top: 60px;
}

.accordion {
  text-align: left;
}

.accordion .accordion-item {
  position: relative;
  margin: 10px 0;
  background: #f1f1f1;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 12px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.accordion .accordion-item .question {
  position: relative;
  padding: 10px;
  font-size: 17px;
  background: #0c3300;
  color: #fff;
  cursor: pointer;
}

.accordion .accordion-item .question::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
}

.answer p {
  color: #2a2828;
}

.accordion .accordion-item.active .question::before {
  content: "-";
}

.accordion .accordion-item .answer {
  position: relative;
  background: #dadada;
  height: 0;
  overflow: hidden;
  transition: all ease 0.5s;
  overflow-y: auto;
}

.accordion .accordion-item.active .answer {
  height: auto;
  padding: 20px;
}

.accordion .accordion-item .answer::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 90%;
  background-color: #d6ba19;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#newhere-conclusion {
  width: auto;
  margin-top: 60px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .newhere {
    display: block;
    gap: 30px;
  }

  .newhere-text {
    width: auto;
    padding-bottom: 0;
  }

  .new-here {
    width: 100%;
  }

  #connect {
    width: auto;
    margin-top: 20px;
  }

  #image {
    margin-top: 20px;
  }

  #accordion-main {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  main {
    width: 100%;
  }

  article {
    margin: auto;
    width: auto;
    padding: 15px;
  }

  .newhere-text p {
    font-size: calc(1rem + 0.9vw);
  }

  #bttn a {
    text-decoration: none;
    display: inline-block;
    padding: 6px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #ffff;
    text-transform: uppercase;
  }
}

/* To-top button */
#topBtn {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  background: #d6ba19;
  color: #242526;
  border: none;
  cursor: pointer;
  display: none;
  transition: 0.3s ease;
}

#topBtn:hover {
  background: #a38e17;
}

/* cookie-container */
.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #151515;
  color: #f5f6fa;
  padding: 10px 30px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  z-index: 600;
  transition: 400ms;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: #e6ac00;
}

.cookie-container p {
  font-size: 14px;
  margin-top: 10px;
}

.cookie-btn {
  background: #d6ba19;
  border: 0;
  color: #242526;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #e4c82e;
}

.cookie-btn:after {
  color: #242526;
  content: "\2713";
}

/* footer */
footer {
  background-color: #242526;
  height: 450px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.content .text {
  font-size: 14px;
  color: #fff;
}

.content p {
  font-size: 14px;
  color: #999;
}

.main-content {
  display: flex;
  max-width: 1250px;
  margin: auto;
  padding: 30px 0 20px 0;
}
.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}
.box h2 {
  font-size: 16px;
  font-weight: 550;
  text-transform: uppercase;
  color: #fff;
}
.box .content {
  margin: 15px 0 0 0;
  position: relative;
  width: 95%;
}

.box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #353535;
}

.box .content:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 15%;
  background: #d6ba19;
  top: -10px;
}

/* .left .content p {
  text-align: justify;
} */

.left .content .social {
  margin: 20px 0 40px 0;
}

.left .content .social a {
  padding: 0 2px;
}

.left .content .social a span {
  height: 40px;
  width: 40px;
  background: #1a1a1a;
  color: #999;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.left .content .social .fa-facebook-f:hover {
  background: #3b5998;
  color: white;
}

footer .left .content .social .fa-x-twitter:hover {
  background: #000;
  color: white;
}

.left .content .social .fa-instagram:hover {
  background: radial-gradient(
    circle at 33% 100%,
    #fed373 4%,
    #f15245 30%,
    #d92e7f 62%,
    #9b36b7 85%,
    #515ecf
  );
  color: white;
}

.left .content .social .fa-telegram:hover {
  background: #0088cc;
  color: white;
}
.ul li {
  list-style: none;
}

.ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #999;
  display: block;
  line-height: 35px;
  transition: all 0.15s ease;
}

.ul li a:hover {
  color: #d6ba19;
}

.right .content .fas {
  font-size: 16px;
  background: #1a1a1a;
  color: #999;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}

.right .content .text {
  font-size: 16px;
  padding-left: 10px;
  color: #999;
  text-decoration: none;
}

#gps {
  font-size: 14px;
  font-weight: 700;
}

.ghanapost {
  font-size: 14px;
  padding-top: 20px;
}

#digi {
  font-size: 14px;
  padding-left: 18px;
}
.right .content .text a {
  font-size: 14px;
  padding-left: 5px;
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal a:hover,
.right .content .text a:hover {
  color: #d6ba19;
}

.right .content .phone {
  margin: 15px 0;
}

.legal {
  text-align: center;
  color: #999;
  padding: 10px 10px 20px 10px;
}

.legal a {
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.credits {
  width: 100%;
  background: #151515;
}

.credits .credits-container {
  width: 1250px;
  margin: auto;
}

.credits .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  color: #999;
}

.credits a {
  text-decoration: none;
  color: #0bd1f8;
  transition: all 0.3s ease;
}

.credits a:hover {
  color: #0086a0;
}

@media screen and (max-width: 1024px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1000px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1000px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
  }

  .credits .credits-container {
    width: 100%;
    margin: auto;
  }

  .credits .row {
    justify-content: space-between;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 990px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 990px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1045px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1045px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }

  .credits .row {
    justify-content: center;
    padding: 10px 5px;
    gap: 5px;
  }
}

@media screen and (max-width: 395px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1090px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1090px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1130px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1130px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}
