@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0069ff;
  --black: #040404;
  --white: #fff;
  --bg: #d6efff;
  --bg2: #edf9ff;
  --border: #d1d1d1;
  --border2: #e7e7e7;
  --text2: #3d3d3d;
  --text3: #6d6d6d;
  --gradient: linear-gradient(94deg, #0069ff 0%, #233886 99.66%);
  --primary-font: "Kanit";
  --secondary-font: "Saira";
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

p,
h5,
h6 {
  font-family: var(--secondary-font);
}

/* Hero Section Start */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 90vh;
}

.hero-section .shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.hero-section .shape1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-section .shape1 img,
.hero-section .shape2 img {
  width: 160px;
}

.hero-head {
  font-size: 2.6em;
  font-weight: bold;
}

.hero-head span {
  color: var(--primary-color);
}

.hero-text {
  font-weight: 400;
  padding: 10px 0 15px;
  margin: 0;
}

/* .speciality_hero_content {
  margin-bottom: 50px;
} */

.speciality_hero_content p {
  display: flex;
  align-items: center;
  font-family: var(--secondary-font);
  color: var(--black);
  font-size: 1em;
}

.speciality_hero_content img {
  width: 20px;
  margin-right: 10px;
}

.hero-button {
  position: relative;
  display: inline-block;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 8px 10px 8px 20px;
  margin-bottom: 20px;
  transition: 0.5s;
}

.hero-button:hover svg path {
  fill: var(--black);
  stroke: var(--black);
}

.hero-button:hover span {
  color: var(--white);
}

.hero-button svg path {
  transition: 0.4s;
}

.hero-button svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: contain;
  z-index: -1;
}

.hero-button img {
  width: 30px;
  aspect-ratio: 16 /16;
  z-index: 1;
  margin-left: 6px;
}

.hero-button span {
  z-index: 1;
  color: var(--white);
  transition: 0.4s;
}

.hero-section .others {
  width: 90%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 100px;
}

.hero-section .others .trustpilot {
  display: inline-block;
  text-decoration: none;
}

.hero-section .others .trustpilot img {
  display: block;
  margin: auto;
  width: 170px;
  background-size: contain;
  object-fit: contain;
}

.hero-section .others .trustpilot p {
  font-size: 16px;
  text-align: center;
  font-family: var(--secondary-font);
  color: #888888;
  margin: 0;
  padding-top: 10px;
}

.hero-img img {
  width: 100%;
}

.speciality_hero_content i {
  color: var(--primary-color);
  font-size: 1.2rem;
  padding-right: 10px;
}

.hero-bottom img {
  width: 100%;
  background-size: cover;
}

@media screen and (max-width: 990px) {
  .hero-section {
    padding: 80px 0;
    height: auto;
  }

  .hero-head {
    font-size: 2.2em;
  }

  .hero-img img {
    width: 90%;
    display: block;
    margin: 80px auto 0;
  }

  .hero-section .others {
    width: 100% !important;
    gap: 10px;
    margin-top: 40px;
    justify-content: space-between;
  }

  .hero-section .others .trustpilot {
    display: inline-block;
    text-align: center;
    margin-top: -40px;
  }

  .hero-section .others .trustpilot img {
    width: 150px;
  }
}

@media screen and (max-width: 500px) {
  .hero-section .others .trustpilot p {
    font-size: 12px;
  }

  /* .hero-section .others .trustpilot img {
    width: 120px;
  } */
}

/* Hero Section End */

/* performance Progress Start */
.performance {
  width: 100%;
  padding-top: 80px;
}

.performance .performance-wrap {
  position: relative;
  max-width: 100%;
  background: var(--black);
  text-align: center;
  border-radius: 36px;
  padding: 60px 20px;
}

.performance .performance-wrap svg {
  width: 140px;
  height: 140px;
}

.performance .performance-wrap .shape1 {
  position: absolute;
  right: 0;
  top: 0;
}

