@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
  font-family: "Open Sans", sans-serif;
  /* font-family: "Space Grotesk", sans-serif; */
}
a {
  display: inline-block;
  text-decoration: none;
}
ul {
  padding: 0px;
  margin: 0px;
}
img {
  width: 100%;
  display: block;
}
.no-gutter {
  padding: 0px;
  margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
p {
  color: var(--c3);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0px;
}
:root {
  --c1: #1f1d1e;
  --c2: #bb1d2c;
  --c3: #606060;
  --c4: #ffffff;
  --c5: #b11d2b14;
}
::selection {
  color: var(--c4);
  background: var(--c2);
}
::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--c2);
  border-radius: 0;
}
.bg-color {
  /* background-color: rgb(89 68 232 / 10%); */
  background-color: var(--c5);
}
/* .container-fluid {
  max-width: 1600px;
} */

/* UNIVERSAL CSS */

.rad-50 {
  border-radius: 50px !important;
}
.banner-btn-main .web-btn a,
.about-content .web-btn a,
.service-content .web-btn a,
.f-contact-item input[type="submit"],
.it-services .web-btn a,
.contact-form-btn input,
.package-btn a {
  background: linear-gradient(
    99.43deg,
    #bb1d2c 0.99%,
    #1f1d1e 99.43%
  ) !important;
}
.banner-btn-main .web-btn a:hover,
.about-content .web-btn a:hover,
.service-content .web-btn a:hover,
.f-contact-item input[type="submit"]:hover,
.it-services .web-btn a:hover,
.contact-form-btn input:hover,
.package-btn a:hover {
      background: linear-gradient(270deg, #bb1d2c 0.99%, #1f1d1e 99.43%) !important;
}
.spacing {
  padding: 90px 0px;
}
.bg-prop {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HEADER */

.logo {
  width: 50%;
}
.nav-bar-main > nav > ul {
  display: flex;
  gap: 12px;
}
.nav-bar-main nav ul li a {
  padding: 8px 25px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--c1);
  transition: all 0.5s;
}
.header {
  padding: 25px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.nav-bar-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: end;
}
.web-btn a,
.f-contact-item input[type="submit"],
.contact-form-btn input {
  background-color: var(--c2);
  padding: 18px 40px;
  color: var(--c4);
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.5s;
}

.web-btn a:hover, .f-contact-item input[type="submit"]:hover, .contact-form-btn input:hover{
  background-color: var(--c1);
}
.nav-bar-main nav ul li a:hover {
    background-color: #d3b6b9;
    color: var(--c2);
}
.nav-bar-main nav > ul > li {
  position: relative;
}
.nav-bar-main nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--c4);
  width: 280px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s;
}
.nav-bar-main nav ul li ul li a {
  color: var(--c1);
  display: block;
  border-radius: 0px;
  border-bottom: 1px solid #c8c0e230;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
}
.nav-bar-main nav ul li:hover ul {
  transform: scaleY(1);
}
.nav-bar-main nav ul li ul li a:hover {
  color: var(--c4);
  background-color: var(--c2);
}
.header.dup {
  position: unset;
  padding: 15px 0px;
}
.hamburger-main a {
    color: var(--c2);
    font-size: 22px;
}
/* SECTION MAIN BANNER */

