@font-face {
  font-family: Boxicons;
  src: url(https://unpkg.com/boxicons@2.1.4/fonts/boxicons.woff2)
    format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2)
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2)
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2)
    format("woff2");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  text-decoration: none !important;
  scroll-behavior: smooth;
}
ul {
  padding: 0;
}
.container {
  max-width: 1350px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
:root {
  --nav-color: #000c29;
  --text-color: #fff;
  --custom-color1: #4bf6f4;
  --custom-color2: gold;
}
.header-top {
  background-color: var(--text-color);
  padding: 6px 0;
  color: var(--nav-color);
}
.custom-style {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.top-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.top-right .banner-btn .btn {
  padding: 7px;
  font-size: 11px;
}
.custom-style span {
  font-size: 13px;
}
nav {
  position: relative;
  width: 100%;
  height: 70px;
  background: var(--nav-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.3s;
}
nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
.navbar .logo a {
  font-size: 25px;
  color: var(--custom-color1);
  text-decoration: none;
  font-weight: 600;
}
.navbar .logo a span {
  color: gold;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li:last-child {
  padding-right: 0;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
nav .navbar .links li:hover ::after {
  width: 100%;
}
nav .navbar .links li a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  bottom: 20px;
  left: 0;
  background-color: var(--text-color);
  transition: all 0.5s;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}
nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--text-color);
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: var(--text-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.htmlCss-sub-menu li a::after {
  content: none !important;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid var(--nav-color);
  transition: 0.3s;
}
.navbar .links li .sub-menu li:hover {
  background-color: var(--nav-color);
  color: var(--text-color);
}
.navbar .links li .sub-menu li:hover a {
  color: var(--text-color);
}
.navbar .links li .sub-menu a {
  color: var(--nav-color);
  font-size: 15px;
  font-weight: 500;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
.banner-section {
  height: 80vh;
  width: 100%;
  position: relative;
}
.banner-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
}
.banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  max-width: 585px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-text h2 {
  font-size: 40px;
  color: var(--text-color);
  line-height: 45px;
  font-weight: 600;
}
.banner-text h2 span {
  color: gold;
}
.banner-text p {
  color: var(--text-color);
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.banner-btn {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.banner-btn .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px;
  height: 100%;
  background: var(--nav-color);
  color: var(--text-color);
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: 0.6s;
  box-shadow: 0 0 0.5rem var(--custom-color1);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--custom-color1);
}
.btn:hover {
  color: var(--nav-color);
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--text-color);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.4s;
}
.btn:hover::before {
  width: 100%;
}
.btn:nth-child(2) {
  background: var(--text-color);
  color: var(--nav-color);
}
.btn:nth-child(2):hover {
  color: var(--text-color);
}
.btn:nth-child(2)::before {
  background: var(--nav-color);
}
.growth-box {
  background-image: url(https://haseeb.engrabbas.com/gpmedia/images/rival-group-page-header-world-map-x2size.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
}
.growth-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.growth-section-text h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  color: var(--nav-color);
}
.growth-section-text h2 span {
  color: var(--custom-color2);
  font-size: 30px;
}
.growth-section-text p {
  font-size: 18px;
  color: var(--nav-color);
  padding-top: 10px;
}
#hero-img {
  width: 100%;
  max-width: 470px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
  aspect-ratio: 1/1;
}
.growth-section-btn {
  height: auto;
  margin-top: 35px;
}
.growth-section-btn a {
  position: relative;
  overflow: hidden;
  background-color: var(--nav-color);
  color: #fff;
  border: 2px solid var(--custom-color2);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--nav-color);
}
.growth-section-btn a:hover {
  background-color: var(--nav-color);
  border-color: var(--custom-color2);
  box-shadow: 0 0 15px var(--custom-color2);
}
.growth-section-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: all 0.5s ease;
}
.growth-section-btn a:hover::before {
  left: 100%;
}
.growth-img {
  display: flex;
  justify-content: end;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.elevated-brand-section {
  background: var(--nav-color);
  color: var(--text-color);
  padding: 45px 0;
}
.elevated-brand-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.elevated-text {
  width: 100%;
}
.elevated-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-color);
}
.elevated-text p {
  font-size: 18px;
  color: var(--text-color);
}
.elevated-btn {
  width: 250px;
}
.elevated-btn a {
  width: 100%;
  display: inline-block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
  border: 2px solid var(--custom-color1);
  border-radius: 12px;
  position: relative;
  transition: 0.4s ease;
  text-align: center;
  background: 0 0;
}
.elevated-btn a:hover {
  color: var(--nav-color);
  background: var(--custom-color1);
  border-color: var(--custom-color1);
  box-shadow: 0 0 23px 3px #ffffff7a;
  border: 2px solid var(--nav-color);
}
.about-us-section {
  height: auto;
  width: 100%;
  padding: 50px 0;
}
.about-us-section h1 {
  font-size: 35px;
  font-weight: 600;
  color: var(--nav-color);
  width: fit-content;
  margin: 0 auto;
  padding: 20px 15px;
  border-style: solid;
  border-image: linear-gradient(to bottom, #000c29, rgba(255, 255, 255, 0)) 1
    100%;
}
.about-us-box {
  display: flex;
  gap: 50px;
  padding-top: 40px;
}
.about-us-left {
  width: 45%;
}
.about-us-img {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.about-us-img img {
  width: 100%;
  height: 100%;
}
.about-us-right {
  width: 55%;
}
.about-right-text-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.about-right-text-top {
  border-bottom: 1px solid gray;
  padding-bottom: 35px;
}
.about-right-text-top i {
  font-size: 55px;
  color: #7d7d7d;
}
.about-right-text-top h2 {
  font-size: 50px;
  font-weight: 600;
  text-align: end;
  line-height: 55px;
  color: var(--nav-color);
}
.about-right-text-top p {
  color: var(--nav-color);
  font-size: 18px;
  text-align: end;
}
.about-right-text-bottom {
  padding-top: 20px;
}
.about-right-text-bottom i {
  font-size: 55px;
  color: #7d7d7d;
}
.about-right-text-bottom h2 {
  font-size: 50px;
  font-weight: 600;
  text-align: start;
  line-height: 55px;
  color: var(--nav-color);
}
.about-right-text-bottom p {
  color: var(--nav-color);
  font-size: 18px;
  text-align: start;
}
.posting-section {
  height: auto;
  width: 100%;
  border-top: 1px solid var(--nav-color);
  padding-top: 50px;
  padding-bottom: 85px;
}
.posting-top-text {
  text-align: center;
  color: var(--nav-color);
  font-size: 35px;
  font-weight: 600;
  border: solid;
  border-image: linear-gradient(to bottom, #000c29, rgba(255, 255, 255, 0)) 1
    100%;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 20px;
}
.posting-box1 a:hover .posting-box1-text {
  transform: scale(1.1);
}
.posting-box1 {
  position: relative;
  top: 50px;
}
.posting-box1-img {
  display: flex;
  justify-content: center;
}
.posting-box1 img {
  filter: drop-shadow(0 10px 20px rgba(53, 53, 61, 0.37));
  width: 90%;
  max-width: 300px;
  aspect-ratio: 177/197;
  position: relative;
  object-fit: contain;
  height: auto;
}
.posting-box1-text {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  gap: 17px;
  transition: 0.4s;
  width: 100%;
  height: 100%;
}
.posting-box1-text i {
  font-size: 35px;
  color: var(--nav-color);
}
.posting-box1-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--nav-color);
  text-align: center;
}
.text-img-section {
  background-image: linear-gradient(rgb(6 22 76 / 59%)),
    url(https://haseeb.engrabbas.com/gpmedia/images/Capture15.webp?v=1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  padding: 60px 0;
  margin-top: 20px;
  background-attachment: fixed;
}
.text-img-box-img img {
  width: 100%;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  max-width: 500px;
  aspect-ratio: 3/2;
}
.text-img-box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.text-img-box-text h3 {
  color: var(--text-color);
  font-size: 35px;
  font-weight: 600;
}
.text-img-box-text h4 {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.text-img-box-text p {
  color: var(--text-color);
  font-size: 13px;
}
.text-img-btn {
  justify-content: start;
  padding-top: 10px;
}
.awasome-feature-section {
  height: auto;
  width: 100%;
  padding: 50px 0;
}
.feature-box {
  padding-top: 40px;
}
.awasome-feature-box {
  border: 1px solid var(--nav-color);
  border-radius: 10px;
  padding: 35px 25px;
  position: relative;
  min-height: 315px;
  cursor: pointer;
}
.awasome-feature-box h2 {
  color: var(--nav-color);
  font-size: 22px;
  font-weight: 600;
}
.awasome-feature-box p {
  font-size: 15px;
  color: var(--nav-color);
  padding-top: 5px;
}
.icon-with-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.icon-with-text span {
  color: var(--nav-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(247, 241, 218, 0.9), rgba(8, 0, 37, 0.884));
  border-radius: 10px;
  left: 0;
  bottom: 0;
  overflow: hidden;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px;
  transition: all 0.5s;
}
.awasome-feature-box:hover .overlay {
  height: 100%;
}
.overlay i {
  font-size: 25px;
  border-radius: 33px;
  height: 75px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--nav-color);
  color: var(--text-color);
}
.af-1 {
  margin-top: 20px;
}
.awasome-feature-section2 {
  border-top: 1px solid var(--nav-color);
  padding: 50px 0;
  width: 100%;
  height: auto;
}
.awasome-section2-box-text h2 {
  font-size: 25px;
}
.awasome-section2-text-box {
  border: 1px solid var(--nav-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}
.awasome-section2-box-icon i {
  font-size: 40px;
  color: var(--nav-color);
}
.awasome-section2-text-box a {
  color: var(--nav-color);
  transition: 0.3s;
}
.awasome-section2-text-box a:hover {
  color: var(--custom-color2);
}
.awasome-section2-text-box a i {
  padding-left: 10px;
}
.awasome-section2-box-icon {
  border: 1px solid;
  padding: 20px 12px;
  border-radius: 8px;
}
.awasome-section2-text-box:nth-child(1) {
  margin-bottom: 20px;
}
.awasome-section2-img {
  background-image: url(https://gpmedia.engrabbas.com/wp-content/themes/gp-media/assets/images/ch.avif);
  background-size: cover;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}
.awasome-section2-img-box {
  height: 100%;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.gpmedia-success-section {
  background-color: var(--nav-color);
  padding-bottom: 30px;
  padding-top: 50px;
  height: auto;
  width: 100%;
  color: var(--text-color);
}
.gpmedia-success-top-text {
  text-align: center;
  color: var(--text-color);
  font-size: 35px;
  font-weight: 600;
  border: solid;
  border-image: linear-gradient(to bottom, #fff, rgb(5 1 53)) 1 100%;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 20px;
  margin-bottom: 20px;
}
.gpsucces-main-box {
  padding-top: 35px;
}
.gpmedia-success-box-text span {
  font-size: 18px;
  font-weight: 300;
}
.gpmedia-success-box-text h2 {
  padding: 15px 0;
}
.gpmedia-success-box-text img {
  margin-bottom: 25px;
  width: -webkit-fill-available;
  max-width: 500px;
  aspect-ratio: 5/3.5;
}
.gpmedia-success-box-text p {
  max-width: 550px;
  font-size: 17px;
  line-height: 22px;
  font-weight: 200;
}
.gpmedia-success-box1-maintext {
  display: flex;
  align-items: center;
  height: 100%;
}
.gpmedia-success-box1-text {
  border-left: 4px solid #807e7eb0;
  padding-left: 15px;
}
.box1-text {
  position: relative;
  margin-bottom: 30px;
}
.box1-text:last-child {
  margin-bottom: 0;
}
.box1-text:last-child p {
  margin-bottom: 0;
}
.box1-text h3 {
  font-size: 25px;
  font-weight: 600;
}
.box1-text p {
  font-size: 17px;
  font-weight: 200;
}
.box1-text::after {
  position: absolute;
  left: -19px;
  top: 0;
  content: "";
  height: 50px;
  width: 4px;
  background-color: var(--text-color);
  border-radius: 10px;
}
.slick-slider {
  padding: 50px 0;
}
.slide-main-box {
  position: relative;
}
.slide1 {
  position: relative;
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--nav-color);
  margin: 0 8px;
}
.slide1-text p {
  color: var(--nav-color);
  font-size: 15px;
  line-height: 20px;
}
.slide1-text-img {
  display: flex;
  align-items: start;
}
.slide1-text-img img {
  border-radius: 50%;
  height: 45px;
  aspect-ratio: 2/2;
}
.n {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}
.n p {
  margin: 0;
}
.n span {
  color: #2c2c2c;
  font-size: 12px;
}
.slick-next,
.slick-prev {
  display: none !important;
}
.custom-arrows01 {
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.custom-arrows01 button {
  background: #fcfcff;
  cursor: pointer;
  font-size: 30px;
  color: #323548;
  height: 57px;
  width: 57px;
  border-radius: 50%;
  opacity: 1;
  margin: -27px;
  box-shadow: 0 1px 10px -2px;
}
.custom-arrows01 button:hover {
  background: #ececec;
}
.custom-arrows01 button:hover {
  color: #000;
}
.custom-arrows01 .prev-arrow01 {
  left: 0;
  position: relative;
  top: 35px;
}
.custom-arrows01 .next-arrow01 {
  right: 1px;
  position: relative;
  top: 35px;
}
.accordion-img img {
  max-width: 500px;
  width: 100%;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
  aspect-ratio: 4/3;
}
.accordion-main-box {
  background: var(--nav-color);
  padding: 50px 0;
  margin-top: 60px;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: 0 0;
  outline: 0;
}
.accordion button .accordion-title {
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  background-color: #ddd;
  color: var(--nav-color);
  cursor: pointer;
  padding-right: 30px;
}
.accordion-title p {
  margin: 0;
  color: var(--nav-color) !important;
  font-weight: 600 !important;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  color: var(--nav-color);
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: max-content;
  transition: all 0.2s linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s linear, max-height 0.2s linear;
  will-change: opacity, max-height;
  background-color: var(--text-color);
  border-radius: 5px;
  margin-bottom: 10px;
}
.accordion .accordion-content p {
  margin: 10px;
  color: var(--nav-color);
  font-size: 15px;
}
.accordion-box h2 {
  font-size: 20px;
  color: var(--text-color);
}
.accordion-box h2 span {
  font-weight: 600;
  font-size: 22px;
}
.accordion-box p {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 300;
}
.accordion-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.explore-section {
  padding: 50px 0;
  background-color: var(--text-color);
}
.port-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #292e33;
  display: flex;
  grid-template-rows: 1fr auto;
  align-items: center;
  border: 2px solid #c4c4c4;
  height: auto;
  box-shadow: 0 0 0.5rem #c4c4c4;
  cursor: pointer;
}
.port-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 3/2;
}
.port-image img {
  width: 100%;
  opacity: 0.5s;
  height: 100%;
  transition: 0.5s;
  object-fit: cover;
}
.port-content {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), #010c31);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  transition: 0.5s;
  padding: 0 1rem;
}
.port-box:hover .port-content {
  opacity: 1;
}
.port-box:hover .port-image img {
  transform: scale(1.1);
}
.port-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}
.port-content p {
  font-size: 0.8rem;
  margin: 5px 0 15px 0;
  color: var(--text-color);
}
.port-content a {
  background: var(--nav-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  outline: 2px solid #fff;
}
.port-content a i {
  font-size: 15px;
  color: var(--text-color);
}
.explore-main-box {
  padding-top: 50px;
}
.mix {
  margin-top: 20px;
}
.footer-main {
  padding-top: 45px;
  border-top: 3px solid var(--nav-color);
  position: relative;
  overflow: hidden;
}
.bar {
  position: absolute;
  top: -40px;
  left: 15px;
  background: var(--nav-color);
  height: 140px;
  width: 20px;
  border-radius: 10px;
  display: block;
  box-shadow: 2px 4px 10px #031938;
}
.bar1 {
  left: 50px;
  top: -60px;
}
.bar2 {
  left: 85px;
  top: -85px;
}
.bar3 {
  left: auto;
  right: 15px;
}
.bar4 {
  left: auto;
  right: 50px;
  top: -60px;
}
.bar5 {
  left: auto;
  right: 85px;
  top: -85px;
}
.footer-left a img {
  width: 150px;
  height: auto;
  aspect-ratio: 200/60;
}
.footer-icon li {
  list-style: none;
}
.footer-icon ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-icon ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}
.footer-icon ul li a:hover {
  transform: translateY(-7px);
}
.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.twitter {
  background: #1da1f2;
}
.linked-in {
  background: #0077b5;
}
.youtube {
  background: red;
}
.footer-links h3 {
  font-size: 25px;
  color: var(--nav-color);
  font-weight: 400;
}
.footer-links ul li {
  margin: 15px 0;
  list-style: none;
}
.footer-links ul li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nav-color);
  transition: 0.3s;
}
.footer-links ul li a:hover {
  letter-spacing: 0.6px;
  text-decoration: none;
}
.row.footer-top {
  padding: 30px 0;
  padding-top: 60px;
}
.footer-left {
  padding-left: 25px;
}
.footer-bottom {
  width: 100%;
  background-color: var(--nav-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom p {
  color: var(--text-color);
  padding: 15px;
  text-align: center;
  margin: 0;
}
@media (max-width: 991px) {
  .posting-box1 {
    margin-bottom: 30px;
  }
  .text-img-box-img {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
  .af-2 {
    margin-top: 20px;
  }
  .awasome-section2-img-box {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 25px;
  }
  .awasome-section2-img {
    height: 300px;
  }
  .gpmedia-success-box-text {
    margin-bottom: 50px;
  }
  .accordion-img {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .mix-1 {
    margin-top: 20px;
  }
  .footer-left {
    margin-bottom: 30px;
    padding-left: 0;
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: var(--nav-color);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .navbar .bx-menu,
  .sidebar-logo i {
    font-size: 25px;
    color: #fff;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0);
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .custom-style {
    justify-content: center;
  }
  .top-right {
    display: none;
  }
  .banner-text {
    padding: 0 16px;
  }
  .growth-box {
    height: auto;
    padding: 40px 20px;
  }
  .growth-img {
    padding-top: 35px;
    justify-content: center;
  }
  .elevated-brand-box {
    flex-direction: column;
    gap: 13px;
  }
  .about-us-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .about-us-left {
    width: 100%;
  }
  .about-us-right {
    width: 100%;
  }
  .slick-slider {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .af-3 {
    margin-bottom: 20px;
  }
  .mix-2 {
    margin-top: 20px;
  }
}
@media (max-width: 490px) {
  .banner-text h2 {
    font-size: 27px;
    line-height: 30px;
  }
  .banner-text p {
    font-size: 16px;
  }
  .banner-btn {
    flex-direction: column;
    gap: 10px;
  }
  .banner-btn .btn {
    font-size: 12px;
  }
  .growth-section-text h2 {
    font-size: 27px;
    line-height: 35px;
  }
  .growth-section-text p {
    font-size: 16px;
    padding-top: 0;
  }
  .growth-section-btn {
    margin-top: 20px;
  }
  .growth-box {
    padding: 30px 20px;
  }
  .elevated-text h2 {
    font-size: 27px;
  }
  .elevated-text p {
    font-size: 16px;
    padding-top: 9px;
  }
  .elevated-btn {
    width: 190px;
  }
  .elevated-btn a {
    font-size: 16px;
  }
  .elevated-brand-section {
    padding: 30px 0;
  }
  .about-us-section {
    padding: 40px 0;
  }
  .about-right-text-top h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .about-right-text-top p {
    font-size: 16px;
  }
  .about-right-text-top i {
    font-size: 45px;
  }
  .about-right-text-bottom h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .about-right-text-bottom p {
    font-size: 16px;
  }
  .about-right-text-bottom i {
    font-size: 45px;
  }
  .about-right-text-top {
    padding-bottom: 20px;
  }
  .about-right-text-bottom {
    padding-top: 15px;
  }
  .about-us-section h1 {
    font-size: 27px;
  }
  .posting-top-text {
    font-size: 27px;
  }
  .posting-box1-text h3 {
    font-size: 17px;
  }
  .text-img-box-text h3 {
    font-size: 27px;
  }
  .awasome-section2-text-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .awasome-section2-img {
    height: 210px;
  }
  .gpmedia-success-top-text {
    font-size: 26px;
  }
  .gpmedia-success-box-text h2 {
    font-size: 22px;
  }
  .gpmedia-success-box-text span {
    font-size: 15px;
  }
  .gpmedia-success-box-text p {
    font-size: 16px;
  }
  .box1-text p {
    font-size: 16px;
  }
  .explore-section {
    padding: 30px 0;
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
  .posting-top-text {
    font-size: 22px;
  }
}