.performance .performance-wrap .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.performance .path-animation {
  position: absolute;
  opacity: 0;
  transform: translate(100%, 100%);
  animation: moveDiagonally 3s ease infinite;
  -webkit-animation: moveDiagonally 3s ease infinite;
}

.path-animation:nth-child(1) {
  animation-delay: 0.4s;
}

.path-animation:nth-child(2) {
  animation-delay: 0.7s;
}

.path-animation:nth-child(3) {
  animation-delay: 1s;
}

@keyframes moveDiagonally {
  0% {
    opacity: 0;
    transform: translate(100%, -100%);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(100%, -100%);
  }
}

.performance .path-animation2 {
  position: absolute;
  opacity: 0;
  transform: translate(100%, 100%);
  animation: moveDiagonally2 3s ease infinite;
  -webkit-animation: moveDiagonally2 3s ease infinite;
}

.path-animation2:nth-child(1) {
  animation-delay: 0.3s;
}

.path-animation2:nth-child(2) {
  animation-delay: 0.6s;
}

.path-animation2:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes moveDiagonally2 {
  0% {
    opacity: 0;
    transform: translate(-100%, 100%);
    -webkit-transform: translate(-100%, 100%);
    -moz-transform: translate(-100%, 100%);
    -ms-transform: translate(-100%, 100%);
    -o-transform: translate(-100%, 100%);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    opacity: 0;
    transform: translate(-100%, 100%);
  }
}

.animate-updown {
  animation: updown 1.5s ease-in-out infinite;
}

.performance .performance-wrap .wrapper {
  display: block;
  margin: auto;
  max-width: 800px;
}

.performance .performance-wrap h2 {
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 20px;
}

.performance .performance-wrap p {
  font-size: 16px;
  color: var(--border);
  margin-bottom: 40px;
  font-family: var(--secondary-font);
}