.web-title h5 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--c2);
  font-size: 17px;
  margin-bottom: 15px;
}
.web-title h1,
.web-title h2 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--c1);
  font-weight: 700;
  margin-bottom: 15px;
}
.web-title h1 {
  font-size: 66px;
}
.web-title h2 {
  font-size: 42px;
}
.banner-content p {
  font-size: 20px;
  margin-bottom: 50px;
}
.video-btn a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  background: linear-gradient(94.57deg, #bb1d2c 0.99%, #1f1d1e 99.43%);
  color: var(--c4);
  position: relative;
  z-index: 2;
}
.video-btn a::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
  background: linear-gradient(94.57deg, #bb1d2c 0.99%, #1f1d1e 99.43%);
}
.banner-btn-main {
  display: flex;
  gap: 30px;
  align-items: center;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.main-banner {
    background: linear-gradient(0deg, #ffffff 0%, var(--c5) 100%);
    height: 1000px;
    display: flex
;
    align-items: center;
}
.world-customer-main {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}
.world-customer-content p {
  color: var(--c1);
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}
.world-customer-img {
  width: 33%;
}
.world-customer-content {
  width: 67%;
}
@keyframes veritcal2 {
  from {
    -webkit-transform: translate3d(0, -10px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 10px, 0);
  }
}
.banner-img-two {
    position: absolute;
    right: 55%;
    bottom: 35%;
    width: 45%;
    animation: veritcal2 3s alternate infinite;
}

/* SECTION SPONSOR */

.sponsor-img img {
  height: 50px;
  object-fit: contain;
  padding: 0px 40px;
}
.sponsor .web-title h2 {
  font-size: 24px;
}

/* SECTION SERVICE WIDGETS */

.ser-widg-box {
  padding: 70px 50px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.05);
  background-image: url(../images/service/bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 40% 20%;
}
.ser-widg-box-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}
.ser-widg-box-content h3 a,
.service-item-content h3 a,
.it-service-content h3 a {
  color: var(--c1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  margin: 30px 0px 20px 0px;
  font-weight: 600;
  transition: all 0.5s;
}
.ser-widg-box-content h3 a:hover,
.service-item-content h3 a:hover,
.project-item-content h4 a:hover,
.it-service-content h3 a:hover {
  color: var(--c2);
}

/* SECTION ABOUT US */

.about-us {
    background-color: #b11d2b14;
    z-index: 2;
}
.about-content span {
  text-decoration: underline;
  font-size: 20px;
  font-weight: 600;
}
.about-content ul li,
.service-item-content ul li,
.service-disc-content ul li {
  color: var(--c3);
  position: relative;
  padding-left: 40px;
}
.about-content ul li {
  width: 50%;
}
.about-content ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 30px 0px 30px 0px;
}
.web-title p {
  margin-bottom: 30px;
}
.about-content ul li:before,
.service-item-content ul li:before,
.service-disc-content ul li:before {
  position: absolute;
  content: "\f00c";
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  color: var(--c2);
  background-color: var(--c4);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 15px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
.about-img {
    position: absolute;
    bottom: 0;
    left: 11%;
    width: 730px;
    z-index: -1;
}
.about-img-two {
    position: absolute;
    top: 5%;
    left: 39%;
    width: 150px;
    animation: veritcal2 3s alternate infinite;
}

/* SECTION BRANDS DETAILS  */

.service-item-img.brand-item-img img {
    width: 180px;
    height: unset;
}
.service-item-content.brand-item-content h3 {
    margin-top: 10px;
}
.service-item-content.brand-item-content ul {
    margin-top: 10px;
}
.service-item-box.brand-item-box {
    padding: 60px 70px 70px 30px;
}
/* SECTION WORK INDUSTRY */

.industry-box img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto;
}
.industry-box {
  padding: 70px 0px;
  background-color: var(--c4);
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: all 0.5s;
}
.industry-box:hover {
  margin-top: -10px;
}

/* SECTION TECHNOLOGY */

.movie-slider-right {
  direction: rtl;
}
.tech-item {
  padding: 30px;
  background-color: var(--c5);
  margin: 10px;
  border: 1px solid #ebebeb;
}
.tech-item img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

/* SECTION OUR SERVICES */

.service-item-img img {
  width: 60px;
  height: 90px;
  object-fit: contain;
}
.service-item-box {
  padding: 55px 40px 55px 40px;
  border-radius: 5px;
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.05);
  background-image: url(../images/service/bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 24px;
}
.service-item-content ul li {
  margin-bottom: 20px;
}

/* SECTION OUR PROJECTS */

.our-projects .web-title,
.it-services .web-title,
.testimonial-inner .web-title,
.sponsor .web-title,
.packages .web-title,
.faqs .web-title {
  margin-bottom: 50px;
}
.project-item-img {
  overflow: hidden;
  border-radius: 8px;
}
.project-item-content h4 a {
  color: var(--c3);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.5s;
}
.project-item-content h3 a {
  color: #032e42;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  transition: all 0.5s;
}
.project-item-img video {
  width: 100%;
  display: block;
}
/* .project-item-content {
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  bottom: -10%;
  left: 5%;
  background-color: var(--c4);
  position: absolute;
  transition: all 0.5s;
} */
/* .project-item:hover .project-item-content {
  transform: translateY(-10px);
} */
.project-item {
  position: relative;
  margin-bottom: 24px;
}
.web-port .project-item {
  margin: 0px;
}
.project-item-img a {
  display: block;
}
.project-item-box {
  width: 33.33%;
  margin-bottom: 24px;
}
.project-item-box .project-item {
  margin: 0px 12px;
}

/* SECTION TESTIMONIAL */

.testi-item {
  padding: 40px 40px 60px 40px;
  background-color: var(--c4);
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
}
.test-author-main {
  display: flex;
  gap: 15px;
  align-items: center;
}
.test-author-img img,
.testi-author-dup-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.test-author-name h5 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--c1);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.test-author-name span {
  font-size: 15px;
}
.testi-bg {
  position: absolute;
  top: 7%;
  left: 3%;
  width: 18%;
}
.testi-item p {
  color: var(--c1);
  font-family: "Space Grotesk", Sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 40px;
}
.testi-item-main ul.slick-dots {
  display: flex;
  gap: 10px;
  justify-content: end;
  position: absolute;
  bottom: 3%;
  right: 5%;
}
.testi-item-main ul.slick-dots li button {
  color: transparent;
  border: 0;
  width: 14px;
  height: 14px;
  background-color: var(--c2);
  border: 3px solid var(--c5);
  opacity: 0.5;
}
.testi-item-main ul.slick-dots li.slick-active button {
  opacity: 1;
}
.testi-inner-slider .slick-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}
.testi-inner-slider .slick-dots li button {
  border: 0;
  background-color: #e7e7e7;
  color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  font-size: 10px;
}
.testi-inner-slider .slick-dots li.slick-active button {
  background-color: var(--c2);
}
/* .testi-inner-slider .slick-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid var(--c2);
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s;
  color: var(--c2);
  cursor: pointer;
  position: absolute;
  top: 40%;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}
.testi-inner-slider .slick-arrow:hover {
  background-color: var(--c2);
  color: var(--c4);
}
.testi-inner-slider .slick-next {
  right: -80px;
}
.testi-inner-slider:hover .slick-next {
  right: -40px;
}
.testi-inner-slider .slick-prev {
  left: -80px;
}
.testi-inner-slider:hover .slick-prev {
  left: -40px;
}
.testi-inner-slider:hover .slick-arrow {
  visibility: visible;
  opacity: 1;
} */

