@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  list-style: none;
  /* font-family: 'Archivo', sans-serif; */
  font-family: "Open Sans", 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;
  font-family: "Archivo", sans-serif;
}

/* h4 {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
} */

p {
  margin: 0px;
  color: rgb(97 97 97);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
}

:root {
  --c1: #000;
  --c2: #1d89ff;
  --c3: #141e38;
  --c4: #000;
  --c5: #000;
  --c6: #031926;
  --sec: #002fa6;
  --ter: #3077f3;
  --last: #b9fffc;
  --white: #fff;
  --dark: #4d4b52;
  --grey: #662222;
  --black: #000;
  --blue: #002fa6;
  --tran: all 200ms ease;
  --grd: linear-gradient(75deg,
      rgba(26, 44, 121, 0.95),
      rgba(232, 6, 102, 0.9));
}

/* header */

header.header {
  background-color: #000000ab;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: all 0.3s;
  padding: 8px 0px;
  
}

.header.fixed {
  background-color: var(--black);
}
.inner-content-item h3 {
    color: #616161;
    font-weight: 700;
    font-size: 22px;
}
.nav-bar ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.nav-bar ul li a {
  padding: 21px 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  transition: all 0.5s;
}

.nav-bar nav>ul>li>a:hover {
  color: #bfbfbf;
}

.nav-bar ul li a i {
  margin-left: 6px;
  font-size: 13px;
  transition: all 0.3s;
}

.header-btn a {
  padding: 9px 10px;
  border: 2px solid #fff;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
  margin-right: 5px;
}
.logo{
  width: 80px;
}
.nav-bar ul li a:hover i {
  transform: rotate(180deg);
}

.header-btn a:hover {
  background-color: #fff;
  color: var(--c1);
}

.header-btn a i {
  margin-right: 4px;
}

.logo a {
  display: block;
}

.nav-bar ul li {
  position: relative;
}

.nav-bar ul li ul {
  position: absolute;
  background-color: #fff;
  top: 120%;
  left: 0;
  display: unset;
  width: 262px;
  border-radius: 5px;
  /* visibility: hidden;
    opacity: 0; */
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s;
}

.nav-bar ul li:hover ul {
  /* visibility: visible;
    opacity: 1; */
  transform: scaleY(1);
}

.nav-bar ul li ul li a {
  font-weight: 700;
  color: #000;
  font-size: 13px;
  padding: 11px 13px 11px 42px;
  width: 100%;
}

.nav-bar ul li ul li a:hover {
  background-color: rgba(26, 44, 121, 0.1);
}

.nav-bar ul li ul:before {
  position: absolute;
  content: "";
  border: 12px solid transparent;
  top: -24px;
  border-bottom: 15px solid #fff;
  left: 15px;
}

/* section-main-home */
.banner {
  position: relative;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.banner-img img {
  height: 100vh;
  object-fit: cover;
}

.banner-content-main h1 span {
  display: block;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 60px;
}

.banner-content-main a {
  font-size: 32px;
  font-weight: 700;
  color: var(--c2);
}

.banner-btn {
  margin: 20px 0px;
}

.banner-content-main h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.banner-btn a {
  font-size: 16px;
  padding: 11px 25px;
  border: 2px solid #fff;
  text-transform: uppercase;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  margin-right: 10px;
}

.banner-btn a:before {
  position: absolute;
  content: "";
  background-color: #fff;
  left: -28px;
  top: 0;
  width: 119%;
  height: 100%;
  z-index: -1;
  transform: rotateZ(-45deg);
  transform-origin: left;
  transition: 0.4s all;
  z-index: 1;
}

.banner-btn a:hover:before {
  transform: rotateZ(0deg);
}

.banner-btn a:hover {
  color: var(--c1);
}

.banner-btn a span {
  position: relative;
  z-index: 99;
}

.banner-content-main h5 {
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 4px;
}

.banner:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  width: 100%;
  height: 100%;
}

.banner-content-main {
  position: relative;
  z-index: 99;
}

/* section-service-widg */

.s-widg-item {
  position: relative;
  overflow: hidden;
  padding: 26px 80px 26px 26px;
  border-radius: 10px;
  box-shadow: 6px 5px 30px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

.s-widg-img {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  transition-delay: 0.2s;
}

.s-widg-icon i {
  font-size: 50px;
  color: var(--c2);
  transition: all 0.4s;
}

.s-widg-content h3 {
  font-size: 20px;
  font-family: "Open Sans";
  margin: 23px 0px 11px 0px;
  font-weight: 600;
}

.s-widg-item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  background: linear-gradient(75deg,
      rgba(26, 44, 121, 0.8),
      rgb(232 5 102 / 65%));
  left: 0;
  transition: all 0.4s;
}

section.service-widg {
  margin-top: -117px;
}

.s-widg-item:hover .s-widg-img,
.s-widg-item:hover:after {
  top: 0;
}

.s-widg-content-main {
  position: relative;
  z-index: 999;
}

.s-widg-item .s-widg-content h3,
.s-widg-item .s-widg-content p {
  transition: all 0.4s;
}

.s-widg-item:hover .s-widg-content h3,
.s-widg-item:hover .s-widg-content p {
  color: #fff !important;
}

.s-widg-item:hover .s-widg-icon i {
  color: #fff;
}

/* section-what-we-do */

.what-we-do {
  padding: 90px 0px;
}

