@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
.map-image {
  position: relative;
  overflow: hidden;
}
* h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Serif", serif !important;
}
.bg_black {
  background: #000 !important;
}
#map {
  display: none; /* Initially hidden */
  width: 100%;
  transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
  opacity: 0; /* Start fully transparent */
}
.show {
  display: block; /* Display block when shown */
  opacity: 1; /* Fade in effect */
}
.intro,
.cta {
  margin: 0 !important;
}
.btn {
  border: 2px solid black !important;
  color: black !important;
}
.btn:hover {
  color: white !important;
}
@media (min-width: 992px) {
  .navbar__logo a {
    margin: 0;
  }
  .navbar .nav_links {
    font-size: 16px;
    color: #000;
  }
  .header .tertiary--navbar .tertiary-cta {
    padding: 20px 3px 20px 7px;
  }
}
.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 5px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 20, 43, 0)),
    to(#2662d9)
  );
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 3s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 5px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 20, 43, 0)),
    to(#2662d9)
  );
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 5px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 20, 43, 0)),
    to(#2662d9)
  );
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 5px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 20, 43, 0)),
    to(#2662d9)
  );
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button1 {
  background: black;
  padding: 20px 40px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4d4;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}
.navbar-active {
  background-color: var(--black);
  animation: stickyNavbar 4s ease-in-out !important;
  box-shadow: var(--shadow);
  border-bottom: 1px solid #414141;
}
.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#d92626)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}
.animated-button1:hover span:nth-child(1) {
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#d92626)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}
.animated-button1:hover span:nth-child(2) {
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 8, 0)),
    to(#d92626)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}
.animated-button1:hover span:nth-child(3) {
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 8, 0)),
    to(#d92626)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}
.animated-button1:hover span:nth-child(4) {
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #0b5361);
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button2 {
  background: linear-gradient(-30deg, #3d240b 50%, #2b1a08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7e6d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.click-btn {
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  color: #000;
}

.click-btn {
  z-index: 1;
}
.click-btn:hover:before {
  width: 100%;
  background-color: #0b5361 !important;
  color: #fff;
}
.click-btn:hover {
  color: #fff;
}

.click-btn::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 100%;

  transition: all 0.6s ease;
  z-index: -1;
}
.faq-main .accordion-button::after {
  background-image: inherit;
}
.faq-main .accordion-item {
  position: relative;
}
.faq-main .accordion-button:before {
  content: "";
  position: absolute;
  top: 26px;
  right: 4px;
  display: inline-block;
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: all ease-in-out 0.4s;
  /* background-color: red; */
}
.faq-main .accordion-item.faq-one-active .accordion-button:before {
  /* background-color: red; */
  transform: rotate(-133deg);
}
.faq-main .accordion-button {
  position: relative;
}
.faq-img {
  width: 20px;
  height: 20px;
  display: block;
}
.animated-button2::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad9985;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button2:hover::before {
  opacity: 0.2;
}

.animated-button2 span {
  position: absolute;
}

.animated-button2 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 26, 8, 0)),
    to(#d98026)
  );
  background: linear-gradient(to left, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button2 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 26, 8, 0)),
    to(#d98026)
  );
  background: linear-gradient(to top, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button2 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 26, 8, 0)),
    to(#d98026)
  );
  background: linear-gradient(to right, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button2 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 26, 8, 0)),
    to(#d98026)
  );
  background: linear-gradient(to bottom, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button3 {
  background: linear-gradient(-30deg, #3d3d0b 50%, #2b2b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button3::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #adad85;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button3:hover::before {
  opacity: 0.2;
}

.animated-button3 span {
  position: absolute;
}

.animated-button3 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 43, 8, 0)),
    to(#d9d926)
  );
  background: linear-gradient(to left, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button3 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 43, 8, 0)),
    to(#d9d926)
  );
  background: linear-gradient(to top, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button3 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 43, 8, 0)),
    to(#d9d926)
  );
  background: linear-gradient(to right, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button3 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 43, 8, 0)),
    to(#d9d926)
  );
  background: linear-gradient(to bottom, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button4 {
  background: linear-gradient(-30deg, #243d0b 50%, #1a2b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #e6f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button4::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #99ad85;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button4:hover::before {
  opacity: 0.2;
}

.animated-button4 span {
  position: absolute;
}

.animated-button4 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(26, 43, 8, 0)),
    to(#80d926)
  );
  background: linear-gradient(to left, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button4 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(26, 43, 8, 0)),
    to(#80d926)
  );
  background: linear-gradient(to top, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button4 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(26, 43, 8, 0)),
    to(#80d926)
  );
  background: linear-gradient(to right, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button4 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(26, 43, 8, 0)),
    to(#80d926)
  );
  background: linear-gradient(to bottom, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button5 {
  background: linear-gradient(-30deg, #0b3d0b 50%, #082b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button5::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85ad85;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button5:hover::before {
  opacity: 0.2;
}

.animated-button5 span {
  position: absolute;
}

.animated-button5 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 43, 8, 0)),
    to(#26d926)
  );
  background: linear-gradient(to left, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button5 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 43, 8, 0)),
    to(#26d926)
  );
  background: linear-gradient(to top, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button5 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 43, 8, 0)),
    to(#26d926)
  );
  background: linear-gradient(to right, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button5 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 43, 8, 0)),
    to(#26d926)
  );
  background: linear-gradient(to bottom, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button6 {
  background: linear-gradient(-30deg, #0b3d24 50%, #082b1a 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7e6;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button6::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85ad99;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button6:hover::before {
  opacity: 0.2;
}

.animated-button6 span {
  position: absolute;
}

.animated-button6 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 43, 26, 0)),
    to(#26d980)
  );
  background: linear-gradient(to left, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button6 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 43, 26, 0)),
    to(#26d980)
  );
  background: linear-gradient(to top, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button6 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 43, 26, 0)),
    to(#26d980)
  );
  background: linear-gradient(to right, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button6 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 43, 26, 0)),
    to(#26d980)
  );
  background: linear-gradient(to bottom, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button7 {
  background: linear-gradient(-30deg, #0b3d3d 50%, #082b2b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button7::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85adad;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button7:hover::before {
  opacity: 0.2;
}

.animated-button7 span {
  position: absolute;
}

.animated-button7 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 43, 43, 0)),
    to(#26d9d9)
  );
  background: linear-gradient(to left, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button7 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 43, 43, 0)),
    to(#26d9d9)
  );
  background: linear-gradient(to top, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button7 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 43, 43, 0)),
    to(#26d9d9)
  );
  background: linear-gradient(to right, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button7 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 43, 43, 0)),
    to(#26d9d9)
  );
  background: linear-gradient(to bottom, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button8 {
  background: linear-gradient(-30deg, #0b243d 50%, #081a2b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e6f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button8::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8599ad;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button8:hover::before {
  opacity: 0.2;
}

.animated-button8 span {
  position: absolute;
}

.animated-button8 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 26, 43, 0)),
    to(#2680d9)
  );
  background: linear-gradient(to left, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button8 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 26, 43, 0)),
    to(#2680d9)
  );
  background: linear-gradient(to top, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button8 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 26, 43, 0)),
    to(#2680d9)
  );
  background: linear-gradient(to right, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button8 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 26, 43, 0)),
    to(#2680d9)
  );
  background: linear-gradient(to bottom, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button9 {
  background: linear-gradient(-30deg, #0b0b3d 50%, #08082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button9::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8585ad;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button9:hover::before {
  opacity: 0.2;
}

.animated-button9 span {
  position: absolute;
}

.animated-button9 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(8, 8, 43, 0)),
    to(#2626d9)
  );
  background: linear-gradient(to left, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button9 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(8, 8, 43, 0)),
    to(#2626d9)
  );
  background: linear-gradient(to top, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button9 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(8, 8, 43, 0)),
    to(#2626d9)
  );
  background: linear-gradient(to right, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button9 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(8, 8, 43, 0)),
    to(#2626d9)
  );
  background: linear-gradient(to bottom, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button10 {
  background: linear-gradient(-30deg, #240b3d 50%, #1a082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #e6d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button10::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #9985ad;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button10:hover::before {
  opacity: 0.2;
}

.animated-button10 span {
  position: absolute;
}

.animated-button10 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(26, 8, 43, 0)),
    to(#8026d9)
  );
  background: linear-gradient(to left, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button10 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(26, 8, 43, 0)),
    to(#8026d9)
  );
  background: linear-gradient(to top, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button10 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(26, 8, 43, 0)),
    to(#8026d9)
  );
  background: linear-gradient(to right, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button10 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(26, 8, 43, 0)),
    to(#8026d9)
  );
  background: linear-gradient(to bottom, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button11 {
  background: linear-gradient(-30deg, #3d0b3d 50%, #2b082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button11::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad85ad;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button11:hover::before {
  opacity: 0.2;
}

.animated-button11 span {
  position: absolute;
}

.animated-button11 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 43, 0)),
    to(#d926d9)
  );
  background: linear-gradient(to left, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button11 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 43, 0)),
    to(#d926d9)
  );
  background: linear-gradient(to top, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button11 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 43, 0)),
    to(#d926d9)
  );
  background: linear-gradient(to right, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button11 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 43, 0)),
    to(#d926d9)
  );
  background: linear-gradient(to bottom, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.animated-button12 {
  background: linear-gradient(-30deg, #3d0b24 50%, #2b081a 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4e6;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button12::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8599;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button12:hover::before {
  opacity: 0.2;
}

.animated-button12 span {
  position: absolute;
}

.animated-button12 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 26, 0)),
    to(#d92680)
  );
  background: linear-gradient(to left, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button12 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 26, 0)),
    to(#d92680)
  );
  background: linear-gradient(to top, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button12 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 26, 0)),
    to(#d92680)
  );
  background: linear-gradient(to right, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button12 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 26, 0)),
    to(#d92680)
  );
  background: linear-gradient(to bottom, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.banner-three__content {
  height: 60px;
}

.nav-mail a {
  color: white !important;
}
@media (min-width: 992px) {
  .light-title,
  .light-title-1,
  .light-title-2,
  .light-title-3 {
    font-size: 50px;
  }
  .banner-three__content h2 {
    overflow: hidden;
    /* white-space: nowrap; */
    line-height: 100%;
  }
}
.tertiary--navbar {
  /* background:rgb(2 8 26 / 0.62); */
  background-color: whitesmoke;
  /* background-image: linear-gradient(
    rgb(54 55 58 / 31%),
    rgb(129 135 163 / 51%)
  ); */
}
.tertiary-cta,
.tertiary-cta::before {
  background: transparent !important;
}
.tertiary--navbar .open-offcanvas-nav {
  background-color: whitesmoke;
  color: #000;
}
/* .open-offcanvas-nav:hover{
	background-color: #14192a!important;
} */
/*.primary-navbar .navbar__menu>ul{
	justify-content: center;
}*/
.tertiary--navbar .tertiary-cta {
  padding: 21px 30px 21px 20px;
}
.banner-three .banner-three__slider-progress .single-item .inProgress {
  background: #0b5361 !important;
}
.banner-three .banner-three__slider-progress .single-item {
  opacity: 1 !important;
}
.btn--secondary::before,
.btn::before,
.cta-two span,
.slide-btn:hover,
.agency .skill-bar-percent,
.cursor-inner {
  background-color: #0b5361 !important;
}
.banner-three .banner-three__meta::before,
.banner-three .banner-three__content .btn--secondary:hover,
.btn--primary,
.btn:hover,
.slide-btn:hover {
  border-color: #d5a14f;
}
.navber__item {
  color: white;
}
.banner-three .banner-three__content .btn--secondary i,
.section__header .sub-title,
.btn--primary,
.service-f .single-item .sub-title i,
.service-f .single-item li i,
.service-f .service-f-single-active .toggle-service-f::before,
.section__content .sub-title,
.tertiary--navbar .navbar__item a:hover,
.portfolio .portfolio__text-slider-single h2 i,
.progress-wrap span::before,
.progress-wrap span::after,
.offcanvas-nav .offcanvas-menu .navbar__item a:hover,
.testimonial .testimonial-s__slider .testimonial-s__content .quote i,
.testimonial .testimonial-s__slider .testimonial-s__content .content-cta p,
.cta-two .btn,
.footer-three .footer-three__group .cta a,
.footer-three .footer-three__group .cta a i,
.footer-three .footer-three__group a:hover,
.footer-three .footer-three__group a:hover i,
h2 a:hover,
.breadcrumb .active,
.offcanvas-nav .offcanvas-menu .close-offcanvas-menu:hover {
  color: black;
}
.typed-cursor {
  display: none;
}

.breadcrumb .breadcrumb-item a:hover,
.contact-m p a:hover,
.banner-three .single-item-active span {
  color: #d5a14f !important;
}
.banner-three .banner-three__content h2 {
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}
.banner-three__slider-progress .single-item:nth-child(1) {
  min-width: 110px;
}
.banner-three__slider-progress .single-item:nth-child(2) {
  min-width: 205px;
}
.banner-three__slider-progress .single-item:nth-child(3) {
  min-width: 145px;
}
.banner-three__slider-progress .single-item:nth-child(4) {
  min-width: 130px;
}
.single-item span,
p {
  color: #000;
}
.offcanvas-menu__header {
  animation-delay: 0.5s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(1) {
  animation-delay: 0.8s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(2) {
  animation-delay: 1s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(3) {
  animation-delay: 1.2s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(4) {
  animation-delay: 1.4s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(5) {
  animation-delay: 1.6s !important;
}
.offcanvas-nav .show-offcanvas-menu li:nth-child(6) {
  animation-delay: 1.8s !important;
}
.offcanvas-menu__options {
  animation-delay: 2s !important;
}
.offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
  background: white !important;
}
.offcanvas-nav .offcanvas-menu .navbar__item a,
.offcanvas-nav .offcanvas-menu .navbar__item button {
  color: black !important;
}
.a-social {
  position: fixed;
  top: 15%;
  right: -15%;
  z-index: 1000;
  width: 40px;
  transition: all ease-in-out 0.5s;
}
@keyframes social_icon_animation {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0%);
  }
}
.fa-ligh,
.close-offcanvas-menu {
  color: black !important;
}
.banner-three .banner-three__slider-single::before {
  background: #ffffffc2;
  opacity: 0.7;
}
.a-social a {
  background-color: white;
  border: 1px solid #000;
  color: #000;
}

.a-social a:hover {
  color: #fff;
  border-color: transparent;
}

.a-social a:nth-child(1) {
  animation: social_icon_animation 1s linear infinite;
}
.a-social a:nth-child(2) {
  animation: social_icon_animation 1.5s linear infinite;
}
.a-social a:nth-child(3) {
  animation: social_icon_animation 2s linear infinite;
}
.a-social a:nth-child(4) {
  animation: social_icon_animation 2.5s linear infinite;
}
.a-social a:nth-child(1):hover {
  background-color: #0866ff;
}
.a-social a:nth-child(2):hover {
  background-color: #03a9f4;
}
.a-social a:nth-child(3):hover {
  background-color: #007ab9;
}
.a-social a:nth-child(4):hover {
  background: rgb(182, 0, 176);
  background: linear-gradient(
    232deg,
    rgba(182, 0, 176, 1) 23%,
    rgba(244, 14, 7, 1) 50%,
    rgba(255, 211, 33, 1) 77%
  );
}
.sub-title i {
  color: #d5a14f !important;
}
.progress-wrap .progress-circle path {
  stroke: white;
}
.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 i {
  -webkit-text-stroke: 2px #d5a14f;
}
.primary-navbar .navbar__item a {
  padding: 15px;
  animation-name: email;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  &:hover {
    animation-play-state: paused;
  }
}
@keyframes email {
  from {
    border-color: #222;
    color: #333;
  }
  to {
    border-color: transparent;
    color: #000;
  }
}
.primary-navbar .navbar__item a:hover {
  border: 1px solid #d5a14f;
  background-color: white;
  color: #000 !important;
  transform: scale(1.05);
}
.tertiary--navbar .open-offcanvas-nav {
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.tertiary--navbar .open-offcanvas-nav,
.tertiary--navbar .open-offcanvas-nav i {
  font-weight: 800 !important;
}
.tertiary--navbar .open-offcanvas-nav:hover,
.nav_links:hover {
  background-color: transparent !important;
  color: #0b5361;
}

.join_button:hover {
  color: #0b5361;
}
.offcanvas-nav .offcanvas-menu .navbar__item-active {
  color: #0b5361 !important;
}
.cta-two .btn,
.mission-s .mission-s__single--alt:hover,
.cursor-outer {
  border-color: black !important;
}
.cta-two .btn:hover {
  color: #000;
}
.portfolio .portfolio__text-slider-single:nth-of-type(even) h2:hover,
.portfolio .portfolio__text-slider-single:nth-of-type(even) h2 a:hover {
  -webkit-text-stroke-color: #d5a14f !important;
}
.a-nav-active {
  color: #d5a14f !important;
}
.a-nav-active:hover {
  cursor: default;
}
h4.a-subhead {
  margin: 30px 0 10px 0 !important;
  padding: 0 0 0 30px;
  position: relative;
}
h4.a-subhead:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border: 3px solid #d5a14f;
  border-radius: 50%;
}
.a-black-bg {
  background-color: #000 !important;
}
.a-head-style-2 {
  margin: 20px 0 30px 0;
  font-size: 32px;
}
.contact-m .contact-m__single {
  padding: 30px;
}
.contact-m .thumb {
  margin-bottom: 10px;
}
.contact-m h4 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #343434;
}
.a-bullet-para span {
  margin: 10px 10px 0 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 3px solid #d5a14f;
  border-radius: 50%;
  float: left;
}
.a-bullet-para strong {
  font-size: 18px;
}
@media (min-width: 1199.99px) {
  .a-content-left {
    padding-right: 70px;
  }
}

.a-title-wp > div:first-child > div {
  text-transform: none !important;
}
.a-title-ios > div:first-child > div:first-child {
  text-transform: lowercase !important;
}

.arrow-wrapper .arrow {
  color: #000;
  background-color: #000;
}
.banner-three .banner-three__content .arrow::before {
  background: #000 !important;
}
.cta {
  justify-content: center;
}
.banner-three__content h2 {
  min-height: 70px;
}
.banner-three .banner-three__slider-progress {
  max-width: 100% !important;
  justify-content: center;
}
.breadcrumb .breadcrumb-item a:hover,
.contact-m p a:hover,
.banner-three .single-item-active span {
  color: #000 !important;
}
.banner-three {
  /* min-height: 1080px; */
  height: 100%;
}
.banner-three .banner-three__slider-single {
  min-height: 100vh;
}
/* hero classes */
.hero_cta {
  background: white !important;
  border: 2px solid black;
}
.banner-three .banner-three__meta::before {
  border-color: #000;
}
.hero_cta h5 {
  color: #000 !important;
}
.section {
  background: white !important;
}

.title-anim {
  color: #000 !important;
}
.sub-title,
.sub-title i,
.service-f .single-item h4,
.service-f .single-item li,
.agency-two h5,
h4,
h5,
.footer-three .footer-three__group a {
  color: #000 !important;
}
.toggle-service-f::before {
  color: white !important;
}
.bg_fixed {
  background-attachment: fixed !important;
}
.portfolio-three .portfolio__single .portfolio__single-content a i {
  color: #000 !important;
}
body::-webkit-scrollbar-thumb {
  background: black;
}

body::-webkit-scrollbar-button,
body::-webkit-scrollbar-track {
  background: transparent;
}

.mission-s .mission-s__single .primary-text {
  color: white !important;
}
.contact-m .contact-m__single h4 {
  color: white !important;
}
.banner-three .banner-three__slider-single {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo,
.logo span {
  color: #000 !important;
  font-size: 20px;
  font-weight: 600;
}
.logo img {
  max-width: 40px;
}
.footer-three .footer-three__copyright .gaper {
  row-gap: 0px !important;
}
.star {
  opacity: 0.3;
}
.agency .skill-bar {
  background: #3636366e;
}
@media only screen and (max-width: 1699.98px) {
  .banner-three .banner-three__slider-progress-wrapper {
    bottom: 150px !important;
  }
  .article-blog .container-flex {
    max-width: 1320px;
  }
  .header #menu {
    border: none;
    width: auto;
    height: auto;
    padding: inherit;
  }
}
@media only screen and (max-width: 1480.98px) {
  .header #menu {
    display: block !important;
  }
  .primary-navbar .navbar {
    gap: 37px;
    padding: 15px 0 !important;
  }
  #menu ul {
    gap: 2rem !important;
  }
  .navbar__menu ul {
    gap: 1rem !important;
  }
  .testimonial {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .primary-navbar .navbar__item {
    display: none !important;
  }
  .search-bar button {
    padding: 6px;
    font-size: 14px;
  }
  a.article-read-more {
    font-size: 12px;
  }
  .article-blog .blog-main {
    padding-top: 0;
  }
  .article-blog .search-bar input {
    min-width: 167px;
  }
  .navbar__menu ul {
    gap: 2rem !important;
  }
  .banner-three .banner-three__slider-single {
    min-height: 65vh;
  }
  .primary-text {
    font-size: 18px;
  }
  .section__header .title {
    font-size: 38px !important;
  }
  .agency .section__content .title {
    font-size: 38px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .primary-navbar .navbar__menu {
    display: block;
  }
  .strategy-main .grid {
    grid-template-columns: auto !important;
  }
  .section {
    padding: 60px 0 95px 0px !important;
  }
  .testimonial {
    padding: 0 0 95px 0 !important;
  }
  .portfolio .section__header .title {
    font-size: 40px;
  }
  .service-f h2.title {
    font-size: 40px;
  }
  .agency .section__content .title {
    font-size: 40px;
    line-height: 59px;
  }
  .cta-two h2.title-anim {
    font-size: 39px;
  }
  .footer-cta {
    padding: 29px 0 !important;
  }
  .single-cta {
    padding-top: 13px !important;
  }
}

@media only screen and (max-width: 1050.98px) {
  .article-blog .blog-main main {
    padding-right: 0;
  }
  .article-title {
    padding-bottom: 20px;
  }
  .sidebar-widget {
    padding-top: 20px;
  }
  .agency .agency__content .title {
    font-size: 36px;
    line-height: 56px;
  }
  .testimonial .section__header .title {
    font-size: 40px;
  }
  .panel .panel-id {
    font-size: 26px;
    line-height: 26px;
  }
  .section__header--secondary {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991.98px) {
  .banner-three .banner-three__slider-progress,
  .banner-three .banner-three__content {
    padding-left: 0 !important  ;
  }
  #toggle {
    display: block;
  }
  .header #menu {
    border: none;
    width: auto;
    height: auto;
    padding: inherit;
  }
  #toggle {
    display: block !important;
  }
  .cmn-banner .gaper .title {
    max-width: inherit !important;
  }
  .primary-navbar .navbar__menu {
    display: none;
  }
  .cta-two h2 {
    font-size: 34px !important;
  }
  .section__header .title {
    font-size: 36px !important;
  }
  .section {
    padding: 60px 0 0 0px !important;
  }
  .section__content .title {
    font-size: 32px !important;
  }
  .testimonial .testimonial-s__slider .testimonial-s__content h4 {
    font-size: 20px;
  }
  .section__header--secondary {
    margin-bottom: 45px;
  }
  .testimonial {
    padding: 60px 0 95px 0 !important;
  }
  .contact-m .col-12:last-child {
    padding-bottom: 60px;
  }
  .contact-m .gaper {
    padding-bottom: 60px;
  }

  .footer-widget .map-container {
    margin-top: 29px;
  }
}
@media only screen and (max-width: 991.98px) {
  /* .banner-three .banner-three__slider-single {
    padding: 0 0 100px 0;
  } */
  .banner-three .banner-three__content h2 {
    min-height: 0;
  }

  .header #menu ul {
    position: absolute;
    left: 0;
    top: 103px;
    right: 0;
    padding: 17px 0;
    width: 100%;
    /* height: 100%; */
    background-color: #000000c4;
    display: none !important;
  }
  .header #menu ul li a {
    color: #fff;
    padding: 10px 0;
  }
  .header #menu ul li a {
    padding: 10px 0;
    display: inline-block;
  }
  .footer-section .cta-text {
    padding-left: 36px;
    display: block;
  }
  .footer-section .single-cta i {
    font-size: 20px;
  }
  .footer-widget img.w-100 {
    max-width: 300px;

    /* margin: 0 auto; */
  }
  .footer-logo img {
    max-width: 50px !important;
  }
  .article-blog .article-title {
    font-size: 20px;
    padding-bottom: 8px;
  }
  .article-blog a.article-read-more {
    font-size: 14px;
  }
  .social-media .row {
    display: block;
  }
  .graphic-design .service {
    width: calc(100% / 2 - 18px);
  }
  .primary-navbar button.open-offcanvas-nav.d-flex {
    display: block !important;
  }
  .mission-s .section__content-cta {
    margin-top: 16px;
  }
  .header .tertiary--navbar .navbar__options {
    gap: 0px;
  }
}
@media (max-width: 576.98px) {
  .banner-three .banner-three__slider-single {
    padding-top: 245px;
  }
  .banner-three .banner-three__slider-single {
    align-items: start;
  }
  .logo,
  .logo span {
    font-size: 16px;
  }
  .footer-widget ul li a {
    font-size: 14px;
  }
  .footer-widget ul li {
    margin-bottom: 6px;
  }
  .footer-section .cta-text h4 {
    font-size: 18px;
  }
  /* .banner-three .banner-three__slider-progress {
    justify-content: start;
  } */
  .footer-section .footer-widget ul li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 12px;
  }
  .a-head-style-2 {
    margin: 19px 0 19px 0;
    font-size: 24px;
  }
  .agency {
    padding: 30px 0;
  }
  .faq-main .custom-heading {
    font-size: 30px !important;
  }
  .strategy-main .grid {
    grid-template-columns: auto !important;
  }
  .strategy-main .card-icon {
    margin-top: 16px;
  }
  .section__content-cta {
    margin-top: 12px;
  }
  .social-media .content h1 {
    font-size: 22px !important;
  }
  .social-media .content p {
    font-size: 14px !important;
  }
  .section__content .title {
    font-size: 24px !important;
  }

  .section__header .title {
    font-size: 30px !important;
  }
  .agency .section__content .title {
    margin-bottom: 20px;
  }
  .cta-two h2 {
    font-size: 30px !important;
  }
  .testimonial {
    padding: 60px 0 60px 0 !important;
  }
  .primary-text {
    font-size: 16px;
  }
  .video-modal .modal-bg {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: left;
  }
}