/* FOOTER */

.footer {
    color: var(--c4);
    background-color: var(--c2);
}
.footer-logo a {
    width: 70%;
}
.footer p {
  color: inherit;
  font-size: 17px;
}
.footer-links ul li a {
  color: inherit;
  transition: all 0.5s;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
}
.footer-logo p {
  margin: 20px 0px 30px 0px;
}
.footer-social ul,
.contact-info-item-box ul {
  display: flex;
  gap: 10px;
}
.footer-social ul li a,
.contact-info-social ul li a {
  color: var(--c4);
  border: 1px solid var(--c2);
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.5s;
  font-size: 15px;
}
.footer-social ul li a:hover {
  background-color: var(--c2);
}
.footer-main {
  padding: 90px 0px;
  border-bottom: 1px solid var(--c4);
}
.footer-bottom {
  padding: 25px 0px;
}
.footer-title h3 {
  font-size: 26px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 30px;
}
.footer-links ul li {
  margin-bottom: 18px;
}
.footer-links ul li a:hover {
  color: var(--c2);
  padding-left: 32px;
}
.footer-links ul li a:before {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  top: 3px;
  left: 0;
  font-size: 14px;
}
.footer-bottom .footer-links ul {
  display: flex;
  gap: 40px;
  justify-content: end;
}
.footer-bottom .footer-links ul li a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--c4);
  left: -21px;
  top: 11px;
}
.footer-bottom .footer-links ul li a:hover {
  padding-left: unset;
}
.footer-bottom .footer-links ul li a {
  padding-left: unset;
}
.footer-bottom .footer-links ul li:first-child a:before {
  opacity: 0;
}
.footer-bottom .footer-links ul li {
  margin-bottom: unset;
}
.f-contact-item input[type="email"] {
  width: 100%;
  background-color: #ffffff29;
  border: 0;
  outline: 0;
  border-radius: 6px;
  padding: 10px 20px;
  color: var(--c4);
  height: 55px;
}
.f-contact-item input[type="submit"] {
  outline: 0;
  border: 0;
  margin-top: 12px;
}
.f-contact-item input[type="email"]::placeholder {
  color: #ffffffb8;
}
.f-contact-item {
  margin-top: 20px;
}

/* BACK TO TOP */