.performance .bar-container {
  display: flex;
  align-items: center;
  margin: 8px 0;
  border-radius: 10px;
}
.performance .icon {
  width: 40px;
  height: 40px;
  background: #ffffff0c;
  border: 1px solid #4f4f4f;
  border-radius: 6px;
  margin-right: 10px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.performance .icon img {
  width: 100%;
  background-position: center;
  background-size: contain;
  object-fit: contain;
}
.performance .progress-bar {
  flex-grow: 1;
  height: 24px;
  border-radius: 6px;
  position: relative;
  background: #4f4f4f;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.performance .fill {
  height: 100%;
  position: absolute;
  border-radius: 4px;
  left: 0;
  width: 0%;
  transition: width 2s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.performance .value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: bold;
}

.performance .bar-1 .fill {
  background: #0069ff;
}
.performance .bar-2 .fill {
  background: #34a853;
}
.performance .bar-3 .fill {
  background: #212083;
}
.performance .bar-4 .fill {
  background: #f7a80d;
}
.performance .bar-5 .fill {
  background: #0089d6;
}

@media screen and (max-width: 768px) {
  .performance .performance-wrap h2 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

/* performance End */

/* Counter Section Start */
.counter-sec {
  margin-top: 80px;
}

.counter-sec .counter-section {
  position: relative;
  background-color: var(--bg);
  padding: 40px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0px auto;
  max-width: 900px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.counter-sec .counter-section .shape1 {
  position: absolute;
  left: 10px;
  top: 10px;
}

.counter-sec .counter-section .shape1 svg {
  width: 70px;
  height: 70px;
}

.counter-sec .counter-section .shape2 {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.counter-sec .counter-section .shape2 svg {
  width: 50px;
  height: 50px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.counter-sec .shape2 {
  display: inline-block;
}

.counter-sec .scale-path {
  animation: scaleZoom 3s infinite ease-in-out;
  transform-origin: center center;
  -webkit-animation: scaleZoom 3s infinite ease-in-out;
}

@keyframes scaleZoom {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* ........ */
.counter-sec .shape1 path {
  animation: rotate 5s linear infinite;
  transform-origin: center;
  -webkit-animation: rotate 5s linear infinite;
}

.counter-sec .shape1 path:nth-child(1) {
  transform-origin: 41.5px 46px;
}
.counter-sec .shape1 path:nth-child(2) {
  transform-origin: 86px 108px;
}
.counter-sec .shape1 path:nth-child(3) {
  transform-origin: 14.5px 111.5px;
}

.counter-sec .section-title {
  font-size: 2.5rem;
  color: var(--black);
  font-family: var(--primary-font);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.counter-sec .section-description {
  font-size: 16px;
  color: var(--text3);
  margin-bottom: 40px;
  font-family: var(--secondary-font);
}

.counter-sec .counter-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.counter-sec .counter-box {
  width: 160px;
}

.counter-sec .counter {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
}

.counter-sec .counter-box p {
  font-size: 16px;
  color: #5d5d5d;
  font-family: var(--secondary-font);
  margin-top: 8px;
}

.counter-sec .counter-box .plus {
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .counter-sec .counter-box {
    width: 140px;
  }

  .counter-sec .counter-section {
    padding: 20px;
  }

  .counter-sec .section-title {
    font-size: calc(1.375rem + 1.5vw);
  }
}
/* Counter Section End */

/* Pricing Section Start */

.pricing-section {
  margin-top: 80px;
  width: 100%;
}

.pricing-section .pricing_header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section .pricing_header h1 {
  color: var(--black);
}

.pricing-section .hosting-card {
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  text-align: left;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.4s;
}

.pricing-section .hosting-card:hover {
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.pricing-section .hosting-card.active .card-head {
  background: var(--primary-color);
}

.pricing-section .hosting-card.active .price,
.pricing-section .hosting-card.active .price span,
.pricing-section .hosting-card.active .sub-title {
  color: var(--white);
}

.pricing-section .hosting-card.active .price small {
  color: var(--border);
}

.pricing-section .hosting-card:hover .card-head {
  background: var(--primary-color);
}

.pricing-section .hosting-card:hover .price,
.pricing-section .hosting-card:hover .price span,
.pricing-section .hosting-card:hover .sub-title {
  color: var(--white);
}

.pricing-section .hosting-card:hover .price small {
  color: var(--border);
}

.pricing-section .hosting-card .card-head {
  width: 100%;
  padding: 20px;
  background: var(--bg);
  transition: 0.4s;
}

.pricing-section .hosting-card .title {
  display: inline-block;
  font-size: 18px;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 400;
  margin: 0;
  transition: 0.4s;
}

.pricing-section .hosting-card .sub-title {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 400;
  margin-top: 10px;
  transition: 0.4s;
}

.pricing-section .hosting-card .price {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0px 0px 0px;
  transition: 0.4s;
}

.pricing-section .hosting-card .price span {
  font-size: 36px;
  color: var(--black);
  font-family: var(--primary-font);
  transition: 0.4s;
}

.pricing-section .hosting-card .price small {
  font-size: 14px;
  color: #6d6d6d;
  transition: 0.4s;
}

.pricing-section .hosting-card .features {
  list-style: none;
  padding: 20px;
  margin: 0px;
}

.pricing-section .hosting-card .features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text3);
  font-family: var(--secondary-font);
}

.pricing-section .hosting-card .features i {
  color: #0073ff;
  background: var(--bg);
  padding: 6px;
  font-weight: 600;
  margin-right: 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.pricing-section .hosting-card .button {
  margin: 0px 20px 20px 20px;
}

.pricing-section .hosting-card .get-btn {
  position: relative;
  display: inline-block;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 10px 0px;
  transition: 0.5s;
  width: 180px;
}

.pricing-section .hosting-card .get-btn:hover svg path {
  fill: var(--black);
  stroke: var(--black);
}

.pricing-section .hosting-card .get-btn span {
  position: relative;
  z-index: 1;
  margin: 0px 4px 0px 22px;
}

.pricing-section .hosting-card .get-btn:hover span {
  color: var(--white);
}

.pricing-section .hosting-card .get-btn svg path {
  transition: 0.4s;
  width: 100%;
  height: 100%;
}

.pricing-section .hosting-card .get-btn svg {
  position: absolute;
  background-size: cover;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
}

.pricing-section .hosting-card .get-btn img {
  width: 30px;
  aspect-ratio: 16 / 16;
  z-index: 1;
  margin-left: 6px;
  position: relative;
}

/* Pricing Section End */

/* Hosting Options Start */

#hosting_option {
  padding: 80px 0 0;
}

#hosting_option .hosting_option_header {
  margin-bottom: 30px;
}

#hosting_option .hosting_option_header h1 {
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 20px;
}

.hosting_option_header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 30px;
}

.hosting_options_content h1 {
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 2rem;
}

.hosting_options_content p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 30px;
}

.hosting_options h4 {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin: 10px 0;
}

.hosting_options_content .tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hosting_options_content .tabs .tab {
  display: inline-block;
  padding: 10px;
  border-radius: 12px;
  background: #f6f6f6;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--black);
  border: 1px solid #888888;
  transition: 0.4s;
}

.hosting_options_content .tabs .active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.hosting_options_content .tabs .tab:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

#hosting_option .terminal-wrap {
  background: var(--black);
  border-radius: 24px;
  padding: 20px;
  overflow-y: auto;
  height: 400px;
}

#hosting_option #terminal {
  background: var(--black);
  font-family: var(--secondary-font);
  color: #27e638;
  font-family: monospace;
  padding: 20px;
  height: 300px;
  overflow-y: scroll;
  border-radius: 5px;
  margin-top: 20px;
  text-align: left;
}