/* slider css */

.gallery {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 20px;
}

.panel-container {
  border-radius: 0.25rem;
  outline: 1px solid #dfd0b8;
  position: relative;
  width: 10%;
  background: #eee;
  transition: width 2s, visibility 2s,
    transform cubic-bezier(0.15, 0.1, 0.25, 1.3);
  user-select: none;
}

.panel-container:hover {
  cursor: pointer;
  outline-color: #948979;
}

.panel-container:has(.panel-control:checked) {
  width: 60%;
  cursor: default;
}

.panel {
  height: 100%;
  padding: 10px;
  position: relative;
}

.panel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.3rem;
  object-fit: cover;
}
.panel-id {
  font-size: 2rem;
  color: white;
  transform: rotate(90deg) translateX(50%);
}

.panel-control {
  display: none;
}

.panel-control:checked ~ .panel-id {
  display: none;
}

.panel-control:checked ~ .panel-content {
  /* display: flex; */
  min-height: 600px;
  transform: translateY(0%);
}

.panel-content {
  height: 100%;
  flex-direction: column;
  color: white;
  position: relative;
  z-index: 5;
  /* display: none; */
  transform: translateY(100%);
  transition: all ease-in-out 0.5s;
}

.title {
  color: limegreen;
}

.value {
  margin-bottom: 0.75rem;
}

