:root {
  --blue: #13728c;
  --red: #d93b31;
  --gray: #808184;
  --black: #1a1c1f;
}

html,
body {
  font-family: "Roboto", sans-serif, "Segoe UI", "Arial";
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

footer a:hover {
  color: #1093e0 !important;
}

.text-color-red {
  color: var(--red) !important;
}

.text-color-blue {
  color: var(--blue) !important;
}

.text-color-gray {
  color: var(--gray) !important;
}

.nav_background {
  background-color: var(--black) !important;
  color: #ffffff !important;
}

@media (min-width: 0) {
  .nav-container {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .nav-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .nav-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .nav-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .nav-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .nav-container {
    max-width: 1320px;
  }
}

@media (min-width: 576px) {
  .nav-header nav ul li a {
    display: block;
    padding: 0.425rem 0rem;
  }
}

@media (max-width: 768px) {
  #navigation ul {
    clear: both;
  }
  #navigation ul li {
    padding: 0.5em 0;
  }
}

#navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  margin-left: auto;
  margin-right: auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.nav-container:after {
  content: " ";
  display: block;
  clear: both;
}

.nav-links a {
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
  transition: color 0.35s ease;
}
.nav-links a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background 0.35s ease;
}
.nav-links a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  transition: width 0.35s ease;
}
.nav-links a:hover:before {
  width: 100%;
  background: #000;
  transition: width 0.35s ease;
}
.nav-links a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}

.nav_active {
  color: var(--blue) !important;
}

.nav_active::after {
  background: var(--blue) !important;
  width: 100% !important;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 0;
  background: #ffffff;
  z-index: 10;
  /* height: 70px; */
  will-change: transform;
  transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.nav-logo {
  width: 150px;
}

.nav-logo img {
  width: 100%;
}

.nav-header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.nav-header nav ul li {
  float: none;
  margin-left: 0;
}
@media (min-width: 768px) {
  .nav-header nav ul li {
    float: left;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
.nav-header nav ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
}

.nav-full-menu {
  display: block;
  height: 0;
  overflow-x: auto;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
  background: var(--black);
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: auto;
}

.nav-full-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.nav-full-menu::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}

.nav-full-menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.nav-full-menu a {
  text-decoration: none;
}

.nav-full-menu:before {
  content: "";
  display: table;
  clear: both;
}
.nav-full-menu.collapse {
  padding: 4rem 1rem 7rem;
  height: 100vh;
}

.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #000;
  transition: all 0.25s;
}

.toggle-overflow {
  overflow: hidden;
}