.we-do-img {
  border: 16px solid var(--c2);
  border-radius: 63% 37% 30% 70%/50% 45% 55% 50%;
  overflow: hidden;
}

.we-do-img:before {
  position: absolute;
  content: "";
  background-image: url(../images/ezgif.com-gif-maker.png);
  width: 290px;
  height: 275px;
  z-index: -1;
  top: -19px;
  left: 44px;
  background-size: cover;
}

.we-do-img-main {
  position: relative;
  padding: 0px 50px;
}

.we-do-img:after {
  position: absolute;
  content: "";
  background-image: url(../images/dot-shape.png);
  width: 100px;
  height: 198px;
  background-size: cover;
  right: 37px;
  bottom: 12px;
  z-index: -1;
}

.section-title h4 {
  font-size: 14px;
  color: var(--c1);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.section-title h2 {
  color: var(--c2);
  font-weight: 600;
  line-height: 1.2;
  font-size: 42px;
  margin-bottom: 20px;
}

.we-do-content {
  padding-right: 120px;
}

.section-title p {
  margin-bottom: 20px;
}

.we-do-content ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.we-do-content ul {
  margin-bottom: 30px;
  margin-left: 10px;
}

.we-do-content a {
  background-color: var(--c2);
  color: #fff;
  padding: 10px 26px;
  border-radius: 4px;
  transition: 0.5s all;
  letter-spacing: 1px;
  margin-left: 10px;
}

.we-do-content ul li:before {
  position: absolute;
  content: "\f324";
  font-family: "Font Awesome 5 Pro";
  color: var(--c1);
  font-size: 12px;
  font-weight: 600;
  top: 4px;
  left: 0;
}

.we-do-content a:hover {
  background-color: var(--c1);
}

/* section-our-services */

.our-services {
  background-color: #141e38;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0px 160px 0px;
}

.our-service-icon img {
  width: 22%;
}

.our-service-para p {
  font-size: 20px;
  color: #d7d7d7;
}

.our-service-content h4 {
  color: #fff;
  margin: 25px 0px 17px 0px;
  font-weight: 400;
  font-size: 22px;
}

.our-service-content p {
  color: #d7d7d7;
}

.our-service-item {
  border: 1px solid #fff;
  padding: 20px 40px 50px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin: 0px 12px;
}

.our-service-hover {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  justify-content: center;
  background-position: center;
  background-size: cover;
  transition: 1s ease all;
}

.our-services .section-title h2 {
  color: #fff;
}

.our-service-content-item {
  margin-bottom: 60px;
}

.our-service-hover a {
  padding: 12px 25px;
  background: var(--c6);
  background-size: 150%;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  top: 0%;
  transition: all 0.8s ease-in-out;
  opacity: 0;
}

.our-service-hover a:hover {
  background-position: 100% 150%;
}

.our-service-hover a i {
  margin-left: 11px;
}

.our-service-item:hover .our-service-hover {
  top: 0;
}

.our-service-item .our-service-hover a {
  top: 45%;
  opacity: 1;
}

.our-services .slick-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 70px;
}

.our-services .slick-dots li button {
  outline: 0;
  border: 0;
  width: 23px;
  height: 3px;
  color: transparent;
  transition: all 0.4s;
}

.our-services .slick-dots li {
  font-size: 10px;
}

.our-services .slick-dots li.slick-active button {
  height: 6px;
}

.our-service-para {
  padding-right: 100px;
}

.our-service-item:hover .our-service-content {
  transform: translateY(-15px);
}

.our-service-item:hover .our-service-content p {
  color: #fff;
}

.our-service-content {
  transition: all 0.2s;
}

/* section-progress */

.progress-bg {
  background-color: var(--c2);
  border-radius: 5px;
  padding: 70px 0px;
  box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
}

.progress-item h2 {
  color: #fff;
  font-size: 48px;
}

.progress-item {
  text-align: center;
  position: relative;
}

.progress-item p {
  color: #fff;
  font-size: 18px;
}

.progress-item:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff59;
}

.progress-item h2 span:before {
  position: absolute;
  content: "+";
  top: -28px;
  right: -35px;
}

.progress-item h2 span {
  position: relative;
  font-family: "Archivo";
}

.progress-sec {
  margin-top: -130px;
}

.progress-bg .row .col-lg-3:last-child .progress-item:after {
  background: unset;
}

/* section-reviews */

.testi-content .section-title h2:before {
  position: absolute;
  content: "";
  width: 4px;
  top: 5%;
  left: -29px;
  height: 90%;
  background-color: #fff;
}

.testi-content .section-title h2 {
  position: relative;
}

.testi-content {
  padding-left: 30px;
  padding-right: 38px;
}

.reviews {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0px;
  background-color: var(--c3);
}

.testi-content h5 {
  letter-spacing: 0.2px;
  line-height: 36px;
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 25px;
}

.testi-content a {
  padding: 14px 32px;
  background-color: var(--c5);
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.5s;
}

.testi-content a:hover {
  background-color: var(--c4);
}

.testi-content a i {
  margin-left: 11px;
}

.testi-item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  margin: 30px 12px 0px 12px;
}

.testi-item h4 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 22px;
}

.testi-item h6 {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 15px;
}

.testi-icon {
  position: absolute;
  width: 80px;
  color: #fff;
  height: 80px;
  background-color: #031926;
  border-radius: 50%;
  top: -25px;
  right: 15px;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.testi-item:hover .testi-icon {
  background-color: var(--c4);
}

.reviews .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}