.icon {
  color: inherit;
  height: 1.125rem;
}

.alt .value::after {
  content: " mts.";
}
.portfolio__single-content {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 20px;
  color: white !important;
  /* background-color: var(--white); */
  text-align: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 90%;
  height: 100%;
  max-height: 140px;
  overflow: hidden;
}
.portfolio__single-content p {
  white-space: nowrap;
}
.portfolio__single-content a {
  color: white;
}
.profilt_icon {
  font-size: 46px;
  color: white;
}
/* nav css */
.primary-navbar .navbar__menu > ul {
  justify-content: center;
}
.nav_links {
  color: #000;
  font-size: 18px;
}
@media (min-width: 1480px) {
  .large_flex {
    display: flex !important;
  }

  .breadcrumb .breadcrumb-item a {
    color: #000;
  }
  .breadcrumb .breadcrumb-item::before {
    color: #000;
  }
  main,
  .banner-three {
    background: white;
  }
  .contact_space {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .social-media-marketing .social-media-grid img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  .primary-navbar .navbar {
    gap: 37px !important;
  }
  .breadcrumb .breadcrumb-item a {
    color: #000 !important;
  }
}
@media (max-width: 768px) {
  .service-f .single-item h4 {
    margin-bottom: 0;
  }
  .service-f .service-f-single {
    padding: 20px 0;
  }
  .service-f .single-item p {
    padding-left: 20px;
  }
  .tertiary--navbar .open-offcanvas-nav {
    margin-left: 0;
  }
  .section__header--secondary {
    margin-bottom: 20px;
  }
  .section {
    padding: 50px 0;
  }
  .btn {
    padding: 7px 22px;
  }

  .slide-btn {
    width: 44px;
    height: 44px;
    min-width: 0;
  }
  .slide-btn i {
    font-size: 22px;
  }
  .offcanvas-nav .offcanvas-menu .offcanvas-menu__wrapper {
    padding: 20px 0;
  }
  .footer-section .container {
    /* margin: 0; */
    max-width: 100%;
  }
  .article-blog .article-recent .article-recent-secondary img {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .population-container .row {
    display: block;
  }
  .primary-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .tertiary--navbar .open-offcanvas-nav {
    padding: 10px;
  }
  .offcanvas-nav .offcanvas-menu .close-offcanvas-menu {
    font-size: 25px;
  }
  .footer-widget {
    padding-bottom: 30px;
  }
  .article-recent-secondary img.article-image {
    width: 100%;
    object-position: top;
  }
  .sidebar h2.widget-title {
    margin-bottom: 16px;
  }
  .cta-two {
    padding-top: 0 !important;
  }
}
/* popup */
.popup_main {
  max-width: 400px;
  margin: 0 auto;
  width: 98%;
  background: whitesmoke;
  border: 2px solid #000;
  position: fixed;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 9999;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.popup_main label,
.popup_main input,
.popup_main textarea {
  color: #000;
  font-weight: 500;
}
.popup_main input,
textarea {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 0 5px;
}
.popup_main form div:nth-child(2) {
  margin: 10px 0;
}
.popup_main .submit_btn {
  color: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 10px;
}
.popup_main .submit_btn:hover {
  background: #000;
  color: #fff;
}
.popup_close_btn {
  color: #000;
  font-size: 30px;
  position: absolute;
  right: 2%;
  top: 2%;
  transition: all 0.3s ease-in-out;
}
.popup_close_btn:hover {
  transform: scale(1.2);
  color: #000;
}
.join_button {
  left: 0;
  position: fixed;
  background-color: #000;
  border: 0;
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
  writing-mode: vertical-lr;
  top: 55%;
  z-index: 10;
  padding: 24px 12px 22px;
  border-radius: 0 12px 12px 0;
}
.join_button:hover,
.icon_show:hover {
  background: #0b5361;
  color: white;
}
.icon_show {
  right: 0;
  position: fixed;
  background-color: #000;
  border: 0;
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
  writing-mode: vertical-lr;
  top: 55%;
  text-transform: capitalize;
  z-index: 10;
  max-width: 50px;
  padding: 24px 12px 22px;
  color: #fff;
  border-radius: 12px 0px 0px 12px;
}
/* loader */
#loader {
  border-top-color: #0b5361;
}
#loader:before {
  border-top-color: #0b5361;
}
#loader:after {
  border-top-color: #0b5361;
}
.footer-three__copyright {
  padding: 40px 0 !important;
}
.contact-m .contact-m__single {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* .contact_layer {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
} */
.agency .agency__thumb .thumb-two {
  margin-left: 136px !important;
}
.content p a:hover {
  color: #0b5361 !important;
}
.contact-m h4 {
  border-bottom: 0 !important;
}
.star {
  animation: star_animation 5s normal linear infinite;
}
@keyframes star_animation {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) scale(1);
  }
  25% {
    transform: rotate3d(0, 0, 1, 90deg) scale(0.6);
  }
  50% {
    transform: rotate3d(0, 0, 1, 180deg) scale(1);
  }
  75% {
    transform: rotate3d(0, 0, 1, 270deg) scale(0.6);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) scale(1);
  }
}
.nav_links {
  position: relative;
}
.nav_links::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0b5361;
  bottom: -5px;
  left: 50%;
  transition: all ease-in-out 0.3s;
}
.nav_links:hover::after {
  width: 100%;
  left: 0;
}
/* .thumb-one:hover {
  z-index: 3;
} */
body {
  background: transparent;
}
.globe {
  max-height: 500px;
  height: 100%;
  object-fit: contain;
}

