@import url("https://fonts.googleapis.com/css2?family=Poppins: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;1,900&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lugrasimo&amp;family=Luxurious+Roman&amp;family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Oswald:wght@200..700&amp;family=Poppins: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;1,900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Space+Grotesk:wght@300..700&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lugrasimo&amp;family=Luxurious+Roman&amp;family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Oswald:wght@200..700&amp;family=Poppins: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;1,900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Space+Grotesk:wght@300..700&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;family=Lugrasimo&amp;family=Luxurious+Roman&amp;family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&amp;family=Oswald:wght@200..700&amp;family=Poppins: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;1,900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Space+Grotesk:wght@300..700&amp;display=swap");

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Space Grotesk", sans-serif;
}

/* Root */
:root {
  --link-size: 42px;
  --trans-property: all 0.3s ease;
}

:root {
  --lightgreen: #9fca9f73;
  --lightgray: #f8f8f8;
  --darkgray: #a0a0a0;
  --blue: #00aee6;
  --green: #2baf2b;
  --darkyellow: #ffc715;
  --lightyellow: #feeb14;
  --lightorange: #ffca0a;
  --orange: #ed8b00;
  --lightblue: #e9f5ff;
  --darkblue: #407ec9;
  --white: #fff;
  --black: #000;
  --lightblack: #333333;
  --darkpink: #b60c3c;
  --lightpink: #ef386b;
  --gradient: linear-gradient(-45deg, #f8f2b0, #c3ecff, #ffd8a2, #b5ffb5);
}
/* End Root */

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* Button */
.description,
.link {
  text-align: center;
}

.description {
  font-size: 35px;
}

#more {
  display: none;
}

.btn-all {
  margin: 10px 0;
}

.btn {
  width: 200px;
  border-radius: 10px;
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 15px;
  background-color: var(--black);
  padding: 17px 10px;
  /* margin: 0 auto; */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  z-index: -1;
  background: var(--darkpink);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
/* End Button */

/* Titles */
.primary-title {
  /* position: relative; */
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.secondary-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--darkgray);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.right-img {
  position: relative;
}

.title-liner img {
  position: absolute;
  left: 0;
  z-index: -1;
  /* top: 10px; */
  bottom: 0px;
  /* transform: rotate(-3deg); */
}

span .title-liner img {
  width: 100%;
}

@media (max-width: 576px) {
  .primary-title {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .secondary-title {
    font-size: 35px;
    letter-spacing: 1px;
  }
}

/* End Titles */

/* Preloader
-------------------------------------------------------*/
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 45%;
  top: 40%;
  width: 50px;
  height: 50px;
  font-size: 0;
  /* color: #00c9d0; */
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.lead {
  font-size: 13px;
}

.loader div {
  background-image: url(../images/preloader.svg);
  /* background-color: var(--green); */
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  /* opacity: .5; */
  border-radius: 50%;
  animation-delay: 10s;
  -webkit-animation: ballPulseDouble 10s ease-in-out infinite;
  animation: ballPulseDouble 10s ease-in-out infinite;
}

.loader div:last-child {
  -webkit-animation-delay: -10s;
  animation-delay: -10s;
}

@media (max-width: 576px) {
  .loader {
    left: 30%;
    top: 40%;
  }
}

/* @-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
} */

/* Section */
section {
  padding: 50px 0;
}

@media (max-width: 576px) {
  section {
    padding: 20px 0;
  }
}
/*End Section */

/* header */
.btn a {
  color: var(--white);
  padding: 10px 20px;
  background-color: var(--darkblue);
  border-radius: 40px;
  font-weight: 600;
}

/* /header/ */
.header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--white);
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  height: 98px;
  /* padding: 15px; */
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-radius: 10px;
  height: 98px;
}

