* {
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0c4a6e;
  --white: #fff;
  --black: #000;
  --green: #0c4a6e;
  --gradient: linear-gradient(85deg, #0c4a6e, #0284c7);
}

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

.py-5 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pb-5 {
  padding-bottom: 60px !important;
}

a {
  text-decoration: none;
}

.btn {
  background-color: rgba(0, 128, 0, 0.37);
  border-radius: 0;
  color: var(--white);
}

body {
  background-color: #F6F7FC;
  font-family: "Noto Sans", serif;
  font-size: 15px;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 45px;
  font-weight: 700;
}

h2 {
  font-size: 34px;
  font-weight: 500;
}

h3 {
  font-size: 28px;
  font-weight: 500;
}

p {
  font-size: 15px;
  font-weight: 400;
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  padding: 0;
  z-index: 10;
}
.header .navbar .navbar-brand img {
  height: 50px;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.4s ease;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  transition: all 0.4s ease;
  transform: translateY(-2px);
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu {
  display: none;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item:hover .drop_down_menu {
  display: block;
  position: absolute;
  left: 0;
  top: 40px;
  background-color: var(--white);
  border: none;
  padding: 0;
  border-radius: 10px;
  text-align: start;
  width: 100%;
  z-index: 999;
  overflow: hidden;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu li a {
  padding: 10px 5px;
  border-bottom: 1px solid #d9d9d9;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  white-space: normal;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu li a img {
  height: 22px;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu li a:hover {
  background-color: var(--blue);
  color: var(--white);
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu li a:hover img {
  filter: brightness(200);
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .drop_down_menu li:last-child a {
  border-bottom: none;
}
.header .navbar .navbar-collapse .get_in_touch a {
  color: var(--white) !important;
  background-color: var(--green);
}
.header .navbar .navbar-collapse .get_in_touch a:hover {
  background-color: var(--green);
}

.page-header.is-sticky {
  position: fixed;
  width: 100%;
  background-color: var(--white);
  z-index: 99;
}
.page-header .navbar {
  padding: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.banner_section {
  position: relative;
}
.banner_section .carousel-inner .carousel-item {
  position: relative;
  z-index: 3;
}
.banner_section .carousel-inner .carousel-item .banner_video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner_section .carousel-inner .carousel-item img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.banner_section .carousel-control-prev,
.banner_section .carousel-control-next,
.banner_section .carousel-indicators {
  z-index: 4;
}
.banner_section .banner_content {
  position: absolute;
  left: 0;
  z-index: 4;
  width: 100%;
  bottom: 5px;
  text-align: center;
}
.banner_section .banner_content div {
  color: var(--white);
  background-color: rgba(15, 39, 83, 0.85);
}
.banner_section .banner_content div h1 {
  font-size: 38px;
}

.stamp_div {
    background-image: url(../images/ftr-bg.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--blue);
    padding: 6px 0;
    margin-top: -5px;
}

.stamp_content h2 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.stemp_img img {
    height: 100px;
}

.about_content h2 {
  color: var(--blue);
}
.about_content h2 span {
  color: var(--green);
}
.about_content .key_solutions ul li span {
  display: block;
  padding: 10px 30px;
  background-color: var(--green);
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}
.about_content .key_solutions ul li span:hover {
  background-color: var(--blue);
  transition: all 0.3s ease;
  transform: scale(1.1);
}

.highlight_points ul {
  row-gap: 1.1rem !important;
}
.highlight_points ul li a {
  display: inline-block;
  transition: all 0.4s ease;
}
.highlight_points ul li a:hover {
  transition: all 0.4s ease;
  margin-top: -3px;
}

.service_section {
  position: relative;
}
.service_section h3 {
  color: var(--blue);
  font-weight: 800;
}
.service_section .shape_1 {
  position: absolute;
  top: 0;
  left: 0;
}
.service_section .shape_2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.service_section .mid_services {
  position: relative;
}
.service_section .mid_services img {
  width: 247px;
}
.service_section .mid_services .arrow_1 {
  position: absolute;
  top: 59px;
  transform: rotate(-20deg);
  right: 36%;
}
.service_section .mid_services .arrow_2 {
  position: absolute;
  bottom: 59px;
  transform: rotate(21deg);
  right: 36%;
}
.service_section .service_img img {
  box-shadow: 0px 0px 20px rgba(15, 39, 83, 0.34);
}

.application_area {
  background-image: url("../images/application.png");
}

.application_area p{
display: none !important;
}

.application_card {
  background: var(--gradient);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  padding: 20px 20px 20px 60px;
}
.application_card:hover {
  transition: all 0.4s ease;
  transform: translateY(-10px);
}
.application_card div {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
}
.application_card div span {
  display: inline-block;
  height: 80px;
  width: 80px;
  background-color: var(--white);
  line-height: 65px;
  text-align: center;
  font-size: 45px;
  border-radius: 50%;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.application_card div span img {
  width: 45px;
}
.application_card h5 {
  display: flex;
  align-items: center;
  height: 100%;
}

.about_page_banner {
  background-image: url("../images/banner-for-all-pages.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 90px;
  position: relative;
}
.about_page_banner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(15, 39, 83, 0.7450980392);
}
.about_page_banner .breadcrumb .breadcrumb-item::before {
  color: var(--white) !important;
}
.about_page_banner .breadcrumb .breadcrumb-item .active {
  color: var(--white);
  text-decoration: underline;
}

.what_sets_us {
  background-image: url("../images/application.png");
  background-size: cover;
  background-position: center;
}

.what_sets_us_card {
  border: 1px solid #d9d9d9;
  transition: all 0.3s ease;
  height: 100%;
  background-color: var(--white);
  color: var(--black);
  position: relative;
}
.what_sets_us_card h5 {
  color: var(--black);
  font-weight: 900;
}
.what_sets_us_card:hover {
  box-shadow: 0 0 10px #d9d9d9;
  transition: all 0.3s ease;
  transform: translateY(-5px);
}
.what_sets_us_card:hover span {
  background-color: var(--green);
}
.what_sets_us_card:hover span img {
  filter: brightness(50);
}
.what_sets_us_card span {
  display: inline-block;
  height: 90px;
  width: 90px;
  background-color: var(--white);
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: absolute;
  margin-top: -60px;
}
.what_sets_us_card span img {
  width: 80px !important;
}
.what_sets_us_card ul {
  list-style: initial;
  margin-left: 20px;
}
.what_sets_us_card ul li {
  margin-bottom: 5px;
  font-size: 13px;
}
.what_sets_us_card ul li:last-child {
  margin-bottom: 0;
}

.form_input select {
  border-radius: 5px 0 0 5px !important;
}
.form_input.name_input input {
  border-radius: 0 5px 5px 0 !important;
}
.form_input .form-control:focus,
.form_input .form-select:focus {
  box-shadow: none;
  border-color: #d9d9d9;
}
.form_input .iti {
  width: 100%;
}
.form_input .btn {
  width: 100%;
  display: block;
  font-weight: 700;
  background-color: var(--blue);
  border: 2px solid var(--blue);
}
.form_input .btn:hover {
  color: var(--blue);
  background-color: var(--white);
  border: 2px solid var(--blue);
}
.form_input .form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}
.form_input .form-check-input:focus {
  border: 1px solid #d9d9d9;
  box-shadow: none;
}

.sticky_btn {
  position: fixed;
  z-index: 10;
  right: 3%;
  bottom: 5%;
}
.sticky_btn a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 35px;
  background-color: var(--green);
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--white);
}
.sticky_btn a img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}
.sticky_btn a:hover {
  transition: all 0.3s ease;
  background-color: var(--blue);
}
.sticky_btn a:hover a img {
  filter: brightness(50);
}

.footer {
  background-image: url("../images/ftr-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--blue);
  padding: 60px 0 25px;
}
.footer .ftr_content img {
  filter: brightness(200);
}
.footer .ftr_content ul li {
  margin-bottom: 15px;
}
.footer .ftr_content ul li:last-child {
  margin-bottom: 0;
}
.footer .ftr_content ul li a {
  color: var(--white);
  transition: all 0.4s ease;
  display: block;
}
.footer .ftr_content ul li a:hover {
  transition: all 0.4s ease;
  transform: translateX(5px);
}
.footer .ftr_content .ftr_address li span {
  flex-shrink: 0;
}
.footer .ftr_content .ftr_address li span img {
  width: 18px !important;
  height: 18px !important;
}
.footer .ftr_content .ftr_social_links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .ftr_content .ftr_social_links li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  border: 1px solid var(--white);
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.footer .ftr_content .ftr_social_links li a:hover {
  transform: translateY(-2px);
  border-radius: 5px;
}
.footer .ftr_content .ftr_social_links li a img {
  height: 20px;
}
.footer .ftr_content form div input {
  border-radius: 0;
}
.footer .ftr_content form div button {
  background-color: var(--green);
  border: 1px solid var(--white);
  border-left: 0 !important;
}
.footer .ftr_content form div button img {
  height: 24px;
  width: 24px;
}

.btm_ftr {
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--white);
}
.btm_ftr p {
  font-size: 14px;
}

.get_in_touch_section {
  background-image: url("../images/getin-touch.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.get_in_touch_section:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7137254902);
  left: 0;
  top: 0;
}
.get_in_touch_section .get_in_touch_content {
  position: relative;
  z-index: 1;
}
.get_in_touch_section .get_in_touch_content a {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 19px;
  padding: 10px 30px;
  border: 2px solid var(--blue);
  transition: all 0.4s ease;
}
.get_in_touch_section .get_in_touch_content a:hover {
  background-color: transparent;
  border: 2px solid var(--white);
  transition: all 0.4s ease;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0turn;
  inherits: false;
}
.main_card {
  animation: 3s gradient-angle infinite linear;
  border: 5px solid transparent;
  background-image: var(--gradient), conic-gradient(from var(--gradient-angle), #0c4a6e 0%, #0284c7 37%, #0284c7 30%, #0284c7 33%, #0c4a6e 40%, #0c4a6e 50%, #0284c7 77%, #0284c7 80%, #0284c7 83%, #0c4a6e 90%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 1turn;
  }
}
.main_card {
  padding: 20px;
  text-decoration: none;
  color: currentColor;
  border-radius: 20px;
  place-content: center;
  place-items: center;
}

.owl-carousel .owl-item .main_card .img_div {
  background-color: var(--white);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px var(--white);
}

.owl-carousel .owl-item .main_card img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.strategic_section .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
}

.strategic_section .owl-nav button {
  background-image: var(--gradient) !important;
  margin-right: 5px;
  height: 45px;
  width: 45px;
  border-radius: 5px;
}

.strategic_section .owl-nav button:hover {
  background-image: linear-gradient(85deg, #0284c7, #0c4a6e) !important;
}

.strategic_section .owl-nav .owl-next {
  transform: rotate(180deg) !important;
}/*# sourceMappingURL=style.css.map */

.entry-header {
display:none !important;
}

.footer-nav-widgets-wrapper{
display:none !important;
}