/*join-us coding start here*/

.carousel-item {
  position: relative;
}
.heading-main {
  position: absolute;
  max-width: 758px;
  z-index: 1;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* transform: translateY(-50%); */
  margin: auto;
  left: 34px;
  padding: 0 20px;
}
.banner-heading {
  font-size: 48px;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 52px;
  color: #fff;
  font-weight: 500;
}

p.banner-content {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 2.5rem 0;
}
.second-heading {
  margin-top: 20px;
  color: #fff;
  font-weight: 300;
}
.custom-heading {
  font-weight: bold;
}
.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
}
span.life-heading {
  font-weight: bolder;
  color: #000;
}
.custom-heading {
  font-weight: bold;
  color: #000;
  text-transform: capitalize;
  font-size: 34px;
  font-weight: 400;
  color: #383838;
}
.faq-main .accordion-item {
  border: 0;
  width: 100%;
}
.faq-main .accordion-button {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 8px;
  line-height: 38px;
  font-family: "inter";
}
.faq-main .accordion-button {
  background-color: #fff;
}
.faq-main .accordion-button:not(.collapsed) {
  box-shadow: inherit;
}
.faq-main button:hover {
  color: #000;
}
.faq-main .accordion-body {
  line-height: 25px;
  color: #000;
}
.faq-main .accordion-button:focus {
  border-color: inherit;
  box-shadow: inherit;
}
.accordion-button:not(.collapsed) {
  color: #000;
}
.spacer .swiper-container-vertical > .swiper-pagination-bullets {
  left: 40px;
}
.faq-main .image-container img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin: auto;
  display: block;
}
.right_conatct_social_icon {
  background: #000;
}
.contact_us {
  background-color: #f1f1f1;
  padding: 120px 0px;
}

.contact_inner {
  background-color: #fff;
  position: relative;
  box-shadow: 20px 22px 44px #cccc;
  border-radius: 25px;
}
.contact_field {
  padding: 60px 340px 90px 100px;
}
.right_conatct_social_icon {
  height: 100%;
}

.contact_field h3 {
  color: #000;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact_field p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 35px;
}
.contact_field .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}
#carouselExampleIndicators .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.contact_info_sec {
  position: absolute;
  background-color: #0e707f;
  right: 1px;
  top: 18%;
  height: 340px;
  width: 340px;
  padding: 40px;
  border-radius: 25px 0 0 25px;
}
.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 15px;
}

.info_single {
  margin: 30px 0px;
}
.info_single i {
  margin-right: 15px;
  color: #fff;
}
.info_single span {
  font-size: 14px;
  letter-spacing: 1px;
}

button.contact_form_submit {
  background: #000;
  border: none;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  margin-top: 25px;
  justify-content: center;
  border-radius: 35px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
}
.socil_item_inner li {
  list-style: none;
}
.socil_item_inner li a {
  color: #fff;
  margin: 0px 15px;
  font-size: 14px;
}
.socil_item_inner {
  padding-bottom: 10px;
}

.map_sec {
  padding: 50px 0px;
}
.map_inner h4,
.map_inner p {
  color: #000;
  text-align: center;
}
.map_inner p {
  font-size: 13px;
}
.map_bind {
  margin-top: 50px;
  border-radius: 30px;
  overflow: hidden;
}
.contact_info_sec .contact-heading {
  color: #fff !important;
  text-transform: uppercase;
}
.contact_field .form-group {
  box-shadow: inherit;
  margin: 18px 0;
}

/*** 

====================================================================
		Testimonial Section
====================================================================

***/