#hosting_option .benchmark-button {
  position: relative;
  display: inline-block;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 10px 0px;
  transition: 0.5s;
  width: 200px;
}

#hosting_option .benchmark-button:hover svg path {
  fill: var(--black);
  stroke: var(--black);
}

#hosting_option .benchmark-button:hover span {
  color: var(--white);
}

#hosting_option .benchmark-button svg path {
  transition: 0.4s;
}

#hosting_option .benchmark-button svg {
  position: absolute;
  background-size: cover;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  z-index: -1;
}

@media screen and (max-width: 990px) {
  #hosting_option .hosting_option_header h1 {
    font-size: 2rem;
  }
}

/* Hosting Options End */

/* data center Start */

#data_centers {
  position: relative;
  margin: 80px 0 30px;
}

#data_centers .shape {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

#data_centers .shape img {
  width: 160px;
}

#data_centers .hosting_option_header {
  text-align: center;
}

.data_center {
  position: relative;
  margin-top: 50px;
  user-select: none;
}

.data_center img {
  width: 100%;
  user-select: none;
}

.country_location::before,
.country_location::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: -1;
  opacity: 0.7;
}

.country_location::before {
  animation: pulse 4s ease-out infinite;
}

.country_location::after {
  animation: pulse 4s 2s ease-out infinite;
}

.country_location {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 99;
  cursor: pointer;
}

.usa {
  top: 35%;
  left: 20%;
}

.germany {
  top: 30%;
  left: 50%;
}

.bangladesh {
  right: 26%;
  top: 47%;
}

.singapore {
  right: 21%;
  top: 62%;
}

@keyframes pulse {
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.country_desc {
  width: 140px;
  height: 35px;
  padding: 5px;
  border: 1px solid var(--primary-color);
  border-radius: 3px;
  font-family: var(--secondary-font);
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  background-color: var(--white) !important;
  position: absolute;
  top: -40px;
  left: 10px;
}

.country_desc img {
  width: 35px;
  margin-right: 6px;
}

@media screen and (max-width: 992px) {
  .country_desc {
    width: 75px;
    height: 25px;
    padding: 3px;
    font-size: 0.6rem;
  }

  .country_desc img {
    width: 12px;
    margin-right: 3px;
  }

  #data_centers .shape img {
    width: 100px;
  }
}

/* data center End */