.header .logo a {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--darkblue);
  font-weight: 600;
}
.header .logo a img {
  width: 180px;
  margin-top: 10px;
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 39px 0;
  font-size: 16px;
  color: var(--lightblack);
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
  /* color: var(--lightblack); */
  color: #000;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: var(--lightblack);
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: var(--darkblue);
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: var(--darkblue);
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--white);
  padding: 10px 0;
  border-top: 3px solid var(--darkblue);
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.contact-nav {
  display: none;
}
.contact-nav h2 {
  font-size: 25px;
  font-weight: 600;
  position: relative;
}
.contact-nav h2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 2px;
  bottom: 2px;
  background-color: var(--lightblack);
}
.contact-nav a {
  display: flex;
  align-items: center;
  color: var(--lightblack);
  font-size: 18px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.nav-links a i {
  margin-right: 15px;
  color: var(--darkblue);
}
.contact-nav .btn-all {
  margin: 20px 0;
}
.social-nav li {
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-nav li i {
  color: var(--white);
  font-size: 18px;
}
.social-nav {
  display: flex;
  margin-top: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right .contact-whatsapp {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}
.header-right .contact-phone i {
  color: var(--darkblue);
  font-size: 25px;
}

.header-right .call-display span {
  color: var(--darkblue);
  font-size: 20px;
}
.fix-icon {
  position: fixed;
  display: none;
  bottom: 15px;
  right: 20px;
}

.fix-icon .contact-whatsapp,
.fix-icon .contact-phone {
  width: 50px;
  height: 50px;
  margin: 5px 0;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}

.call-display {
  display: flex;
  align-items: flex-start;
}

.call-display span {
  color: var(--darkblue);
}

.nav-btn2 a {
  color: white;
  display: block;
}

.nav-links a {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1300px) {
  .header .menu > .menu-item {
    margin-left: 14px;
  }
  .header .menu > .menu-item > a {
    font-size: 15px;
  }
}
@media (min-width: 1101px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--lightblack);
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: var(--lightblack);
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--lightblack);
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 68px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header-right a span {
  /* font-size: 18px; */
  font-weight: 600;
  color: var(--lightblack);
}

/* /home section/ */
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.html");
  background-position: center top;
  background-size: cover;
}

/* responsive */

@media (max-width: 992px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -300px;
    visibility: hidden;
    width: 300px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: var(--white);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: var(--lightblack);
    padding: 12px 15px;
    border-bottom: 1px solid var(--lightblack);
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid var(--lightblack);
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: var(--lightblack);
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: var(--lightblack);
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
  .contact-nav {
    display: block;
    margin-top: 30px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .header .logo a img {
    width: 140px;
  }
  .header{
    height: 80px;
  }
  .header-main{
    height: 80px;
  }
  .fix-icon {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 2;
  }

  .header-right .contact-whatsapp,
  .header-right .contact-phone {
    display: none;
  }

  .call-display span {
    display: none;
  }
}

/* End Header */
.wow {
  font-family: "Nunito", sans-serif !important;
}
/* banner */
.banner-section {
  background-color: #b2dcff;
  /* background-image: linear-gradient(180deg, #3592c5,#4db5ee, #ffffff); */
  padding: 0px 0 50px 0;
}

.banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin-top: 95px;
}

.banner-content p {
  font-size: 20px;
  margin: 10px 0;
  width: 68%;
}

.banner-content span {
  color: var(--darkpink);
  display: inline-flex;
  align-items: center;
}

.banner-content span::after {
  content: "";
  display: inline-block;
  width: 15px;
  /* max-height: 20px; */
  height: 15px;
  background-color: var(--lightblack);
  margin-left: 4px;
  margin-top: 30px;
  border-radius: 50%;
}

/* .banner-content h1 span::after {
    height: 55px;
} */

.banner-content h2 span::after {
  height: 24px;
}

.banner-content-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-bg {
  background: #ddd;
  background-size: 300%;
  background-image: var(--gradient);
  animation: bg-animation 20s infinite;
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

@media (max-width: 1300px) {
  .banner-content p {
    width: 91%;
  }
}
@media (max-width: 1200px) {
  .banner-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 992px) {
  .banner-content-main {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }

  .banner-content h1 {
    font-size: 48px;
    margin-top: 0;
  }
  .banner-content span::after {
    height: 10px;
    width: 10px;
    margin-top: 25px;
  }
  .banner-content p {
    width: 100%;
  }
  .banner-display {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 40px;
  }
  #demosss {
    font-size: 35px !important;
  }
  .banner-content span::after {
    height: 6px;
    width: 6px;
    margin-top: 16px;
  }
  .banner-svg dotlottie-player {
    height: 300px !important;
  }
  .banner-section {
    padding-top: 0 !important;
  }
}

/* end banner section */

/* inner banner */

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 7, 66, 0.53);
}
.inner-banner {
  height: 300px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/inner-2.jpg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.inner-banner-overlay {
  /* height: 326px; */
  position: relative;
}
.inner-banner-about {
  text-align: center;
  color: var(--black);
  z-index: 99;
  text-decoration: none;
}
/* .inner-banner-about h1:before {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--white);
  position: absolute;
  bottom: 0;
} */
.inner-banner-about h1 {
  font-weight: 500;
  font-size: 45px;
  color: var(--white);
  position: relative;
  margin-top: 25px;
  letter-spacing: 3px;
}
.inner-banner-about ol {
  display: inline-flex;
  padding-top: 15px;
}
.inner-banner-about ol li {
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 1px;
}
.inner-banner-about ol li a {
  color: var(--white);
}
.inner-banner-about ol li i {
  padding: 0 8px;
}
@media (max-width: 576px) {
  .inner-banner {
    height: 250px;
  }
}
/* end inner banner */

/* development */
.development-lottiefiles {
  display: flex;
  justify-content: center;
  align-items: center;
}

.development h1 {
  font-size: 30px;
}

.development p {
  margin: 20px 0;
  font-size: 16px;
  text-align: justify;
  font-weight: 400;
}

.lottiefiles-2 {
  display: none;
}

@media (max-width: 992px) {
  .lottiefiles-1 {
    display: none;
  }

  .lottiefiles-2 {
    display: block;
  }

  .lottiefiles-11,
  .lottiefiles-13,
  .lottiefiles-15,
  .lottiefiles-17,
  .lottiefiles-19 {
    margin-top: -60px;
  }

  .android-content h1 {
    margin-top: -100px;
  }

  .web-development-content h1,
  .digital-marketing-content h1,
  .domain-hosting-content h1 {
    margin-top: -70px;
  }
}

/*end development */

/* client review */

.client-review-card {
  margin-top: 20px;
  position: relative;
  box-shadow: 0px 0px 2px #888888;
  border-radius: 10px;
  overflow: hidden;
}

.client-review .primary-title {
  margin-bottom: 0px;
}

.client-review-content {
  padding: 20px;
}

.client-review .quote-icon i {
  font-size: 30px;
  margin-bottom: 20px;
}

.client-review-card p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 40px;
  height: 150px;
}

