/*font starts here*/
body,
html {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--dark-gray);
}

:root {
  --black: #000000 !important;
  --white: #ffffff !important;
  --primary: #1a56db !important;
  --secondary: #233876 !important;
  --dark-gray: #1f2a37 !important;
  --urbanist-font: "Jost", sans-serif;
  --footer-text-blue: #02a6f0 !important;
}

.urbanist-light {
  font-family: "Urbanist", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.urbanist-regular {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.urbanist-medium {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.urbanist-semibold {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.urbanist-bold {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.section_title {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary);
}
/*font ends here*/

/* header section style starts here */
.scroll_top_btn {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #022377;
  color: #fff;
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  text-align: center;
  line-height: 32px;
  z-index: 3;
  cursor: pointer;
}
#myHeader.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #022377;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  z-index: 30;
  padding: 25px 15px;
  min-height: auto;
}
.top_menu_wrapper {
  padding: 35px 15px;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(28, 100, 242, 0) 100%
  );
  min-height: 132px;
  width: 100%;
}
.header_blue_bg {
  /* background: rgb(2, 35, 119); */
  /* background: linear-gradient(
    45deg,
    rgba(2, 35, 119, 1) 0%,
    rgba(28, 100, 242, 1) 100%
  ); */
  /* background: rgb(0, 27, 115);
  background: linear-gradient(
    90deg,
    rgba(0, 27, 115, 1) 0%,
    rgba(45, 180, 255, 1) 28%,
    rgba(0, 27, 115, 1) 67%,
    rgba(45, 180, 255, 1) 100%
  ); */
  background: rgb(1, 21, 75);
  background: linear-gradient(
    90deg,
    rgba(1, 21, 75, 1) 0%,
    rgba(28, 100, 242, 1) 33%,
    rgba(1, 21, 75, 1) 66%,
    rgba(10, 105, 255, 1) 100%
  );
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
  background-size: 400% 400%;
  min-height: 100vh;
  position: relative;
  animation: gradient 15s ease infinite;

  /* clip-path: polygon(0% 0%, 100% 0%, 100% 55.8%, 0% 100%); */
}

.os_logo_img img {
  max-width: 90%;
  width: 100%;
}

.os_logo_img {
  margin: 50px 20px 60px 20px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 0 0 0 40px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.mobile_menu_close_btn {
  display: none;
}
/* header section style ends here */

/* banner style starts here */

.banner_text_box h1 {
  font-weight: 700;
  font-size: 55px;
}

.banner_text_box {
  color: #fff;
}

.banner_text_box h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 30px 0;
}

button.btn.get_demo_btn {
  font-size: 22px;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 30px;
  border-radius: 30px;
  margin: 20px 0 0 0;
}

.banner_partition {
  position: absolute;
  bottom: -1px;
  width: 100%;
  left: 0;
}

.banner_text_img_box {
  position: relative;
  z-index: 1;
}
.mobile_menu_btn {
  display: none;
}

/* banner style ends here */

/* who we are style starts here */

.who_we_are_section {
  background: #f1f7fe;
  width: 100%;
  padding: 40px 0;
}

/* who we are style ends here */

/* video section style starts here */

.video_partition_top {
  width: 100%;
  background: url(../img/grid_upper_bg.png) no-repeat center top;
  background-size: cover;
  height: 108px;
}
.video_partition_bottom {
  width: 100%;
  background: url(../img/grid_lower_bg.png) no-repeat center bottom;
  background-size: cover;
  height: 108px;
}
.video_title {
  font-size: 40px;
  font-weight: 600;
}
.video_title span {
  color: var(--primary);
}
/* .video_box {
  padding: 10px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
} */

video {
  max-width: 675px;
  width: 100%;
  height: 393px;
  border: 15px solid #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
/* video section style ends here */

/* product section style starts here */
.product_wrapper {
  background: #f5faff;
  padding: 60px 0;
}
.product_main_title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 30px 0;
}
.product_main_title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--primary);
  position: absolute;
}
.product_main_title span {
  background: var(--primary);
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 15px 0 0;
}
.product_main_title h2 {
  color: var(--dark-gray);
  background: #f5faff;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_list_title h3 {
  font-size: 25px;
  color: var(--dark-gray);
  font-weight: 600;
}
.product_list_title {
  border-right: 1px solid var(--primary);
}
.product_list_title h4 {
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  background: #e2f0ff;
  border-radius: 100px;
  padding: 10px 20px;
  width: auto;
  display: inline-block;
}
.product_content_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-gray);
}
.product_bullet_list_box > li {
  /* list-style-image: url(../img/bullet_icon.svg); */
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-left: 40px;
  margin: 0 0 15px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.product_bullet_list_box li::before {
  background: url(../img/bullet_icon.svg);
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
}
.product_sub_list {
  list-style: disc;
}
.product_sub_list li::marker {
  color: var(--primary);
}
/* product section style ends here */

/* clientele style starts here */
.clientele_wrapper {
  padding: 40px 0;
}
.clientele_swiper_wrapper {
  position: relative;
  padding: 0 60px;
}
.clientele_swiper_wrapper .clientele-slider-prev {
  background: url(../img/left_arrow.svg);
  width: 44px;
  height: 44px;
  left: 0;
  opacity: 1;
  top: var(--swiper-navigation-top-offset, 50%);
}
.clientele_swiper_wrapper .clientele-slider-prev:after {
  content: "";
}
.clientele_swiper_wrapper .clientele-slider-next {
  background: url(../img/right_arrow.svg);
  width: 44px;
  height: 44px;
  right: 0;
  opacity: 1;
  top: var(--swiper-navigation-top-offset, 50%);
}
.clientele_swiper_wrapper .clientele-slider-next:after {
  content: "";
}
.clientele_slider .swiper-slide {
  text-align: center;
}
.grid_partition_lower {
  width: 100%;
  background: url(../img/grid_lower_bg.png) no-repeat center bottom;
  background-size: cover;
  height: 108px;
}
.clientele_slider .swiper-slide img {
  height: 110px;
}
/* clientele style ends here */

/* our advantage style starts here */

.advantage_section {
  padding: 40px 0 80px 0;
}
.advantage_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.adv_icons {
  width: 65px;
  height: 65px;
  background: #e7eeff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
}

.adv_details {
  flex: 1;
}
.adv_details h4 {
  font-size: 18px;
  font-weight: 600;
}

.adv_details p {
  font-size: 16px;
  line-height: 22px;
  margin: 15px 0 0 0;
}
/* our advantage style ends here */

/* our story style starts here */
.our_story_section {
  background: rgb(245, 250, 255);
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 1) 0%,
    rgba(207, 231, 255, 1) 100%
  );
  padding: 40px 0 80px 0;
}