div#scrollUp {
  position: fixed;
  bottom: 3%;
  right: 2%;
  background-color: var(--c2);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: var(--c4);
  text-align: center;
  line-height: 40px;
  z-index: 99;
  cursor: pointer;
}

/* INNER WRAPPER */

.inner-wrapper {
  padding: 130px 0px 130px 0px;
  background-color: #85010e;
}
.inner-wrap-content h2 {
  color: var(--c4);
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 60px;
  text-align: center;
}
.inner-wrap-content ul li {
  color: var(--c4);
  font-size: 18px;
  font-weight: 500;
}
.inner-wrap-content ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.inner-wrap-content ul li a {
  color: inherit;
  transition: all 0.5s;
}
.inner-wrap-content ul li a:hover {
  color: var(--c2);
}
.inner-wrap-content ul li i {
  margin-right: 12px;
  font-size: 16px;
}

/* SECTION INNER ABOUT US */

.inner-about-img-left {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 332px;
  border: 1px solid #513de826;
  border-radius: 10px;
  padding: 24px 0px;
}
.inner-about-img-main {
  position: relative;
}
.inner-about-img-left-content {
  width: 50%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
.inner-about-img-left .video-btn {
  width: 50%;
  text-align: center;
}
.inner-about-img-left-content h5 {
  transform: rotate(270deg);
  color: var(--c1);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4.8px;
}
.inner-about-us .about-content p,
.service-content .web-title p,
.service-disc-content-long p {
  margin-bottom: 15px;
}
.experience-box-main {
  display: flex;
  width: 57%;
  position: absolute;
  bottom: 5%;
  right: 12%;
  padding: 30px 20px 30px 20px;
  border-radius: 10px;
  background-image: linear-gradient(94.57deg, var(--c2) 0.99%, var(--c1) 99.43%);
  align-items: center;
}
.experience-box-img {
  width: 28%;
}
.experience-box-content {
  width: 74%;
  border-left: 1px solid var(--c4);
  padding-left: 20px;
  margin-left: 20px;
  color: var(--c4);
  text-align: center;
}
.experience-box-content h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Space Grotesk", Sans-serif;
}
.experience-box-content h4 {
  font-size: 22px;
  font-family: "Space Grotesk", Sans-serif;
}
.inner-about-us .about-content {
  padding-left: 30px;
}

/* SECTION IT SERVICE */