.reviews .slick-dots li {
  font-size: 10px;
}

.reviews .slick-dots li button {
  color: transparent;
  border: 0;
  width: 21px;
  height: 3px;
  transition: all 0.4s;
  background-color: #808080b3;
}

.reviews .slick-dots li.slick-active button {
  background-color: #fff;
}

.reviews .slick-dots li button:hover {
  background-color: #fff;
}

/* section-package */

.package-item {
  box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
}

.package-header {
  text-align: center;
  padding: 26px 45px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 35px;
  position: relative;
}

.package-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.package-header h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 6px 0px;
}

.package-header span {
  font-weight: 600;
  margin-bottom: 13px;
  display: block;
}

.package-header h2 {
  font-size: 24px;
  color: var(--c1);
  font-weight: 600;
}

.package-list {
  padding: 15px;
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.package-list ul li {
  font-size: 14px;
  padding: 8px 0px 8px 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.package-info-icon {
  width: 9%;
  text-align: end;
}

.package-info-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #000;
  text-align: left;
  border-radius: 5px;
  padding: 12px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}

.package-list ul li:before {
  position: absolute;
  content: "\f00c";
  color: var(--c1);
  font-family: "Font Awesome 5 Pro";
  left: 0;
  top: 9px;
  font-weight: 600;
}

.package-info-content p {
  font-size: 12px;
  color: #fff;
}

.package-info-icon:hover .package-info-content {
  visibility: visible;
  opacity: 1;
}

.package-info-icon i {
  color: var(--c2);
}

.package-list ul li:nth-child(n + 5) .package-info-content {
  bottom: 100%;
  top: unset;
}

.package-btn {
  padding: 10px 15px;
}

.package-btn a {
  display: block;
  text-align: center;
  background-color: var(--c2);
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 10px;
  position: relative;
  z-index: 999;
}

.package-btn a:before {
  position: absolute;
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  background: var(--c3);
  left: 0;
  top: 0;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  transition-property: border-radius, height;
  z-index: -1;
}

.package-btn a:hover:before {
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  visibility: visible;
  line-height: 44px;
}

.packages .section-title {
  margin-bottom: 60px;
}

.packages {
  padding: 60px 0px;
}

.package-header span i {
  margin-right: 5px;
}

.badge-mark {
  position: absolute;
  background-color: #f1484a;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 19px;
  color: #fff;
  font-size: 15px;
  left: -42px;
  height: 32px;
  text-align: center;
  width: 161px;
  transform: rotate(-45deg);
}

.badge-mark span {
  display: contents;
  font-weight: 400;
}

/* section-sponsors */

.sponsor-img {
  padding: 0px 50px;
}

.sponsor-img img {
  filter: grayscale(100%);
  opacity: 0.2;
  transition: all 0.5s;
  cursor: pointer;
}

.sponsors {
  padding: 60px 0px;
  background-color: #f6f2ed;
}

.sponsor-img:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* section-consultancy */

.cons-main {
  background-color: var(--c2);
  border-radius: 10px;
  padding: 51px 70px 70px 70px;
  position: relative;
  margin-bottom: -70px;
}

.cons-item-main {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.consultancy {
  background-color: #f6f2ed;
}

.cons-item {
  width: 24%;
}

.cons-item input {
  width: 100%;
  border: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 5px;
  color: #fff;
}

.cons-item input:focus {
  background-color: rgba(255, 255, 255, 0.6);
}

.cons-main h2 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 33px;
  line-height: 38px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cons-item input[type="submit"] {
  background-color: #031926;
}

/* footer */

.footer {
  background-color: var(--c6);
  color: #fff;
  padding-top: 80px;
}

.footer-links ul li a {
  color: inherit;
  font-size: 15px;
  position: relative;
}

.f-contact-info ul li a {
  color: inherit;
}

.footer p {
  color: inherit;
}

.footer-logo {
  width: 110px;
  margin-bottom: 5px;
}

.footer-main {
  padding: 50px 0px;
}

.footer-social-main p {
  color: #cccccc;
  margin-bottom: 25px;
}

.footer-social-main ul {
  display: flex;
  gap: 10px;
}

.footer-social-main ul li a {
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.4s;
}

.footer-social-main ul li a:hover {
  margin-top: -6px;
}

.footer-title h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 7px;
}

.footer-links ul li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all 0.5s;
  transform: scaleX(0);
}

.footer-links ul li a:hover:before {
  transform: scaleX(1);
}

.f-contact-info p {
  margin-bottom: 8px;
}

.f-contact-info ul li {
      margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}

.copyrights p {
  font-size: 14px;
}

.copyrights {
  text-align: left;
}

/* section-faqs */

.faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title h2:first-letter {
  color: var(--c2);
}

.faq-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.faq-title p {
  color: #a2a2a2;
}

.faqs {
  padding: 90px 0px;
}

/*// ABOUT-US PAGE //*/

/*section-inner-main*/