.author-info {
  text-align: center;
  color: var(--white);
  padding-bottom: 20px;
}

.client-review .card-1 .quote-icon i {
  color: var(--darkpink);
}

.client-review .card-1 .author-info {
  background-color: var(--darkpink);
}

.client-review .card-2 .quote-icon i {
  color: var(--blue);
}

.client-review .card-2 .author-info {
  background-color: var(--blue);
}

.client-review .card-3 .quote-icon i {
  color: var(--orange);
}

.client-review .card-3 .author-info {
  background-color: var(--orange);
}

.client-review .card-4 .quote-icon i {
  color: var(--green);
}

.client-review .card-4 .author-info {
  background-color: var(--green);
}

.client-review .card-5 .quote-icon i {
  color: var(--darkgray);
}

.client-review .card-5 .author-info {
  background-color: var(--darkgray);
}

.client-review .card-6 .quote-icon i {
  color: var(--darkyellow);
}

.client-review .card-6 .author-info {
  background-color: var(--darkyellow);
}

.author-img {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.author-img img {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.author-social-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.author-info h6 {
  font-size: 12px;
}

.author-social-info a {
  color: var(--white);
}

.author-social-info i {
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid var(--white);
}

.author-img::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 85px;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.author-1::before {
  background-image: url("../images/author-1-wave.svg");
}

.author-2::before {
  background-image: url("../images/author-2-wave.svg");
}

.author-3::before {
  background-image: url("../images/author-3-wave.svg");
}

.author-4::before {
  background-image: url("../images/author-4-wave.svg");
}

.author-5::before {
  background-image: url("../images/author-5-wave.svg");
}

.author-6::before {
  background-image: url("../images/author-6-wave.svg");
}
/* end client review */

/* Client Review */
/* .client-review img {
  width: 100px;
  margin-top: -65px;
}

.client-review-card {
  margin-top: 60px;
  background-color: var(--white);
  box-shadow: 0px 0px 5px -2px rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  color: var(--white);
  position: relative;
  height: 335px;
  margin-bottom: 15px;
}

.client-bio {
  margin: 15px 0;
}
.client-bio h6 a {
  color: var(--darkpink);
}

.client-review-card h4 {
  font-size: 25px;
  letter-spacing: 1px;
  color: var(--black);
}

.client-review-card h6 {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--black);
}

.client-review-card i {
  font-size: 35px;
  color: var(--black);
}

.client-review p {
  margin: 10px 0;
  color: var(--black);
  font-size: 18px;
}

@media (max-width: 1300px) {
  .client-review-card {
    height: 390px !important;
  }
}

@media (max-width: 992px) {
  .client-review-card {
    height: 470px !important;
  }
}

@media (max-width: 768px) {
  .client-review-card {
    height: 586px !important;
  }
}

@media (max-width: 576px) {
  .client-review-card {
    height: 400px !important;
  }
}

@media (max-width: 400px) {
  .client-review-card {
    height: 530px !important;
  }
} */
/* End Client Review */

/* Contact-banner-section */
.contact-banner-section {
  background-color: var(--lightblue);
  /* background-color: #000; */
  padding: 30px 0 !important;
  height: auto;
  position: relative;
}

.content-banner-info {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.content-banner-info h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.content-banner-info p {
  width: 50%;
  text-align: center;
}

.contact-banner-content {
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: auto;
}
.contact-banner-img {
  position: relative;
}

@media (max-width: 768px) {
  .contact-banner-section {
    /* height: 680px !important; */
  }
  .contact-banner-content {
    flex-direction: column-reverse;
    /* display: inline-block; */
    /* height: 608px; */
  }
  .contact-banner-img {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 576px) {
  .contact-banner-section {
    /* height: 480px !important; */
    padding-top: 30px !important;
  }
  .contact-banner-content {
    /* height: 430px; */
  }
  .contact-banner-img {
    margin-bottom: -10px !important;
  }
  .contact-banner-img dotlottie-player {
    margin-bottom: 30px;
    /* height: 300px !important; */
  }

  .content-banner-info h1 {
    font-size: 30px;
  }
  .content-banner-info p {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .contact-banner-img {
    margin-bottom: -25px !important;
  }
  .content-banner-info h1 {
    margin-top: 10px;
    font-size: 25px;
  }
}
/* End Contact-banner-section */

/* blog */
/* .blog-card {
  box-shadow: 0px 0px 2px var(--black);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  transition: 0.4s;
  margin-bottom: 20px;
}

.blog-card img {
  width: 100%;
}

.blog-content {
  padding: 10px;
}

.blog-content p {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 300;
}
.blog-author {
  display: flex;
  margin-bottom: 10px;
}

.blog-author i {
  color: var(--darkblue);
  font-size: 20px;
}

.blog-author h5 {
  margin-left: 10px;
  color: var(--darkblue);
  font-size: 16px;
}
.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
}

.blog .secondary-title{
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: scale(1.07);
} */
/* end blog */

/* tech */
.tech {
  background-color: var(--darkblue);
  color: var(--white);
  padding: 40px 0;
}

.tech img {
  width: 100%;
  vertical-align: middle;
  border-radius: 5px;
}

.tech-img {
  width: 80%;
  max-width: 400px;
  margin: auto;
}

.tech-header {
  font-size: 35px;
}

.tech-para {
  text-align: justify;
  margin: 20px 0;
  line-height: 30px;
}

/* .tech-box {
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .tech .even{
  flex-direction: row-reverse;
} */
@media (max-width: 992px) {
  .tech-img {
    padding: 10px;
    width: 100%;
  }
  .tech-content {
    padding: 10px;
  }

  .tech .even {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .tech-header {
    font-size: 28px;
  }
  .tech-para {
    line-height: 24px;
  }
}
/*end tech */

/* our plans */
.our-plan-box {
  padding: 15px;
  border: 1px solid var(--lightblack);
  border-radius: 10px;
  margin: auto;
  height: 1225px;
}

.our-plan-box h2 {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--darkblue);
  color: var(--white);
  text-align: center;
}
.our-plan-box img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}

.plan-price {
  position: relative;
  overflow: hidden;
  width: 37%;
  margin: auto;
}

h2.check-price {
  background-color: transparent;
  color: var(--darkblue);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  overflow: hidden;
}

h2.line {
  padding: 1px 0;
  position: absolute;
  width: 100%;
  margin-top: -17px;
}

h2.price {
  background-color: transparent;
  color: var(--darkblue);
  display: flex;
  align-items: center;
  justify-content: center;
}

h3.gst {
  background-color: transparent;
  color: var(--lightblack);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.our-plan-box h4 {
  color: var(--lightblack);
  margin: 20px;
  text-align: center;
  font-size: 20px;
}

.our-plan-box ul li i {
  font-size: 18px;
  color: var(--darkblue);
  margin: 3px 6px 0 0;
}

.our-plan-box ul {
  margin: 30px 0;
}

.our-plan-box ul li {
  margin: 15px 0;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
}
.call-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact-by-phone {
  padding: 10px 20px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 600;
  border-radius: 10px;
}
.contact-by-whatsapp {
  width: 50px;
  height: 50px;
  color: var(--white);
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

@media (max-width: 1300px) {
  .plan-price {
    width: 42%;
  }
  .our-plan-box {
    height: 1240px;
  }
}

@media (max-width: 992px) {
  .our-plan-box {
    height: auto;
    margin-bottom: 20px;
  }
  .plan-price {
    width: 20%;
  }
}
@media (max-width: 576px) {
  .plan-price {
    width: 28%;
  }
}

@media (max-width: 450px) {
  .plan-price {
    width: 35%;
  }
}

@media (max-width: 400px) {
  .plan-price {
    width: 40%;
  }
}
/* end our plans */

/* seo plans */

h3.title-seo-box {
  color: var(--darkblue);
  font-size: 20px;
}

.seo-box {
  height: auto;
}
/* end seo plans */

/* Contact Us */
.section-header {
  margin-bottom: 60px;
  position: relative;
}
.section-header h3 {
  font-size: 50px;
  font-weight: 400;
  color: var(--black);
  line-height: 55px;
}
.section-header p {
  font-size: 18px;
  font-weight: 300;
  color: var(--darkgray);
  margin-top: 10px;
  line-height: 32px;
}
.contect-details {
  margin-bottom: 30px;
}

.contect-details h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--darkgray);
  margin-bottom: 8px;
}
.contect-details p {
  color: var(--black);
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}
.contect-details a {
  color: var(--black);
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
}
.contact-item-right {
  background-color: var(--lightblue);
  border-radius: 10px;
}
.contact-items {
  padding: 30px 25px;
}

.contact-item-left {
  padding: 30px 25px;
}
.contact-shape1 {
  position: absolute;
  z-index: -1;
  top: 500px;
  left: -90px;
  animation: updown 4s infinite linear;
}
@keyframes updown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.contact-items h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  margin-bottom: 30px;
  color: var(--black);
}

.contact-items label {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-items input,
textarea {
  padding: 14px 12px;
  width: 100%;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  margin-bottom: 24px;
}
textarea {
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
}
input:focus,
textarea:focus {
  outline: none;
}
.contact-items textarea {
  height: 180px;
}
.half {
  width: 100% !important;
}
.half-box {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.box-50 {
  width: 100%;
  position: relative;
}

.form-control {
  position: absolute;
  left: 0;
  width: 50px;
  height: 48px;
}
@media (max-width: 992px) {
  .contact-us-section {
    padding-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .contact-us-section {
    padding-top: 0 !important;
  }
  .contact-shape1 {
    top: 250px;
  }
  .contect-details p {
    font-size: 20px;
  }
  .contect-details h5 {
    margin-bottom: 2px;
  }
  .contect-details a {
    font-size: 20px;
  }
  .contect-details {
    margin-bottom: 15px;
  }
  .section-header {
    margin-bottom: 20px;
  }
  .section-header h3 {
    font-size: 30px;
    font-weight: 600;
  }
  .contact-items h3 {
    margin-bottom: 20px !important;
  }
  .contact-items input,
  textarea {
    margin-bottom: 8px;
  }
  .contact-items {
    padding: 15px;
  }
  .half-box {
    flex-direction: column;
  }
  .contact-items textarea {
    height: 130px;
  }
}
/* End Contact Us */

/* our service */
.our-service-section .title-liner img {
  z-index: 2;
}
.our-service-section {
  position: relative;
  background-color: var(--lightblue);
}
.service-shape1 {
  position: absolute;
  right: 0;
  /* bottom: 0; */
  animation: up 4s infinite linear;
}
@keyframes up {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(60px);
  }
}
.service-title-first {
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-top: 30px;
}

.service-title-second {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--darkgray);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service-single-box-items {
  padding: 35px;
  background-color: var(--white);
  /* color: var(--black); */
  border-radius: 25px;
  margin-top: 30px;
  transition: 1s;
  height: 300px;
}
.service-single-box-items:hover {
  /* transform: rotate(-2deg); */
  background-color: #adebff;
}

.service-box-titles {
  transition: 1s;
}

.service-single-box-items:hover .service-box-titles {
  transform: translateY(-10px);
}

.service-title h3 {
  margin-left: 15px;
  font-size: 30px;
  color: var(--black);
  text-transform: capitalize;
}
.service-single-box-items p {
  color: var(--black);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin: 15px 0;
}
.service-single-box-items a {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.service-single-box-items a::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--darkpink);
  transition: 0.5s;
  transform: scale(0);
}

.service-single-box-items:hover.service-single-box-items a::after {
  transform: scaleX(1);
}
.service-single-box-items:hover a {
  color: var(--darkpink);
  transform: translateY(-4px);
}
.service-single-box-items a i {
  margin-left: 4px;
}

.service-box-titles {
  display: flex;
  align-items: center;
}

.service-icon img {
  width: 50px;
}

.color1,
.color2,
.color3,
.color4,
.color5,
.color6,
.color7,
.color8 {
  transition: 0.5s;
}

.color1:hover {
  background-color: #fffad2;
}
.color2:hover {
  background-color: #e3d6ff;
}
.color3:hover {
  background-color: #f7e1b5;
}
.color4:hover {
  background-color: #eacbd5;
}
.color5:hover {
  background-color: #b5e4b8;
}
.color6:hover {
  background-color: #fffad2;
}
.color7:hover {
  background-color: #b5e4b8;
}
.color8:hover {
  background-color: #e3d6ff;
}
@media (max-width: 1300px) {
  .service-single-box-items {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .service-single-box-items {
    height: 270px;
  }
  .service-shape1 {
    display: none;
  }
}

@media (max-width: 576px) {
  .service-single-box-items {
    height: 320px;
  }
}
@media (max-width: 400px) {
  .service-single-box-items {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .service-title-first {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .service-title-second {
    font-size: 18px;
    line-height: 25px;
  }
  .service-title h3 {
    font-size: 22px;
  }
}
/* end our service */

/* why choose us section */
.sticky-content p {
  font-size: 18px;
  margin-bottom: 15px;
}
.sticky {
  position: sticky;
  top: 100px;
}
/* .sticky-content h3{
  font-size: 25px;
  margin: 10px 0;
} */
.our-team {
  background-color: var(--darkblue);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.our-team img {
  width: 70px;
  margin-right: 15px;
}
.our-team {
  display: flex;
  align-items: start;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}
.our-team span {
  font-size: 22px;
  /* margin: 15px 0; */
  display: inline-block;
}
.our-team p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .our-team-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .our-team {
    display: block !important;
  }
  .sticky {
    position: static;
  }
  .sticky-content {
    padding: 0 25px;
    margin-bottom: 25px;
  }
}
/*end why choose us section */

/* about us section */
.about-us-box h2 {
  font-size: 56px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
}

.about-experience {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.year-experience {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: var(--darkpink);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: 1s;
  background-size: 2px 5px;
  /* background-image: linear-gradient(
    135deg,
    transparent 48%,
    #fff0f3 56%,
    #464646 55%,
    transparent 0 */
  /* ); */
}

.year-experience:hover {
  transform: scale(1.1);
  transform: translate3d(1ch, 0.1in, 3em);
}

.year-experience h2 {
  font-size: 115px;
  font-weight: 600;
}

.item-experience {
  display: flex;
  align-items: start;
}
.item-experience span {
  font-size: 40px !important;
}
/* .item-experience .counter1{
  color: var(--);
}

.item-experience span{
  color: var(--orange);
} */

.content-experience {
  width: 50%;
  padding: 20px;
}
.content-experience h2 {
  margin-bottom: 10px;
}
.content-experience span {
  font-size: 18px;
}

.about-bottom {
  margin-top: 50px;
}
.about-bottom hr {
  margin-bottom: 30px;
}
.about-bottom-content {
  display: flex;
  margin-bottom: 20px;
}

.about-bottom-content img {
  width: 50px;
}
.about-bottom-content span {
  font-size: 18px;
  padding-right: 20px;
}
.about-bottom-content span span {
  font-weight: 700;
  padding: 0;
}

@media (max-width: 576px) {
  .about-experience {
    flex-direction: column;
    margin-top: 30px;
  }
  .content-experience {
    width: 100%;
  }
  .about-us-box h2 {
    font-size: 35px;
  }
  .about-bottom {
    margin-top: 20px;
  }
}

/* end about us section */

/* Blog section */
.blog-section .title-liner img {
  width: 100px;
  height: 10px;
}

.blog-section {
  position: relative;
  /* padding-bottom: 0; */
}

.blog-section .btn-holder {
  margin: 10px auto;
}
.blog-section .btn-page {
  text-align: center;
  margin-top: 50px;
}

.blog-section .slick-prev,
.blog-section .slick-next {
  display: none !important;
}

.blog-section .btn-all {
  margin-top: 50px;
}
.card img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 100%;
  height: 270px;
  border-radius: 10px;
}
.card,
.card-blog {
  width: 100% !important;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  /* margin: auto; */
  margin-bottom: 30px;
  padding: 10px;
}
.card-blog {
  margin-top: 20px;
}
.blog-card-content {
  padding: 20px 0;
  cursor: pointer;
  background-color: var(--white);
}

.blog-section::before {
  background-image: url("img/pattern-one.html");
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}
.blog-card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
  color: var(--black);
}
.blog-card-content p {
  font-size: 17px;
  color: #666;
  margin-bottom: 20px;
}
.blog-card-content .border {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.admin {
  display: flex;
  justify-content: space-between;
}
.slider-admin-icon {
  display: flex;
}
.slider-admin-icon h6 i {
  margin-right: 20px;
  margin-left: 8px;
}
.admin h6 {
  font-size: 12px;
  color: #888;
}
.btn-all {
  margin-top: 20px;
}

.date-blog {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.blog-card-content a {
  color: var(--darkpink);
}

.title-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.title-button .btn-all {
  margin-top: 0;
}
.title-button .primary-title {
  margin-bottom: 0;
}
.down-btn {
  display: none;
  margin-top: 50px;
}

.home-blog-section .card {
  margin-bottom: 0;
  height: 600px;
}

.blog-page-section .card {
  height: 600px;
}
@media (max-width: 1300px) {
  .home-blog-section .card {
    margin-bottom: 0;
    height: 680px;
  }
  .blog-page-section .card {
    height: 680px;
  }
}
@media (max-width: 768px) {
  .title-button .btn-all {
    display: none;
  }
  .down-btn {
    display: block;
  }
  .blog-page-section .card {
    height: auto;
  }
}
/* End Blog section

/* home banner */

.home-banner-content p {
  text-align: justify;
  margin: 10px 0;
  font-size: 18px;
}

@media (max-width: 992px) {
  .home-banner-box {
    display: flex;
    flex-direction: column-reverse;
  }
  .home-banner {
    padding: 0;
  }
  .home-banner dotlottie-player {
    height: 300px !important;
  }
}
/*end home banner */

/* digital marketing */
.dm-box {
  height: 860px;
}
@media (max-width: 1300px) {
  .dm-box {
    height: 800px;
  }
}
@media (max-width: 992px) {
  .dm-box {
    height: auto;
  }
}
/* end digital marketing */

/* FAQ */
.faq-section .primary-title {
  letter-spacing: 0px;
}

h1.faq-title {
  text-align: center;
  margin: 20px 0;
}

.faq_container {
  border-bottom: 1px solid var(--lightblack);
  margin: 10px 0;
  /* border-radius: 10px; */
  overflow: hidden;
}

.faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /* transition: 1s; */
}
.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.answer {
  padding: 0 10px 20px;
  line-height: 2rem;
  font-size: 16px;
}
.fqa_headline_container h2 span {
  font-weight: 700;
}
.faq_question-text h3 {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--lightblack);
}

.icon-faq.active {
  background: var(--lightblack);
  border: 2px solid var(--lightblack);
}
.icon:hover {
  cursor: pointer;
}
.icon-shape {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--lightblack);
  border-radius: 50%;
}

.icon-faq .icon-shape::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background: var(--lightblack);
  border-radius: 3px;
  transition: all 0.5s ease;
}
.icon-faq .icon-shape::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: var(--lightblack);
  border-radius: 3px;
  transition: all 0.5s ease;
}
.icon-faq .icon-shape.active::before {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}
.icon-faq .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}
@media (max-width: 576px) {
  .faq_question-text h3 {
    font-size: 18px;
  }
  .answer p {
    font-size: 14px;
  }
}
/* End FAQ */

/* Footer */

.footer-section {
  /* background-color: var(--lightgray); */
  background-color: #e9f5ff;
  /* background-image: linear-gradient(to bottom, #ffffff, #3592c5); */
  position: relative;
  /* padding: 100px 0; */
  height: auto;
}

.single-footer-section img {
  width: 200px;
}

.single-footer-section p {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
  color: var(--black);
}

/* .single-footer-social-icon i {
  border: 1px solid var(--black);
  color: var(--black);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 10px;
} */

.footer-links h4 {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Nunito", sans-serif;
}
.footer-links ul li a {
  font-size: 20px;
  color: black;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-links li {
  margin: 12px 0;
  transition: 0.5s;
}
.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links .ci li {
  display: flex;
  align-items: start;
  margin: 10px 0;
}

ul.ci li i {
  border: 1px dashed var(--black);
  color: var(--black);
  width: 40px !important;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.footer-contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-contact-content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
}
.footer-links ul.ci li a {
  font-size: 18px;
  color: black;
  font-weight: 400;
  text-transform: lowercase;
}

.copyright {
  margin-top: 20px;
}

.copyright p {
  text-align: center;
  border-top: 1px solid var(--gray-fourth);
  /* padding: 25px 0; */
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.alibyte-logo img {
  width: 75px;
  vertical-align: middle;
}
@media (max-width: 992px) {
  .footer-section {
    height: auto !important;
  }
  .footer-links {
    margin-bottom: 20px;
  }
  .single-footer-section {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding-bottom: 0 !important;
  }
}
/* End Footer */

.social-icons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 17px 0;
}
.social-icon {
  display: flex;
  position: relative;
  overflow: hidden;
  width: var(--link-size);
  height: var(--link-size);
  /* margin: 8px; */
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: var(--trans-property);
  /* padding: 17px 0; */
}

.social-icon i {
  margin: auto;
  font-size: 24px;
  color: var(--darkpink);
  z-index: 1;
  transition: var(--trans-property);
}
.social-icon:after {
  content: "";
  width: var(--link-size);
  height: var(--link-size);
  position: absolute;
  transform: translate(0, var(--link-size));
  border-radius: 50%;
  transition: var(--trans-property);
}
.social-icon.twitter:after {
  background-color: var(--darkpink);
}
.social-icon.youtube:after {
  background-color: var(--darkpink);
}
.social-icon.linkedin:after {
  background-color: var(--darkpink);
}
.social-icon.instagram:after {
  background-color: var(--darkpink);
}
.social-icon.facebook:after {
  background-color: var(--darkpink);
}
/*** Animations ***/
.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}
.social-icon:hover i {
  color: var(--white);
}
.social-icon:hover:after {
  transform: translate(0) scale(1.2);
}
path[Attributes] {
  fill: rgb(255, 255, 255, 0);
  fill-opacity: 0;
}
g {
  opacity: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 40px 0;
}

.pagination ul {
  height: 56px;
  border-radius: 6px;
  border: 1px solid #a9a9a9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* padding: 0 10px; */
  background-color: var(--white);
}
.pagination ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #a9a9a900;
  color: var(--title-color);
  transition: 0.3s ease-in-out;
  border-radius: 6px;
}

.pagination ul li:hover {
  color: var(--blue);
  border: 1px solid var(--blue);
  cursor: pointer;
}

.pagination ul li:first-child,
.pagination ul li:last-child {
  gap: 5px;
  width: 83px;
  height: 40px;
  color: #6b7280;
  border: 1px solid #00000000;
}
.pagination ul li:first-child:hover,
.pagination ul li:last-child:hover {
  /* gap: 10px; */
  width: 83px;
  height: 40px;
  color: var(--blue);
}
.pagination2 {
  display: none;
}
@media (max-width: 576px) {
  .pagination2 {
    display: block !important;
  }
  .pagination {
    display: none;
  }
}

/* full detail of events */
.event-detail-section {
  padding-top: 10px;
}
h2.primary-title {
  font-size: 36px;
  /* font-family: Lexend-Regular; */
  color: var(--title-color);
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif !important;
}

ul.date-time {
  /* font-family: Lexend-Regular; */
  color: var(--primary-color);
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}
ul.date-time li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 18px;
}