.it-service-content .r-more a {
  color: var(--c2);
  font-size: 16px;
  font-weight: 600;
}
.it-service-content .r-more {
  text-align: end;
  margin-top: 30px;
}
.it-service-content {
  padding: 30px 25px 40px 25px;
  background-image: url(../images/service/bg-2.png);
  background-position: bottom left;
  background-repeat: no-repeat;
}
.it-service-item {
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.it-service-img {
  position: relative;
}
.it-service-icon {
  position: absolute;
  bottom: -18%;
  width: 19%;
  background-color: var(--c2);
  padding: 20px;
  border-radius: 50%;
  left: 5%;
  transition: all 0.5s;
}
.it-service-content .r-more a i {
  margin-left: 8px;
  font-size: 15px;
}
.it-service-item:hover .it-service-icon {
  background-color: var(--c1);
}
.web-btn-track {
  text-align: center;
  margin-top: 60px;
}
.web-btn i {
  margin-left: 10px;
  font-size: 15px;
}

/* SECTION WHY CHOOSE US */

.choose-us-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 35px;
}
.choose-img {
    width: 540px;
}
.choose-item-img {
  width: 10%;
}
.choose-item-content h4 {
  color: var(--c1);
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.choose-item-content p {
  margin: 0px !important;
}
.choose-content {
  padding-right: 70px;
}

/* SECTION COUNTER */

.counter-item {
    background-image: url(../images/counter/bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 30px 0px;
    border-radius: 10px;
    background-color: var(--c5);
}
.counter-content h2 {
  color: var(--c2);
  font-family: "Space Grotesk", Sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 25px 0px 15px 0px;
}
.counter-content {
  text-align: center;
}
.counter-content p {
  color: #323f7c;
  font-family: "Space Grotesk", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  padding: 0px 50px;
}
.counter-img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
}

/* SECTION CONTACT WRAPPER */

.contact-wrap-inner {
    background-color: var(--c2);
    padding: 80px 100px 80px 100px;
    border-radius: 10px;
    position: relative;
}
.contact-wrap-inner .web-title h5,
.contact-wrap-inner .web-title h2 {
  color: var(--c4);
}
.contact-wrap-inner .web-btn a {
  background-color: var(--c4);
  color: var(--c2);
  border: 2px solid var(--c4);
}
.contact-wrap-inner .web-btn a:hover {
  background-color: transparent;
  color: var(--c4);
}
.contact-wrap-inner .web-title h2 {
  margin-bottom: 0px;
}
.curve-shape {
  position: absolute;
  top: 50%;
  left: 55%;
  animation: veritcal2 3s alternate infinite;
}

/* SECTION TESTIMONIAL INNER */

.testi-content-dup {
  background: linear-gradient(94.57deg, var(--c2) 0.99%, var(--c1) 99.43%);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}
.testi-content-dup p {
  color: var(--c4);
  font-size: 18px;
}
.testi-content-dup ul {
  display: flex;
  gap: 3px;
  margin-top: 15px;
}
.testi-content-dup ul li {
  color: #ffc62d;
}
.testi-content-dup-icon {
  position: absolute;
  right: 6%;
  bottom: 12%;
}
.testi-author-dup {
  display: flex;
  align-items: center;
  padding: 20px 0px;
}
.testi-author-dup-img {
  width: 20%;
}
.testi-author-dup .test-author-name {
  width: 80%;
}
.test-author-country {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.test-author-country img {
  width: 30px;
  height: 20px;
  object-fit: contain;
}
.test-author-country h3 {
  font-family: "Space Grotesk", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-left: 10px;
}
.testi-item-dup {
  margin: 0px 15px;
}

/* SECTION GET IN TOUCH */

.contact-info-item-box h3 {
  color: var(--c1);
  font-weight: 700;
  font-family: space grotesk, sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 10px;
}
.contact-info-item-icon i {
  width: 40px;
  height: 40px;
  background-color: #513de814;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--c2);
}
.contact-info-item-content span {
  color: var(--c1);
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  display: block;
}
.contact-info-item-content h4,
.contact-info-item-content a {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--c1);
  transition: all 0.5s;
}
.contact-info-item-main {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 4px 22px 6px
    rgba(50.000000000000014, 63.00000000000005, 124, 0.04);
  margin-bottom: 20px;
  padding: 25px 25px 0px 25px;
  border-radius: 10px;
}
.contact-info-item-box {
  width: 50%;
  padding-right: 10px;
}
.contact-info-item-content {
  width: 82%;
}
.contact-info-item-icon {
  width: 18%;
}
.contact-info-item-content a:hover {
  color: var(--c2);
}
.contact-info-social ul li a {
  color: var(--c2);
}
.contact-info-social ul li a:hover {
  background-color: var(--c2);
  color: var(--c4);
}
.contact-info-box .contact-info-item-main:nth-child(5) {
  padding-bottom: 25px;
}
.contact-form-item input,
.contact-form-item textarea {
  border-color: #02010100;
  outline: 0;
  width: 100%;
  background-color: #513de80a;
  padding: 10px 20px;
  height: 55px;
  border-radius: 4px;
  transition: all 0.4s;
}
.contact-form-item input:focus,
.contact-form-item textarea:focus {
  border-color: #513de81a;
}
.contact-form-item {
  margin-bottom: 20px;
}
.contact-form-item input::placeholder,
.contact-form-item textarea::placeholder {
  color: #b5abab;
}
.contact-form-item textarea {
  height: 200px;
}
.contact-form-btn input {
  border: 0;
}
.contact-info-box {
  padding-right: 40px;
}

/* SECTION SPONSOR CONTACT */

.sponsor-contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.sponsor-contact-item {
  width: 18%;
  padding: 30px;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.sponsor-contact-item img {
  height: 40px;
  object-fit: contain;
}
.sponsor-contact-item:hover {
  background-color: var(--c4);
}

/* SECTION MAP */

.map-item iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* SECTION PACKAGES */

.package-head {
    background-color: var(--c2);
    padding: 40px 0px 40px 40px;
    border-radius: 10px;
}
.package-head h4 {
  display: inline-block;
  font-family: "Space Grotesk", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 24px 14px 24px;
  border-radius: 50px;
  color: var(--c4);
  background-color: #00255933;
}
.package-head h2 {
  font-family: "Space Grotesk", Sans-serif;
  font-size: 18px;
  color: var(--c4);
  margin-top: 10px;
}
.package-head h2 span {
  font-size: 60px;
  font-weight: 700;
}
.package-body {
  padding: 30px 40px;
}
.package-body ul li {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  color: #606060;
  margin-bottom: 15px;
  padding: 0px 10px 0px 32px;
}
.package-body ul li:last-child {
  margin: 0px;
}
.package-item {
  background-color: #f7f7f7;
  border-radius: 10px;
  background-image: url(../images/pricing_bg_img.png);
}
.package-btn {
  margin-top: 30px;
}
.package-btn a {
  padding: 14px 30px;
}
.package-body ul li::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 0;
  color: var(--c2);
}
.package-body ul {
  height: 200px;
  overflow: auto;
}
.package-body ul::-webkit-scrollbar {
  width: 6px;
  background-color: var(--c5);
}
.package-btns ul li button,
.portfolio-btns ul li a,
.portfolio-tab-btns ul li button {
  padding: 8px 30px;
  border: 2px solid var(--c2);
  border-radius: 50px;
  font-weight: 600;
  color: var(--c2);
  background-color: unset;
}
.package-btns ul li button.active,
.portfolio-btns ul li.active a,
.portfolio-tab-btns ul li button.active {
  background-color: var(--c2);
  color: var(--c4);
  border-color: transparent;
}
.package-btns ul,
.portfolio-btns ul,
.portfolio-tab-btns ul {
  gap: 12px;
  justify-content: center;
}
.package-btns,
.portfolio-btns,
.portfolio-tab-btns {
  margin-bottom: 40px;
}
.inn-web .web-title,
.portfolio .web-title {
  margin-bottom: 40px;
}
.packages .package-btns {
  margin-top: -10px;
}

/* SECTION FAQS */

.faq-main-item .accordion-button {
  background-color: unset;
  box-shadow: unset;
  font-family: "Space Grotesk", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121933;
  transform: unset !important;
}
.faq-main-item .accordion-item {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8f7fe;
  border: 0;
}
.faq-main-item .accordion-button span {
  color: var(--c2);
  font-size: 15px;
  margin-right: 10px;
}
.faq-main-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-main-item .accordion-button::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
  content: "\f067";
  width: 30px;
  height: 30px;
  background-color: #e7e4fc;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  border-radius: 50%;
  background-image: unset;
  transform: unset;
  color: var(--c2);
}
.faq-main-item .accordion-body {
  color: var(--c3);
  font-weight: 400;
  line-height: 1.8;
}
.faq-main-item .accordion-item:last-child {
  margin: 0px;
}
.faq-img {
  padding: 40px;
}

