@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;
  scroll-behavior: smooth;
}

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 {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease;
}

.top-info .fa-facebook:hover {
  color: #3b5998;
}

.top-info .fa-twitter:hover {
  color: #55acee;
}

.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;
}

.legal-info {
  width: 75%;
  padding: 20px 0 100px 0;
  margin: auto;
}

.legal-info p {
  color: #4b4b4b;
  padding: 15px 0 30px 0;
}

.legal-info h1 {
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
  font-size: 40px;
}

.legal-info h2 {
  font-weight: 600;
  color: #0c3300;
  padding-top: 70px;
  font-size: 20px;
  text-transform: uppercase;
}

.legal-info h3 {
  color: #4b4b4b;
  font-size: 16px;
  margin-top: 8px;
  font-weight: 400;
}

.toc-container h3 {
  color: #0c3300;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.toc-list a {
  text-decoration: none;
  color: #4b4b4b;
  font-weight: 500;
}

.share-container {
  display: flex;
  gap: 10px;
}

.share-content span {
  color: #7c7c7c;
  gap: 5px;
}

.bullets li {
  padding-top: 10px;
  line-height: 25px;
  color: #4b4b4b;
}

.bullets ul {
  padding-left: 40px;
}

.bullets ol {
  padding-left: 20px;
}

#legal-info,
.bullets a {
  text-decoration: none;
  font-weight: 600;
  color: #4b4b4b;
  transition: all 0.3s ease;
}

#legal-info:hover,
.legal-info a:hover,
.bullets a:hover {
  color: #d6ba19;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.toc-container {
  margin-bottom: 30px;
}

.toc-list ol {
  padding: 10px 0 0 30px;
  font-size: 18px;
}

.toc-list a {
  transition: all 0.3s ease;
}

#terms {
  padding-bottom: 10px;
}

.provision {
  padding-top: 10px;
  padding-bottom: 30px;
}

.underline {
  width: 150px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

#line {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .legal-info {
    width: 80%;
  }

  aside {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  .legal-info {
    width: auto;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 425px) {
  main {
    width: 100%;
  }

  article {
    margin: auto;
    width: auto;
    padding: 25px;
    padding-bottom: 40px;
  }

  .legal-info {
    width: 100%;
  }

  .legal-info h1 {
    font-weight: 500;
    color: #4b4b4b;
    text-align: center;
    font-size: 35px;
  }

  .legal-info h2 {
    font-weight: 600;
    font-size: 18px;
  }
}

/* To-top button */
#topBtn {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  border-radius: 15%;
  font-size: 22px;
  width: 50px;
  height: 50px;
  background: #d6ba19;
  color: #242526;
  border: none;
  cursor: pointer;
  display: none;
  transition: 0.3s ease;
}

#topBtn:hover {
  background: #a38e17;
  padding-bottom: 10px;
}

/* 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: 440px;
  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;
}

.left .content .social .fa-twitter:hover {
  background: #55acee;
  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;
}

.bottom center {
  padding: 5px;
  font-size: 14px;
  color: #999;
  background: #151515;
}
.bottom center span {
  color: #656565;
}

@media screen and (max-width: 1020px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 985px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 985px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
  }

  .bottom center {
    padding: 5px;
    font-size: 14px;
    background: #151515;
  }
  .bottom center span {
    color: #656565;
  }
}

@media screen and (max-width: 425px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1025px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1025px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}

@media screen and (max-width: 395px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1050px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1050px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  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%;
  }
}
