/* 01 : Website Global CSS BOF
========================================================== */

body,
html {
  height: 100%;
}

body {
  background: #fff;
  font-family: "DM Sans";
  color: #fff;
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: #fff;
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: #005689;
  text-decoration: none;
}

a.blue_text:hover {
  color: #00a1ed;
}
a.white_text:hover {
  color: #fff;
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

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

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Classes CSS BOF
  ==================================================== */

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* GLOBAL FONTS */
/* ================================================== */
.poppins-font {
  font-family: "DM Sans";
}
.sora-font {
  font-family: "Sora";
}

/* Background &amp; Color Style CSS BOF
  =================================================== */

/* Font Color Style CSS BOF */
.white_text {
  color: #fff;
}

.white_text_op6 {
  color: rgb(255, 255, 255, 0.6);
}

.blue_text {
  color: #0c2340;
}

.sky_blue_text {
  color: #0284c7;
}

.black_text {
  color: #000;
}

.gray_text {
  color: #525252;
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans";
  line-height: normal;
  font-style: normal;
  color: #000;
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

.h1 {
  font-size: 60px;
  line-height: normal;
}

.h2 {
  font-size: 40px;
  line-height: normal;
}

.h3 {
  font-size: 24px;
  line-height: 34px;
}

.h4 {
  font-size: 20px;
  line-height: normal;
}

.h5 {
  font-size: 18px;
  line-height: normal;
}

.h6 {
  font-size: 16px;
  line-height: normal;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_bl {
  font-weight: 800;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.word-break {
  word-break: break-all;
}

/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
  line-height: auto;
  font-family: "DM Sans";
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.bttn {
  background-color: #0284c7;
  padding: 14.5px 24px;
  font-size: 20px;
  text-transform: capitalize;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 34px;
  text-transform: unset;
  box-shadow: none;
  line-height: normal;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bttn:hover,
.bttn:focus,
.bttn:active,
.bttn:focus-visible {
  box-shadow: none;
  outline: none;
  background-color: #0c2340;
  color: #fff;
}

.bttn-secondary {
  background-color: #fff;
  color: #0284c7;
  padding: 15px 24px;
}

.bttn-secondary:hover,
.bttn-secondary:focus,
.bttn-secondary:active,
.bttn-secondary:focus-visible {
  box-shadow: none;
  outline: none;
  background-color: #0c2340;
  color: #fff;
}

.bttn-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #ffffff;
  padding: 15px 24px;
}

.bttn-white:hover,
.bttn-white:focus,
.bttn-white:active,
.bttn-white:focus-visible {
  box-shadow: none;
  outline: none;
  background-color: #0c2340;
  color: #fff;
  border-color: #0c2340;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
  ==================================================== */

.form-control,
.form-select {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 16px;
  color: #000;
  font-family: "DM Sans";
  font-weight: normal;
  padding: 13px 16px;
  line-height: normal;
}

.form-label {
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
  color: #525252;
  margin-bottom: 12px;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 13px 16px;
  height: 90px;
}

.form-group .required-field {
  color: rgba(255, 63, 63, 1);
}

/** Placeholder CSS BOF **/
.form-control::placeholder {
  color: #52525280;
  font-weight: 400;
  font-size: 16px;
}

.form-control::-moz-placeholder {
  color: #52525280;
  font-weight: 400;
  font-size: 16px;
}

.form-control:-ms-input-placeholder {
  color: #52525280;
  font-weight: 400;

  font-size: 16px;
}

.form-control::-webkit-input-placeholder {
  color: #52525280;
  font-weight: 400;
  font-size: 16px;
}

.form-control::-o-input-placeholder {
  color: #52525280;
  font-weight: 400;
  font-size: 16px;
}

/* Focus State CSS BOF   */
.form-control:focus,
.form-select:focus {
  border: 1px dashed #0284c7;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: #fff;
  color: #000;
  outline: 0;
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow-x: hidden;
}

.common-padding-t {
  padding-top: 100px;
}

.common-padding-b {
  padding-bottom: 100px;
}

.common-border-radius {
  border-radius: 20px;
}

.flex-0 {
  flex: 0 0 auto;
}

section {
  scroll-margin-top: 100px;
}

/* ======================================================
                  COMMON CONTAINER SOC
  ====================================================== */
/* @media(min-width:992px){
    .container{
      max-width: calc(960px + (1.5rem * 0.5));
    }
  }
  @media (min-width: 1200px) {
    .container {
      max-width: calc(1135px + (1.5rem * 0.5));
    }
  }
@media (min-width: 1400px) {
  .container {
    max-width: calc(1238px + (1.5rem * 0.5));
  }
} */

@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}

/* COMMON ACCORDION */
.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-button {
  background-color: #fefefe;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #d1d1d1;
  box-shadow: unset;
  border-bottom: 0;
}

.accordion-item {
  background-color: #fefefe;
  border: none;
  margin-bottom: 24px;
  border-radius: 10px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 10px;
}

/* .accordion-collapse.show */
.accordion-item:not(:first-of-type) {
  border-top: 1px solid #fefefe;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/dropdown-toggle.svg");
  transform: unset;
}

.accordion-button::after {
  background-image: url("../images/accordian-arrow.png");
  transform: rotate(180deg);
}

.accordion-button {
  padding: 24px 22px;
}

.accordion-body {
  padding: 20px;
  text-align: start;
}

/* COMMON TITLE CSS */
.title-main {
  padding-bottom: 60px;
}
.title-main .title-main-lable {
  background-color: rgb(2, 132, 199, 0.2);
  border-radius: 30px;
  padding: 16px 24px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  line-height: 18px;
  font-weight: bold;
}

/* COMMON SECTION SHADOW */
.common-sec-shadow {
  position: relative;
}

/* ======================================================
=========================================================
                      HEADER SOC
=========================================================
====================================================== */

.header-main {
  width: 100%;
  padding: 0;
  background-color: #fff;
}

.header-right.active {
  position: fixed;
  box-shadow: 0px 0px 15px 0px rgb(0, 86, 137, 0.4);
  -webkit-animation-name: header_sticky;
  animation-name: header_sticky;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding-top: 0;
}
/*Sticky Menu*/
@-webkit-keyframes header_sticky {
  0% {
    margin-top: -163px;
    opacity: 0;
  }
  50% {
    margin-top: -111px;
    opacity: 0.5;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes header_sticky {
  0% {
    margin-top: -163px;
    opacity: 0;
  }
  50% {
    margin-top: -111px;
    opacity: 0.5;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.header-right.active .header-logo {
  margin-top: 0;
}

.header-main.active .header-logo a {
  width: 100px;
}
.site-header {
  position: relative;
  z-index: 999;
}

.header-main .header-inner-main {
  position: relative;
}

.header-main .header-inner-main .header-inner {
  width: 100%;
  align-items: end;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: normal;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item
  .nav-link {
  position: relative;
  font-size: 24px;
  color: #0c2340;
  font-weight: 500;
  padding: 0px;
  text-shadow: none;
  transition: all 400ms ease-in-out;
}
.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item
  .nav-link:hover,
.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item.active
  .nav-link:hover {
  color: #0284c7;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu
  ul
  .nav-item.active
  .nav-link {
  font-weight: 700;
}

.header-main .navbar-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.header-main .header-inner-main .header-menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 100px 20px 0;
}

.header-logo {
  padding: 7px 100px;
  min-width: 356px;
  margin-top: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo a {
  width: 156px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    justify-content: start;
    display: flex;
    align-items: center;
    gap: 60px;
  }
}

.header-main button.navbar-toggler {
  padding: 0;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #0284c7;
  border-radius: 10px;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(1) {
  top: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.header-main button.navbar-toggler.collapsed span.icon-bar:nth-child(1),
.header-main
  .header-inner
  .header-right
  button.navbar-toggler.collapsed
  span.icon-bar:nth-child(3) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  margin: 4px auto;
}

.header-main button.navbar-toggler span.icon-bar {
  margin: 0;
  background-color: #fff;
  border-radius: 2px;
  display: block;
  height: 1.5px;
  position: relative;
  width: 14px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main .header-right {
  width: 100%;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header-main button.navbar-toggler span.icon-bar:nth-child(3) {
  top: -1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/* TOP BAR */
.header-top-bar {
  background-color: #0284c7;
  padding: 10px 100px 10px 30px;
  display: flex;
  transition: all 500ms ease;
  margin-left: 356px;
  position: relative;
  z-index: 9;
}
.header-top-bar a,
.header-top-bar span {
  font-size: 18px;
}

/* ======================================================
=========================================================
                        BANNER SOC
=========================================================
====================================================== */
.banner-sec {
  min-height: calc(100vh - 170px);
  background: linear-gradient(328.61deg, #02ace9 40.45%, #051d3b 109.59%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: table;
  width: 100%;
  position: relative;
}

.banner-sec .banner-main {
  height: 100%;
  display: table-cell;
  z-index: 9;
  /* padding: 200px 0; */
  vertical-align: middle;
}
.banner-sec .banner-main .banner-lable {
  background: rgb(12 35 64 / 70%);
  padding: 16px 20px;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 40px;
}
.banner-sec .banner-main .banner-lable .banner-lable-dot {
  width: 7.37px;
  background-color: #fff;
  border-radius: 100%;
  height: 7.37px;
  display: block;
}
.banner-sec .banner-main .banner-left {
  padding: 86px 0 200px 0;
  width: calc(100% - 700px);
}
.banner-sec .banner-main .banner-right {
  width: 718px;
  margin-top: 15px;
}
.banner-vector-wrapper {
  width: 100%;
}

.banner-sec .banner-main .banner-left .h1 {
  max-width: 630px;
}

.banner-sec .banner-vector-wrapper .banner-vector1 {
  bottom: -60px;
  left: -73px;
}
.banner-sec .banner-vector-wrapper .banner-vector2 {
  bottom: 80px;
  right: 14px;
}
.banner-sec .banner-vector-wrapper .banner-vector3 {
  top: 62px;
  right: 30px;
}
.banner-sec .banner-vector-wrapper .banner-vector4 {
  left: 0;
  top: 130px;
}

/* ======================================================
=========================================================
                   TAG LINE SOC
=========================================================
====================================================== */
.tagline-sec {
  background-color: #0c2340;
}
.tagline-vector {
  bottom: 99%;
  left: 0;
  width: 100%;
  right: 0;
}
.tagline-container {
  padding: 18px 0 30px;
  max-width: 1720px;
  margin: auto;
}

/* ======================================================
=========================================================
                      SERVICE SOC
=========================================================
====================================================== */
.service-sec {
  background-color: #e7f3ff;
}
.service-container {
  max-width: 1720px;
  margin: auto;
}
.service-sec .title-main {
  max-width: 901px;
}
.service-row .service-col {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  border-top: 0.77px solid #e2e8f0;
}
.service-row .service-col:after {
  content: "";
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.service-row .service-col .service-img img,
.service-row .service-col .service-img {
  display: block;
}
.service-row .service-col .service-col-p {
  min-height: 150px;
  line-height: 30px;
}
.service-row .service-col .h3 {
  min-height: 90px;
}

/* ======================================================
=========================================================
                  WHY CHOOSE US SOC
=========================================================
====================================================== */

.why-choose-sec .title-main {
  max-width: 567px;
}
.why-choose-row .why-choose-col {
  gap: 30px;
}
.why-choose-row .why-choose-col .why-choose-img {
  background-color: rgb(2, 132, 199, 0.1);
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  flex: 0 0 auto;
}

/* ======================================================
=========================================================
                  HOW IT WORKS SOC
=========================================================
====================================================== */
.how-works-sec {
  background-color: #0c2340;
}
.how-works-sec .title-main {
  max-width: 800px;
}
.how-works-row {
  --bs-gutter-x: 46px;
  position: relative;
  z-index: 1;
}
.how-works-row:after {
  content: "";
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  width: 72%;
  margin: auto;
  height: 3px;
  z-index: -1;
}
.how-works-row .how-works-col .how-works-img {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.how-works-col .how-works-col-p {
  line-height: 30px;
}

/* ======================================================
=========================================================
                  INDUSTRY WE SERVE SOC
=========================================================
====================================================== */

.industry-serve-sec .title-main {
  max-width: 901px;
}
.industry-serve-row .industry-serve-col {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  border: 1px solid #e2e8f0;
}

/* ======================================================
=========================================================
                  TESTIMONIAL SOC
=========================================================
====================================================== */
.testimonial-sec {
  background-color: #0284c705;
}
.testimonial-sec .title-main {
  max-width: 1000px;
}
.testimonial-row .testimonial-col {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  border: 1px solid #e2e8f0;
}
.testimonial-row .testimonial-col .testimonial-col-p {
  line-height: 35px;
}

.testimonial-row .testimonial-col .testimonial-img {
  color: #f59e0b;
}
.testimonial-name .testimonial-name-img {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  flex: 0 0 auto;
  font-size: 30px;
}

/* ======================================================
=========================================================
                       CTA SOC
=========================================================
====================================================== */
.cta-sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ======================================================
=========================================================
                  CONTACT US SOC
=========================================================
====================================================== */
.contact-us-sec {
  background-color: #e7f3ff;
}
.contact-us-sec .title-main {
  max-width: 567px;
}
.contact-us-row .contact-us-col {
  gap: 30px;
}
.contact-us-row .contact-us-col .contact-us-img {
  background-color: #d1deec;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  flex: 0 0 auto;
}
.contact-form {
  background: #0c23401a;
  border-top: 0.77px solid #e2e8f0;
  padding: 60px 40px;
  border-radius: 16px;
}
.contact-form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #fff;
}

/* ======================================================
=========================================================
                        FOOTER SOC
=========================================================
====================================================== */
.footer-sec {
  background-color: #0c2340;
}

.footer-main .footer-wrapper {
  padding: 100px 0 80px;
}

.footer-main .footer-p {
  line-height: 34px;
}

.footer-main .footer-list {
  display: flex;
  gap: 22px;
  flex-direction: column;
}

.footer-main .footer-bottom {
  border-top: 0.5px solid #ffffff;
  padding: 20px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-main a:hover {
  color: #00a1ed !important;
}


/* PAGE NOT FOUND PAGE CSS */
.page-no-found img{
 margin: -20px 0;
}