/* SECTION SERVICE CONTENT */

/* .single-service-img {
  padding: 50px;
} */
.service-disc-content li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #5944e81f;
}
.service-disc-content li:last-child {
  margin: 0px;
}
.service-disc-content ul {
  margin-top: 25px;
}
.service-disc-content li:last-child {
  border: 0;
  padding-bottom: 0px;
  margin: 0px;
}
/* .service-disc-content-long {
  padding-right: 40px;
} */
.service-disc-content h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--c2);
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}
  

/* RESPONSIVE MENU */

.responsive-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--c4);
    z-index: 9999;
    transition: all .5s;
}
.responsive-menu.active{
	right: 0;
}
.responsive-menu-main {
    height: 100%;
    padding: 20px 25px;
    position: relative;
}
.responsive-logo {
    width: 130px;
    margin-bottom: 10px;
}
.responsive-links ul li a {
    color: var(--c2);
    padding: 10px 0px;
    display: block;
    font-size: 14px;
    font-weight: 400 !important;
}
.responsive-links ul li {
    border-bottom: 1px solid gainsboro;
    position: relative;
}
.resp-social{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--c2);
    padding: 6px 0px;
}
.responsive-icon a i {
    display: block;
}
.responsive-icon {
    position: absolute;
    top: 40px;
    right: 30px;
}
.responsive-icon a {
    color: var(--c2);
    font-size: 22px;
    display: inline-block;
}
.responsive-links ul li:last-child {
    border: 0;
}
body.scroll-stop {
    overflow: hidden;
}
.resp-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.resp-social ul li a i {
    display: block;
}
.resp-social ul li a {
    padding: 10px;
    color: var(--c4);
    font-size: 18px;
}
.responsive-links ul li i {
    position: absolute;
    right: 0;
    top: 13px;
}
.responsive-links ul li ul {
    padding-left: 30px;
    border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
    content: "\f068";
}

.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 10px;
    right: 6px;
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    color: var(--c1);
}
.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c2);
}