.our_story_content_section h3 {
  font-size: 25px;
  font-weight: 600;
}

.our_story_content_section p {
  font-size: 16px;
}

.our_story_slider_wrapper {
  background: #fff;
  padding: 40px 20px 20px 20px;
  border-radius: 20px;
}

.story_list h3 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 1px var(--primary);
}

.timeline_line {
  background: var(--primary);
  height: 6px;
  width: 100%;
  margin: 30px 0 40px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timeline_line::before {
  content: "";
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
}

.story_list h4 {
  font-size: 18px;
  font-weight: 600;
}

.story_list p {
  font-size: 14px;
  line-height: 20px;
  padding-right: 40px;
}

.story_arrow_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* our story style ends here */

/* our partner style starts here */
.our_partner_section {
  padding: 40px 0 80px 0;
}
.partner_slider_swiper .swiper-slide {
  text-align: center;
}
/* our partner style ends here */

/* happy clients style starts here */

.happy_clients_section {
  background: rgb(245, 250, 255);
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 1) 0%,
    rgba(207, 231, 255, 1) 100%
  );
  padding: 40px 0 80px 0;
  position: relative;
}

.happy_clients_section::before {
  width: 252px;
  height: 222px;
  content: "";
  background: url(../img/quotes_img.png) no-repeat;
  position: absolute;
  top: 20px;
  left: 60px;
}
.happy_clients_section .container {
  position: relative;
  z-index: 1;
}
.happy_clients_section::after {
  width: 601px;
  height: 601px;
  content: "";
  background: url(../img/element_bg_top_right.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.happy_clients_slider_wrapper {
  position: relative;
  padding: 0 60px;
}

.quote_box {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
}

.quote_box img {
  margin: 0 0 20px 0;
}

.quote_box p {
  font-size: 14px;
  line-height: 24px;
  min-height: 170px;
}

.client_designation {
  min-height: 50px;
}

.client_name {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}

.client_designation {
  font-size: 13px;
}
.happy_clients_slider_wrapper .client-slider-prev {
  background: url(../img/left_arrow.svg);
  width: 44px;
  height: 44px;
  left: 0;
  opacity: 1;
  top: var(--swiper-navigation-top-offset, 50%);
}

.happy_clients_slider_wrapper .client-slider-prev:after {
  content: "";
}

.happy_clients_slider_wrapper .client-slider-next {
  background: url(../img/right_arrow.svg);
  width: 44px;
  height: 44px;
  right: 0;
  opacity: 1;
  top: var(--swiper-navigation-top-offset, 50%);
}

.happy_clients_slider_wrapper .client-slider-next:after {
  content: "";
}
/* happy clients style ends here */

/* contact form area style starts here */
.iti__arrow {
  border-top-color: #fff;
}
.iti__country {
  color: #000;
}
.form_section {
  padding: 80px 0 0 0;
}
.form_text h2 {
  font-size: 40px;
  color: var(--primary);
  font-weight: 600;
}
.form_text h4 {
  font-size: 22px;
  font-weight: 400;
  line-height: 35px;
}
.form_text h4 span {
  color: var(--primary);
  font-weight: 600;
}
.form_wrapper {
  background: var(--secondary);
  color: #fff;
  padding: 40px;
  border-radius: 20px 20px 0 0;
}

.submit_btn {
  background: var(--primary);
  color: #fff;
  padding: 15px 60px;
  border-radius: 100px;
}

.form_wrapper .form-control {
  color: #fff;
  background: none;
  border-bottom: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  resize: none;
}
.form_wrapper .form-select {
  color: #fff;
  background-color: var(--secondary);
  border-bottom: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg width='12' height='8' fill='none' xmlns='http:%2F%2Fwww.w3.org/2000/svg'><path d='M1 1l4 4 4-4' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--secondary) inset !important;
  -webkit-text-fill-color: #fff;
}
/* contact form area style ends here */

/* footer section style starts here */

footer {
  background: #091436;
  color: #fff;
  padding: 60px 0 0 0;
  position: relative;
}
footer::before {
  content: "";
  background: url(../img/footer_map.png) no-repeat center center;
  max-width: 695px;
  width: 100%;
  height: 365px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.social_media_links ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social_media_links ul li {
  margin: 0 25px 0 0;
}

.container.footer_container {
  z-index: 2;
  position: relative;
}

.footer_box .footer_title {
  font-size: 18px;
  color: #02a6f0;
}

.footer_box ul li a {
  color: #fff;
  text-decoration: none;
}

.footer_box ul li {
  margin: 7px 0 0 0;
}

.address_details {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.address_details img {
  margin: 0 15px 0 0;
}

.address_details p {
  font-size: 14px;
  line-height: 24px;
}

.copyright_text.text-center {
  padding: 20px;
  border-top: 1px solid #122768;
}

.address_details a {
  color: #fff;
  text-decoration: none;
}

/* footer section style ends here */

/* inner page style starts here */
.inner_page_top {
  background: #022377;
  min-height: auto;
}
.inner_content_wrapper {
  padding: 80px 0;
}
.inner_banner {
  padding: 60px 15px;
  background: rgb(245, 250, 255);
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 1) 0%,
    rgba(159, 201, 242, 1) 100%
  );
}

.inner_banner h1 {
  color: var(--primary);
}
/* inner page style ends here */

@media screen and (max-width: 991px) {
  .os_logo_img img {
    max-width: 100%;
    width: 100%;
  }
  .product_list_title {
    border-right: none;
  }
  .product_main_title span {
    width: 62px;
    height: 62px;
  }
  .product_main_title span img {
    max-width: 60%;
  }
  .social_media_links {
    margin-bottom: 40px;
  }
  .footer_box {
    margin: 0 0 30px 0;
  }
  .form_text h2 {
    font-size: 25px;
  }
  .form_text h4 {
    font-size: 14px;
    line-height: 24px;
  }
  .happy_clients_section::after {
    display: none;
  }
  .happy_clients_section::before {
    display: none;
  }
  .our_story_content_section h3 {
    font-size: 18px;
    font-weight: 600;
  }
  .our_story_content_section p {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 40px 0;
  }
  .adv_details h4 {
    font-size: 16px;
  }

  .adv_details p {
    font-size: 14px;
    line-height: 20px;
    margin: 15px 0 0 0;
  }
  .video_title {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 30px 0;
  }
  video {
    height: auto;
    border: 8px solid #fff;
  }
  .product_content_title {
    font-size: 16px;
  }

  .product_list_title h3 {
    font-size: 16px;
  }
  .product_list_title h4 {
    font-size: 14px;
  }
  .product_bullet_list_box > li {
    font-size: 14px;
  }
  .product_main_title::before {
    display: none;
  }
  .product_main_title h2 {
    padding: 10px 0px;
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
  }
  .form_wrapper {
    padding: 40px 20px;
    border-radius: 0;
  }
  footer::before {
    display: none;
  }
  .banner_text_box {
    color: #fff;
    text-align: center;
  }
  .banner_text_box h1 {
    font-weight: 700;
    font-size: 30px;
  }
  .banner_text_box h3 {
    font-size: 18px;
    font-weight: 300;
    margin: 20px 0;
  }
  .mobile_menu_btn {
    display: block;
  }
  .section_title {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
  }
  button.btn.get_demo_btn {
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 30px;
    border-radius: 30px;
    margin: 20px 0 30px 0;
  }
  nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: #022377;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    display: none;
  }
  nav.active {
    display: flex;
  }
  .mobile_menu_close_btn {
    background: #000;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  nav ul {
    display: flex;
    flex-direction: column;
  }
  nav ul li {
    margin: 0 0 25px 0;
  }
}