.spacer {
  background-image: url(/assets/images/blue.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 60px 0;
  max-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.spacer .site-logo {
  width: 218.33px !important;
  margin-right: 50px;
}
.spacer .btn {
  border-radius: 5px;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  cursor: pointer;
}
.spacer .btn-theme {
  background: var(--theme-color1);
  color: #212121;
}

.spacer .c-container {
  margin: auto;
  width: 93%;
  position: relative;
  z-index: 1;
}

.spacer .btn-outline-white {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: none;
  border-width: 2px;
  border-color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.spacer .btn {
  border-radius: 5px;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  cursor: pointer;
}
.spacer .btn-outline-white:hover {
  background-color: #fff;
  color: var(--text-dark);
}
/* common css up */

.spacer .testimonial p {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 35px;
}
.spacer .testimonial .name {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 35px;
  text-align: left;
}
.spacer .testimonial .designation {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
  opacity: 0.65;
}
.spacer .unt {
  margin-bottom: 20px;
  margin-top: 60px;
}
.spacer .hero-text {
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #fff;
}
.spacer .gallery-thumbs {
  height: 100%;
}
.spacer .gallery-thumbs .swiper-wrapper {
  align-items: center;
}
.spacer .gallery-thumbs .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px !important;
  height: 330px;
  position: relative;
}
.spacer .gallery-thumbs .swiper-slide img {
  /*filter: contrast(0.5) blur(1px);*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.spacer .gallery-thumbs .swiper-slide-active img {
  filter: contrast(1) blur(0px) !important;
}
.spacer .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.spacer .flex-row .flex-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.spacer .gallery-thumbs .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spacer .testimonial-section .quote {
  /*width: 75%;*/
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 100px;
  padding-right: 100px;
}
.spacer .swiper-container.testimonial {
  height: 100vh;
}
.spacer .testimonial-section .user-saying {
  background: var(--theme-color2);
  width: 60%;
  color: #fff;
  height: 100%;
}
.spacer .testi-user-img {
  width: 40%;
}
.spacer .testimonial-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.spacer .testimonial-section .quote p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  color: #fff;
  margin: 0;
}
.spacer .quote-icon {
  width: 38px;
  display: block;
  margin-bottom: 30px;
}
.spacer
  .swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 2rem 0;
  display: block;
}
.spacer .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #fff;
}
.swiper-container-vertical > .swiper-pagination-bullets:before {
  content: "";
  position: absolute;
  left: 7px;
  width: 1px;
  height: 63%;
  border-left: 1px dotted #fff;
  top: 34px;
}

/*contact form coding start here*/

@media (min-width: 992px) {
  .hero_images {
    object-fit: cover;
    height: 100vh;
  }
  .carousel {
    flex-grow: 1;
    height: 100%;
  }
  /*.h_md_screen {
    min-wi*/
}
@media only screen and (max-width: 1200px) {
  .contact_field {
    padding: 60px 238px 90px 100px;
  }
  .breadcrumb .breadcrumb-item a {
    color: #000 !important;
  }
  .breadcrumb .breadcrumb-item::before {
    color: #000;
  }
}

@media only screen and (max-width: 1024px) {
  .contact_field {
    padding: 55px 340px 74px 47px;
  }
  .info_single span {
    line-height: 23px;
  }
  .faq-main .accordion-button {
    font-size: 18px;
  }
  .photobanner-wrapper {
    padding: 100px 15px;
  }
  .primary-navbar .navbar {
    gap: 35px !important;
  }
  .cta-two .cta-two-wrapper {
    padding: 0px 0px 60px 0px !important;
  }
  .agency-two .cta {
    gap: 44px;
  }
  .section__content-cta {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-main .image-container img {
    margin: 0 auto;
    display: block;
  }
  .image-container {
    margin-top: 50px;
  }
  .contact_info_sec {
    width: 290px;
  }
  .contact_field {
    padding: 55px 186px 74px 47px;
  }
  .info_single span {
    font-size: 12px;
  }
  .info_single {
    margin: 15px 0px;
  }

  p.banner-content {
    margin: 1.5rem 0;
  }
  .faq-main .custom-heading {
    text-align: center;
  }

  .hero_images {
    min-height: 654px;
  }
  .spacer .testimonial-section .quote {
    padding-left: 90px;
    padding-right: 42px;
  }
  .spacer .gallery-thumbs .swiper-slide {
    width: 210px !important;
  }
  .offcanvas-menu__list {
    max-width: 100% !important;
  }
  .cta-two .cta-two-wrapper {
    padding: 0px 0px 60px 0px !important;
  }
  .cta-two .cta-two-wrapper {
    padding: 0px 0px 56px 0;
  }
  .contact-m h4 {
    padding-bottom: 0px !important;
  }
}

@media only screen and (max-width: 767px) {
  .banner-heading {
    font-size: 40px;
  }
  .socil_item_inner {
    display: flex !important;
    padding-bottom: 0;
  }
  .right_conatct_social_icon {
    justify-content: center;
  }
  .faq-main .image-container img {
    max-width: 540px;
  }
  .spacer .gallery-thumbs .swiper-slide {
    width: 179px !important;
  }
  .spacer .testimonial-section .quote p {
    font-size: 16px;
    line-height: 27px;
  }
  .spacer .testimonial .name {
    font-size: 14px;
  }
  .contact-form .get-heading {
    font-size: 34px;
  }
  .contact-form .located-info i {
    margin: 0 auto;
  }
  .located-iner {
    text-align: center;
  }
  .contact-form .ready-heading,
  .contact-form .get-heading,
  .contact-form .content {
    text-align: center;
  }
  p.content {
    font-size: 16px;
    padding: 10px 0;
  }
  .mission-s .mission-s__single--alt {
    padding: 30px 10px;
  }
  .services-faq .custom-heading {
    line-height: 40px;
  }
  .strategy-main .grid {
    grid-template-columns: auto !important;
  }
  .strategy-main .card-icon {
    padding: 20px 0;
  }
  .strategy-main .grid {
    padding-bottom: 0;
  }
  .graphic-design .service {
    width: 100%;
    padding: 15px;
  }
  .graphic-design .features {
    padding: 60px 0px;
  }
  .agency .agency__content .title {
    font-size: 36px;
    line-height: 48px;
  }
  .contact-m .col-12:last-child {
    padding-bottom: 0px;
  }
  .footer-content {
    padding-top: 26px !important;
  }
  .footer-cta .col-xl-4 {
    padding-bottom: 15px;
  }
  .banner-three .banner-three__slider-single {
    padding: 245px 5px 547px !important;
  }
  .agency .section__content .title {
    line-height: 41px;
  }
  .single-cta {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  /* .apply-internship .tertiary-cta .navbar__mobile-options {
    justify-content: center !important;
  } */
}

@media only screen and (max-width: 639px) {
  .heading-main {
    left: 0px;
  }
  .faq-main .accordion-button {
    margin: 10px 0 0;
  }
  .second-heading {
    margin-top: 8px;
  }
  .faq-main .accordion-body {
    line-height: 23px;
  }

  .faq-main .accordion-button {
    font-size: 16px;
  }
  .faq-main .image-container img {
    max-width: 400px;
  }
  .contact_field h3 {
    font-size: 34px;
  }
  .contact_field {
    text-align: center;
  }
  .ready-heading {
    font-size: 20px;
  }
  .article-blog .article-body {
    font-size: 14px;
    line-height: 23px;
  }
  .article-blog .sidebar {
    margin-top: 30px;
  }
  .article-blog {
    padding: 40px 0;
  }
  .faq-main .accordion-body {
    padding: 1rem 0.25rem !important;
  }
  .accordion-button {
    padding: 1rem 0.25rem !important;
  }
  .strategy-main .card-icon {
    margin-bottom: 21px !important;
  }
  .graphic-design .features h2 {
    font-size: 34px;
  }
  .section__content .title {
    margin-bottom: 18px;
  }
  .contact-m h4 {
    margin-bottom: 6px;
  }
  .accordian-main .accordion-body ul a li,
  .accordian-main .accordion-body ul a span {
    font-size: 14px !important;
  }
  .accordian-main .accordion-button {
    font-size: 18px !important;
  }
  .accordian-main .accordion-body ul a li,
  .accordian-main .accordion-body ul a span {
    font-size: 14px !important;
  }
}

@media only screen and (max-width: 590px) {
  .banner-heading {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 13px;
  }
  /*.hero_images {
    min-height: 500px;
  }*/
  .heading-main {
    text-align: center;
  }
  p.banner-content {
    margin: 16px 0;
  }
  #carouselExampleIndicators .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .click-btn {
    padding: 13px 23px;
  }
  .spacer .testimonial-section .quote {
    padding-right: 15px;
    max-width: 449px;
    margin: 0 auto;
    text-align: center;
  }
  .spacer .testi-user-img {
    width: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  .spacer .testimonial-section {
    display: block;
    position: relative;
  }
  .spacer .testimonial-section .user-saying {
    width: 100%;
  }
  .spacer .testimonial .name {
    font-size: 14px;
    color: #fff;
    text-align: center;
  }
  .spacer .testimonial-section .quote p {
    color: #fff;
    font-weight: 500;
  }
  .spacer .quote-icon {
    display: none;
  }
  .contact-form .located-info i {
    font-size: 18px;
    width: 15px;
    height: 15px;
  }
  .contact-form .get-heading {
    font-size: 30px;
  }
  .contact-form .get-heading {
    font-size: 30px;
  }
  p.content {
    font-size: 14px;
    line-height: 27px;
  }
  .located-iner a {
    font-size: 14px;
  }
  .gaper {
    row-gap: 20px;
  }
  .graphic-design .features h2 {
    font-size: 32px !important;
  }
  .graphic-design .about h2 {
    font-size: 24px !important;
  }
  .population-container {
    padding: 20px 15px !important;
  }
  .population-container .content p {
    font-size: 16px !important;
    line-height: 28px;
  }
  .article-featured {
    margin-bottom: 1em;
  }
  .article-featured {
    margin-bottom: 1em;
  }
  .dot:nth-child(2) {
    left: 96% !important;
  }
  .map-container {
    display: none;
  }
  .footer-logo {
    margin-bottom: 16px !important;
  }
}
@media only screen and (max-width: 575px) {
  .located-info > div {
    flex-direction: column;
  }
  .contact-form .get-heading {
    font-size: 26px;
    margin: 0 !important;
  }
  .strategy-main .grid {
    padding-bottom: 20px !important;
  }
  .graphic-design .service img {
    height: auto !important;
  }
  .graphic-design .features {
    padding: 60px 0px !important;
  }
  .graphic-design .container {
    padding: 0 !important;
  }
  .population-container {
    padding: 28px 0;
  }
  .social-media {
    padding: 40px 0 !important;
  }
  .social-media-marketing h1 {
    font-size: 24px !important;
  }
  .social-media-marketing {
    padding: 0px 0 80px 0 !important;
  }
  .population-container {
    padding: 50px 15px;
  }
  .population-container .content p {
    font-size: 16px;
  }
  .dot,
  .tooltip {
    display: none;
  }
  .apply-internship .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .apply-internship h3 {
    font-size: 24px !important;
  }
  .apply-internship .btn {
    margin-left: 0px;
  }
  .apply-internship .tertiary-cta .navbar__mobile-options {
    display: block !important;
  }
  #applyinterns .submit-btn {
    display: block;
  }
}
@media only screen and (max-width: 479px) {
  .faq-main .accordion-button {
    font-size: 16px;
    line-height: normal;
  }
  .faq-main .accordion-body {
    font-size: 14px;
  }
  .custom-heading {
    font-size: 28px;
  }
  .carousel-indicators {
    bottom: 14px;
  }
  .faq-main .accordion-button {
    margin: 0px 0 0;
  }
  .contact_field p {
    line-height: normal;
  }
  .banner-heading {
    font-size: 26px;
    line-height: normal;
  }
  .second-heading {
    font-size: 16px;
  }
  .contact-form form {
    padding: 15px !important;
  }
  .contact-form button.btn.btn.send-inquiry {
    font-size: 16px;
  }
  .banner-three__slider-progress.justify-content-md-start.justify-content-center {
    display: none;
  }
  .banner-three .banner-three__slider-single {
    padding: 165px 11px 317px !important;
  }
  .section__content .title {
    font-size: 20px !important;
    line-height: 33px !important;
  }
  .apply-internship h3 {
    font-size: 22px !important;
  }
}

/*contact list coding start here*/

.list-unstyled li {
  color: #000;
}
.get-heading {
  color: #0b5361;
  font-weight: 600;
  font-size: 40px;
  text-transform: capitalize;
}
.located-iner a {
  display: block;
  line-height: 23px;
}
.contact-form form label {
  color: #000;
  font-weight: 500;
  line-height: 1.25rem;
  font-size: 14px;
}

.contact-form button[type="submit"]:hover {
  color: #000 !important;
  width: 100% !important;
  font-size: 16px;
  line-height: 1.75rem;
  text-transform: capitalize;
  font-weight: 500;
}

.contact-form button.btn.btn.send-inquiry {
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}
.located-iner a,
.located-iner span {
  color: #000;
}
.send-inquiry:hover:before {
  width: 100%;
  background-color: #0b5361 !important;
  color: #fff;
}
.send-inquiry::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 100%;
  transition: all 0.6s ease;
  z-index: -1;
}
.single-item img {
  width: 450px;
  height: 300px;
  object-fit: cover;
}
.contact-form button.btn.btn.send-inquiry:hover {
  color: #fff !important;
}
.located-iner a {
  display: block;
}
.located-info i {
  color: #fff;
  display: flex;
  align-items: baseline;
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: max-content;
  background-color: #0b5361;
}
.map_icon {
  max-width: 23px;
  max-height: 23px;
  width: 100%;
}
span.life-heading:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 0;
  height: 17px;
  z-index: -1;
  background-image: linear-gradient(45deg, #d9e6e8, #fff);
}
span.life-heading {
  position: relative;
  color: #0b5361;
}
.contact-form .form-control:focus {
  box-shadow: inherit;
  border: 1px solid #e2e2e2;
}