/* Security Start */
.security {
  width: 100%;
  margin-top: 80px;
}
.security .wrapper {
  width: 100%;
  background: var(--bg2);
  border-radius: 24px;
  padding: 80px 40px;
}
.security .wrapper .image {
  width: 100%;
}

.security .header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0px;
}

.security .header h1 {
  font-size: 2.5rem;
  color: var(--black);
}

.security .wrapper .image svg {
  width: 100%;
}

#animatedPath2 {
  stroke: rgb(62, 174, 248);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 5s linear infinite;
  -webkit-animation: draw 5s linear infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media screen and (max-width: 992px) {
  .security .wrapper {
    padding: 40px 20px;
  }
  .security .header h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  .security .header {
    margin-top: 40px;
  }
}
/* Security End */

/* Animate Section Start */
.animate-sec {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0;
  margin-top: 80px;
}
.animate-sec .bg-shape1 {
  position: absolute;
  right: 0px;
  top: 20px;
}
.animate-sec .bg-shape1 svg {
  width: 100px;
  height: 100px;
}
.animate-sec .bg-shape2 {
  position: absolute;
  left: 0px;
  bottom: 20px;
}
.animate-sec .bg-shape2 svg {
  width: 100px;
  height: 100px;
}

.animate-sec .header {
  text-align: center;
  margin-bottom: 40px;
}

.animate-sec .header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--border);
  font-size: 1rem;
  max-width: 800px;
  display: block;
  margin: auto;
  margin-bottom: 0px;
}

.animate-sec .header h1 {
  font-size: 2.5rem;
  color: var(--white);
}

.animate-sec .row {
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-image: linear-gradient(
      to top,
      rgba(2, 8, 15, 0.5) 10%,
      #6d6d6d 50%,
      #6d6d6d 50%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;
}

.animate-sec .col-lg-6:nth-child(1) {
  border-right: 1px solid transparent;
  border-image: linear-gradient(
      to top,
      rgba(2, 8, 15, 0.5) 10%,
      #6d6d6d 50%,
      #6d6d6d 50%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;
  padding-right: 0px;
}

.animate-sec .col-lg-6:nth-child(2) {
  padding-left: 0px;
}

.animate-sec .col-lg-6:nth-child(1) .wrap-1 {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      to right,
      rgba(2, 8, 15, 0.5) 10%,
      #6d6d6d 100%,
      #6d6d6d 50%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;
  padding-right: 30px;
}

.animate-sec .col-lg-6:nth-child(2) .wrap-1 {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      to left,
      rgba(2, 8, 15, 0.5) 10%,
      #6d6d6d 50%,
      #6d6d6d 100%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;
  padding-left: 30px;
}

.animate-sec .animate-wrap .wrap-1,
.animate-sec .animate-wrap .wrap-2 {
  padding: 40px 20px;
}
.animate-sec .animate-wrap svg {
  width: 100%;
}

.animate-sec .animate-wrap .title {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  font-family: var(--primary-font);
  text-align: left;
  margin-bottom: 18px;
}

.animate-sec .animate-wrap .desc {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--border);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Shape 1 svg Animation Start */
#cursor {
  transform-origin: center;
  animation: moveCursor 2s infinite backwards;
}

@keyframes moveCursor {
  0% {
    transform: translate(180px, 80px);
    -webkit-transform: translate(180px, 80px);
    -moz-transform: translate(180px, 80px);
    -ms-transform: translate(180px, 80px);
    -o-transform: translate(180px, 80px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(180px, 80px);
  }
}

#dropdowns {
  transform-origin: center;
  animation: dropdowns 2s infinite backwards;
  opacity: 0;
  animation-delay: 2.3s;
}

@keyframes dropdowns {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60);
    -moz-transform: translateY(-60);
    -ms-transform: translateY(-60);
    -o-transform: translateY(-60);
  }
  50% {
    opacity: 1;
  }
}
/* Shape 1 svg Animation End */

/* Shape 2 svg Animation Start */
#cursor2 {
  transform-origin: center;
  animation: moveCursor2 4s infinite backwards; /* Increased duration to 4s for more steps */
  -webkit-animation: moveCursor2 4s infinite backwards;
}