.inner-main {
  height: 400px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner-main-title h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.inner-main-title {
  padding-top: 130px;
}

/*section-about-us*/

.about-us-sec {
  padding: 120px 0px;
}

/*section-about-services-boxes*/

.about-boxes-item {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 0px 35px;
  height: 200px;
  overflow: hidden;
}

.about-boxes-icon {
  font-size: 50px;
  transition: all 0.4s;
  margin-bottom: 5px;
}

.about-boxes-content h3 {
  line-height: 36px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-boxes-content p {
  opacity: 0;
  transition: all 0.4s;
}

.about-boxes-inner-item {
  margin-top: 16px;
  transition: all 0.4s;
}

.about-boxes-item:hover .about-boxes-inner-item {
  margin-top: -50px;
}

.about-boxes-item:hover .about-boxes-content p {
  opacity: 1;
}

.about-boxes-item:hover .about-boxes-icon {
  opacity: 0;
}

.about-boxes-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
}

.about-service-boxes {
  padding: 50px 0px 90px 0px;
}

/*section-flexible-it*/

.flexible-it {
  padding: 90px 0px;
  background-color: var(--c6);
}

.flexible-it-item .section-title h4,
.flexible-it-item .section-title h2 {
  color: #fff;
}

.accordian-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 17px 20px;
  border-radius: 0px !important;
  width: 100%;
  background: var(--grd);
  font-size: 15px;
  color: #fff;
}

.accordian-btn i {
  font-weight: 600;
}

.accord-body p {
  color: #cccccc;
}

.accord-body {
  padding: 15px 0px;
}

/* .video_animation_btn {
    position: relative;
} */
.video-animation-border {
  border: 3px solid #fff;
  height: 60px;
  width: 60px;
  display: table;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
}

.line-video-1 {
  animation-delay: 0s !important;
  animation: videoborder1 3s infinite;
}

.line-video-2 {
  animation-delay: 1s !important;
  animation: videoborder2 3s infinite;
}

.line-video-3 {
  animation-delay: 2s !important;
  animation: videoborder3 3s infinite;
}

@keyframes videoborder1 {
  from {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    top: 0;
    left: 0;
  }

  to {
    width: 200px;
    height: 200px;
    top: -70px;
    left: -70px;
    opacity: 0;
  }
}

@keyframes videoborder2 {
  from {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    top: 0;
    left: 0;
  }

  to {
    width: 200px;
    height: 200px;
    top: -70px;
    left: -70px;
    opacity: 0;
  }
}

@keyframes videoborder3 {
  from {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    top: 0;
    left: 0;
  }

  to {
    width: 200px;
    height: 200px;
    top: -70px;
    left: -70px;
    opacity: 0;
  }
}

.accord-card {
  margin-bottom: 20px;
}

.accordian-main {
  margin-top: 40px;
}

.flexible-it-item .section-title h2 {
  font-size: 34px;
}

.flexible-it-img {
  position: relative;
}

.video-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn a {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: var(--c5);
  position: relative;
}

::selection {
  background: #002fa6;
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

.package-list::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

.accordion-item {
  margin-bottom: 20px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  border: 1px solid #ccc;
}

.accordion-item {
  border: 0;
}

.accordion-body {
  background-color: #ededed;
  font-size: 14px;
  color: #666;
  line-height: 21px;
  padding: 20px 20px 40px 20px;
}

.accordion-button {
  font-size: 14px;
  font-weight: 600;
  background-color: #ededed;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.accordion-header:hover .accordian-button {
  background-color: var(--c2) !important;
}

.accordion-header:hover .accordion-button {
  background-color: var(--c2);
  color: #fff;
}

/* section-our-history */

.our-history-item h3 {
  padding-top: 30px;
  border-top: 1px solid #5b6690;
  position: relative;
  margin-bottom: 10px;
}

.our-history-item h3:before {
  position: absolute;
  content: "";
  width: 17px;
  border: 4px solid #af00b2;
  border-radius: 50px;
  height: 17px;
  background: #fff;
  top: -16%;
  left: 0;
}

.our-history-item {
  margin-top: 30px;
}

.our-history-item h3,
.our-history-item p {
  color: #222;
}

.our-history-item p {
  padding-right: 40px;
  margin-bottom: 15px;
}

.our-history {
  padding: 90px 0px;
}

.our-history-title h4 {
  color: #b2abab;
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: 600;
}

.our-history-title h2 {
  font-size: 37px;
  line-height: 1.4;
  font-weight: 600;
}

.our-history-title {
  margin-bottom: 40px;
}

.our-history .slick-arrow {
  background-color: #222;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 40px;
  position: absolute;
  z-index: 99;
  font-size: 17px;
}

.our-history .slick-arrow:hover {
  background: var(--grd);
  cursor: pointer;
}

.our-history .slick-prev {
  left: 8%;
  top: 2%;
}

.our-history .slick-next {
  right: 9%;
  top: 2%;
}

/* section-projects */

.project-items-main {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 31%;
  height: 380px;
  box-shadow: 0 18px 40px -18px rgba(51, 51, 51, 0.5);
}

.project-img a {
  display: block;
}

.project-content {
  position: absolute;
  width: 90%;
  bottom: 0;
  left: 5%;
  background-color: #d40968;
  right: 0;
  bottom: -130px;
  padding: 26px 30px;
  border-radius: 6px;
  transition: all 0.7s;
}

.project-content a h3 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0.6;
  font-size: 14px;
}

.project-content a {
  color: #fff;
  display: block;
}

.project-content a h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.project-item:hover .project-content {
  bottom: 40px;
}

.projects {
  padding: 90px 0px;
  background-image: url(../images/project-bg.png);
  background-position: bottom left;
  background-repeat: no-repeat;
}

.project-link .project-btn {
  border: 1px solid var(--c2);
  font-size: 16px;
  background: unset;
  font-family:
    "Open Sans";
  color: var(--c2);
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 24px;
}

