*,
*::before,
*::after {
  box-sizing: border-box;
  outline: 0 none;
  text-align: start;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: product sans, sans-serif, "Font Awesome 5 Free";
  margin: 0;
  padding: 0;
  text-align: start;
  overflow-x: hidden;
  direction: ltr;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  min-height: 100vh;
  background-color: #fff;
}

[dir="rtl"] {
  direction: rtl;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

*::placeholder {
  color: #444;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

form {
  padding: 0;
  margin: 0 auto;
  text-align: start;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

button,
input[type="submit"] {
  cursor: pointer;
}

button,
li,
a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button:focus,
a:focus {
  outline: 0 none !important;
  box-shadow: none;
}

inout,
button,
select,
select:focus,
select:active,
input:focus,
button:focus,
input:active,
button:active,
button:active:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

/* Custom Scroll bar */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0.5em;
  /* height: 0.5em; */
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  /* -webkit-box-shdow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  background-color: #e1e1e1;
}

body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background-color: #0a4d67;
  outline: 1px solid #0a4d67;
}

/* custom scrollbar for firefox */
@-moz-document url-prefix() {
  *,
  html,
  body {
    /* "auto" or "thin" */
    scrollbar-width: thin;
    /* scroll thumb & track */
    scrollbar-color: #0a4d67 #e1e1e1;
  }
}

/* page content */

/* start head section */
.head_section {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background-color: #002c3e;
  display: flex;
  align-items: center;
}

.head_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #006b99, #006b99);
  opacity: 0.25;
}

.head_section .container-fluid {
  position: relative;
  z-index: 1;
}

.head_section--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 120px;
}

.head_section--content .left h1 {
  font-family: "product-sans-bold", sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #ffd400;
  margin-bottom: 36px;
}

.head_section--content .left .intro {
  margin-bottom: 56px;
}

.head_section--content .left .intro p {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.head_section--content .left .intro p:last-child {
  margin-bottom: 0;
}

.get_started {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #006b99;
  padding: 6px 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  font-size: 24px;
  font-weight: 700;
  font-family: "product-sans-bold", sans-serif;
  min-width: 200px;
  text-decoration: none !important;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.get_started:hover {
  background-color: rgba(0, 107, 153, 0.3);
  color: #fff;
  border-color: #fff;
}

.head_section--content .right .imgs {
  flex-shrink: 0;
  position: relative;
  margin-bottom: 5px;
}

[dir="rtl"] .head_section--content .right .imgs {
  display: flex;
  justify-content: flex-end;
}

.head_section--content .right .imgs .imgs_1 {
  position: relative;
  animation: 12.5s infinite img1Animation;
  -webkit-animation: 12.5s infinite img1Animation;
}

.head_section--content .right .imgs .imgs_2 {
  position: absolute;
  top: 0;
  left: 130px;
  opacity: 0;
  animation: 12.5s infinite img2Animation;
  -webkit-animation: 12.5s infinite img2Animation;
}

@keyframes img1Animation {
  0% {
    left: 0;
    top: -100px;
    opacity: 0;
  }
  14%,
  85% {
    left: 0;
    top: 0;
    opacity: 1;
  }
  90%,
  100% {
    left: 50px;
    opacity: 0;
  }
}

@keyframes img2Animation {
  0%,
  5% {
    top: -100px;
    opacity: 0;
    left: 190px;
  }
  14%,
  82% {
    top: 0;
    opacity: 1;
    left: 130px;
  }
  88%,
  100% {
    left: 240px;
    opacity: 0;
  }
}

/* start services section */
.services_section {
  background-color: #fff;
  padding: 100px 0;
}

.provide_services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 25px;
  margin-bottom: 58px;
}

.provide_services .img {
  flex-shrink: 0;
  width: 385px;
  height: auto;
}

.provide_services .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provide_services .info h2 {
  font-size: 28px;
  font-weight: 700;
  font-family: "product-sans-bold", sans-serif;
  color: #000;
  margin-bottom: 22px;
}

.provide_services .info .more_info h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "product-sans-bold", sans-serif;
  color: #006b99;
  margin-bottom: 7px;
}

.provide_services .info .more_info p {
  font-size: 24px;
  color: #707070;
  font-weight: 400;
  margin-bottom: 0;
  width: 100%;
  max-width: 80%;
}

.service_card {
  background-color: #f9faff;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
  padding: 25px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  height: 100%;
}

.service_card .icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
}

.service_card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_card h5 {
  font-size: 24px;
  font-weight: 700;
  font-family: "product-sans-bold", sans-serif;
  color: #000;
  margin-bottom: 12px;
}

.service_card p {
  font-size: 19px;
  font-weight: 400;
  color: #707070;
  margin-bottom: 0;
  line-height: 33px;
}

/* start integrated payment section */
.integrated_payment {
  padding: 70px 0;
  background-color: #f6f6f6;
}

.integrated_payment .left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #006b99;
  margin-bottom: 40px;
}

.integrated_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
}

.integrated_list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 20px;
}

.integrated_list li:not(:last-child) {
  margin-bottom: 30px;
}

.integrated_list li .check_icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9cf00;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  margin-top: 7px;
}

.integrated_list li p {
  font-size: 24px;
  font-weight: 400;
  color: #707070;
  margin-bottom: 0;
  line-height: 39px;
}

.integrated_list li p span {
  font-weight: 700;
}

.integrated_img {
  flex-shrink: 0;
  width: 100%;
  max-width: 508px;
  overflow: hidden;
}

.integrated_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* start phone service section */
.integrated_payment.phone_service {
  padding: 50px 0;
  background-color: #fff;
}

.integrated_payment.phone_service .integrated_content {
  column-gap: 60px;
}

.integrated_payment.phone_service .integrated_img {
  max-width: 518px;
}