@keyframes moveCursor2 {
  0% {
    transform: translate(210px, 180px);
    -webkit-transform: translate(210px, 180px);
    -moz-transform: translate(210px, 180px);
    -ms-transform: translate(210px, 180px);
    -o-transform: translate(210px, 180px);
  }
  25% {
    transform: translateY(180px, 80px);
    -webkit-transform: translateY(180px, 80px);
    -moz-transform: translateY(180px, 80px);
    -ms-transform: translateY(180px, 80px);
    -o-transform: translateY(180px, 80px);
  }
  50% {
    transform: translate(10px, 20px);
    -webkit-transform: translate(10px, 20px);
    -moz-transform: translate(10px, 20px);
    -ms-transform: translate(10px, 20px);
    -o-transform: translate(10px, 20px);
  }
  75% {
    transform: translate(180px, 40px);
    -webkit-transform: translate(180px, 40px);
    -moz-transform: translate(180px, 40px);
    -ms-transform: translate(180px, 40px);
    -o-transform: translate(180px, 40px);
  }
  100% {
    transform: translate(80px, 80px);
    -webkit-transform: translate(80px, 80px);
    -moz-transform: translate(80px, 80px);
    -ms-transform: translate(80px, 80px);
    -o-transform: translate(80px, 80px);
  }
}

.light-bounce3 {
  animation: light-bounce2 2s infinite;
  -webkit-animation: light-bounce3 2s infinite;
}
@keyframes light-bounce3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

/* Shape 2 svg Animation End */

/* Shape 3 svg Animation Start */
.light-bounce4 {
  animation: light-bounce4 2s infinite;
  -webkit-animation: light-bounce4 2s infinite;
}
@keyframes light-bounce4 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}
.light-bounce5 {
  animation: light-bounce5 2s infinite;
  animation-delay: 1s;
}
@keyframes light-bounce5 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

#cursor3 {
  transform-origin: center;
  animation: moveCursor3 4s linear infinite;
  -webkit-animation: moveCursor3 4s infinite backwards;
}

@keyframes moveCursor3 {
  0% {
    transform: translate(200px, -110px);
  }
  40% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(-200px, -110px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Shape 3 svg Animation End */

/* Shape 4 svg Animation Start */

#animatedPath3 {
  stroke: #7e7e7e;
  stroke-width: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw3 5s linear infinite;
  -webkit-animation: draw3 5s linear infinite;
}

@keyframes draw3 {
  to {
    stroke-dashoffset: 0;
  }
}

#cursor4 {
  transform-origin: center;
  animation: moveCursor4 4s linear infinite;
}