/*footer coding start here*/

.footer-section {
  background: #0b5361;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #fff;
}
.single-cta i {
  color: #fff;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #fff;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-logo span {
  color: #fff !important;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 50px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #fff;
}
.footer-widget ul li {
  display: inline-block;
  width: 50%;
  white-space: nowrap;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #fff;
}
.footer-widget ul li a {
  color: #fff;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid #2e2e2e;
  color: #000;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 19px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.dropdown > a {
  display: flex;
  align-items: center;
}
.dropdown > a .icon {
  margin-left: 0.25em;
}

.dropdown:hover .dropdown-nav {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dropdown-nav {
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.88, -0.72, 0, 1),
    opacity 0.3s ease-in-out;
  transform: translateY(-4rem);
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  background: rgba(225, 255, 225, 0.9);
}
.dropdown-nav a {
  font-weight: 300;
  font-size: 1.2rem;
}
.navbar .dropdown > a {
  color: #000;
  font-size: 18px;
}
.dropdown-nav a {
  font-weight: 300;
  font-size: 1.2rem;
  color: #000;
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  padding: 6px 20px 4px 17px;
}
.navbar__menu li.dropdown {
  background-color: #fff;
}
.primary-navbar .navbar__menu ul.dropdown-nav {
  background-color: #fff;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  color: #1792d2;
  letter-spacing: 0.05em;
  font-family: "Ubuntu Bold", sans-serif;
}
.article-title {
  font-size: 1.5rem;
}

.article-read-more,
.article-info {
  font-size: 0.875rem;
}

.article-read-more {
  color: #1792d2;
  text-decoration: none;
  font-weight: 700;
}
.article-read-more:hover,
.article-read-more:focus {
  color: #143774;
  text-decoration: underline;
}
.article-info {
  margin: 20px 0 0 0;
}

.container-flex {
  max-width: 72vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}
.article-blog {
  /* padding-top: 60px; */
  padding: 60px 0;
}
.article-body {
  width: 100%;
  text-align: justify;
}
.sidebar {
  max-width: 23%;
  margin-top: 63px;
}
.article-featured img {
  width: 100%;
  border-radius: 20px;
}
.blog-heading {
  color: #000;
  font-size: 30px;
  text-align: left;
  font-weight: 400;
}
p.blog-content {
  text-align: left;
  /* width: 100%; */
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  /* max-width: -webkit-fill-available; */
}
.widget-recent-post img {
  width: 100px;
  /* max-width: 253px; */
  height: 58px;
  object-fit: cover;
}
.widget-recent-post {
  margin-bottom: 20px;
}
.blog-main {
  position: relative;
}
h2.widget-title {
  color: #000;
  font-size: 20px;
}
.article-recent .article-recent-secondary img {
  border-radius: 20px;
  max-height: 162px;
  width: 243px;
  object-fit: cover;
}
article.article-recent {
  /* border: 1px solid #dfdbdb; */
  border-radius: 20px;
  padding: 12px 23px;
  box-shadow: 14px 13px 31px 1px #e2e2e2;
}
.widget-recent-post {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
h3.widget-recent-post-title {
  color: #000;
  font-size: 16px;
  line-height: normal;
  /* margin-bottom: 20px; */
  padding-left: 18px;
}
.blog-main main {
  padding-right: 50px;
}
a.article-read-more {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  padding: 12px 23px;
  border-radius: 20px;
  display: inline-block;
  text-decoration: none;
  margin-top: 21px;
  border: 1px solid #000;
}
a.article-read-more:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 23px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.article-title {
  font-size: 1.5rem;
  color: #000;
}
@media (max-width: 1050px) {
  .container-flex {
    flex-direction: column;
  }
  .site-title,
  .subtitle {
    width: 100%;
  }

  .sidebar {
    max-width: 100%;
  }
}

/* articles */
.article-featured {
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.article-recent {
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
}

.article-recent-main {
  order: 2;
}

.article-recent-secondary {
  order: 1;
}

@media (min-width: 675px) {
  .article-recent {
    flex-direction: row;
    justify-content: space-between;
  }

  .article-recent-main {
    width: 68%;
  }

  .article-recent-secondary {
    width: 30%;
  }
}

.article-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
}

.column {
  flex: 1 1 calc(25% - 16px); /* Four columns with equal spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.column img {
  width: 100%;
  height: auto;
  display: block;
}

.column .content {
  padding: 16px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .column {
    flex: 1 1 calc(50% - 16px); /* Two columns on medium screens */
  }
  .single-cta {
    padding-bottom: 19px;
  }
}

@media (max-width: 480px) {
  .column {
    flex: 1 1 100%; /* One column on small screens */
  }
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  box-shadow: 0 16px 32px 0 rgb(2 2 2 / 18%);
}

.search-bar input {
  padding: 5px 5px 5px 10px;
  width: 100%;
  height: 40px;
  color: #000;
  min-width: 196px;
}

.search-bar button {
  padding: 11px;
  background-color: #000;
  border: 5px solid var(--theme);
  font-size: 16px;
  color: #fff;
  transition: 0.5s linear;
  height: 40px;
  border-radius: 0 5px 4px 0px;
}
#pagination {
  display: flex;
  justify-content: center;
}
.blocks {
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #dddddd;
  display: inline-block;
  text-decoration: none;
  color: black;
}
.blocks:not(:first-child) {
  margin-left: 5px;
}
.blocks:first-child {
  border-radius: 10px 0 0 10px;
}
.blocks:last-child {
  border-radius: 0 10px 10px 0;
}
.blocks:hover {
  background-color: #dddddd;
}
#pagination a.active {
  background-color: #0b5361;
  color: #fff;
}