.event-detail-img img {
  width: 100%;
  height: 100%;
}

.event-full-detail p {
  margin: 30px 0;
  font-size: 17px;
  font-family: "Nunito", sans-serif !important;
  line-height: 25px;
  /* font-family: Lexend-Light; */
  font-weight: 500;
  color: var(--text-color);
}
.event-full-detail h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.event-full-detail span {
  font-weight: 800;
}
.event-full-detail ul li {
  list-style: disc;
  margin: 0 0 0 30px;
  font-size: 17px;
  line-height: 25px;
  /* font-family: Lexend-Light; */
  font-family: "Nunito", sans-serif !important;
  font-weight: 500;
  color: var(--text-color);
}
.event-full-detail ul li:first-child {
  margin: 0 0 30px 30px;
}

.related-events {
  background: #f2f7fa;
}

.related-events h3 {
  border: 1px solid #e4ecf9;
  padding: 20px;
  /* font-family: Lexend-Regular; */
  color: var(--title-color);
  font-weight: 600;
}

.related-events ul {
  padding: 0 20px;
}

.related-events ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e4ecf9;
  display: flex;
  gap: 16px;
}
.related-events ul li img {
  width: 90px;
  height: 80px;
}

.related-event-detail .date {
  font-size: 14px;
  /* font-family: Lexend-Regular; */
  color: var(--darkpink);
}