@keyframes moveCursor4 {
  0% {
    transform: translate(180px, -80px);
    -webkit-transform: translate(180px, -80px);
    -moz-transform: translate(180px, -80px);
    -ms-transform: translate(180px, -80px);
    -o-transform: translate(180px, -80px);
  }
  40% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(-200px, -110px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse2 {
  animation: pulse2 1.6s infinite;
  -webkit-animation: pulse2 1.6s infinite;
}

@keyframes pulse3 {
  0% {
    transform: scale(1);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse3 {
  animation: pulse3 1.6s infinite;
  -webkit-animation: pulse3 1.6s infinite;
}

@keyframes pulse4 {
  0% {
    transform: scale(1);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse4 {
  animation: pulse4 1.7s infinite;
  -webkit-animation: pulse4 1.7s infinite;
}

/* Shape 4 svg Animation End */
@media screen and (max-width: 992px) {
  .animate-sec .bg-shape1 svg {
    width: 60px;
    height: 60px;
  }
  .animate-sec .bg-shape2 svg {
    width: 60px;
    height: 60px;
  }
}
/* Animate Section End */

/* Testimonial Start */
.client-testimonial {
  width: 100%;
  margin-top: 80px;
}
.security .wrapper {
  width: 100%;
}

.client-testimonial .header {
  text-align: left;
}

.client-testimonial .header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0px;
}

.client-testimonial .header h1 {
  font-size: 2.5rem;
  color: var(--black);
}

.testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-grid svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.testimonial-grid .testimonial-card {
  border: 1px solid var(--border2);
}

.testimonial-card:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.testimonial-card:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.testimonial-card:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.testimonial-card:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.testimonial-card:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.testimonial-card:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

.client-testimonial .testimonial-card {
  width: 100%;
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.client-testimonial .testimonial-card:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.client-testimonial .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-testimonial .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-testimonial .user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-testimonial .user-details {
  display: flex;
  flex-direction: column;
}

.client-testimonial .user-details h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--primary-font);
  text-align: left;
  margin: 0px;
}

.client-testimonial .user-details p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: var(--text2);
  margin: 0px;
}

.client-testimonial .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
}

.testimonial-card .rate {
  color: var(--text3);
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 400;
}

.client-testimonial .rating img {
  width: 16px;
  height: 16px;
}

.client-testimonial .testimonial-text {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 0px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .testimonial-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .testimonial-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .testimonial-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .testimonial-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }

  .testimonial-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 4 / 6;
  }

  .testimonial-card:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 4 / 6;
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px !important;
  }

  .testimonial-card {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }

  .testimonial-grid svg {
    width: 100%;
  }

  .client-testimonial .header {
    text-align: center;
  }

  .client-testimonial .header h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

/* Testimonial End */

/* Tab Menu Start */
.tab-wrapper {
  position: relative;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}
.tab-wrapper .shape {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-30%);
  z-index: -1;
  -webkit-transform: translateY(-30%);
  -moz-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  -o-transform: translateY(-30%);
}
.tab-wrapper .shape svg {
  width: 100px;
  height: 100px;
}
.tab-wrapper .header {
  text-align: center;
  margin-bottom: 40px;
}

.tab-wrapper .header p {
  max-width: 850px;
  display: block;
  margin: 0px auto;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0px;
}

.tab-wrapper .header h1 {
  font-size: 2.5rem;
  color: var(--black);
}
.tab-wrapper .tabs {
  width: 100%;
}

.tab-wrapper .tab-btn {
  position: relative;
  display: inline-block;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 10px 0px;
  transition: 0.4s;
  width: 150px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.tab-wrapper .tab-btn:hover svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.tab-wrapper .tab-btn span {
  position: relative;
  color: var(--black);
  z-index: 1;
  margin: 0px 20px;
  transition: 0.4s;
}

.tab-wrapper .tab-btn:hover span {
  color: var(--white);
}

.tab-wrapper .tab-btn svg path {
  transition: 0.4s;
}

.tab-wrapper .tab-btn svg {
  position: absolute;
  background-size: cover;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
}

.tab-wrapper ul#tabs-nav {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  overflow: auto;
  margin-bottom: 40px;
}

.tab-wrapper ul#tabs-nav li {
  font-weight: bold;
  margin-right: 2px;
  border-radius: 5px 5px 5px 5px;
  cursor: pointer;
}

.tab-wrapper ul#tabs-nav li.active svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.tab-wrapper ul#tabs-nav li.active .tab-btn span {
  color: var(--white);
}

.tab-wrapper #tabs-nav li a {
  text-decoration: none;
}

.tab-wrapper .tab-content .content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.4s;
}

.tab-wrapper .tab-content .content:hover {
  transform: translateY(-5px);
}

.tab-wrapper .tab-content .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 4px;
  background-color:#B5E5FF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.tab-wrapper .tab-content img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.tab-wrapper .tab-content svg {
  width: 80px;
  height: 80px;
}

.tab-wrapper .tab-content .title {
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--primary-font);
  text-align: center;
  margin: 0px;
}

.tab-wrapper .tab-content .desc {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 0px;
}