.nav-shadow {
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.nav-top-padding {
  padding-top: 2.5rem;
  transition: ease-in-out 0.5s;
}

/* NAV ICON */
.wrapper-menu {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 330ms ease-out;
}

.wrapper-menu.open {
  transform: rotate(-45deg);
}

.line-menu {
  background-color: #000;
  border-radius: 5px;
  width: 100%;
  height: 4px;
}

.line-menu.half {
  width: 50%;
}

.line-menu.start {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}

.open .line-menu.start {
  transform: rotate(-90deg) translateX(2px);
  background: #ff3841;
}

.line-menu.end {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}

.open .line-menu {
  background: #ff3841;
}

.open .line-menu.end {
  transform: rotate(-90deg) translateX(-2px);
  background: #ff3841;
}

.nav-height {
  height: 105px;
}

.section-common {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-common__2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-common__double {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-LR {
  padding-left: 1rem;
  padding-right: 1rem;
}

.main-button-wrapper {
  margin-right: 0.6rem;
  display: inline-block;
  animation: mainButtonAni 0.8s forwards;
  animation-delay: 4s;
}

.header-main-button {
  padding: 0 36px;
  height: 48px;
  line-height: 48px;
  border-width: 0;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
  border-color: var(--blue);
  background-color: var(--blue);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
}

.header-main-button:hover {
  color: #ffffff;
  border-color: #095e75;
  background-color: #095e75;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.header-outline-button {
  padding: 0 36px;
  height: 44px;
  line-height: 41px;
  border: 2px solid;
  border-radius: 4px;
  display: inline-block;
  color: var(--blue);
  border-color: var(--blue);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
}

.header-outline-button:hover {
  color: #ffffff;
  border-color: #095e75;
  background-color: #095e75;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.header-outline-button-invert {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.header-outline-button-invert:hover {
  background-color: #ffffff !important;
  color: var(--blue) !important;
}

.product_card_button_wrapper {
  margin-top: 1.5rem;
}

.main-second-button {
  padding: 0 36px;
  height: 48px;
  line-height: 48px;
  border-width: 0;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
  border-color: var(--red);
  background-color: var(--red);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0em;
  text-decoration: none;
  transition: 0.5s;
  text-align: center;
}

.main-second-button:hover {
  color: #ffffff;
  border-color: #bd2a21;
  background-color: #bd2a21;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

@keyframes mainButtonAni {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* MAIN SECTION */
.hero-container {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-bg-text {
  font-weight: 600;
  color: rgba(241, 242, 244, 0.52);
  font-size: 20vw;
  line-height: 300px;
  position: absolute;
  z-index: -1;
}

.contact-bg-text {
  font-weight: 600;
  color: rgba(241, 242, 244, 0.52);
  font-size: 19vw;
  line-height: 300px;
  position: absolute;
  left: 50%;
  top: -96px;
  z-index: -1;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, 0px);
}

.text-supporting {
  color: #515151;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: center;
}

/* COMPANY SECTION */
.about-company {
  width: 80%;
}

.company-section-bg {
  background: transparent linear-gradient(-115deg, #13728c, #000000);
  border-radius: 10px;
  padding-left: 10%;
  padding-right: 10%;
}

.about-company-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-company-main-text {
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
  color: #f0f8ff;
  width: 80%;
}

.about-company-sub-text {
  font-size: 1.4rem;
  line-height: 36px;
  color: #ffffff;
  font-weight: 300;
  width: 88%;
}

.page_section_header_title {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.33;
  margin: 0 0 20px;
}

.section-main-title {
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
}

.hero_main_title {
  margin-bottom: 15px;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
}

.section-paragraph {
  font-size: 1.4rem;
  line-height: 36px;
  font-weight: 400;
}

.section__header {
  max-width: 58%;
  margin-bottom: 40px;
}

.service_service_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  background: #f0f8ff;
  padding: 20px;
  margin-bottom: 0;
  height: 270px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 0 0 #eee;
  box-shadow: 0 14px 33px -3px rgb(0 0 0 / 3%);
  transition: ease-in-out 0.2s;
  background: transparent linear-gradient(178deg, #13728c, #000);
  color: #ffffff;
}

.service_service_card:hover .service-box-desc {
  max-height: 250px;
  transition: max-height 0.3s ease-in-out;
}

.service_service_card:hover .service_card_read_more {
  display: none;
}

.service_service_card:hover .service-box-desc_tec {
  display: none;
}

.service_service_card:hover .service-sec-box-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.service-sec-box-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
}

.service-sec-box-icon img {
  filter: drop-shadow(5px 8px 5px black);
}

.service_card_read_more {
  font-size: 12px;
  margin: 0;
  width: 100%;
}

.service-box-desc_tec {
  font-size: 16px;
  font-weight: 400;
}

.service-box-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 1rem;
}

.service_service_main {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-box-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #c7c7c7;
  margin-bottom: 0;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.products-section {
  background-color: #ededed;
}

.product_card_title_text {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.2;
}

.product_card_title_text span {
  display: block;
  margin-top: 3px;
}

.product_card_title_text_sub {
  color: var(--gray);
  font-size: 1.4rem;
  line-height: 36px;
  font-weight: 400;
}

.product_card {
  color: #ffffff;
  padding: 1.5rem 1rem 1rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  position: relative;
}

.product_card_name {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.product_card_image_logo {
  filter: brightness(0) invert(1);
  max-width: 205px;
}

.product_card_image {
  max-width: 80%;
  max-height: 180px;
  margin: 1rem auto;
  display: block;
}

.product_card .product_card_button_wrapper {
  margin-top: 0.3rem;
}

.product_card .product_card_button_wrapper a {
  color: #ffffff;
  border-color: transparent;
  text-decoration: underline;
}

.product_card .product_card_button_wrapper a:hover {
  color: var(--blue);
  background-color: #ffffff;
  text-decoration: none;
}

.products_main {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.product_card_title {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section__round {
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: hsl(193deg 76% 31% / 55%);
  position: absolute;
  z-index: 2;
  right: -1rem;
  top: 19px;
  transition: ease-in-out 0.7s;
}

.section__sub_round {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: hsl(4deg 69% 52% / 47%);
  position: absolute;
  z-index: 1;
  left: -7rem;
  top: -75px;
}

.section__round_2 {
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: hsl(4deg 69% 52% / 47%);
  position: absolute;
  z-index: 2;
  right: 12rem;
  bottom: -45px;
  transition: ease-in-out 0.7s;
}

.section__sub_round_2 {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgb(128 129 132 / 24%);
  position: absolute;
  z-index: 1;
  right: -37%;
  top: -75px;
}

.section__header_main {
  display: flex;
  background: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4.5rem 1.5rem;
  padding-left: 0;
  position: relative;
  z-index: 3;
  border-radius: 8px;
  transition: ease-in-out 0.2s;
}

.service_service_card:hover {
  background: transparent linear-gradient(178deg, #084150, #000);
}

/* TESTIMONIALS */

.testimonial_item_product {
  font-size: 14px;
  color: rgba(88, 112, 146, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 12px;
}

.testimonial_item_user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial_item_username {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.testimonial_item_designation {
  font-size: 0.875rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #808184;
  margin-bottom: 5px;
}

.testimonial_user_sec {
  display: flex;
  align-items: center;
}

/* WHY US */
.why_choose_text_big {
  width: 80%;
  margin: auto;
  color: #f0f8ff;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why_choose_text {
  width: 80%;
  margin: auto;
  color: #d0d0d0;
  font-size: 1.2rem;
  font-weight: 400;
}

.pt-8 {
  padding-top: 8rem;
}

/* FOOTER */
.footer_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.0784313725490196);
}

.fl_flag_img {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1rem;
}

.fl_flag_img img {
  width: 67px;
  margin-left: -16px;
}

.footer_location_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.fl_location {
  font-size: 12px;
  font-weight: 400;
  color: #616161;
  margin-bottom: 5px;
}

.fl_address {
  font-size: 12px;
  line-height: 1.5;
}

.footer_item_title {
  margin-bottom: 1rem;
}

.footer_item {
  margin-top: 2rem;
}

.footer_item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_item ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_item ul > li > a {
  font-size: 0.875rem;
  line-height: 1.28;
  padding: 8px 0 8px 16px;
  min-height: 36px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  display: flex;
}

.footer_logo {
  width: 150px;
}

.footer_about {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 12px;
  color: #616161;
  font-weight: 500;
  line-height: 1.7;
}

.footer_item:last-child {
  width: 32%;
}

.footer_social_bar {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.footer_social_bar > a {
  display: block;
  margin: 0 0.5rem;
}

.footer_social_bar > a > img {
  width: 35px;
  height: 35px;
  padding-bottom: 5px;
  text-align: center;
}

.footer_social_bar > a > img:hover {
  border-bottom: 1px solid #3888ff;
}

.footer_social_space {
  height: 30px;
  width: 1px;
  background: #c3c3c3;
}

.footer_copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.0784313725490196);
  font-size: 13px;
  color: #808184;
}

.footer_email {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

.software-section .section__header,
.offshore-teams-section .section__header {
  margin-bottom: 0;
}

.software-section .main-button-wrapper,
.offshore-teams-section .main-button-wrapper {
  margin-top: 40px;
}

.section__image {
  max-width: 45%;
}

/* SPRITZER */
.product_bg_spritzer {
  height: 100%;
  position: relative;
  border-radius: 8px;
  background-color: rgb(29 1 0);
}

.product_bg_pix .product_card_image_logo,
.product_bg_sms .product_card_image_logo{
  width: 164px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.product_bg_spritzer::before {
  background-color: #ff6961;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* PORUWA */
.product_bg_poruwa {
  height: 100%;
  position: relative;
  border-radius: 8px;
  background-color: rgb(45 35 12);
}

.product_bg_poruwa::before {
  background-color: #d4af37;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* PIX */
.product_bg_pix {
  height: 100%;
  position: relative;
  border-radius: 8px;
  background-color: rgb(0 0 0 / 95%);
}

.product_bg_pix::before {
  background-color: #e64a19;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* SMS160 */
.product_bg_sms {
  height: 100%;
  position: relative;
  border-radius: 8px;
  background-color: rgb(0 6 10);
}

.product_bg_sms::before {
  background-color: #003444;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* traventy */
.product_bg_traventy {
  height: 100%;
  position: relative;
  border-radius: 8px;
  background-color: rgb(0 0 0 / 95%);
}

.product_bg_traventy::before {
  background-color: #006f94;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.nav_menu_block_item {
  background-color: #242629;
  padding: 3rem;
  text-align: center;
  border-radius: 5px;
  transition: ease-in-out 0.3s;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

.nav_menu_block_item:hover {
  background-color: var(--blue);
}

.hover-red:hover {
  background-color: var(--red);
}

.nav_right_wrapper {
  display: flex;
  align-items: center;
}

.nav_contact_button {
  margin-right: 2rem;
}

.contact-msg-input {
  margin-bottom: 20px;
}

.contact-msg-input__label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #1a3b5d;
  width: 100%;
  display: block;
  user-select: none;
}

.contact-msg-input__input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ced6e0;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding: 5px 15px;
  background: none;
  color: #1a3b5d;
  background: rgb(255 255 255 / 40%);
}

.contact-msg-input__input:hover,
.contact-msg-input__input:focus {
  border-color: var(--blue);
}

.contact-msg-input__input:focus {
  box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35);
  outline: 0;
  background: rgb(255 255 255 / 60%);
}

textarea.contact-msg-input__input {
  max-height: 120px;
  min-height: 90px;
}

.contact-heading {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.schedul-img img {
  width: 88%;
}

.location_display_main .row {
  justify-content: center;
}

.location_display_main {
  margin: 3rem 0 2rem;
  display: flex;
  justify-content: center;
}

.section__header_contact_location {
  margin-top: 4rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.0784313725490196);
}

.location_display_wrapper {
  position: relative;
  background: transparent linear-gradient(0deg, #13728c, #021014);
  border-radius: 8px;
  margin: 0 1rem;
  width: 360px;
  height: 509px;
  overflow: hidden;
}

.location_display_image {
  position: relative;
  z-index: 1;
}

.location_display_info {
  position: absolute;
  top: 30px;
  padding: 2rem;
  width: 100%;
  color: #ffffff;
  z-index: 2;
}

.location_display_info_country {
  font-size: 26px;
  margin-bottom: 2rem;
}

.location_display_info .fl_address {
  font-size: 16px;
}

.location_display_image img {
  width: 360px;
}

.nav_schedul_btn {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.nav_menu_link_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.nav_menu_link_item {
  margin-bottom: 1rem;
}

.nav_menu_title {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 400;
}

.nav_menu_link_item a {
  display: block;
  padding: 15px 30px;
  min-width: 125px;
  text-align: center;
  margin-right: 1rem;
  text-decoration: none;
  color: #ffffff;
  background-color: rgb(19 114 140 / 25%);
  border-radius: 4px;
  transition: ease-in-out 0.3s;
}

.nav_menu_link_item a:hover {
  text-decoration: underline;
  background-color: rgb(19 114 140 / 35%);
}

.contact-scheduling_wrapper {
  display: flex;
  align-items: center;
}

.schedul-info,
.schedul-img {
  width: 50%;
}

.contact-scheduling {
  padding: 2rem;
  margin-bottom: 4rem;
  border-radius: 8px;
  color: #ffffff;
  background: transparent linear-gradient(180deg, #13728c, #021014);
}

.schedul-info p {
  font-size: 1.4rem;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.schedul-meeting-main .main-second-button,
.schedul-meeting-main .header-main-button {
  padding: 0 65px;
  text-align: center;
}

.contact-msg {
  padding: 2rem;
  margin-bottom: 4rem;
  width: 50%;
  margin: auto;
}

.contact-msg .schedul-meeting-main {
  text-align: right;
}

.contact-msg-main {
  border-radius: 8px;
  border: 2px solid #e4e4e4;
  background-color: #f6f6f6;
  background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}

.product_card_desc {
  min-height: 48px;
  font-size: 16px;
}

.inner_page_section-sub-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
}

.inner_page_section-sub-sub-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.product_details p {
  color: #292929;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

.product_details_wrapper {
  display: flex;
  align-items: center;
}

.product_options_block {
  width: 100%;
  position: relative;
  margin: 0 0 1rem;
  background-color: #fff;
  padding: 20px 20px 20px 35px;
  box-shadow: 0 0 25px 0 #e2e8ff;
  border-radius: 10px;
  transition: 0.2s;
}

.product_options_main_wrapper {
  margin-top: 30px;
}

.ip_product_logo {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  margin-right: 1.5rem;
  max-width: 190px;
}

.product_options_block p {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.36px;
  color: #5f6368;
}

.product_details_img img {
  width: 100%;
}

.inner_page_section_main {
  display: flex;
  margin-bottom: 3rem;
  flex-direction: column;
}

.inner_page_section_main_title {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
}

/* TIMELINE */

.timeline_wrapper {
  background: #252827;
  border-radius: 10px;
}

.timeline-content {
  margin-top: 1rem;
  text-align: center;
}

.timeline {
  border-left: 4px solid var(--blue);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  margin: 50px auto;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 50%;
}
.timeline h1 {
  letter-spacing: 1.5px;
  font-weight: 100;
  font-size: 1.4em;
}
.timeline h2,
.timeline h3 {
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1rem;
}
.timeline .event {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -217.5px;
  color: rgba(255, 255, 255, 0.5);
  content: attr(data-date);
  text-align: right;
  font-weight: 400;
  font-size: 0.9em;
  min-width: 120px;
}
.timeline .event:after {
  box-shadow: 0 0 0 4px #004ffc;
  left: -57.85px;
  background: #313534;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}

.timeline-content .inner_page_section-sub-title {
  color: #ffffff;
}

.timeline p {
  font-weight: 300;
}

.visit_product_website {
  text-align: center;
  margin-top: 2rem;
}

.visit_product_website .header-main-button {
  margin-top: 1.5rem;
}

.product_option_icon {
  position: absolute;
  left: -18px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.features_wrapper .product_details_wrapper {
  margin-bottom: 1rem;
}

.easy_contact_info {
  margin-bottom: 2rem;
}

.easy_contact_info h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}

.easy_contact_block {
  display: flex;
  align-items: flex-start;
}

.easy_contact_icon {
  margin-right: 1rem;
}

.easy_contact_icon svg {
  width: 14px;
}

.easy_contact_block a {
  color: #ffffff;
  text-decoration: none;
}

.fl_phone {
  font-size: 12px;
  margin: 10px 0;
}

.fl_phone a {
  color: #000000;
  text-decoration: none;
}

.payment-gateway-img {
  width: 85% !important;
}

.poruwa_features {
  display: flex;
}

.poruwa_features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}

.poruwa_features .product_options_block {
  width: 49%;
}

.po_icon {
  margin-bottom: 1.5rem;
}

.shapebg {
  background-image: url(../images/backgrounds/shape02.png);
  background-size: 39%;
  background-repeat: no-repeat;
  background-position: 100% 27%;
}

.shapebg_2 {
  background-image: url(../images/backgrounds/shape03.png);
  background-size: 39%;
  background-repeat: no-repeat;
  background-position: 100% 36%;
}

.portfolio.pix-page.shapebg_2 {
  background-size: 40%;
  background-position: 100% 51%;
}

.portfolio.sms160-page.shapebg {
  background-position: 100% 47%;
}

.service_teams_page_desc {
  width: 80%;
}

.service_teams_page_main_img {
  width: 100%;
  text-align: right;
  margin-top: 3rem;
}

.service_teams_page_main_img img {
  width: 80%;
}

.service_soft_page_desc {
  width: 75%;
  margin-bottom: 3rem;
}

.service_soft_page_hero {
  display: flex;
  justify-content: space-between;
}

.technical_bg {
  background: transparent linear-gradient(178deg, #0c162d, #000);
  padding: 7rem;
  border-radius: 10px;
  font-family: "Source Code Pro", monospace;
  display: flex;
  align-items: center;
}

.service_technical_info,
.service_technical_img {
  width: 50%;
}

.service_technical_img {
  text-align: right;
}

.service_technical_img img {
  width: 95%;
  border-radius: 7px;
  min-width: 600px;
  box-shadow: 0 0 0 1px hsl(0deg 0% 100% / 10%), 0 34px 65px #040d21, 0 2.75px 2.21px rgb(0 0 0 / 7%), 0 6.65px 5.32px rgb(0 0 0 / 4%), 0 12.5px 10px rgb(0 0 0 / 3%), 0 22px 18px rgb(0 0 0 / 3%),
    0 42px 33.4px rgb(0 0 0 / 2%), 0 100px 80px rgb(0 0 0 / 2%);
  border: 1px solid #0f395e;
}

.service_page_desc p {
  text-align: justify;
  letter-spacing: 0.36px;
  color: #515151;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.5;
  font-size: 1rem;
}

.service_details_block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.36px;
}

.technical_sec_soft p {
  color: #ffffff;
  font-size: 1.2rem;
}

.service-bg {
  background: #f5f5f5;
}

.shore_teams_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 5px 6px 12px #eae6e6;
  flex: 1 1 49%;
}

.shore_teams_block h5 {
  margin: 2rem 0 1rem;
  font-weight: 600;
  font-size: 26px;
}

.shore_teams_block p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #515151;
}

.service_option_icon {
  width: 33%;
  height: auto;
}

.team-bg-01 {
  padding-bottom: 22%;
  background-image: url(../images/backgrounds/inner-pages/service-teams/global.jpg);
  background-size: 73%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #0e4c78;
}

.spritzer-bg-01 {
  background-image: url(../images/backgrounds/shape.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: 150% 48%;
}

.service_page_blocks {
  background-color: #f5f5f5;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service_details_blocks {
  display: flex;
  justify-content: space-between;
  margin: 0 -0.75rem;
}

.service_details_block {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 50px 100px -20px rgb(50 50 93 / 25%), 0 30px 60px -30px rgb(0 0 0 / 30%);
  border-radius: 10px;
  width: 32%;
}

.service_technical_info .inner_page_sub_section__header {
  text-align: left;
}

.service_info h5 {
  margin-bottom: 2rem;
  font-size: 26px;
}

.service_page_section-sub-title {
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
}

.service_hero {
  align-items: center;
  display: flex;
}

.spritzer_bg_01 {
  margin: 1rem;
  padding: 2rem 0;
  border-radius: 10px;
  background-color: #1d1d1d;
  background-size: 400% 400%;
  color: #ffffff;
  background: linear-gradient(38deg, #010101, #d93b31);
  background-size: 300% 400%;
  -webkit-animation: spritzerBgAnimation 30s ease infinite;
  animation: spritzerBgAnimation 15s ease infinite;
}

@-webkit-keyframes spritzerBgAnimation {
  0% {
    background-position: 83% 0%;
  }
  50% {
    background-position: 18% 100%;
  }
  100% {
    background-position: 83% 0%;
  }
}
@keyframes spritzerBgAnimation {
  0% {
    background-position: 83% 0%;
  }
  50% {
    background-position: 18% 100%;
  }
  100% {
    background-position: 83% 0%;
  }
}

.spritzer_order_types h2 {
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.1rem;
}

.service_page_section_main_title {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 58px;
  font-weight: 700;
}

.service_page_section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.service_soft_page_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.technical_bg .service_page_section-sub-title {
  color: #ffffff;
  font-size: 50px;
}

.inner_page_sub_section__header {
  margin-bottom: 2rem;
}

.service_technical_info {
  padding-right: 6rem;
}

.product_details_img,
.service_info {
  padding: 1.5rem;
}

.service_info {
  text-align: center;
  color: #ffffff;
}

.service_info_top_title {
  font-weight: 700;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.33;
  margin: 0 0 20px;
  text-align: center;
  color: #e8e8e8;
}

.service_web {
  background: #13728c;
  background: linear-gradient(270deg, #13728c 0%, #3d9aab 100%);
}

.service_mobile {
  flex-direction: row-reverse;
  background: #d93b31;
  background: linear-gradient(270deg, #d93b31 0%, #f74539 100%);
}

.service_custom {
  flex-direction: column-reverse;
  padding-top: 2rem;
  background: #13728c;
  background: linear-gradient(90deg, #13728c 0%, #3d9aab 100%);
}

.service_mobile .product_details_img,
.service_mobile .service_info {
  width: 50%;
}

.service_mobile .service_info {
  text-align: left;
  padding-right: 0;
}

.service_mobile .product_details_img img {
  position: relative;
  width: 184%;
  max-width: unset;
}

.service_mobile .service_info_top_title {
  text-align: left;
}

.service_custom .product_details_img {
  padding-top: 0;
}

.service_custom .product_details_img {
  padding-top: 0;
  height: 50%;
  width: 100%;
  position: relative;
}

.service_custom .product_details_img img {
  position: absolute;
  width: 101%;
  max-width: unset;
  bottom: -40px;
  right: 0;
}

.development_life_cycle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.development_life_cycle_step {
  padding: 0.5rem;
  text-align: center;
  width: 19%;
  background-color: #ffffff;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.development_life_cycle_step h6 {
  margin: 0;
}

.teams-section-common {
  margin-top: 2rem;
}

.teams_sec_inner {
  text-align: center;
  padding: 2.5rem 0 5rem;
  color: #ffffff;
}

.teams-section-text p {
  text-align: justify;
  letter-spacing: 0.36px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: center;
}

.teams_sec_inner .inner_page_section_main_title {
  margin-bottom: 2rem;
}

.service_teams_page_main_img_1 {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 3rem;
}

.service_teams_page_main_img_1 img {
  width: 50%;
}

.service_teams_key_value {
  color: #515151;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.5;
  font-size: 1.4rem;
}

.service_teams_key_value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service_teams_key_value ul li {
  font-size: 1.1rem;
  padding: 25px 10px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0784313725490196);
}

.service_teams_key_value ul li:last-child {
  border-bottom: none;
}

.service_teams_key_value ul li svg {
  fill: #d93b31;
  width: 23px;
  height: 23px;
  margin-right: 1rem;
}

.agile_section {
  background-color: #3f3f3f;
  margin-bottom: 4rem;
}

.agile_section_inner {
  background-color: #2c2c2c;
  padding: 5rem 2rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

.agile_step {
  background-color: #404040;
  padding: 1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  min-width: 370px;
  border-radius: 60px;
  position: relative;
  display: flex;
  width: 35%;
}

.agile_step_icon {
  width: 50px;
  margin: 0 0.6rem;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
  display: flex;
  align-items: center;
}

/* .agile_step:nth-child(even) {
  top: 1.5rem;
} */

.agile_rouded {
  background-color: #13728c;
}

.agile_step.agile_rouded {
  padding: 1rem;
}

.agile_step h5 {
  text-transform: uppercase;
  font-weight: 600;
}
.agile_rouded p {
  margin-bottom: 0;
}

.agile_step p {
  color: #d3d3d3;
  margin-bottom: 0;
}

.agile_step.agile_rouded p {
  color: #ffffff;
}

.agile_step:nth-child(odd)::after {
  content: "";
  width: 5px;
  height: 4rem;
  bottom: -4rem;
  right: 30%;
  position: absolute;
  border-left: 4px dotted #808184;
  z-index: 0;
}

.agile_step:nth-child(even)::after {
  content: "";
  width: 5px;
  height: 4rem;
  bottom: -4rem;
  position: absolute;
  border-left: 4px dotted #808184;
  z-index: 0;
  right: 69%;
}

.agile_step:first-child::after {
  border-left: 4px dotted #13728c;
}

.agile_step:nth-child(5)::after {
  border-left: 4px dotted #adff2f;
}

.agile_step:last-child::after {
  display: none;
}

.agile_step:nth-child(odd) {
  left: -13%;
}

.agile_step:nth-child(even) {
  left: 12.7%;
  text-align: right;
}

.agile_step:nth-child(even) .agile_step_number {
  left: -45px;
}

.agile_step.agile_rouded:last-child {
  margin-bottom: 0;
}

.agile_step span {
  width: 1rem;
  height: 1rem;
  background-color: #adff2f;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: -2px;
  margin-right: 5px;
}

.agile_section .inner_page_sub_section__header {
  color: #ffffff;
}

.agile_section .text-supporting {
  color: #ffffff;
}

.mission_main_title {
  margin-bottom: 0;
  font-size: 62px;
  line-height: 58px;
  font-weight: 700;
  text-transform: uppercase;
  background: -webkit-linear-gradient(270deg, #4670c5 0%, #f76f7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission_text {
  background-color: #0f0f0f;
  padding: 2rem;
  display: inline-block;
  border-radius: 4px;
}

.mission_text p {
  margin-bottom: 0;
  letter-spacing: 0.36px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.6;
  font-size: 1.4rem;
}

.our_mission_section_inner {
  display: flex;
  align-items: center;
}

.our_mission_section_img {
  width: 50%;
  margin-right: 4rem;
}

.our_mission_section_img img {
  width: 100%;
}

.value_section {
  background-color: #3e4345;
  color: #ffffff;
}

.value_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.value_block {
  padding: 2rem;
  background-color: #242728;
  border-radius: 10px;
  display: flex;
  width: 49%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: ease-in-out 0.5s;
}

.value_block:hover {
  background-color: #1c1e1f;
}

.value_block:hover p {
  color: #ffffff;
}

.value_info {
  width: 70%;
}

.value_icon {
  width: 30%;
}

.value_info p {
  color: #e8e8e8;
  margin-bottom: 0;
}

.value_info_title {
  padding: 1rem 1.5rem;
  background-color: black;
  margin-bottom: 1rem;
  display: inline-block;
  border-radius: 50px;
}

.value_info_title h5 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 26px;
}

.vit_blue {
  background: linear-gradient(270deg, #273448 0%, #373c4a 100%);
}

.vit_blue h5 {
  background: -webkit-linear-gradient(170deg, #4670c5 0%, #9aa9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vit_red {
  background: linear-gradient(270deg, #462e35 0%, #453835 100%);
}

.vit_red h5 {
  background: -webkit-linear-gradient(170deg, #f76d7d 0%, #f4967a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value_icon img {
  width: 120%;
  position: relative;
  left: -48px;
}

.agile_step_info {
  margin: 0 1rem;
  width: calc(100% - 70px);
}

.agile_step_number {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--gray);
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  margin-bottom: 0;
}

.paragraph p {
  margin-bottom: 2rem;
}

.our_mission_section {
  background: linear-gradient(235deg, #000000, #0f0f0f);
  background-size: 400% 400%;
  color: #ffffff;
  border-bottom: 10px solid var(--blue);

  -webkit-animation: AnimationName 25s ease infinite;
  animation: AnimationName 25s ease infinite;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 91%;
  }
  50% {
    background-position: 100% 10%;
  }
  100% {
    background-position: 0% 91%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 91%;
  }
  50% {
    background-position: 100% 10%;
  }
  100% {
    background-position: 0% 91%;
  }
}

.why_work_with_us_title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.why_work_with_us_wrapper {
  margin-top: 6rem;
}

.work_with_us_points_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.work_with_us_points_blog {
  flex: 1 1 31%;
  display: flex;
  gap: 1rem;
}

.work_with_us_points_blog_icon svg {
  width: 2rem;
  height: 2rem;
  fill: var(--red);
}

.career_openings_section {
  background-color: #fafafa;
}

.current_openings_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
}

.current_opening_block_nojobs{
  width: 90%;
  margin: auto;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.current_opening_block {
  width: 49%;
  margin-bottom: 1rem;
}

.current_opening_block {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  background-color: #ffffff;
  padding: 1.5rem 1.25rem;
}

.current_opening_block .job_title {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
}

.current_opening_block_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.current_opening_block_header span {
  font-size: 0.9rem;
  background-color: var(--blue);
  padding: 5px 7px;
  border-radius: 4px;
  color: #ffffff;
}

.job-location {
  font-size: 1rem;
  font-weight: 400;
  color: #666666;
}

.job_apply {
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
  color: var(--red);
  font-weight: 500;
}

.job_overview_header {
  text-align: center;
  padding: 3rem;
}

.job_overview_header img {
  width: 200px;
}

.job-overview-title {
  font-size: 1.5rem;
  margin: 1.8rem 0 1rem;
}

.job_overview_header p {
  margin-bottom: 0.4rem;
}

.job-preview-main {
  background-color: #f9f9f9;
}

.job-preview {
  position: relative;
  box-sizing: border-box;
  padding: 50px 16px 64px;
  margin: 0 auto;
  max-width: 668px;
  background-color: #f9f9f9;
}

.job-preview-details {
  margin-top: 2rem;
}

.job-detail-list {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.job-preview-details h5 {
  color: #333e49;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 1rem;
}

.send_cv {
  margin-top: 3rem;
}

.send_cv h5 {
  color: #333e49;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
}

.send_cv a {
  color: var(--red);
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
}

.spritzer_order_types {
  display: flex;
  justify-content: center;
  gap: 7%;
}

.spritzer_order_types img {
  width: 55px;
}

.product_info {
  width: 55%;
}

.prod_freature_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prod_freature_style_2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 49%;
  padding: 1.5rem 1rem;
}

.prod_freature_style_2:nth-child(1) {
  background-color: #0e0e0e;
  color: #ffffff;
}

.prod_freature_style_2:nth-child(2) {
  background-color: #0f1d29;
  color: #ffffff;
}

.prod_freature_style_2:nth-child(3) {
  background-color: #1d1705;
  color: #ffffff;
}

.prod_freature_style_2:nth-child(4) {
  background-color: #051d1a;
  color: #ffffff;
}

.prod_freature_style_2:nth-child(5) {
  background-color: #051d11;
  color: #ffffff;
}

.prod_freature_style_2 .po_icon {
  margin-bottom: 0;
  width: 16%;
}

.po_info {
  width: 70%;
}

.prod_freature_style_2 .po_icon img {
  height: auto;
  width: 100%;
}

.prod_freature_style_2 .product_options_block_title {
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0;
}

.code_bullet {
  width: 35px;
}

.technology_used_block {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 2rem 5rem;
  background-color: #f7f7f7;
  margin-bottom: 1rem;
  border-radius: 6px;
  position: relative;
  width: 70%;
}

.technology_used_block h5 {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.technology_used_icon {
  position: absolute;
  left: 25px;
}

.technology_used_section {
  padding: 2rem;
  border-radius: 10px;
  background: #16222a;
  background: -webkit-linear-gradient(to right, #3a6073, #16222a);
  background: linear-gradient(to right, #3a6073, #16222a);
  font-family: "Source Code Pro", monospace;
}

.technology_used_bg-img {
  background-image: url(../images/backgrounds/tech.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 82%;
}

.technology_used_section .inner_page_section-sub-title {
  color: #ffffff;
}

.success_message_sent {
  display: none;
  padding: 2rem;
  text-align: center;
  height: 705px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success_message_sent h5 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

#sendMessage:disabled {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  margin-left: auto;
}

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

.loader {
  display: none;
}

.alert {
  display: none;
  padding: 20px;
  background-color: #f44336;
  color: #ffffff;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.product_options_block.prod_freature_style_2 {
  min-height: unset;
}

.hero-buttons .header-main-button,
.hero-buttons .main-second-button {
  min-width: 224px;
}

.contact_list_dropdown_main {
  display: flex;
  align-items: center;
}

.contact_list_dropdown {
  position: relative;
  display: flex;
  margin-right: 2rem;
  border: 2px solid var(--blue);
  border-radius: 4px;
  padding: 5px 10px;
}

.contact_list_dropdown_dropbtn {
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.contact_list_dropdown_dropbtn a {
  color: #000000;
  text-decoration: none;
}

.contact_list_dropdown_content {
  position: absolute;
  bottom: -39px;
  left: -2px;
  min-width: 175px;
  padding-top: 5px;
  height: 100%;
}

.contact_list_dropdown_content_inner {
  padding: 5px 10px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0px 5px 12px 0px rgb(0 0 0 / 12%);
}

.about_us_page .service_page_section-sub-title {
  text-align: center;
}

.testimonials-section .owl-carousel .owl-item img {
  width: inherit;
}

.contact_list_select {
  margin-left: 12px;
  padding-left: 8px;
  border-left: 1px solid #cecece;
  cursor: pointer;
}

.contact_list_select svg {
  width: 13px;
  vertical-align: bottom;
}

.poruwa-page .po_icon {
  width: 5rem;
}

.poruwa-page .po_icon img {
  width: 100%;
}

.portfolio .product_info {
  width: 60%;
}

.portfolio .product_details_img {
  width: 40%;
}

.portfolio .page_section_header_title {
  text-align: center;
}

.features_wrapper .product_details_img {
  width: 25%;
}

.sm-img_solutio_sec .product_details_img {
  width: 320px;
}

.sm-img_opportunity_sec img {
  width: 320px;
}

.product_details_img.sm-img_opportunity_sec {
  width: 400px;
}

.pix-page .ip_product_logo {
  max-width: 145px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  padding: 0 10px !important;
}

.gallery:hover .img-w {
  opacity: 0.5;
}

.gallery:hover .img-w:hover {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.img-c {
  width: 200px;
  height: 200px;
  float: left;
  position: relative;
  overflow: hidden;
}

.img-w {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* cursor: pointer; */
  transition: transform ease-in-out 300ms, 4s opacity;;
}

.img-w img {
  display: none;
}

.img-c {
  transition: width ease 400ms, height ease 350ms, left cubic-bezier(0.4, 0, 0.2, 1) 420ms, top cubic-bezier(0.4, 0, 0.2, 1) 420ms;
}

.img-c:hover .img-w {
  transform: scale(1.08);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 450ms;
}

.img-c.active {
  width: 100% !important;
  height: 100% !important;
  position: fixed;
  z-index: 100;
}

.img-c.postactive {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.img-c.active.positioned {
  left: 0 !important;
  top: 0 !important;
  transition-delay: 50ms;
}

.testimonial_item_testimonial {
  margin-bottom: 0;
  margin-top: 5px;
}