.project-link .project-btn.active {
  background-color: var(--c2);
  color: #fff;
}

.tabs-btns-main .nav-pills {
  gap: 20px;
  margin: 30px 0px 50px 0px !important;
}


.challenge-title {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
}

.challenge-title h2 {
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  color: #696969;
  font-family: "Open Sans";
}

.challenge-title h2:first-letter {
  color: var(--c2);
  font-size: 30px;
}

.challenge-title h2 a {
  color: var(--c2);
}

/* CONTACT-PAGE */

/* section-contact-help */

.contact-help {
  padding: 120px 0px;
}

.contact-help .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.contact-help .section-title h2,
.contact-help .section-title p {
  color: #000;
}

.contact-help-item {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 35px 38px;
  text-align: center;
  height: 240px;
  overflow: hidden;
}

.contact-help-icon i {
  width: 50px;
  color: var(--c4);
  font-size: 24px;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid var(--c4);
  height: 50px;
}

.contact-help-icon {
  margin-bottom: 12px;
  transition: all 0.5s;
}

.contact-help-content h4 {
  font-weight: 500;
  color: #232323;
  margin-top: 8px;
  font-size: 17px;
}

.contact-help-content a {
  color: var(--c4);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  margin-top: 30px;
  opacity: 0;
}

.contact-help-content a:before {
  position: absolute;
  content: "\f30b";
  font-family: "Font Awesome 5 Pro";
  left: -47px;
  top: 1px;
  transition: all 0.5s;
}

.contact-help-content a:hover:before {
  left: -21px;
}

.contact-help-item:hover .contact-help-item-inner {
  margin-top: -57px;
}

.contact-help-item:hover .contact-help-icon {
  opacity: 0;
}

.contact-help-item-inner {
  transition: all 0.5s;
}

.contact-help-item .contact-help-content a {
  transition: all 0.5s;
}

.contact-help-item:hover .contact-help-content a {
  opacity: 1;
}

.contact-help-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* section-contact-message */

.message-form-item input,
.message-form-item textarea {
  color: #000;
  font-weight: 700;
  padding: 14px 17px;
  border-radius: 4px;
  border: 0;
  width: 100%;
  outline: 0;
  background-color: rgba(167, 167, 167, 0.1);
}

.message-form-item {
  margin-bottom: 20px;
}

.message-form-item textarea {
  height: 120px;
}

.message-form-item input[type="submit"] {
  width: unset;
  background: var(--grd);
  color: #fff;
  font-weight: 400;
  padding-inline: 25px;
  background-size: 150%;
  transition: all 0.5s;
}

.message-form-item input[type="submit"]:hover {
  background-position: 100% 150%;
}

.contact-message {
  padding: 90px 0px;
}

.contact-message-img {
  padding: 50px;
}

/* section-map */

.map {
  overflow: hidden;
}

/* TERMS AND CONDITION */

/* section-inner-content */

.inner-content-item h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}

.inner-content-item h4 {
  color: #616161;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "Open Sans";
}

.inner-content-item p {
  margin-bottom: 20px;
}

.inner-content-item {
  padding: 90px 0px;
}

.inner-content-item ul li {
  font-size: 15px;
  line-height: 24px;
  color: #616161;
  padding: 14px 0px;
}

.inner-content-item ul {
  margin-bottom: 20px;
}

/* section-service-type */

.service-type {
  padding: 90px 0px;
}

.service-type-content h2 {
  margin-bottom: 24px;
  font-size: 34px;
  font-weight: 900;
}

.service-type-content p {
  font-size: 17px;
  margin-bottom: 20px;
}