@media screen and (max-width: 576px) {
  .tab-wrapper .tab-btn {
    width: 130px;
  }

  .tab-wrapper .tab-btn span {
    font-size: 14px;
  }

  .tab-wrapper ul#tabs-nav {
    gap: 10px;
  }

  .tab-wrapper .header h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
/* Tab Menu End */

/* About Start */

#about {
  margin-top: 80px;
  position: relative;
}

#about .header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0px;
}

#about .header {
  text-align: center;
  margin-bottom: 40px;
}

#about .header h1 {
  font-size: 2.5rem;
  color: var(--black);
}

#about .content-area {
  background: var(--white);
  border-radius: 16px;
  margin: 10px;
  overflow: hidden;
}

#about .video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  border-radius: 16px;
  overflow: hidden;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

#about .video-card img {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

#about .video-card svg {
  width: 40px;
  height: 40px;
}

/* Play Button */
#about .play-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 4px 20px 4px 4px;
  border-radius: 30px;
  font-weight: bold;
  border: none;
  box-shadow: none;
}
#about .play-button span {
  font-size: 18px;
  font-family: var(--primary-font);
  color: var(--black);
  font-weight: 400;
}

#about .play-button img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Video Container */
.video-container {
  position: absolute;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background-color: black;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-container {
    width: 95%;
  }
}

#about .video-modal iframe {
  width: 100%;
  border-radius: 8px;
}

#about .owl-dots {
  text-align: center;
  padding-top: 15px;
  transition: 0.4s;
}
#about .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #b5eaf1 !important;
  margin: 0 3px;
  transition: 0.4s;
}
#about .owl-dots button.owl-dot.active {
  width: 40px;
  border-radius: 30px;
  background-color: var(--primary-color) !important;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

#about .carousel_btn {
  display: none;
}

@media screen and (max-width: 990px) {
  #about .testimonial-header h1 {
    font-size: 2em;
  }

  #about .carousel_btn {
    bottom: 15px;
    right: 10px;
    position: absolute;
  }

  #about .header h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}
/* About End */

/* Support Service Start */
.support-service {
  width: 100%;
  margin-top: 80px;
}
.support-service .wrapper {
  width: 100%;
  background: var(--bg2);
  border-radius: 24px;
  padding: 80px 40px;
}
.support-service .wrapper .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-service .header p {
  font-family: var(--secondary-font);
  font-weight: 400;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0px;
}

.support-service .header h1 {
  font-size: 2.5rem;
  color: var(--black);
}

.support-service .wrapper .image svg {
  width: 80%;
  height: 80%;
}

.support-service .support-link {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.support-service .support-link .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 16;
  padding: 10px;
  border: 1px solid #83d7ff;
  text-decoration: none;
  border-radius: 16px;
  transition: 0.4s;
}

.support-service .support-link .link p {
  color: var(--black);
  font-family: var(--secondary-font);
  font-size: 14px;
}

.support-service .support-link .link:hover {
  background: var(--primary-color);
}

.support-service .support-link .link:hover p {
  color: var(--white);
}

.support-service .support-link .link:hover svg circle {
  fill: var(--white);
}

.support-service .support-link .link:hover svg path {
  stroke: var(--black);
  fill: var(--white);
}

.support-service .support-link .link:hover svg rect {
  fill: var(--white);
}

.support-service .support-link svg {
  width: 70px;
  height: 70px;
}

#animatedPath {
  stroke: #b5e5ff;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 5s linear forwards;
  -webkit-animation: draw 5s linear infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* ........ */
@keyframes light-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.light-bounce {
  animation: light-bounce 3s infinite;
  -webkit-animation: light-bounce 3s infinite;
}
@keyframes light-bounce2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.light-bounce2 {
  animation: light-bounce2 2s infinite;
  -webkit-animation: light-bounce2 2s infinite;
}
/* ........ */

@media screen and (max-width: 992px) {
  .support-service .wrapper {
    padding: 40px 20px;
  }
  .support-service .header h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

@media screen and (max-width: 576px) {
  .support-service .support-link svg {
    width: 40px;
    height: 40px;
  }
}
/* Support Service End */
