@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");
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

:root {
  --primary-color: #0c3300;
  --sec-color: #d6ba19;
  --sec-color2: #242526;
  --sec-color3: #999;
  --sec-color4: #312f2f;
  --text-color: #4b4b4b;
  --hover-color: #a38e17;
  --btf-color: #ff6600;
  --bdcrumbs-color: #054a06;
}

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*/

/*slider css*/
section .main-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.slider {
  position: relative;
  width: 100%;
  min-height: 900px;
  overflow: hidden;
  background: #fff;
  padding-top: 65px;
}

.slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: circle(0% at 0 50%);
}

.slider .slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.slider .slide img {
  position: absolute;
  width: 100%;
  height: 900px;
  object-fit: cover;
}

.navigation {
  height: 790px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider:hover .navigation {
  opacity: 1;
}

.fa-chevron-left,
.fa-chevron-right {
  z-index: 1;
  font-size: 2em;
  color: #222;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
  cursor: pointer;
}

.fa-chevron-left {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.fa-chevron-right {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navigation-visibility {
  z-index: 1;
  display: flex;
  justify-content: center;
}

.navigation-visibility .slide-icon {
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  transform: translateY(-50px);
  margin: 0 6px;
  border-radius: 50px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .slide-icon.active {
  background: #4285f4;
}

@media (max-width: 900px) {
  .slider {
    width: 100%;
    min-height: 700px;
  }
}

/* Breadcrumb*/
.BC {
  background: #d6ba19;
  width: 100%;
}

.breadcrumb {
  padding: 5px 16px;
  list-style: none;
  width: 1250px;
  height: 25px;
  margin: auto;
}

.breadcrumb li {
  display: none;
  font-size: 16px;
}

.breadcrumb li:after {
  padding: 8px;
  color: black;
  content: "\003E";
}

.breadcrumb li a {
  color: #054a06;
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: #054a06;
  text-decoration: underline;
}

/* Countdown */
.countdown-main {
  width: 100%;
  background-image: url(/images/hero-image.jpg),
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
  background-blend-mode: overlay;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.countdown-info {
  padding: 10px 0;
}

.countdown-container {
  max-width: 1250px;
  padding: 0 30px;
  margin: auto;
}

.countdown-main .countdown-container h2 {
  color: #ffff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.countdown-container .countdown-info {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.countdown-info .countdown-img {
  width: 450px;
}

.countdown-info .countdown-img img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ffff;
}

.countdown-container .countdown {
  display: flex;
  gap: 20px;
}

.countdown-container .countdown div {
  text-align: center;
  width: 120px;
  height: 120px;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.228);
  border: 5px solid;
  border-image: linear-gradient(to right bottom, #826f01, #d6ba19);
  border-image-slice: 1;
  /* border-radius: 100px; */
}

.countdown-container .countdown div h3 {
  font-weight: 600;
  font-size: 42px;
  color: #ffff;
}

.countdown-container .countdown div h4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffff;
}

@media (max-width: 575px) {
  .countdown-main {
    width: auto;
  }

  .countdown-container {
    max-width: auto;
    padding: 0 15px;
  }

  .countdown-info div {
    max-width: 100%;
  }

  .countdown-main .countdown-container h2 {
    font-size: 16px;
  }

  .countdown-container .countdown {
    display: flex;
    gap: 0;
  }

  .countdown-container .countdown div {
    width: 80px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  .countdown-container .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .countdown-container .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

/* main */
/* Welcome-message */
article {
  width: 100%;
  background: #fff;
  padding-bottom: 50px;
}

main {
  max-width: 1250px;
  margin: auto;
  background: #fff;
}

.intro {
  width: auto;
  padding: 40px 30px;
}

.welcome-message {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  gap: 40px;
  justify-content: center;
  padding-top: 40px;
}

.heading {
  padding-top: 10px;
}

.heading h1 {
  text-transform: capitalize;
  font-weight: 500;
  color: #4b4b4b;
  font-size: 38px;
  text-align: center;
}

.welcome-image {
  width: 35%;
}

.welcome-image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.message {
  width: 64%;
}
.message a {
  text-decoration: none;
  text-align: center;
  font-size: 17px;
}

.message p {
  color: #4b4b4b;
  font-size: 17px;
}

#a-tag {
  text-decoration: none;
  font-weight: 550;
  color: #4b4b4b;
  transition: all 0.3s ease;
}

#a-tag:hover {
  color: #d6ba19;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.signature {
  font-family: "Mrs Saint Delafield", cursive;
  font-size: 40px;
  padding-top: 40px;
  color: #4b4b4b;
}

.message-bttn button {
  margin-top: 60px;
}

.know-us a {
  background: transparent;
  border: 2px solid #d6ba19;
  padding: 8px 30px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  color: #4b4b4b;
  transition: all 0.3s;
}

.know-us a:hover {
  border: 2px solid #a38e17;
  background: #a38e17;
  color: #fff;
}

.know-us a:after {
  content: "\2192";
  font-size: 20px;
  color: #2b2b2b;
  transition: all 0.3s;
  display: inline-block;
  transform: translateX(6px);
}

.know-us a:hover:after {
  transform: translateX(12px);
  color: #fff;
}

.share-container {
  display: flex;
  gap: 10px;
}

.share-content span {
  color: #7c7c7c;
  gap: 5px;
}

.know-us {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  main {
    max-width: auto;
  }

  .intro {
    width: auto;
    padding: 30px;
  }

  .heading h1 {
    font-size: 33px;
  }

  .message {
    width: auto;
    padding-top: 20px;
  }

  .welcome-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
  }

  .welcome-image {
    width: 60%;
    margin: auto;
  }

  .welcome-image img {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  main {
    max-width: auto;
  }

  .intro {
    width: auto;
    padding: 20px;
  }

  .heading h1 {
    font-size: 28px;
  }

  .message p {
    font-size: calc(0.9rem + 0.9vw);
  }

  .welcome-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
  }

  .signature {
    font-size: 35px;
  }

  .welcome-image {
    width: auto;
  }

  .welcome-image img {
    width: 100%;
  }
}

/* ==================== We're moving ======================= */
.moving {
  padding: 60px 0;
  background-color: #f1f1f1;
}

.moving .moving-row {
  width: 100%;
}

.moving .moving-container {
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}

.moving .moving-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
}

.moving .moving-text {
  width: 55%;
}

.moving .moving-img {
  width: 45%;
}

.moving .moving-img img {
  width: 100%;
  border-radius: 10px;
}

.moving .moving-text h2 {
  font-size: 40px;
  color: var(--sec-color4);
  font-weight: 600;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.moving .moving-text p {
  color: var(--text-color);
  font-size: 17px;
}

.moving .moving-content a {
  text-decoration: none;
  color: #4b4b4b;
  transition: all 0.3s ease;
}

.moving .moving-content a:hover {
  color: #d6ba19;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.moving #direction-btn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 30px;
  font-size: 20px;
  font-weight: 600;
  color: var(--sec-color4);
  text-transform: uppercase;
}

.moving button {
  margin-top: 20px;
  background-color: #d6ba19;
  border: 1px solid #d6ba19;
  border-radius: 30px;
}

.moving button:hover {
  background-color: #b69c0a;
  border: 1px solid #b69c0a;
  transition: 0.3s ease;
}

.moving .bttn {
  text-align: center;
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .moving .moving-container {
    margin: auto;
  }

  main {
    max-width: auto;
  }

  .moving .moving-text {
    width: auto;
  }

  .moving .moving-img {
    width: auto;
    padding-top: 50px;
  }

  .moving .moving-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
}

@media screen and (max-width: 425px) {
  .moving .moving-container {
    padding: 0 20px;
  }

  .moving .moving-text h2 {
    font-size: 30px;
  }

  .moving .moving-text p {
    font-size: calc(0.9rem + 0.9vw);
  }

  .moving #direction-btn a {
    font-size: calc(1rem + 0.8vw);
  }
}

/*main-cards*/
.main-cards {
  width: 100%;
  background: #fff;
  padding: 50px 0 100px 0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.main-cards .card {
  width: 380px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 10px;
  border: 1px solid #cecece;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  align-self: normal;
}

.main-cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card .card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  overflow: hidden;
}

.card .card-img img {
  object-fit: cover;
  height: 100%;
  max-width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.card:hover .card-img img {
  -webkit-transform: scale(1.05) rotate(0.01deg);
  transform: scale(1.05) rotate(0.01deg);
}

.card .card-text {
  padding: 15px;
}

.card h2 {
  padding: 15px 15px 0 15px;
  font-size: 20px;
  font-weight: 500;
  color: #434343;
  align-self: flex-start;
}

.card-content {
  padding: 15px;
}

.card p {
  line-height: 25px;
  font-size: 17px;
  margin-bottom: 20px;
  color: #5f5f5f;
}

.card h2::before {
  content: "";
  height: 25px;
  width: 4px;
  background: #d6ba19;
  float: left;
  margin-right: 15px;
  transform: translateY(3px);
}

.main-cards .button {
  display: flex;
  text-decoration: none;
  text-transform: uppercase;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  background: #e2e2e2;
  color: #2b2b2b;
  padding: 8px 20px;
  margin-top: auto;
  margin-bottom: 40px;
  border-radius: 50px;
  border: solid 1px #9c9c9c;
  transition: all 0.3s ease-in-out;
}

.main-cards .button:hover {
  background: #cccccc;
}

@media screen and (max-width: 1024px) {
  .main-cards .card {
    width: 340px;
  }
}

@media screen and (max-width: 768px) {
  .main-cards {
    width: auto;
    margin: auto;
  }

  .cards-container {
    gap: 25px;
    width: auto;
    margin: auto;
  }

  .main-cards .card {
    width: 340px;
  }
}

@media screen and (max-width: 425px) {
  .main-cards {
    padding: 50px 15px;
  }

  .card p {
    font-size: calc(0.9rem + 0.9vw);
    line-height: 28px;
  }

  .cards-container {
    gap: 40px;
  }

  .main-cards .card {
    width: auto;
  }

  .card-content p {
    line-height: 25px;
  }
}

/*img-grid*/
.img-grid {
  width: 100%;
  background: #f1f1f1;
}

.grid-container {
  width: auto;
  padding: 0 30px;
  justify-content: center;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.grid-image {
  width: 400px;
}

.grid-image img {
  width: 100%;
  display: block;
}

/* XXXXXXXXXX */
.file-download {
  overflow: hidden;
}

.file-download img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.file-download:hover img {
  -webkit-transform: scale(1.1) rotate(0.02deg);
  transform: scale(1.1) rotate(0.02deg);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

.download {
  position: relative;
}

.download .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #f1f1f1;
  width: 100%;
  overflow: hidden;
  transition: 0.5s ease;
  opacity: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  text-transform: capitalize;
}

.overlay p {
  padding-bottom: 15px;
}

.overlay a {
  text-decoration: none;
  color: #434343;
  border: solid 1px #9c9c9c;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 17px;
  background: #e2e2e2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.overlay a:hover {
  background: none;
  color: #f1f1f1;
  border: solid 1px #f1f1f1;
}
@media screen and (max-width: 110px) {
  .grid-container {
    width: auto;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .grid-image {
    width: 350px;
  }

  .grid-image img {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .grid-container {
    width: auto;
    padding: 50px 15px;
  }

  .grid-image {
    width: auto;
  }

  .grid-image img {
    width: 100%;
  }
}

/* Social Media Corner */
.social-media-corner {
  width: 100%;
}

.social-media-container {
  width: 1250px;
  margin: auto;
  padding: 60px 30px;
}

.social-media-corner-heading h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #434343;
  text-transform: uppercase;
}

.social-media-corner-heading h2::before {
  content: "";
  height: 25px;
  width: 4px;
  background: #d6ba19;
  float: left;
  margin-right: 15px;
  transform: translateY(6px);
}

.social-media-card {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.social-media-content {
  line-height: 0;
}

.social-media-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding-top: 30px;
  justify-content: center;
}

.social-media-content-heading {
  display: flex;
  padding-bottom: 15px;
  align-items: center;
  justify-content: center;
}

.social-media-content-heading h3 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  color: #434343;
}

.social-media-content-heading i {
  font-size: 22px;
  padding-right: 10px;
}

.social-media-corner .fa-facebook-square {
  color: #3b5998;
}

.social-media-corner .fa-twitter {
  color: #55acee;
}

.social-media-corner .fa-instagram {
  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;
}

@media screen and (max-width: 1100px) {
  section .social-media-corner {
    width: 100%;
    margin: auto;
  }

  .social-media-container {
    width: 100%;
  }

  .social-media-content {
    width: 300px;
  }

  .social-media-wrapper {
    gap: 30px;
  }

  .facebook iframe,
  .social-media-card {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .social-media-content {
    width: 330px;
  }

  .social-media-wrapper {
    gap: 30px;
  }
}

@media screen and (max-width: 425px) {
  .social-media-container {
    width: auto;
    padding: 0 15px;
  }

  .social-media-content {
    width: 100%;
  }

  .social-media-wrapper {
    gap: 50px;
  }
}

/* Promo Video & Flyer */
.event-ad {
  width: 100%;
  margin: auto;
}

.ad-container {
  width: 1250px;
  padding: 60px 30px;
  margin: auto;
}

.ad-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #434343;
  text-transform: uppercase;
}

.ad-container h2::before {
  content: "";
  height: 25px;
  width: 4px;
  background: #d6ba19;
  float: left;
  margin-right: 15px;
  transform: translateY(6px);
}

.event-ad-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

/* .video-promo {
  width: 60%;
}

.video-promo video {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 16px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
} */

.youtude-ad {
  position: relative;
  width: 60%;
  padding-bottom: 35%;
  border-radius: 10px;
  height: 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.youtude-ad iframe {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-promo {
  width: 415px;
  height: 415px;
  border-radius: 10px;
  overflow: hidden;
}

.image-promo img {
  display: block;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.image-promo:hover img {
  -webkit-transform: scale(1.1) rotate(0.01deg);
  transform: scale(1.1) rotate(0.01deg);
}

@media screen and (max-width: 1250px) {
  .event-ad {
    width: auto;
  }

  .ad-container {
    width: 100%;
  }

  .video-promo {
    width: 60%;
  }

  .image-promo {
    width: 35%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .event-ad {
    width: auto;
  }

  .ad-container {
    width: 100%;
  }

  .event-ad-container {
    padding-top: 20px;
  }

  .video-promo {
    width: auto;
  }

  .video-promo video {
    width: 100%;
  }

  .youtude-ad {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
  }

  .youtude-ad iframe {
    border-radius: 5px;
  }

  .image-promo {
    width: auto;
    padding-top: 50px;
  }

  .image-promo img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 425px) {
  section .event-ad {
    width: auto;
    padding: 10px;
  }

  .ad-container {
    padding: 20px 15px;
  }
}

/* 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: #d6ba19;
}

.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 i,
.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-x-twitter:hover {
  background: #000;
  color: #ffff;
}

.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: 995px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 995px;
    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: 425px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1025px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1040px;
    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: 1085px;
    min-height: 100vh;
  }

  footer {
    background-color: #242526;
    height: 1085px;
    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%;
  }
}