.primary-navbar ul li:hover > .mega-menu,
.primary-navbar ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform: perspective(300px) rotateX(0deg);
}
.primary-navbar ul li.has-megamenu {
  position: static;
}
.primary-navbar ul li .mega-menu li {
  width: 284px;
  text-align: left;
  margin-inline: auto;
}
.primary-navbar ul li .mega-menu li a {
  padding: 10px;
}
.primary-navbar ul li:hover > .mega-menu,
.primary-navbar ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  transform: perspective(300px) rotateX(0deg);
}
.has-megamenu a {
  color: #fff;
  font-size: 18px;
}
.has-megamenu a.services {
  color: #000;
}
.primary-navbar ul.mega-menu > li > ul li a {
  font-size: 14px;
  color: #fff;
}
.primary-navbar ul li .mega-menu {
  padding: 25px;
  position: absolute;
  top: 120%;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #0b5361;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -ms-box-shadow: 0 20px 30px rgba(3, 6, 31, 0.2);
  -o-box-shadow: 0 20px 30px rgba(3, 6, 31, 0.2);
  box-shadow: 0 20px 30px rgba(3, 6, 31, 0.2);
  border: 1px solid hsla(0, 0%, 100%, 0.08);
  transform-origin: top;
  transform: perspective(300px) rotateX(-18deg);
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: space-between;
  flex: 0 0 auto;
  margin: 0 auto;
}

.services-main .column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
  margin-bottom: 26px;
}
.services-main .card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #0b5361 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}
h1.service-heading {
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 61px;
}
.services-main .icon-wrapper {
  background-color: #0b5361;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.services-main .card:hover {
  background-position: 0 100%;
}
.services-main .card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #0b5361;
}
.services-main .card:hover h3 {
  color: #ffffff;
}
.services-faq .custom-heading {
  text-align: center;
  font-size: 36px;
  color: #000;
  font-weight: 600;
}
.services-main .column {
  background-color: transparent;
  border: none;
}
section.services-inner {
  background-color: #d9d0d0;
  padding: 163px 0 82px 0px;
}
section.contact-form {
  background-color: #f4f4f4;
}
h2.section-heading {
  color: #000;
  text-align: center;
  padding-bottom: 50px;
}
section.services-main h3 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding: 12px 0;
}
.agency__thumb img {
  width: 100%;
}
form#contactForm {
  background-color: #fff;
}
.cmn-banner .gaper .title {
  max-width: fit-content;
}
.agency {
  padding: 60px 0;
}
.contact-form .col-span-12 {
  background-color: #fff;
}
.services-main .card:hover p {
  color: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .services-main {
    padding: 0 2em;
  }
  .services-main .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .services-main {
    padding: 1em 3em;
  }
  .services-main .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.pulse i {
  position: relative;
  z-index: 20;
  top: 16px;
  font-size: 30px;
}
.pulse {
  position: fixed;
  cursor: pointer;
  display: block;
  width: 60px !important;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: rgba(0, 200, 0, 1);
  color: white;
  border-radius: 50px;
  text-align: center;
  transition-duration: 0.5s;
  animation: pulse-btn 3s infinite;
  z-index: 9000;
}

.pulse:hover {
  background-color: rgba(0, 150, 0, 1);
  color: white;
}

.my-float {
  margin-top: 15px;
}

@-webkit-keyframes pulse-btn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
  }
}

.social-media .pulse a {
  color: #fff;
}

.social-media .content {
  flex: 1 1 60%;
  padding: 20px;
}

.social-media .content h1 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.social-media .content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.social-media .profile {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}
.social-media {
  padding: 60px 0;
}
.social-media .profile h2 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.social-media .profile button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  font-size: 14px;
}

.social-media .profile button:hover {
  background-color: #0056b3;
}
.social-media .content h1 {
  line-height: normal;
}
.social-media .followers {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.social-media .followers span {
  margin-left: 5px;
  font-weight: bold;
  color: #333;
}

.social-media .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-media .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
}

.social-media .social-icons a:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .social-media .container {
    flex-direction: column;
    padding: 10px;
  }

  .social-media .content,
  .social-media .profile {
    flex: 1 1 100%;
    padding: 10px;
  }
}
.social-media-marketing {
  text-align: center;
  padding: 40px 0 80px 0;
}

.social-media-marketing h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: normal;
}
.social-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-media-marketing .card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-media-marketing .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.social-media-marketing .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.social-media-marketing .card h2 {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 10px;
}

.social-media-marketing .card p {
  font-size: 0.9rem;
  color: #666666;
}

.population-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  background-color: #f9f9f9;
}

.stats {
  flex: 1;
  max-width: 40%;
}

.stats h1 {
  font-size: 3rem;
  color: #2b3fae;
  margin-bottom: 10px;
}

.stats p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

.population-container .content {
  flex: 2;
  padding-left: 50px;
}

.population-container .content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.stats h1 {
  font-size: 35px;
  color: #2b3fae;
  margin-bottom: 10px;
  line-height: normal;
  border-bottom: 1px solid #dddada;
  font-weight: 600;
}
.social-media .row {
  align-items: center;
}
.population-container .row {
  align-items: center;
}
@media (max-width: 768px) {
  .population-container {
    flex-direction: column;
    text-align: center;
  }

  .population-container .stats {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .population-container .content {
    padding-left: 0;
  }
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.platform {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.platform:hover {
  transform: translateY(-10px);
}

.platform i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.facebook {
  color: #1877f2;
}
.instagram {
  color: #e4405f;
}
.youtube {
  color: #ff0000;
}
.linkedin {
  color: #0077b5;
}

.platform h3 {
  margin: 10px 0;
  font-size: 1.25rem;
  color: #222;
}

.platform p {
  font-size: 0.9rem;
  color: #555;
}
.social-platform {
  padding: 80px 0;
}
.social-platform .content {
  padding: 30px 0;
}

.strategy-main .social-content {
  text-align: center;
  margin-bottom: 30px;
}

.strategy-main .social-content h1 {
  font-size: 2rem;
  margin: 0;
  color: #1a1a1a;
}

.strategy-main .social-content p {
  color: #606060;
  margin-top: 10px;
}

.strategy-main .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 50px;
  padding-bottom: 60px;
}
.platforms p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.strategy-main .card {
  background: #f5f0f0;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.2s;
}

.strategy-main .card:hover {
  transform: translateY(-5px);
}
.thumb img {
  margin: 0 auto;
}
.strategy-main .card-icon {
  font-size: 24px;
  color: #4a90e2;
  margin-bottom: 10px;
}
.social-platform .heading {
  color: #000;
}
.social-content .heading {
  color: #000;
}
.strategy-main .card h3 {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-size: 1.25rem;
}

.strategy-main .strategy-main .card p {
  margin: 0;
  color: #606060;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .social-content h1 {
    font-size: 1.5rem;
  }

  .strategy-main .card {
    padding: 15px;
  }

  .strategy-main .card h3 {
    font-size: 1.125rem;
  }
}
.contact-form .grid {
  gap: 1rem !important;
}
.agency .gaper {
  align-items: center;
}

.graphic-design .hero {
  background: url("https://via.placeholder.com/1200x600") no-repeat center
    center/cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.graphic-design .hero h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.graphic-design .hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.graphic-design .cta-btn {
  background: #ff6600;
  padding: 10px 30px;
  color: white;
  text-decoration: none;
  font-size: 1em;
  border-radius: 5px;
}
.graphic-design .features h2 {
  padding-bottom: 30px;
}
/* About Section */
.graphic-design .about {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.graphic-design .about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Services Section */
.graphic-design .features {
  padding: 60px 20px;
  text-align: center;
}

.graphic-design .features h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.service {
  width: calc(100% / 3 - 18px);
}
.service-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.graphic-design .service img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 352px;
  object-fit: cover;
}

.graphic-design .service h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Portfolio Section */
.graphic-design .portfolio {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.graphic-design .portfolio h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.graphic-design .portfolio-item {
  display: inline-block;
  width: 30%;
  margin: 10px;
}
.graphic-design .about h2 {
  color: #000;
}
.graphic-design .features h2 {
  color: #000;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 500;
}
.graphic-design .portfolio-item img {
  width: 100%;
  border-radius: 10px;
}
.graphic-design .service h3 {
  color: #000;
}
.social-media .profile img {
  border-radius: 12px;
}
.graphic-design .service h3 {
  color: #000;
  margin-bottom: 0;
}
form#contactForm button#submit_btn:hover {
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 600;
}

#menu {
  color: #000;
  border: 1px solid white;
  width: 150px;
  height: 100px;
  padding: 10px;
  border-radius: 3px;
  text-align: center;
  margin: auto;
  display: none;
}

#toggle {
  width: 28px;
  height: 30px;
  margin: 30px;
}

#toggle div {
  width: 100%;
  height: 5px;
  background: #000;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}

#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}

#toggle.on .two {
  opacity: 0;
}

#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle {
  display: none;
}
div#toggle {
  position: absolute;
  right: 185px;
}
button.open-offcanvas-nav.d-flex {
  display: none !important;
}

.section {
  padding: 100px 0 0 0px;
}
.cta-two .cta-two-wrapper {
  padding: 0px 0px 60px 65px;
}
.agency {
  padding-top: 80px;
}
.section__header .title {
  font-size: 46px;
}
.section__content .title {
  font-size: 40px;
  line-height: 53px;
}
.cta-two h2 {
  font-size: 46px;
}
.portfolio-three .portfolio__single .portfolio__single-content {
  padding: 53px 30px;
}
.tertiary--navbar .navbar__options {
  gap: 30px;
}

.banner-right img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  object-position: top;
  text-align: center;
  border-radius: 30px 0px 0px 30px;
}
.banner-three .banner-three__slider-single {
  padding: 245px 5px 444px;
}
.banner-three__slider-single .row {
  align-items: center;
}
.testimonial {
  padding-bottom: 60px;
}
.mission-s {
  padding-bottom: 60px;
}

