/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

a {
  outline: none;
  text-decoration: none;
}

a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

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

@media screen and (min-width: 1700px) {
  .container {
    max-width: 1750px;
  }
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* 1. Variables */
p {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  p {
    font-size: 15px;
  }
}

.main-title {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 75px;
  line-height: 1.2;
  color: #090909;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .main-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .main-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 30px;
    line-height: 1.4;
  }
}

.title {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #103A6C;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .title {
    font-size: 25px;
  }
}

.sub-title {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #090909;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .sub-title {
    font-size: 25px;
  }
}

.sub-text {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .sub-text {
    font-size: 25px;
  }
}

.primarybtn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 19px 25px;
  background: #103A6C;
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  border: none;
  transition: all 0.3s ease-in-out;
}
.primarybtn i {
  font-size: 12px;
  padding-left: 8px;
}
.primarybtn:hover {
  background: #090909;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1199px) {
  .primarybtn {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.secondarybtn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 19px 25px;
  background: #090909;
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  border: none;
  transition: all 0.3s ease-in-out;
}
.secondarybtn i {
  font-size: 12px;
  padding-left: 8px;
}
.secondarybtn:hover {
  background: #103A6C;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1199px) {
  .secondarybtn {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.ghostbtn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 19px 25px;
  background: none;
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
}
.ghostbtn i {
  font-size: 12px;
  padding-left: 8px;
}
.ghostbtn:hover {
  background: #103A6C;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
  border-color: #103A6C;
}
@media screen and (max-width: 1199px) {
  .ghostbtn {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.desktop-view {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .desktop-view {
    display: none;
  }
}

.mobile-view {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-view {
    display: inline-block;
  }
}

/*=============================== Header Start ===============================*/
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4) !important;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transition: all 500ms ease-in-out;
}
.header-nav .logo-block {
  width: 150px;
  margin: 0;
  padding: 0;
  transition: all 500ms ease-in-out;
}
.header-nav .logo-block a {
  display: block;
  margin: 0;
  padding: 0;
}
.header-nav .logo-block img {
  width: 110px;
  height: auto;
  transition: all 500ms ease-in-out;
}
@media screen and (max-width: 1199px) {
  .header-nav .logo-block {
    width: 95px;
  }
}
.header-nav .navigation-field {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 500ms ease-in-out;
}
.header-nav .navigation-field ul li {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  color: #000;
  font-weight: 500;
  margin: 0;
  padding: 0 19px;
  position: relative;
}
.header-nav .navigation-field ul li:first-child {
  padding-left: 0;
}
.header-nav .navigation-field ul li:last-child {
  padding-right: 0;
}
.header-nav .navigation-field ul li a {
  display: inline-block;
  color: #090909;
  margin: 0;
  padding: 49px 6px;
  border-bottom: 4px solid transparent;
  transition: all 500ms ease-in-out;
  position: relative;
}
.header-nav .navigation-field ul li a:hover {
  border-color: #103A6C;
  color: #103A6C;
}
@media screen and (max-width: 1350px) {
  .header-nav .navigation-field ul li a {
    padding: 25px 6px;
  }
}
.header-nav .navigation-field ul li.active a {
  border-color: #103A6C;
  color: #103A6C;
}
.header-nav .navigation-field ul li .icon {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  line-height: 0;
}
.header-nav .navigation-field ul li .icon img {
  width: 10px;
  height: auto;
}
@media screen and (max-width: 1350px) {
  .header-nav .navigation-field ul li {
    padding: 0 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .header-nav .navigation-field ul li {
    display: block;
    padding-right: 0;
    padding: 0;
  }
  .header-nav .navigation-field ul li a {
    display: block;
    padding: 15px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 991px) {
  .header-nav .navigation-field {
    position: fixed;
    width: 300px;
    right: -100%;
    top: 0;
    bottom: 0;
    background: #103A6C !important;
    transition: all 500ms ease-in-out;
    box-shadow: -3px 0px 7px 0px rgba(10, 36, 114, 0.35);
    flex-flow: column;
    justify-content: flex-start;
    align-items: normal;
    padding: 0 20px;
    z-index: 999;
    overflow: auto;
  }
  .header-nav .navigation-field.opened {
    right: 0;
  }
}
.header-nav .btn-block {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-nav .btn-block .icon-btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0 10px;
  padding: 0;
  transition: all 450ms ease-in-out;
  border-radius: 50%;
  overflow: hidden;
}
.header-nav .btn-block .icon-btn img {
  width: 40px;
  height: auto;
}
.header-nav .btn-block .icon-btn:hover {
  box-shadow: 0px 6px 25px 0px rgba(73, 230, 112, 0.6);
}
@media screen and (min-width: 992px) {
  .header-nav.header-sticky {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .header-nav.header-sticky .logo-block img {
    width: 75px;
  }
  .header-nav.header-sticky .navigation-field ul li a {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 991px) {
  .header-nav {
    padding: 15px 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    position: relative;
  }
}

.close-block {
  margin: 0;
  padding: 15px;
  padding-right: 0;
  text-align: right;
  display: none;
}
.close-block .close-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  outline: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-block .close-btn i {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .close-block {
    display: block;
  }
}

.humberger-menu {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  outline: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
.humberger-menu img {
  width: 29px;
  height: auto;
}
@media screen and (max-width: 991px) {
  .humberger-menu {
    display: flex;
  }
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: 91;
}
.overlay.opened {
  visibility: visible;
  opacity: 1;
  transition: all 150ms ease-in-out;
}

@keyframes hvTop {
  from {
    top: 95%;
  }
  to {
    top: 100%;
    opacity: 1;
  }
}
/*=============================== Header End ===============================*/
/*=============================== Banner Start ===============================*/
.banner {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .desc {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
}
.banner .desc .text-block {
  max-width: 900px;
  margin: 0;
  padding: 0;
}
.banner .desc .text-block .main-title {
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .banner .desc .text-block .main-title {
    padding-bottom: 10px;
  }
}
.banner .desc .text-block p {
  max-width: 700px;
  font-size: 18px;
  padding-bottom: 35px;
}
.banner .desc .text-block .btn-block {
  margin: 0;
  padding: 0;
  display: flex;
}
.banner .desc .text-block .btn-block .secondarybtn {
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .banner {
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .banner {
    height: 330px;
  }
}

/*=============================== Banner End ===============================*/
.tag-text {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #090909;
  font-weight: 500;
  border: 1px solid #D7D7D7;
  border-radius: 8px;
  margin: 0 0 30px;
  padding: 8px 12px 8px 33px;
  position: relative;
}
.tag-text:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #090909;
  border-radius: 50%;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.tag-text.bg {
  background: #4F8ECB;
  border-color: transparent;
  color: #fff;
}
.tag-text.bg::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .tag-text {
    margin-bottom: 20px;
  }
}

.about-element {
  margin: 0;
  padding: 0 0 218px;
  background: url(../images/about-bg-img.png) no-repeat left top;
  background-size: cover;
  position: relative;
}
.about-element::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  max-width: 960px;
  width: 100%;
  height: 151px;
  background: #fff;
}
@media screen and (max-width: 991px) {
  .about-element::before {
    display: none;
  }
}
.about-element .top-block {
  margin: 0;
  padding: 0 0 60px;
  position: relative;
  top: -37px;
}
@media screen and (max-width: 991px) {
  .about-element .top-block {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-element .top-block {
    padding-bottom: 35px;
  }
}
.about-element .block {
  margin: 0;
  padding: 0 0 0 145px;
  position: relative;
}
.about-element .block .box {
  margin: 0;
  padding: 0;
}
.about-element .block .box .feature-img {
  max-width: 922px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.about-element .block .box .feature-img img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.about-element .block .box .feature-img:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 1199px) {
  .about-element .block .box .feature-img {
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .about-element .block .box .feature-img {
    max-width: 100%;
  }
}
.about-element .block .box .content-field {
  margin: 0;
  padding: 40px 0 0 0;
}
.about-element .block .box .content-field ul {
  display: flex;
  flex-flow: wrap;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
.about-element .block .box .content-field ul li {
  font-size: 16px;
  line-height: 1;
  color: #090909;
  font-weight: 500;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  margin: 0 10px 10px 0;
  padding: 15px 17px 13px;
  background: #fff;
}
.about-element .block .box .content-field ul li i {
  display: inline-block;
  font-size: 20px;
  color: #4F8ECB;
  vertical-align: middle;
  margin-right: 6px;
}
.about-element .block .box .content-field ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .about-element .block .box .content-field ul {
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .about-element .block .box .content-field ul {
    max-width: 100%;
    justify-content: center;
  }
}
.about-element .block .feature-sec {
  position: absolute;
  max-width: 810px;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  display: flex;
  flex-flow: column-reverse;
}
.about-element .block .feature-sec .img-block {
  max-width: 600px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.about-element .block .feature-sec .img-block img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.about-element .block .feature-sec .img-block:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 1700px) {
  .about-element .block .feature-sec .img-block {
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .about-element .block .feature-sec .img-block {
    max-width: 100%;
  }
}
.about-element .block .feature-sec .text-block {
  margin: 0;
  padding: 50px 0 70px 85px;
}
.about-element .block .feature-sec .text-block .sub-title {
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .about-element .block .feature-sec .text-block .sub-title {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1700px) {
  .about-element .block .feature-sec .text-block {
    max-width: 500px;
    margin: 0 0 0 auto;
    padding: 50px 0 70px;
  }
}
@media screen and (max-width: 991px) {
  .about-element .block .feature-sec .text-block {
    max-width: 100%;
    padding: 45px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .about-element .block .feature-sec .text-block {
    padding-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .about-element .block .feature-sec {
    position: relative;
    flex-flow: column;
    margin-top: 45px;
  }
}
@media screen and (max-width: 1700px) {
  .about-element .block {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .about-element {
    padding: 50px 0 60px;
    text-align: center;
  }
}

.service-element {
  margin: 0;
  padding: 80px 0 200px;
  background: url(../images/service-bg-image.jpg) no-repeat left top;
  background-size: cover;
  position: relative;
}
.service-element .top-block {
  margin: 0 0 80px;
  padding: 0 0 60px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.service-element .top-block .text-block {
  max-width: 780px;
  margin: 0;
  padding: 0;
}
.service-element .top-block .text-block .sub-title {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .service-element .top-block .text-block .sub-title {
    padding-bottom: 25px;
  }
}
.service-element .top-block .ghostbtn {
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media screen and (max-width: 991px) {
  .service-element .top-block .ghostbtn {
    position: relative;
    bottom: 0;
  }
}
@media screen and (max-width: 1199px) {
  .service-element .top-block {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 991px) {
  .service-element .top-block {
    text-align: center;
    padding: 0 0 45px;
    margin-bottom: 45px;
  }
}
.service-element .slider-sec {
  margin: 0;
  padding: 0 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-element .slider-sec .item {
  margin: 0;
  padding: 0 12px;
}
.service-element .slider-sec .box {
  margin: 0;
  padding: 0;
}
.service-element .slider-sec .box .img-block {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.service-element .slider-sec .box .img-block img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.service-element .slider-sec .box .img-block:hover img {
  transform: scale(1.2);
}
.service-element .slider-sec .box .text-block {
  margin: 0;
  padding: 30px 0 0 0;
}
.service-element .slider-sec .box .text-block h3 {
  padding-bottom: 15px;
}
.service-element .slider-sec .box .text-block p {
  color: #7E7E7E;
}
.service-element .slider-sec .slick-arrow {
  width: 62px;
  height: 61px;
  border-radius: 0;
  z-index: 1;
  top: auto;
  bottom: -185px;
  transform: translateY(0);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .service-element .slider-sec .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .service-element .slider-sec .slick-arrow {
    bottom: -120px;
  }
}
@media screen and (max-width: 767px) {
  .service-element .slider-sec .slick-arrow {
    display: none !important;
  }
}
.service-element .slider-sec .slick-prev {
  background: url(../images/prev-icon-black.png) no-repeat left top;
  background-size: cover;
  left: -70px;
}
.service-element .slider-sec .slick-prev:before {
  display: none;
}
.service-element .slider-sec .slick-prev:focus {
  background: url(../images/prev-icon-bg.png) no-repeat left top;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .service-element .slider-sec .slick-prev {
    right: 50px;
  }
}
.service-element .slider-sec .slick-next {
  background: url(../images/next-icon-black.png) no-repeat left top;
  background-size: cover;
  right: -70px;
}
.service-element .slider-sec .slick-next:before {
  display: none;
}
.service-element .slider-sec .slick-next:focus {
  background: url(../images/next-icon-bg.png) no-repeat left top;
  background-size: cover;
}
.service-element .slider-sec .slick-dots {
  bottom: 0;
  left: 0;
  display: none !important;
}
.service-element .slider-sec .slick-dots li {
  margin: 0;
  padding: 0 5px;
  width: auto;
  height: auto;
}
.service-element .slider-sec .slick-dots li button {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0;
  opacity: 0.5;
}
.service-element .slider-sec .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .service-element .slider-sec .slick-dots {
    display: block !important;
    bottom: -100px;
  }
}
@media screen and (max-width: 991px) {
  .service-element .slider-sec {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 991px) {
  .service-element {
    padding: 60px 0 120px;
  }
}

.project-element {
  margin: 0;
  padding: 100px 0;
  background: url(../images/project-bg-img.jpg) no-repeat left top;
  background-size: cover;
}
.project-element .top-block {
  margin: 0 0 80px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.project-element .top-block .text-block {
  max-width: 1150px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.project-element .top-block .text-block .title {
  color: #090909;
  font-weight: 500;
}
@media screen and (max-width: 1700px) {
  .project-element .top-block .text-block {
    max-width: 920px;
  }
}
@media screen and (max-width: 1365px) {
  .project-element .top-block .text-block {
    max-width: 745px;
  }
}
@media screen and (max-width: 1199px) {
  .project-element .top-block .text-block {
    max-width: 600px;
  }
}
@media screen and (max-width: 991px) {
  .project-element .top-block .text-block {
    margin: 0 auto;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .project-element .top-block {
    display: block;
    text-align: center;
    margin-bottom: 45px;
  }
}
.project-element .block {
  margin: 0;
  padding: 0;
}
.project-element .block .box {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.project-element .block .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(20, 56, 107, 0) 30.19%, #14386B 100%);
}
.project-element .block .box img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 500ms ease-in-out;
}
.project-element .block .box:hover img {
  transform: scale(1.2);
}
.project-element .block .box .content-block {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 40px;
  z-index: 2;
}
.project-element .block .box .content-block .sub-text {
  padding-bottom: 15px;
}
.project-element .block .box .content-block p {
  color: #E3E3E3;
}
@media screen and (max-width: 1199px) {
  .project-element .block .box .content-block {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-element .block .box .content-block {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 991px) {
  .project-element .block .box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .project-element {
    padding: 50px 0 30px;
  }
}

.card-box {
  width: 100%;
  margin: 0;
  padding: 0;
}
.card-box .img-block {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.card-box .img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 650ms ease-in-out;
  mix-blend-mode: multiply;
}
.card-box .img-block:hover img {
  transform: scale(1.2);
}
.card-box .text-block {
  margin: 0;
  padding: 20px 0 0 0;
}
.card-box .text-block p {
  font-size: 15px;
  font-style: italic;
  color: #CACACA;
  font-weight: 400;
}

.prd-element {
  margin: 0;
  padding: 100px 0 282px;
  background: url(../images/team-bg-img.png) no-repeat left top #EDFCFF;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.prd-element .top-field {
  margin: 0 0 80px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.prd-element .top-field .title {
  color: #fff;
  padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .prd-element .top-field .title {
    padding-bottom: 8px;
  }
}
.prd-element .top-field p {
  max-width: 910px;
  color: #CACACA;
}
@media screen and (max-width: 1199px) {
  .prd-element .top-field p {
    max-width: 600px;
  }
}
@media screen and (max-width: 991px) {
  .prd-element .top-field {
    margin-bottom: 45px;
  }
}
.prd-element .slider-field {
  margin: 0;
  padding: 0;
}
.prd-element .slider-field .item {
  width: 340px;
  margin: 0 30px 0 0;
  padding: 0;
}
.prd-element .slider-field .slick-arrow {
  width: 57px;
  height: 56px;
  border-radius: 0;
  z-index: 1;
  top: -245px;
  transform: translateY(0);
}
@media screen and (max-width: 1199px) {
  .prd-element .slider-field .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .prd-element .slider-field .slick-arrow {
    top: -205px;
  }
}
@media screen and (max-width: 767px) {
  .prd-element .slider-field .slick-arrow {
    display: none !important;
  }
}
.prd-element .slider-field .slick-prev {
  background: url(../images/prev-icon-bg.png) no-repeat center;
  background-size: cover;
  left: auto;
  right: 65px;
}
.prd-element .slider-field .slick-prev:before {
  display: none;
}
.prd-element .slider-field .slick-prev:focus {
  background: url(../images/prev-icon-bg-wh.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .prd-element .slider-field .slick-prev {
    right: 50px;
  }
}
.prd-element .slider-field .slick-next {
  background: url(../images/next-icon-bg.png) no-repeat center;
  background-size: cover;
  right: 0;
}
.prd-element .slider-field .slick-next:focus {
  background: url(../images/next-icon-bg-wh.png) no-repeat center;
  background-size: cover;
}
.prd-element .slider-field .slick-next:before {
  display: none;
}
.prd-element .slider-field .slick-dots {
  bottom: 0;
  left: 0;
  display: none !important;
}
.prd-element .slider-field .slick-dots li {
  margin: 0;
  padding: 0 5px;
  width: auto;
  height: auto;
}
.prd-element .slider-field .slick-dots li button {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0;
  opacity: 0.5;
}
.prd-element .slider-field .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .prd-element .slider-field .slick-dots {
    display: block !important;
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .prd-element .slider-field {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .prd-element {
    padding: 60px 0 200px;
  }
}
@media screen and (max-width: 767px) {
  .prd-element {
    padding: 50px 0 100px;
    background: url(../images/team-bg-img.png) no-repeat left top #142434;
    background-size: cover;
  }
}

/*=============================== Footer Start ===============================*/
.footer {
  margin: 0;
  padding: 80px 0 0;
  background: url(../images/footer-bg-img.jpg) no-repeat left top;
  background-size: cover;
}
.footer .footer-top {
  margin: 0;
  padding: 0 0 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .title {
  max-width: 535px;
  width: 100%;
  font-weight: 500;
  color: #090909;
}
@media screen and (max-width: 1700px) {
  .footer .footer-top .title {
    max-width: 435px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer-top .title {
    max-width: 295px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-top .title {
    max-width: 500px;
    margin: 0 auto;
  }
}
.footer .footer-top p {
  max-width: 452px;
  width: 100%;
  color: #4F5C6E;
}
@media screen and (max-width: 1365px) {
  .footer .footer-top p {
    max-width: 320px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer-top p {
    padding-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-top p {
    max-width: 100%;
    padding: 15px 0 25px;
  }
}
.footer .footer-top .btn-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
.footer .footer-top .btn-block .secondarybtn {
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .footer .footer-top .btn-block {
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-top {
    display: block;
    text-align: center;
    padding-bottom: 45px;
  }
}
.footer .footer-mid {
  margin: 0;
  padding: 60px 0 48px;
}
.footer .footer-mid .logo-block {
  width: 110px;
  margin: 0 0 60px;
  padding: 0;
}
.footer .footer-mid .logo-block a {
  display: block;
  margin: 0;
  padding: 0;
}
.footer .footer-mid .logo-block img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .footer .footer-mid .logo-block {
    margin-bottom: 40px;
  }
}
.footer .footer-mid .d-flex {
  display: flex;
  align-items: flex-start;
  flex-flow: wrap;
  max-width: 400px;
}
.footer .footer-mid .d-flex ul {
  width: 50%;
  padding-right: 30px;
}
.footer .footer-mid .d-flex ul:last-child {
  padding-right: 0;
}
.footer .footer-mid .d-flex ul li {
  font-size: 16px;
  line-height: 1.4;
  color: #090909;
  font-weight: 500;
  margin: 0;
  padding: 0 0 22px 0;
  position: relative;
}
.footer .footer-mid .d-flex ul li:last-child {
  padding-bottom: 0;
}
.footer .footer-mid .d-flex ul li a {
  display: inline-block;
  color: #4F5C6E;
  margin: 0;
  padding: 0;
}
.footer .footer-mid .d-flex ul li a:hover {
  color: #103A6C;
}
@media screen and (max-width: 576px) {
  .footer .footer-mid .d-flex ul {
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-mid .d-flex ul:last-child {
    padding-top: 15px;
  }
}
.footer .footer-mid .box {
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box h3 {
  font-family: "Anek Devanagari", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #090909;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 0 0 45px;
}
@media screen and (max-width: 991px) {
  .footer .footer-mid .box h3 {
    padding-bottom: 25px;
  }
}
.footer .footer-mid .box h6 {
  font-size: 14px;
  line-height: 1;
  color: #090909;
  font-weight: 400;
  margin: 0;
  padding: 0 0 15px;
  opacity: 0.7;
}
.footer .footer-mid .box p {
  max-width: 530px;
  color: #4F5C6E;
  padding: 0;
  margin: 0 0 50px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991px) {
  .footer .footer-mid .box p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-mid .box p {
    font-size: 16px;
  }
}
.footer .footer-mid .box .logo-field {
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box .logo-field ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer .footer-mid .box .logo-field ol li {
  margin: 0;
  padding: 0 30px 0 0;
}
.footer .footer-mid .box .logo-field ol li:last-child {
  padding-right: 0;
}
.footer .footer-mid .box .logo-field ol li img {
  width: 77px;
  height: auto;
  mix-blend-mode: darken;
}
.footer .footer-mid .box .block {
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box .block ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box .block ol li {
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px 0;
  padding: 0;
}
.footer .footer-mid .box .block ol li:last-child {
  margin-bottom: 0;
}
.footer .footer-mid .box .block ol li .icon-img {
  width: 24px;
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box .block ol li .icon-img img {
  width: 100%;
  height: auto;
}
.footer .footer-mid .box .block ol li .text {
  flex: 1;
  margin: 0;
  padding: 0 0 0 28px;
}
.footer .footer-mid .box .block ol li .text label {
  display: block;
  font-family: "Anek Devanagari", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #090909;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  padding: 0 0 7px;
}
.footer .footer-mid .box .block ol li .text p {
  font-size: 16px;
  color: #4F5C6E;
  margin: 0;
  padding: 0;
}
.footer .footer-mid .box .block ol li .text a {
  display: inline-block;
  font-size: 16px;
  color: #4F5C6E;
  transition: all 400ms ease-in-out;
}
.footer .footer-mid .box .block ol li .text a:hover {
  color: #103A6C;
}
@media screen and (max-width: 991px) {
  .footer .footer-mid .box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer-mid {
    padding: 45px 0 0;
  }
}
.footer .footer-bottom {
  margin: 0;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.footer .footer-bottom p {
  font-size: 16px;
  color: #4F5C6E;
}
@media screen and (max-width: 1700px) {
  .footer {
    padding: 190px 0 0 0;
  }
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 60px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 0;
    padding: 52px 0 0 0;
  }
}

/*=============================== Footer End ===============================*/
.contact-modal {
  max-width: 1025px;
}
@media screen and (max-width: 1199px) {
  .contact-modal {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .contact-modal .align-items-center {
    align-items: inherit !important;
  }
}

.contact-sec {
  position: relative;
}
.contact-sec .modal-header {
  margin: 0;
  padding: 0;
  border-bottom: none;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 222;
}
.contact-sec .modal-header .btn-close {
  box-shadow: none;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  color: #000;
  opacity: 1;
}
.contact-sec .lt-block {
  max-width: 416px;
  margin: 0;
  padding: 0;
  position: relative;
}
.contact-sec .lt-block .img-block {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.contact-sec .lt-block .img-block img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .contact-sec .lt-block .img-block img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .contact-sec .lt-block .img-block {
    height: 100%;
  }
}
.contact-sec .lt-block .content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 9, 9, 0.94);
  margin: 0;
  padding: 30px 30px;
  border-radius: 20px 20px 0 0;
}
.contact-sec .lt-block .content-box ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-sec .lt-block .content-box ul li {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0 0 20px;
}
.contact-sec .lt-block .content-box ul li .icon-img {
  width: 16px;
  margin: 0;
  padding: 0;
}
.contact-sec .lt-block .content-box ul li .icon-img img {
  width: 100%;
  height: auto;
}
.contact-sec .lt-block .content-box ul li .text {
  flex: 1;
  margin: 0;
  padding: 0 0 0 21px;
}
.contact-sec .lt-block .content-box ul li .text p {
  font-size: 16px;
  color: #fff;
}
.contact-sec .lt-block .content-box ul li .text a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.contact-sec .lt-block .content-box ul li .text a:hover {
  color: #103A6C;
}
.contact-sec .lt-block .content-box h6 {
  font-size: 13px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding: 20px 0 0 0;
}
@media screen and (max-width: 991px) {
  .contact-sec .lt-block {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact-sec .lt-block {
    max-width: 100%;
    height: auto;
    margin-bottom: 35px;
  }
}
.contact-sec .form-block {
  margin: 0;
  padding: 0;
}
.contact-sec .form-block .up-content {
  margin: 0;
  padding: 0 0 40px;
}
.contact-sec .form-block .up-content .sub-title {
  padding-bottom: 15px;
}
.contact-sec .form-block .up-content p {
  font-size: 16px;
}
.contact-sec .form-block .form-box {
  margin: 0;
  padding: 0 0 10px;
}
.contact-sec .form-block .form-box .form-control {
  background: #fff;
  border: 1px solid #A9A9A9;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  box-shadow: none;
  outline: none;
}
.contact-sec .form-block .form-box .form-control:focus {
  border-color: #103A6C;
}
.contact-sec .form-block .form-box .form-control.textarea-control {
  height: 120px;
}
.contact-sec .form-block .btn-box {
  margin: 0;
  padding: 30px 0 0 0;
}

/*==============================================================

                INNER PAGE START

==============================================================*/
/*=============================== About Page Start ===============================*/
.inner-banner {
  margin: 0;
  padding: 0;
  position: relative;
}
.inner-banner img {
  width: 100%;
  height: auto;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .inner-banner img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.inner-banner .desc {
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  left: 0;
  right: 0;
}
.inner-banner .desc .text-block {
  max-width: 572px;
  margin: 0;
  padding: 0;
}
.inner-banner .desc .text-block .main-title {
  padding-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .inner-banner .desc .text-block .main-title {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
  .inner-banner .desc .text-block .main-title {
    padding-bottom: 5px;
  }
}
.inner-banner .desc .text-block p {
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .inner-banner .desc .text-block p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .inner-banner .desc .text-block {
    max-width: 595px;
  }
}
@media screen and (max-width: 991px) {
  .inner-banner .desc .text-block {
    max-width: 445px;
  }
}
@media screen and (max-width: 575px) {
  .inner-banner {
    height: 220px;
  }
}

.wwa-element {
  margin: 0;
  padding: 100px 0 80px;
  background: #fff;
}
.wwa-element .top-block {
  margin: 0 0 80px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.wwa-element .top-block .desc {
  max-width: 900px;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1300px) {
  .wwa-element .top-block .desc {
    max-width: 800px;
  }
}
@media screen and (max-width: 1199px) {
  .wwa-element .top-block .desc {
    max-width: 585px;
  }
}
@media screen and (max-width: 991px) {
  .wwa-element .top-block .desc {
    max-width: 445px;
  }
}
@media screen and (max-width: 767px) {
  .wwa-element .top-block .desc {
    margin: 15px auto 0;
    max-width: 550px;
  }
}
@media screen and (max-width: 767px) {
  .wwa-element .top-block .desc .sub-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .wwa-element .top-block .desc .sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .wwa-element .top-block {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .wwa-element .top-block {
    text-align: center;
    display: block;
  }
}
.wwa-element .img-block {
  max-width: 922px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wwa-element .img-block img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.wwa-element .img-block:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 991px) {
  .wwa-element .img-block {
    margin-bottom: 40px;
  }
}
.wwa-element .text-block {
  margin: 0;
  padding: 0;
}
.wwa-element .text-block p {
  padding-bottom: 25px;
}
.wwa-element .text-block ul {
  display: flex;
  flex-flow: wrap;
  margin: 25px 0 0 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
.wwa-element .text-block ul li {
  font-size: 16px;
  line-height: 1;
  color: #090909;
  font-weight: 500;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  margin: 0 10px 10px 0;
  padding: 15px 17px 13px;
  background: #fff;
}
.wwa-element .text-block ul li i {
  display: inline-block;
  font-size: 20px;
  color: #4F8ECB;
  vertical-align: middle;
  margin-right: 6px;
}
.wwa-element .text-block ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 575px) {
  .wwa-element .text-block ul li {
    padding: 15px 12px 13px;
  }
}
@media screen and (max-width: 1199px) {
  .wwa-element .text-block ul {
    max-width: 700px;
  }
}
@media screen and (max-width: 991px) {
  .wwa-element .text-block ul {
    max-width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .wwa-element {
    padding: 60px 0 0;
  }
}

.vision-mission {
  margin: 0;
  padding: 172px 0 100px;
  background: url(../images/vission-mission-bg-img.png) no-repeat left top;
  background-size: cover;
}
.vision-mission .block {
  margin: 0 auto;
  padding: 0;
  max-width: 1300px;
}
.vision-mission .box {
  max-width: 970px;
  margin: 0 0 50px auto;
  padding: 40px 50px;
  background: #090909;
}
.vision-mission .box:last-child {
  margin: 0;
}
.vision-mission .box .title {
  color: #fff;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .vision-mission .box .title {
    padding-bottom: 12px;
  }
}
.vision-mission .box p {
  color: #CACACA;
  padding-bottom: 20px;
}
.vision-mission .box p:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 991px) {
  .vision-mission .box {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission .box {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 991px) {
  .vision-mission {
    padding: 60px 0;
  }
}

.core-element {
  margin: 0;
  padding: 100px 0 70px;
}
.core-element .title {
  text-align: center;
  padding-bottom: 65px;
}
@media screen and (max-width: 575px) {
  .core-element .title {
    padding-bottom: 40px;
  }
}
.core-element .item {
  width: 20%;
  margin: 0;
  padding: 0 15px;
}
.core-element .item .box {
  margin: 0;
  padding: 0;
}
.core-element .item .box .icon-block {
  margin: 0;
  padding: 0;
}
.core-element .item .box .icon-block img {
  width: 94px;
  height: auto;
}
.core-element .item .box .text-block {
  max-width: 290px;
  margin: 0;
  padding: 30px 0;
}
.core-element .item .box .text-block .sub-title {
  padding-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .core-element .item .box .text-block .sub-title {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 991px) {
  .core-element .item {
    width: 33.3%;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .core-element .item {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .core-element {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 575px) {
  .core-element {
    padding: 40px 0 20px;
  }
}

.vtf-element {
  margin: 0;
  padding: 110px 0 253px;
  background: url(../images/feature-bg-img.png) no-repeat left top #EDFCFF;
  background-size: cover;
}
.vtf-element .text-block {
  max-width: 910px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.vtf-element .text-block .title {
  color: #fff;
  padding-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .vtf-element .text-block .title {
    padding-bottom: 15px;
  }
}
.vtf-element .text-block p {
  color: #CACACA;
}
@media screen and (max-width: 1199px) {
  .vtf-element {
    padding: 100px 0 185px;
  }
}
@media screen and (max-width: 991px) {
  .vtf-element {
    padding: 60px 0 150px;
  }
}
@media screen and (max-width: 575px) {
  .vtf-element {
    background-size: 100% 152%;
    padding: 45px 0;
  }
}

.pwd-element {
  margin: 0;
  padding: 120px 0 50px;
}
.pwd-element .top-block {
  margin: 0 0 80px;
  padding: 0 0 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #D7D7D7;
}
.pwd-element .top-block .title {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pwd-element .top-block .title {
    max-width: 100%;
    padding-bottom: 20px;
  }
}
.pwd-element .top-block .desc {
  max-width: 900px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.pwd-element .top-block .desc.mx-100 {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .pwd-element .top-block .desc.mx-100 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .pwd-element .top-block .desc .sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element .top-block {
    margin-bottom: 40px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .pwd-element .top-block {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element .col-md-6 {
    margin-bottom: 30px;
  }
}
.pwd-element .box {
  margin: 0 0 55px;
  padding: 0;
}
.pwd-element .box .img-block {
  max-width: 922px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.pwd-element .box .img-block img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.pwd-element .box .img-block:hover img {
  transform: scale(1.2);
}
.pwd-element .box .text-block {
  max-width: 290px;
  margin: 0;
  padding: 30px 0 0;
}
.pwd-element .box .text-block .sub-title {
  padding-bottom: 7px;
}
.pwd-element .box .text-block p {
  font-size: 16px;
}
.pwd-element .box .content-desc {
  margin: 0;
  padding: 0;
  position: relative;
  margin-top: -165px;
  z-index: 1;
}
.pwd-element .box .content-desc .text-block {
  background: #090909;
  padding: 40px;
  max-width: 780px;
  margin-left: auto;
}
.pwd-element .box .content-desc .text-block .up-text {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pwd-element .box .content-desc .text-block .up-text .sub-title {
  color: #fff;
}
.pwd-element .box .content-desc .text-block .up-text p {
  color: #fff;
}
.pwd-element .box .content-desc .text-block ul {
  padding-bottom: 15px;
}
.pwd-element .box .content-desc .text-block ul li {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  margin: 0;
  padding: 0 0 12px 16px;
  position: relative;
}
.pwd-element .box .content-desc .text-block ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 10px;
}
.pwd-element .box .content-desc .text-block p {
  color: #fff;
  margin-bottom: 30px;
}
.pwd-element .box .content-desc .text-block .primarybtn {
  background: #fff;
  color: #090909;
}
.pwd-element .box .content-desc .text-block .primarybtn:hover {
  background: #103A6C;
  color: #fff;
}
.pwd-element .box .content-desc .text-block.mx-center {
  max-width: 710px;
  margin: 0 auto;
}
.pwd-element .box .content-desc .text-block.mx-center .up-text {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .pwd-element .box .content-desc .text-block {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .pwd-element .box .content-desc .text-block {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element .box .content-desc {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element .box {
    margin: 0;
    height: 100%;
    background: #090909;
  }
}
.pwd-element .btn-field {
  margin: 0;
  padding: 25px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pwd-element .btn-field {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element.team-element .box {
    background: none;
    height: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .pwd-element {
    padding: 80px 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .pwd-element {
    padding: 50px 0 30px;
  }
}

.feature-element {
  margin: 0;
  padding: 100px 0 0 0;
}
.feature-element .top-block {
  margin: 0 0 80px;
  padding: 0 0 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #D7D7D7;
}
.feature-element .top-block .desc {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .feature-element .top-block {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .feature-element .top-block {
    text-align: center;
  }
}
.feature-element .feature-img {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.feature-element .feature-img img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.feature-element .feature-img:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 1199px) {
  .feature-element {
    padding: 60px 0 0 0;
  }
}

.key-element {
  margin: 0;
  padding: 60px 0 100px;
}
.key-element .title {
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .key-element .title {
    padding-bottom: 35px;
  }
}
.key-element .box {
  margin: 0;
  padding: 30px 15px;
  border: 1px solid #E5E5E5;
  text-align: center;
  height: 100%;
}
.key-element .box .logo-block {
  margin: 0;
  padding: 0;
}
.key-element .box .logo-block img {
  width: 180px;
  height: auto;
}
@media screen and (max-width: 575px) {
  .key-element .box .logo-block img {
    width: 80px;
  }
}
.key-element .box .text-block {
  margin: 0;
  padding: 30px 0 0 0;
}
.key-element .box .text-block .sub-text {
  padding-bottom: 10px;
  color: #090909;
}
@media screen and (max-width: 575px) {
  .key-element .box .text-block .sub-text {
    font-size: 22px;
  }
}
.key-element .box .text-block p {
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .key-element .box {
    padding: 15px;
  }
}
.key-element .btn-field {
  margin: 0;
  padding: 50px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .key-element {
    padding: 40px 0 55px;
  }
}

.all-boxes {
  margin: 0;
  padding: 0;
}
.all-boxes a {
  display: block;
  margin: 0;
  padding: 0;
}
.all-boxes .box {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.all-boxes .box img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #eee;
  transition: all 500ms ease-in-out;
}
.all-boxes .box .content-desc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  background: rgba(20, 56, 107, 0.9);
  margin: 0;
  padding: 25px 30px;
  transition: all 500ms ease-in-out;
}
.all-boxes .box .content-desc .text-block {
  max-width: 408px;
  margin: 0;
  padding: 0;
}
.all-boxes .box .content-desc .text-block .sub-text {
  padding-bottom: 12px;
}
.all-boxes .box .content-desc .text-block p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #E6E6E6;
}
.all-boxes .box .content-desc .btn-block {
  position: absolute;
  right: 7px;
  bottom: 7px;
}
.all-boxes .box .content-desc .btn-block .btn {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  box-shadow: none;
  outline: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.all-boxes .box .content-desc .btn-block .btn img {
  width: 23px;
  height: auto;
  transform: scale(1);
}
.all-boxes .box .content-desc p {
  color: #fff;
}
.all-boxes .box:hover img {
  transform: scale(1.2);
}
.all-boxes .box:hover .content-desc {
  bottom: 0;
}

.osr-element {
  margin: 0;
  padding: 80px 0 80px;
}
.osr-element .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 60px;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.osr-element .nav-tabs .nav-item {
  padding: 0 5px;
}
.osr-element .nav-tabs .nav-item .nav-link {
  background: #EBEBEB;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #14386B;
  font-weight: 500;
  margin: 0;
  padding: 13px 21px;
  border-radius: 10px;
}
.osr-element .nav-tabs .nav-item .nav-link:hover {
  background: #103A6C;
  color: #fff;
}
.osr-element .nav-tabs .nav-item .nav-link.active {
  background: #103A6C;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .osr-element .nav-tabs {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.osr-element .top-block {
  margin: 0;
  padding: 0 0 45px 0;
  text-align: center;
}
.osr-element .top-block p {
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Anek Devanagari", sans-serif;
  font-size: 18px;
  color: #090909;
}
@media screen and (max-width: 991px) {
  .osr-element .top-block {
    padding-bottom: 35px;
  }
}
.osr-element .btn-field {
  margin: 0;
  padding: 55px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .osr-element .btn-field {
    padding: 30px 0 0 0;
  }
}
@media screen and (max-width: 991px) {
  .osr-element {
    padding: 45px 0 50px;
  }
}

.oap-element {
  margin: 0;
  padding: 110px 0 253px;
  background: url(../images/oap-bg-img.png) no-repeat left top #EDFCFF;
  background-size: cover;
}
.oap-element .top-block {
  margin: 0 0 45px;
  padding: 0 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.oap-element .top-block .title {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .oap-element .top-block {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.oap-element .list-field {
  margin: 0;
  padding: 0;
}
.oap-element .list-field .item {
  width: 20%;
  margin: 0;
  padding: 0 8px;
}
@media screen and (max-width: 1199px) {
  .oap-element .list-field .item {
    width: 33.3%;
  }
}
@media screen and (max-width: 767px) {
  .oap-element .list-field .item {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .oap-element .list-field .item {
    width: 100%;
  }
}
.oap-element .list-field .box {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.oap-element .list-field .box .icon-img {
  margin: 0;
  padding: 0;
}
.oap-element .list-field .box .icon-img img {
  width: 52px;
  height: auto;
}
.oap-element .list-field .box .text-block {
  flex: 1;
  margin: 0;
  padding: 0 0 0 20px;
}
.oap-element .list-field .box .text-block p {
  max-width: 200px;
  color: #E6E6E6;
}
@media screen and (max-width: 1199px) {
  .oap-element .list-field .box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .oap-element {
    padding: 60px 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .oap-element {
    background: url(../images/oap-bg-img.png) no-repeat left top #152840;
    background-size: cover;
    padding: 40px 0 10px;
  }
}

.slider-element {
  margin: 0;
  padding: 160px 0 90px 0;
}
.slider-element .item {
  margin: 0;
  padding: 0 12px;
}
.slider-element .item .img-block {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.slider-element .item .img-block img {
  width: 100%;
  height: auto;
  transition: all 500ms ease-in-out;
}
.slider-element .item .img-block:hover img {
  transform: scale(1.2);
}
.slider-element .slick-arrow {
  width: 57px;
  height: 56px;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .slider-element .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.slider-element .slick-prev {
  background: url(../images/prev-icon-black.png) no-repeat center;
  background-size: cover;
  left: -30px;
}
.slider-element .slick-prev:before {
  display: none;
}
.slider-element .slick-prev:focus {
  background: url(../images/prev-icon-bg-wh.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .slider-element .slick-prev {
    left: 0;
  }
}
.slider-element .slick-next {
  background: url(../images/next-icon-black.png) no-repeat center;
  background-size: cover;
  right: -30px;
}
.slider-element .slick-next:focus {
  background: url(../images/next-icon-bg-wh.png) no-repeat center;
  background-size: cover;
}
.slider-element .slick-next:before {
  display: none;
}
@media screen and (max-width: 1199px) {
  .slider-element .slick-next {
    right: 0;
  }
}
.slider-element .slick-dots {
  bottom: 0;
  left: 0;
  display: none !important;
}
.slider-element .slick-dots li {
  margin: 0;
  padding: 0 5px;
  width: auto;
  height: auto;
}
.slider-element .slick-dots li button {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0;
  opacity: 0.5;
}
.slider-element .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .slider-element {
    padding: 90px 0 45px;
  }
}
@media screen and (max-width: 991px) {
  .slider-element {
    padding: 20px 0 40px;
  }
}

.details-element {
  margin: 0;
  padding: 0;
}
.details-element .block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.details-element .title {
  color: #000;
  padding-bottom: 10px;
}
.details-element p {
  color: #090909;
  padding-bottom: 30px;
}
.details-element .sub-text {
  color: #090909;
  padding-bottom: 10px;
  font-weight: 600;
}
.details-element .sub-text.font-400 {
  font-weight: 400;
  padding-bottom: 30px;
}
.details-element ul {
  padding-bottom: 30px;
}
.details-element ul li {
  font-size: 17px;
  line-height: 1.6;
  color: #090909;
  font-weight: 400;
  margin: 0;
  padding: 0 0 0 15px;
  position: relative;
}
.details-element ul li:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #090909;
  border-radius: 50%;
  left: 0;
  top: 11px;
}
.details-element ul.d-flex {
  flex-flow: wrap;
}
.details-element ul.d-flex li {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .details-element ul.d-flex li {
    width: 100%;
  }
}
.details-element .icon-img {
  margin: 0;
  padding: 2px;
}
.details-element .icon-img i {
  font-size: 20px;
}
.details-element .content-block {
  flex: 1;
  margin: 0;
  padding: 0 0 0 15px;
}

.related-element {
  margin: 0;
  padding: 40px 0 80px 0;
}
.related-element .top-field {
  margin: 0;
  padding: 45px 0 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.related-element .top-field .title {
  color: #14386B;
}
@media screen and (max-width: 767px) {
  .related-element .top-field {
    padding: 35px 0 30px;
  }
}
.related-element .all-boxes .item {
  padding: 0 3px;
}
.related-element .all-boxes .slick-arrow {
  width: 57px;
  height: 56px;
  border-radius: 0;
  z-index: 1;
  top: -118px;
  transform: translateY(0);
}
@media screen and (max-width: 1199px) {
  .related-element .all-boxes .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .related-element .all-boxes .slick-arrow {
    top: -100px;
  }
}
@media screen and (max-width: 767px) {
  .related-element .all-boxes .slick-arrow {
    top: -70px;
  }
}
.related-element .all-boxes .slick-prev {
  background: url(../images/prev-icon-bg-wh.png) no-repeat center;
  background-size: cover;
  left: auto;
  right: 65px;
}
.related-element .all-boxes .slick-prev:before {
  display: none;
}
.related-element .all-boxes .slick-prev:focus {
  background: url(../images/prev-icon-black.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .related-element .all-boxes .slick-prev {
    right: 50px;
  }
}
.related-element .all-boxes .slick-next {
  background: url(../images/next-icon-bg-wh.png) no-repeat center;
  background-size: cover;
  right: 0;
}
.related-element .all-boxes .slick-next:focus {
  background: url(../images/next-icon-black.png) no-repeat center;
  background-size: cover;
}
.related-element .all-boxes .slick-next:before {
  display: none;
}
.related-element .all-boxes .slick-dots {
  bottom: 0;
  left: 0;
  display: none !important;
}
.related-element .all-boxes .slick-dots li {
  margin: 0;
  padding: 0 5px;
  width: auto;
  height: auto;
}
.related-element .all-boxes .slick-dots li button {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 0;
  opacity: 0.5;
}
.related-element .all-boxes .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .related-element {
    padding: 25px 0 50px;
  }
}

.page-content h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-content h2 {
    font-size: 24px;
  }
}
.page-content h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-content h3 {
    font-size: 22px;
  }
}
.page-content h4 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-content h4 {
    font-size: 20px;
  }
}
.page-content h5 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-content h5 {
    font-size: 18px;
  }
}
.page-content h6 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-content h6 {
    font-size: 16px;
  }
}
.page-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .page-content p {
    font-size: 14px;
  }
}
.page-content ul {
  list-style: disc;
  padding-left: 20px;
}
.page-content ul li p {
  margin-bottom: 0;
}/*# sourceMappingURL=style.min.css.map */