.service-type-img {
  padding: 34px 40px 40px;
  box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

.service-type-content p strong {
  float: left;
  height: 2em;
  width: 2em;
  box-shadow: 5px 4px 13px rgba(131, 131, 131, 0.3);
  line-height: 2em;
  text-align: center;
  border-radius: 5px;
  margin-top: 0.4em;
  margin-right: 1em;
  color: var(--c2);
}

/* section-expertise */

.inner-sec-title {
  text-align: center;
  margin-bottom: 60px;
}

.inner-sec-title h5 {
  color: var(--c5);
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.inner-sec-title h2 {
  font-size: 48px;
  margin-bottom: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.inner-sec-title p {
  font-size: 16px;
  color: #888787;
}

.expertise-item {
  text-align: center;
  background: #fff;
  height: 370px;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

.expertise-img {
  width: 50%;
  margin: 0 auto;
}

.expertise-content h3 {
  font-size: 18px;
  margin: 15px 0px;
}

.expertise-content p {
  color: #000;
  line-height: 1.7;
}

.expertise-designing {
  padding: 90px 0px;
  background-color: #f5f5f5;
}

.expertise-item:before,
.expertise-item:after {
  content: "";
  position: absolute;
  height: 6px;
  background: var(--c4);
  left: 25px;
  width: calc(100% - 50px);
}

.expertise-item:before {
  top: 0;
}

.expertise-item:after {
  bottom: 0;
}

/* section-expertise-portfolio */

.expertise-portfolio {
  background-color: var(--c6);
  padding: 90px 0px;
}

.expertise-portfolio .inner-sec-title h5 {
  letter-spacing: 2px;
}

.expertise-portfolio .project-item {
  width: unset;
  transition: all 0.4s;
  margin-bottom: 30px;
}

.expertise-portfolio .project-item:hover {
  margin-top: -10px;
}

.cat-link {
  display: flex;
}

.cat-link a:first-child {
  margin-right: 4px;
}

.expertise-packages {
  padding: 90px 0px;
}

/* section-digi-content */

.digi-content-item h2 {
  color: var(--c2);
  font-weight: 600;
  margin-bottom: 8px;
}

.digi-content-item p {
  margin-bottom: 10px;
  color: #000;
}

.digi-content-item a {
  border: 1px solid var(--c1);
  padding: 10px 25px;
  display: table;
  color: var(--c2);
  margin-top: 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: 0.5s all;
}

.digi-content-item a:hover {
  background-color: var(--c1);
  color: #fff;
}

.digi-content-sec {
  padding: 90px 0px;
}

.digi-solution-list {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.digi-solution-img span {
  background-color: var(--c2);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.digi-solution-list-main {
  margin-left: 32px;
}

.digi-solution-content h5 {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 600;
}

.digi-solution-content p {
  line-height: 1.5;
}

.digi-content-item {
  padding-right: 80px;
}

.digi-solution-img img {
  filter: brightness(100);
}

/* section-digi-widgets */

.digi-widgets-sec {
  padding: 90px 0px;
  background-color: #f7f2ff;
}

.digi-widgets-sec .digi-content-item {
  text-align: center;
  margin-bottom: 50px;
}

.digi-widgets-item {
  padding: 30px 38px;
  background: #ffffff;
  border-radius: 6px;
  min-height: 307px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.digi-widgets-item h3 {
  color: var(--c2);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 10px;
}

.digi-widgets-item p {
  margin-bottom: 20px;
  color: #000;
}

.digi-widgets-item a {
  color: var(--c2);
  font-weight: 500;
}

.digi-widgets-sec .col-lg-4:nth-child(2) .digi-widgets-item {
  background-color: var(--c2);
  color: #fff;
}

.digi-widgets-sec .col-lg-4:nth-child(2) .digi-widgets-item h3,
.digi-widgets-sec .col-lg-4:nth-child(2) .digi-widgets-item p,
.digi-widgets-sec .col-lg-4:nth-child(2) .digi-widgets-item a {
  color: #fff;
}

.digi-widgets-item img {
  width: 17%;
  margin-bottom: 20px;
}

/* section-inner-packages */

section.packages-page-content {
  padding: 90px 0px 20px 0px;
}

.packages-page-content-title h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
}

.packages-page-content-title h4 {
  color: var(--c1);
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 15px;
}

.packages-page-content-title p {
  margin-bottom: 20px;
}

.packages-page-content-title ul {
  display: flex;
  flex-wrap: wrap;
}

.packages-page-content-title ul li {
  width: 25%;
  margin-bottom: 16px;
  position: relative;
  padding-left: 25px;
  color: rgb(97 97 97);
}

.packages-page-content-title ul li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--c2);
  top: 8px;
  left: 0;
}

.packages-tables tr th h6 {
  font-size: 17px;
  color: #d40968;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.packages-tables tr th {
  text-align: center;
  padding: 2.5rem;
}

.packages-tables tr th span {
  display: block;
  font-size: 18px;
}

.packages-tables tr th strong {
  font-size: 24px;
}

.tabel-body tr {
  color: #616161;
  text-align: center;
}

.tabel-body tr th h5 {
  font-size: 16px;
  margin-bottom: 7px;
  font-weight: 400;
}

.tabel-body th {
  padding: 0.75rem !important;
}

.check-table i {
  color: #03a84e;
  font-size: 20px;
}

.secHead {
  background-color: #d40968;
  border-color: transparent;
}

.secHead td {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

/* section-quote-contact */

.quote-contact {
  padding: 90px 0px;
}

.quote-contact-title h2 {
  font-size: 74px;
  font-weight: 800;
}


.quote-contact-title {
  padding-right: 122px;
}

.quote-contact-info ul li a {
  color: rgb(97 97 97);
  transition: all 0.4s;
  font-size: 17px;
}

.quote-contact-info ul li a i {
  margin-right: 14px;
  color: var(--c1);
}

.quote-contact-info ul li {
  margin-bottom: 12px;
}

.quote-contact-info ul li a:hover {
  color: var(--c1);
}

.quote-social-main ul {
  display: flex;
  gap: 20px;
}

.quote-social-main ul li a {
  font-size: 28px;
  color: var(--c2);
}

.quote-contact-info {
  margin-bottom: 20px;
}

.quote-form-item input,
.quote-form-item textarea,
.quote-form-item select {
  padding: 10px 15px;
  font-size: 15px;
  width: 100%;
  border: 0;
  outline: 0;
  border-bottom: 4px solid var(--c2);
}

.quote-form-item {
  margin-bottom: 12px;
}

.quote-form-item input:focus,
.quote-form-item textarea:focus,
.quote-form-item select:focus {
  border-bottom: 4px solid var(--c1);
}

.quote-submit-btn button {
  border: 0;
  background: var(--grd);
  color: #fff;
  padding: 13px 34px;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-submit-btn input[type="submit"] {
  background: var(--grd);
  color: #fff;
  padding: 12px 31px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 600;
  border: 0;
  background-size: 150%;
  transition: all 0.4s;
}

.quote-submit-btn input[type="submit"]:hover {
  background-position: 100% 150%;
}

.quote-form-item input::placeholder,
.quote-form-item textarea::placeholder {
  color: #000;
}

/* section-socials-widg */

.socials-widg-item a span {
  display: block;
  margin-bottom: 6px;
  font-size: 50px;
  color: #b9b9b9;
}

.socials-widg-item {
  text-align: center;
  width: 20%;
  padding: 22px 0px;
  border-right: 1px solid #d8d8d8;
}

.socials-widg-item a {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--c2);
  font-weight: 500;
}

.socials-widg-item:last-child {
  border: unset;
}

.socials-widg {
  padding: 90px 0px;
}

button.accordion-button {
  background-color: var(--c2) !important;
  color: #fff !important;
}

button.accordion-button.collapsed {
  background-color: #ededed !important;
  color: #000 !important;
}

.contact-help-item:hover {
  border: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

/* bottom-menu */

.bottom-menu {
  display: none;
}

.bottom-menu ul {
  display: flex;
  justify-content: space-around;
  padding: 12px 0px;
}

.bottom-menu ul li {
  width: 23%;
}

.bottom-menu ul li a {
  display: block;
  text-align: center;
  background-color: #0000007d;
  padding: 12px 0px;
  color: #fff;
  font-size: 19px;
}

.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--grd);
  width: 100%;
  z-index: 9999;
}

.bottom-menu ul li a i {
  margin-right: 15px;
}

/* mobile-menu */

.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  width: 100%;
  background-image: url(../images/techno-mobile.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.9s;
  height: 100%;
}

.responsive-menu.open {
  left: 0;
}

.responsive-menu-main {
  text-align: center;
  position: relative;
  height: 100%;
  padding: 50px;
}

.responsive-icon {
  position: absolute;
  top: 31px;
  right: 40px;
}

.responsive-icon a {
  padding: 12px 18px;
  color: var(--c1);
  font-size: 40px;
}

.responsive-links ul li a {
  width: 40%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 12px 20px;
  color: #fff;
  font-size: 15px;
  align-items: center;
}

.responsive-links ul li i {
  position: absolute;
  left: 23%;
  top: 16px;
}

.responsive-links ul li a i {
  position: unset;
}

.responsive-links {
  margin-top: 55px;
}

.responsive-links ul li {
  position: relative;
}

.responsive-links ul li i {
  color: #fff;
}

.wrapper-main {
  overflow: hidden;
}

.resp-social {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: var(--grd);
  left: 0;
}

.resp-social ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.resp-social ul li a {
  padding: 12px;
  color: #fff;
}

.responsive-links ul li a.active i {
  transform: rotate(180deg);
}

.responsive-links ul li a i {
  transition: all 0.4s;
}

.f-acc-card h3 {
  background-color: #8b0745;
  font-size: 17px;
  padding: 12px 10px;
  font-weight: 400;
  position: relative;
}

.f-acc-card {
  background-color: #000;
  border-radius: 0px 0px 15px 15px;
  margin-bottom: 20px;
}

.f-acc-card .footer-links {
  padding: 14px 17px;
}

.f-acc-card .footer-links ul li a {
  padding: 5px 0px;
}

.f-acc-card .footer-links ul li {
  margin: 0px;
  font-size: 15px;
}

.f-acc-card h3:before {
  position: absolute;
  content: "+";
  right: 11px;
  top: 5px;
  font-size: 27px;
}

.f-acc-card h3.active:before {
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  top: 10px;
}

/* why-choose-us */

.why-choose-sec {
  position: relative;
  padding: 90px 0px;
}

.why-us-title-sec .section-title {
  text-align: center;
}

.why-sec-img {
  width: 75%;
  margin-left: auto;
}

.why-sec-title h2 {
  color: #fff;
  padding-right: 370px;
  font-weight: 400;
  height: 135px;
  line-height: 1.3;
  font-size: 33px;
  margin-bottom: 30px;
}

.why-sec-title h2 span {
  font-size: 50px;
  font-weight: bolder;
}

.why-us-bg {
  background-color: var(--c6);
  height: 300px;
  position: absolute;
  top: -6%;
  width: 100%;
  z-index: -1;
}

.why-us-title-sec {
  padding: 70px 0px;
}

.why-choose-sec .slick-dots li button {
  width: 23px;
  height: 3px;
  border: 0;
  color: transparent;
}

.why-choose-sec .slick-dots {
  display: flex;
  gap: 9px;
  margin-top: 40px;
  justify-content: center;
}

.why-choose-sec .slick-dots li {
  font-size: 8px;
}

.why-choose-sec .slick-dots li.slick-active button {
  background-color: gray;
}

.accordion-button:after {
  filter: brightness(100);
}

button.accordion-button.collapsed:after {
  filter: brightness(0);
}

/* website-port */

.website-port {
  padding: 90px 0px;
}

.thankyou-page {
    padding: 90px 0px;
}

.ty-page-content {
    text-align: center;
}

.ty-page-content p {
    margin: 12px 0px;
    font-weight: 600;
}

.ty-page-content a {
    background-color: var(--c2);
    color: #fff;
    padding: 12px 21px;
    font-size: 15px;
    text-transform: uppercase;
    transition: all .5s;
}

.ty-page-content a:hover {
    background-color: var(--c1);
}

.ty-page-content h2 {
    font-weight: 700;
}
.ty-page-content h2 span {
    color: var(--c5);
    text-transform: capitalize;
}
.banner-content-main a i {
    font-size: 25px;
    margin-right: 13px;
}
.testi-item ul {
    display: flex;
    gap: 4px;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid #80808047;
}

.testi-item ul li {
    color: #f3bf2c;
}

.testi-item ul li:last-child {
    color: #80808085;
}
.rat-2 li:nth-child(4) {
    color: #80808085;
}
.copyrights p a {
    color: inherit;
}
.footer-bottom {
    padding: 7px 0px;
    border-top: 1px solid #14374c;
}
.f-part-img img {
    border-radius: 17px;
}

.f-part-img {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.f-contact-info strong {
    display: block;
}
.address-2 {
       margin-top: 20px;
    transition: all 0.5s;
    opacity: 0;
}
.contact-help-item:hover .address-2 {
    opacity: 1;
}
.contact-help-content h5 {
    margin-bottom: 8px;
}

.f-contact-info ul li i {
    font-size: 16px;
    width: 18px;
    margin-right: 20px;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 4px;
    text-align: center;
}
.f-part-img .f-part-img-item img {
    height: auto;
}
.payment-method-list ul {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.payment-method-list ul li a {
    color: #bfbfbf;
    font-size: 28px;
}
.payment-method-list ul li a:hover {
    color: #fff;
}
.f-part-img .f-part-img-item {
    background: #fff;
    width: 60px;
    text-align: center;
    border-radius: 13px;
    padding: 0 8px;
    display: flex;
    align-items: center;
}
.f-part-img .f-part-img-item:last-child {
    padding: 0;
}

/*additional-css*/

.iso-tab {
    width: 33%;
    padding: 0px 15px;
}

.iso-tab .project-item {
    width: 100%;
    margin-bottom: 30px;
}

.gallery-btns ul li a {
    padding: 8px 30px;
    border: 2px solid var(--c2);
    border-radius: 50px;
    font-weight: 600;
    color: var(--c2);
}

.gallery-btns ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.gallery-btns ul li.active a {
    background-color: var(--c2);
    color: #fff;
    border-color: transparent;
}
.port-inner {
    background-color: var(--c6);
}

.port-inner .inner-sec-title h2, .port-inner .inner-sec-title p {
    color: #fff;
}
.port-inner .gallery-btns ul li a {
    border-color: var(--c5);
    color: var(--c5);
}

.port-inner .gallery-btns ul li.active a {
    background-color: var(--c5);
    color: #fff;
}

/* section-app-development */

.app-development {
  padding: 70px 0px;
}
.app-devel-content span {
  color: var(--c4);
  font-weight: 800;
  font-size: 28px;
}
.app-devel-content h2 {
  font-weight: 800;
  font-size: 60px;
  margin-bottom: 15px;
}
.app-devel-item-inner {
  position: relative;
  padding: 0px 12px;
}
.app-devel-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.app-devel-item-content a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}
.app-devel-item-content:hover .app-devel-content {
  visibility: visible;
  opacity: 1;
}
.app-devel-slide .slick-arrow {
  position: absolute;
  top: -9%;
  font-size: 27px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--c5);
  color: var(--c5);
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all 0.5s;
}
.app-devel-slide .slick-prev {
  right: 11%;
}
.app-devel-slide .slick-next {
  right: 3%;
}
.app-devel-slide .slick-arrow:hover {
  background-color: var(--c5);
  color: #fff;
}
.app-development .inner-sec-title {
  margin-bottom: 90px;
}
.app-devel-content p {
  margin-bottom: 15px;
}
.app-devel-content p:last-child {
  margin: 0px;
}
.app-development .app-devel-row {
  margin-bottom: 100px;
}
.app-development .app-devel-row:last-child {
  margin-bottom: 0px;
}
.app-development .app-devel-row:nth-child(odd) .row {
  flex-direction: row-reverse;
}
.app-development .app-devel-row:nth-child(odd) .row .slick-prev {
  left: 3%;
}
.app-development .app-devel-row:nth-child(odd) .row .slick-next {
  left: 11%;
}
.app-devel-slide-main .slick-dots li button {
    border: 0;
    outline: 0;
    background: unset;
    color: transparent;
    background-color: #9f97977d;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.app-devel-slide-main .slick-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}
.app-devel-slide-main .slick-dots li.slick-active button {
    background-color: var(--c2);
}
.app-devel-img a {
    display: block;
}


/*Campaign*/

.campaign .quote-contact-title h2 {
    font-size: 64px;
}
.campaign-packages {
    padding-bottom: 90px;
    padding-top: 20px;}
    
    
/* The container */
.ie {
  display: block;
  position: relative;
  
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.ie input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.ie:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ie input:checked ~ .checkmark {
  background: var(--grd);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ie input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.ie .checkmark:after {
  left: 9px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.map-main iframe {
  display: block;
}

.certified-box h4 {
    font-size: 22px !important;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 30px;
}
.certified-box-images li img {
    width: 95px !important;
    height: 50px;
}
.certified-box-images ul {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
}
.certified-box-images ul li {
    background: #fff;
}
.certified-box {
    background: #031926;
    padding-top: 20px;
}
.f-acc-card .footer-title h4 {
        margin-top: 0px;
        padding-top: 20px;
}
.certified-box .footer-title h4 {
    margin: 0px !important;
    text-transform: uppercase;
    font-size: 30px !important;
    text-align: center;
}
.certified-box .footer-title h5 {
    font-weight: 300;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
}
.certified-box .certified-box-images {margin-top: 8px;}