.contact-m {
  padding-bottom: 70px;
}
.sidebar-widget {
  padding-top: 22px;
}

.article-featured .article-title {
  font-size: 28px;
  padding-bottom: 20px;
}
a.article-read-more {
  margin-top: 13px;
}
.footer-social-icon a {
  font-size: 25px;
}
section.accordian-main {
  padding: 60px 0;
}
.accordian-main .accordion-body ul a {
  display: flex;
  justify-content: space-between;
}
.accordian-main .accordion-body ul a li,
.accordian-main .accordion-body ul a span {
  color: #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.accordian-main .accordion-button {
  font-size: 20px;
  font-weight: 600;
  padding: 19px 19px;
  text-transform: capitalize;
}
button.accordion-button:focus {
  box-shadow: none;
}

#contact-form .field {
  margin-bottom: 10px;
}

#contact-form .field label {
  display: block;
  font-size: 12px;
  color: #777;
}

#contact-form .field input {
  display: block;
  min-width: 250px;
  line-height: 1.5;
  font-size: 14px;
}

#contact-form input[type="submit"] {
  display: block;
  padding: 6px 30px;
  font-size: 14px;
  background-color: #4460aa;
  color: #fff;
  border: none;
}

.map-container {
  position: relative;
  width: 100%;
  height: 362px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/1920px-World_map_-_low_resolution.svg.png")
    no-repeat center;
  background-size: cover;
  /* scale: 1.1; */
}

.dot {
  background-image: url("/assets/images/main-logo.png");
  background-size: cover;
  height: 14px;
  background-repeat: no-repeat;
  width: 13px;
  position: absolute;
}
.dot:nth-child(1) {
  top: 32%;
  left: 20%;
  animation-delay: 0s;
}
.dot:nth-child(2) {
  top: 81%;
  left: 96%;
  animation-delay: 0.5s;
} /* South America */
.dot:nth-child(3) {
  top: 41%;
  left: 70%;
  animation-delay: 1s;
}
.dot:nth-child(4) {
  top: 70%;
  left: 85%;
  animation-delay: 1.5s;
} /* Australia */
.dot:nth-child(5) {
  top: 17%;
  left: 19%;
  animation-delay: 2s;
}
.dot:nth-child(6) {
  top: 18%;
  left: 47%;
  animation-delay: 2s;
}
.dot:nth-child(7) {
  top: 35%;
  left: 71%;
  animation-delay: 2s;
}
.dot:nth-child(8) {
  top: 50%;
  left: 77%;
  animation-delay: 2s;
}
.dot:nth-child(9) {
  top: 35%;
  left: 66%;
  animation-delay: 2s;
}
.dot:nth-child(10) {
  top: 37%;
  left: 75%;
  animation-delay: 2s;
}
.dot:nth-child(11) {
  top: 50%;
  left: 71%;
  animation-delay: 2s;
}
/* .map-container .tooltip {
  bottom: -22px;
  color: #fff;
  display: block;
  left: -63px;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: absolute;
  width: 100%;
  scroll-padding-right: -58px;
} */

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.map-container .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

/* CSS Triangles - see Trevor's post */

.map-container .tooltip {
  opacity: 1;
  pointer-events: auto;
}

/* IE can just show/hide with no transition */

.map-container .tooltip {
  display: block;
}

.map-container .dot .tooltip a {
  text-transform: capitalize;
  font-size: 9px;
}
.navbar__menu .active {
  color: #0b5361 !important;
  font-weight: bold;
}

.navbar__menu .has-dropdown.active > a {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.tooltip {
  display: none;
  position: absolute;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  transform: translate(-50%, -100%);
}

/* Show tooltip when hovering over the dot */
.dot:hover .tooltip {
  display: block;
}

/* Apply styles specifically for the Canada tooltip using nth-child */
.map-container .dot:nth-child(1) .tooltip {
  top: 19px;
  left: 28px;
}
.map-container .dot:nth-child(2) .tooltip {
  top: 19px;
  left: -31px;
}
.map-container .dot:nth-child(3) .tooltip {
  top: 19px;
  left: -12px;
}
.map-container .dot:nth-child(4) .tooltip {
  top: 18px;
  left: 41px;
}
.map-container .dot:nth-child(5) .tooltip {
  top: 20px;
  left: 34px;
}
.map-container .dot:nth-child(6) .tooltip {
  top: 19px;
  left: 34px;
}
.map-container .dot:nth-child(7) .tooltip {
  top: 4px;
  left: -1px;
}
.map-container .dot:nth-child(8) .tooltip {
  top: 20px;
  left: 37px;
}
.map-container .dot:nth-child(9) .tooltip {
  top: 20px;
  left: -18px;
}
.map-container .dot:nth-child(10) .tooltip {
  top: 21px;
  left: 40px;
}
.map-container .dot:nth-child(11) .tooltip {
  top: 22px;
  left: -21px;
}

.primary-navbar ul li.has-megamenu ul > li > a {
  color: #fff !important;
  text-decoration: none;
  /* font-size: 17px; */
}
.agency__content h4.title {
  font-size: 26px;
}
.tooltip a:hover {
  color: #fff !important;
}
.map-container .dot:hover {
  scale: 1.4;
  color: #fff !important;
}
.map-container .dot {
  transition: all 0.7s ease-in-out;
}
.copyright-bottom {
  /* margin-top: 47px; */
  border-top: 1px solid #ffffff36;
  padding: 26px 0;
}
.copyright-bottom #copyright {
  text-align: center;
  color: #fff;
}
.accordion-item .accordion-header {
  border: 1px solid #e2e2e2;
  margin-bottom: 10px;
  padding-right: 10px;
  border-radius: 4px;
}

section.our-services {
  padding: 60px 0;
}
.services-heading h3 {
  color: #000;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 30px;
}
.card {
  margin-bottom: 20px;
}
.card-title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 500;
}
p.card-text {
  padding-bottom: 17px;
}
p.card-text {
  min-height: 150px;
}
.card img {
  max-height: 280px;
  object-fit: cover;
}
.single-cta {
  display: flex;
  align-items: flex-start;
}
.accordian-main .accordion-item {
  border: 0;
}

.has-megamenu ul.mega-menu li:nth-child(2) {
  order: 3;
}
.has-megamenu ul.mega-menu li:nth-child(3) {
  order: 2;
}
.has-megamenu ul.mega-menu li:nth-child(4) {
  order: 4;
}
.has-megamenu ul.mega-menu li:nth-child(5) {
  order: 5;
}
form#contactForm button#submit_btn {
  color: #000 !important;
  text-transform: uppercase;
  font-weight: 600;
}
p.copyright {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}

.agency__slider {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.agency__slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.agency__slider .swiper-button-next,
.agency__slider .swiper-button-prev {
  color: #fff; /* Change arrow colors */
}

.agency__slider .swiper-pagination-bullet-active {
  background: #ff6b6b; /* Active dot color */
}
.agency__slider .swiper-button-next,
.agency__slider .swiper-button-prev {
  display: none;
}

ol.breadcrumb {
  border: none;
}
.apply-internship label.form-label {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}
.apply-internship h3 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
.apply-internship label.form-check-label.me-3 {
  color: #000;
}
.apply-internship label.form-check-label {
  color: #000;
}
.apply-internship .form-check-input[type="checkbox"] {
  border-radius: 0.25em;
  color: #000;
  height: 19px;
  width: 17px;
}
.apply-internship .form-check-input {
  margin-top: 7px;
}
.apply-internship .form-check-input:checked {
  background-color: #000;
  border-color: #000;
}
.apply-internship .form-control:focus {
  border-color: none;
  outline: 0;
  box-shadow: inherit;
}
.apply-internship .form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: inherit;
}
.brochure {
  margin-left: 12px;
}
.apply-internship .tertiary-cta .navbar__mobile-options {
  display: flex;
  justify-content: space-between;
}
.apply-internship .form-check-input:focus {
  box-shadow: inherit;
}
.submit-btn {
  display: flex;
  justify-content: space-between;
}

.socials-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.socials-icons ul {
  list-style: none;
}
.socials-icons ul li {
  width: 50px;
  height: 50px;
  position: relative;
  background: #e59500;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.socials-icons ul li .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
}
.socials-icons ul li.facebook {
  background: #3b5998;
}
.socials-icons ul li.twitter {
  background: #00aced;
}
.socials-icons ul li.instagram {
  background: #891664;
}
.socials-icons ul li.google {
  background: #dd4b39;
}
.socials-icons ul li.whatsapp {
  background: #4dc247;
}
.socials-icons ul li.facebook div.slider {
  background: #627aac;
}
.socials-icons ul li.twitter div.slider {
  background: #7fd5f6;
}
.socials-icons ul li.instagram div.slider {
  background: #dd94c6;
}
.socials-icons ul li.google div.slider {
  background: #eea59c;
}
.socials-icons ul li.whatsapp div.slider {
  background: #82d47e;
}
.socials-icons .slider {
  content: "";
  position: absolute;
  top: 0;
  right: 51px;
  width: 0px;
  height: 50px;
  background: #eebb5c;
  border-radius: 3px;
  transition: all 0.5s 0.3s ease;
}
.socials-icons .slider p {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 50px;
  opacity: 0;
  transition: all 0.6s ease;
}
.socials-icons ul li:hover .slider {
  width: 180px;
  transition: all 0.5s ease;
}
.socials-icons ul li:hover .slider p {
  opacity: 1;
  transition: all 1s 0.2s ease;
}