.related-event-detail .date i {
  margin-right: 7px;
}

.related-event-detail p {
  /* font-family: Lexend-Regular; */
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  color: var(--black);
}

ul.share-icon {
  padding: 20px;
  display: flex;
  gap: 20px;
}

ul.share-icon li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary-color);
}

/* end full detail of events */

/* Pages links */
.pages-link {
  padding: 0;
}
.pages-link ul {
  height: 55px;
  display: flex;
  align-items: center;
}

.pages-link ul span {
  /* font-family: Lexend-Regular; */
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: left;
  margin: 0 10px;
  color: var(--black);
}

.pages-link ul li a {
  /* font-family: Lexend-Regular; */
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: var(--black);
}

.pages-link .open-pages {
  /* font-family: Lexend-Light; */
  color: var(--black);
}

@media (max-width: 576px) {
  .pages-link {
    display: none;
  }
  ul.date-time li:nth-child(1),
  ul.date-time li:nth-child(2) {
    display: none;
  }
  h2.primary-title {
    font-size: 30px;
  }
}
/* Pages links End Here */

/* language box */

.language-section {
  padding: 0;
}
.language-box {
  padding: 20px;
  border: 1px solid var(--darkblue);
  border-radius: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.language-content h3 {
  margin: 20px 0;
  font-size: 34px;
}

.language-box-2 {
  margin-top: 75px;
}

.language-box-3 {
  margin-top: 150px;
}
.language-box-4 {
  margin-top: 225px;
}

.language-img img {
  width: 50%;
}

.digital-marketing-task .language-content h3 {
  font-size: 26px;
}
.object-c img {
  width: 100%;
}
@media (max-width: 992px) {
  .language-box-2,
  .language-box-3,
  .language-box-4 {
    margin-top: 0;
  }
}
/* end language box */


/* popup last */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.732);
  z-index: 999;
}

.popup {
  display: none;
  position: fixed;
  width:50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  padding: 30px 20px;
  background-color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.popup-content {
  text-align: center;
}

.popup-content input {
  width: 100%;
  border: 0;
  padding: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 17px;
  font-family: "Space Grotesk", sans-serif;
}

.close {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--darkpink);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.popup-btn-last {
  font-family: "Space Grotesk", sans-serif;
  padding: 14px 50px;
  border: none;
  background-color: var(--darkpink);
  font-size: 18px;
  color: var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

@media (max-width: 1400px) {
  .popup{
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .popup{
    width: 70%;
  }
}
@media (max-width: 992px) {
  .popup{
    width: 90%;
  }
}
@media (max-width: 768px) {
  .popup{
    width: 95%;
  }
}
/* popup last end */