@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Bukra";
  src: url("../fonts/29LT-Bukra-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Bukra";
  src: url("../fonts/29LT-Bukra-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Bukra";
  src: url("../fonts/29LT-Bukra-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@keyframes customFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes customFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.custom-fade-out {
  animation: customFadeOut 0.1s ease-out forwards;
}

.custom-fade-in {
  animation: customFadeIn 0.3s ease-in forwards;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.custom-btn:hover {
  text-decoration: none;
}
.custom-btn span.text {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}
.custom-btn span.circle {
  margin-left: 20px;
  width: 50px;
  height: 50px;
  border: 2px solid #4cb3b3;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .custom-btn span.circle {
    width: 70px;
    height: 70px;
  }
}
.custom-btn span.circle i {
  color: #4cb3b3;
}

.animated_btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 122px;
  justify-content: flex-end;
}
@media (min-width: 576px) {
  .animated_btn {
    width: 140px;
  }
}
.animated_btn.light .text {
  color: #fff;
}
.animated_btn.light .circle {
  border: 2px solid #fff;
}
.animated_btn.light .circle i {
  color: #fff;
}
.animated_btn.light:hover .circle {
  background-color: #fff;
}
.animated_btn.light:hover .circle i {
  color: #24B4BA;
}
.animated_btn.light:hover .text {
  color: #24B4BA;
}
.animated_btn .text {
  position: absolute;
  left: 0;
  transition: 0.4s;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  color: #09324e;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 576px) {
  .animated_btn .text {
    font-size: 16px;
  }
}
.animated_btn .circle {
  width: 40px;
  border: 2px solid #24B4BA;
  height: 40px;
  border-radius: 25px;
  transition: 0.4s;
  position: relative;
}
@media (min-width: 576px) {
  .animated_btn .circle {
    width: 45px;
    height: 45px;
  }
}
.animated_btn .circle i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
  color: #24B4BA;
  font-size: 18px;
}
@media (min-width: 576px) {
  .animated_btn .circle i {
    right: 13px;
  }
}
.animated_btn:hover .circle {
  width: 100%;
  background-color: #24B4BA;
}
.animated_btn:hover .circle i {
  color: #fff;
  right: 17px;
}
@media (min-width: 576px) {
  .animated_btn:hover .circle i {
    right: 22px;
  }
}
.animated_btn:hover .text {
  left: 28px;
  color: #fff;
}

.animation-border {
  box-shadow: inset 0 0 0 2px #fff;
  position: relative;
}
.animation-border::before, .animation-border::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
}
.animation-border::before {
  top: 0;
  left: 0;
}
.animation-border::after {
  bottom: 0;
  right: 0;
}
.animation-border:hover::before, .animation-border:hover::after {
  width: 100%;
  height: 100%;
}
.animation-border:hover::before {
  border-top-color: #24B4BA;
  border-right-color: #24B4BA;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.animation-border:hover::after {
  border-bottom-color: #24B4BA;
  border-left-color: #24B4BA;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

@media (min-width: 576px) {
  .pagination-wrap nav ul li {
    margin: 0 5px;
  }
}
.pagination-wrap nav ul li a,
.pagination-wrap nav ul li span {
  margin: 0 5px;
  min-width: 35px;
  height: 36px;
  color: #909fba;
  font-size: 14px;
  border: none;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}
.pagination-wrap nav ul li a i,
.pagination-wrap nav ul li a svg,
.pagination-wrap nav ul li span i,
.pagination-wrap nav ul li span svg {
  color: #09324e;
}
.pagination-wrap nav ul li a.active,
.pagination-wrap nav ul li span.active {
  color: #09324e;
  border-bottom: 2px solid #09324e;
}
.pagination-wrap nav ul li a:hover,
.pagination-wrap nav ul li span:hover {
  color: #09324e;
  background-color: #fff;
}
.pagination-wrap nav ul li a:focus,
.pagination-wrap nav ul li span:focus {
  box-shadow: unset !important;
}
.pagination-wrap nav ul li:first-child a, .pagination-wrap nav ul li:last-child a {
  border-radius: 50% !important;
  border: 2px solid #09324e;
}
.pagination-wrap nav ul li:first-child span, .pagination-wrap nav ul li:last-child span {
  border-radius: 50% !important;
  border: 2px solid #09324e;
}
.pagination-wrap nav ul.active span {
  background-color: #24B4BA !important;
  border-color: #24B4BA !important;
  border-radius: 50%;
}

.bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.headings h2 {
  font-size: 22px;
  color: #09324e;
  text-transform: capitalize;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .headings h2 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .headings h2 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .headings h2 {
    font-size: 36px;
  }
}
.headings h3 {
  color: #09324e;
  font-size: 18px;
}
@media (min-width: 576px) {
  .headings h3 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .headings h3 {
    font-size: 22px;
  }
}
.headings span.tag {
  font-size: 13px;
  font-weight: 600;
  color: #249ea0;
  margin-bottom: 6px;
  display: inline-block;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .headings span.tag {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

section {
  padding: 50px 0;
}
@media (min-width: 992px) {
  section {
    padding: 100px 0 !important;
  }
}

p {
  font-size: 15px;
}
@media (min-width: 576px) {
  p {
    font-size: 16px;
  }
}

a.view-all {
  transform: 0, 100px;
  opacity: 0;
  color: #fff;
  font-size: 12px;
  padding-bottom: 5px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
a.view-all::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151c38;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.culture-slider {
  position: relative;
}
.culture-slider .item {
  border-radius: 8px;
  overflow: hidden;
}
.culture-slider .owl-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.culture-slider .owl-dots button {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  outline: 0;
  border: 0;
}
.culture-slider .owl-dots button.active {
  transform: scale(1.6);
}

.contact-form-wrap form input,
.contact-form-wrap form select {
  height: 40px;
  background-color: #fcfeff;
  box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
  border: 1px solid #cbe1ef;
  margin-bottom: 18px;
}
@media (min-width: 576px) {
  .contact-form-wrap form input,
  .contact-form-wrap form select {
    height: 58px;
  }
}
.contact-form-wrap form input:focus,
.contact-form-wrap form select:focus {
  box-shadow: unset;
  border: 1px solid #24B4BA;
}
.contact-form-wrap form input::-moz-placeholder, .contact-form-wrap form select::-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrap form input::placeholder,
.contact-form-wrap form select::placeholder {
  font-size: 14px;
}
.contact-form-wrap form input[type=checkbox],
.contact-form-wrap form select[type=checkbox] {
  height: 30px;
}
.contact-form-wrap form textarea {
  resize: none;
  border: 1px solid #cbe1ef;
  background-color: #fcfeff;
  box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
  padding-top: 20px;
  height: 100px;
}
@media (min-width: 576px) {
  .contact-form-wrap form textarea {
    height: 220px;
  }
}
.contact-form-wrap form textarea::-moz-placeholder {
  font-size: 14px;
}
.contact-form-wrap form textarea::placeholder {
  font-size: 14px;
}
.contact-form-wrap form textarea:focus {
  box-shadow: unset;
  border: 1px solid #24B4BA;
}
.contact-form-wrap form .form-group {
  margin-bottom: 0;
}
.contact-form-wrap form .form-group.form-check {
  margin-top: 15px;
}
.contact-form-wrap form .form-group.form-check input,
.contact-form-wrap form .form-group.form-check select {
  position: relative;
  opacity: 0;
}
.contact-form-wrap form .form-group.form-check input:checked + label::before,
.contact-form-wrap form .form-group.form-check select:checked + label::before {
  content: "✔";
  color: #09324e;
}
.contact-form-wrap form .form-group.form-check label {
  position: relative;
  font-size: 14px;
  padding-left: 15px;
}
.contact-form-wrap form .form-group.form-check label::before {
  content: "";
  min-width: 20px;
  height: 20px;
  border: 1px solid #09324e;
  position: absolute;
  top: 3px;
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.contact-form-wrap form .form-group.form-check label a {
  color: #24B4BA;
}
.contact-form-wrap form a {
  margin-left: 15px;
  margin-top: 15px;
  text-decoration: none;
}
@media (min-width: 576px) {
  .contact-form-wrap form a {
    margin-left: 0;
    margin-top: 0;
  }
}
.contact-form-wrap.job-apply-form {
  position: sticky;
  top: 80px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 30, 68, 0.2901960784);
  border-bottom-left-radius: 50px;
}
.contact-form-wrap.job-apply-form form input::-webkit-file-upload-button {
  background-color: #24B4BA;
  border-radius: 4px;
  border: 0;
  outline: 0;
  margin-top: 3px;
  font-size: 14px;
  padding: 5px 15px;
  color: #fff;
  cursor: pointer;
  margin-right: 15px;
}
@media (min-width: 576px) {
  .contact-form-wrap.job-apply-form form input {
    height: 50px;
  }
}
.contact-form-wrap.job-apply-form form textarea {
  height: 100px;
}
.contact-form-wrap.job-apply-form .headings span.tag {
  font-size: 13px;
}
.contact-form-wrap.job-apply-form .headings h2 {
  font-size: 22px;
}
@media (min-width: 768px) {
  .contact-form-wrap.job-apply-form .headings h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .contact-form-wrap.job-apply-form .headings h2 {
    font-size: 28px;
  }
}

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #56606a;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #24B4BA;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.wrapper {
  overflow: hidden;
}

.content-read-more {
  background-color: transparent;
  border: 0;
  outline: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #24B4BA;
  color: #fff;
  text-transform: capitalize;
  margin-top: 10px;
}
.content-read-more:focus {
  outline: 0;
}

.read-more {
  display: none;
}

h2 {
  font-weight: 600;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
header nav {
  padding: 1rem 1rem !important;
}
@media (min-width: 992px) {
  header nav {
    padding: 2rem 1rem !important;
  }
}
header nav .navbar-nav li {
  transform: translate(0px, 50px);
  opacity: 0;
}
header nav .navbar-nav .nav-item.dropdown-list {
  position: relative;
  z-index: 10;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap {
  border-radius: 10px;
  top: 38px;
  left: -50%;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  display: flex;
  flex-direction: column;
  width: 700px;
  height: 0;
  visibility: hidden;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap {
    width: 800px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.experties {
  left: -128%;
  width: 615px;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.experties {
    width: 700px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.experties span.top {
  left: 152px;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.experties span.top {
    left: 182px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.career {
  left: -218%;
  width: 450px;
}
@media (min-width: 1700px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.career {
    width: 500px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.career span.top {
  left: 229px;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap.career span.top {
    left: 280px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap:hover + .nav-link {
  color: #24B4BA;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap:hover + .nav-link i {
  transform: rotate(180deg);
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap span.top {
  position: absolute;
  width: 120px;
  height: 55px;
  top: -52px;
  left: 58px;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap span.top {
    width: 130px;
    left: 70px;
  }
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul {
  padding: 10px 25px;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul li {
  visibility: hidden;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul li a {
  color: #909fba;
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  font-size: 15px;
  padding: 25px 5px;
  padding-left: 5px;
  text-transform: capitalize;
  position: relative;
  transition: 0.4s;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul li a:hover {
  color: #24B4BA;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul li a:hover::before {
  background-color: #24B4BA;
}
header nav .navbar-nav .nav-item.dropdown-list .dropdown-menu-wrap ul li a::before {
  content: "";
  min-width: 3px;
  height: 30%;
  background-color: #909fba;
  top: 50%;
  transform: translateY(-50%);
  left: -7px;
  position: absolute;
}
header nav .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  padding: 5px 11px;
  text-transform: uppercase;
  outline: 0;
  border: 0;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item .nav-link {
    padding: 5px 22px;
  }
}
header nav .navbar-nav .nav-item .nav-link i,
header nav .navbar-nav .nav-item .nav-link svg {
  margin-left: 5px;
  transition: 0.4s;
}
header nav .navbar-nav .nav-item .nav-link:focus {
  color: #fff;
}
header nav .navbar-nav .nav-item .nav-link:hover {
  color: #24B4BA;
}
header nav .navbar-nav .nav-item .nav-link:hover i,
header nav .navbar-nav .nav-item .nav-link:hover svg {
  transform: rotate(180deg);
}
header nav .navbar-brand {
  transform: translate(0px, 100px);
  opacity: 0;
}
header nav .navbar-brand img {
  width: 100px;
}
@media (min-width: 992px) {
  header nav .navbar-brand img {
    width: 165px;
  }
}
header nav .nav-toggle {
  background-color: transparent;
  border: 0;
  outline: 0;
}
header nav .nav-toggle span.bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 10px;
  position: relative;
  transition: 0.4s;
}
header nav .nav-toggle span.bar::after, header nav .nav-toggle span.bar::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  left: 0;
  transition: 0.4s;
}
header nav .nav-toggle span.bar::after {
  bottom: -8px;
}
header nav .nav-toggle span.bar::before {
  bottom: 8px;
}

section.banner {
  min-height: 100vh;
  position: relative;
}
section.banner .banner-slider .item {
  position: relative;
}
section.banner .banner-slider .item .bg-image {
  position: relative;
}
section.banner .banner-slider .item .bg-image::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(5, 72, 120, 0.3803921569);
}
section.banner .banner-slider .item .bg-image img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
section.banner .banner-slider .item .bg-image img.position-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}
section.banner .banner-slider .item .bg-image .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  section.banner .banner-slider .item .bg-image .banner-text {
    top: 50%;
  }
}
section.banner .banner-slider .item .bg-image .banner-text h2 {
  transform: translate(50%, 0);
  opacity: 0;
  color: #fff;
  line-height: 26px;
  font-size: 20px;
}
@media (min-width: 992px) {
  section.banner .banner-slider .item .bg-image .banner-text h2 {
    line-height: 44px;
    font-size: 34px;
  }
}
section.banner .banner-slider .item .bg-image .banner-link {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  section.banner .banner-slider .item .bg-image .banner-link {
    bottom: 95px;
  }
}
section.banner .banner-slider .item .bg-image .banner-link a {
  transform: translate(80%, 0);
  opacity: 0;
  width: 180px;
}
section.banner .banner-slider .item .bg-image .banner-link a .text {
  color: #fff;
}
section.banner .banner-slider .owl-nav {
  position: absolute;
  bottom: 55px;
  left: 60%;
  transform: translateX(0);
}
@media (min-width: 992px) {
  section.banner .banner-slider .owl-nav {
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
  }
}
section.banner .banner-slider .owl-nav button {
  transition: 0.4s;
}
section.banner .banner-slider .owl-nav button:hover {
  transform: scale(1.1);
}
section.banner .banner-slider .owl-nav button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
section.banner .banner-slider .owl-nav button img {
  width: 30px;
}
@media (min-width: 992px) {
  section.banner .banner-slider .owl-nav button img {
    width: 70px;
  }
}
section.banner .banner-slider .owl-nav .slide-count {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
}
section.banner .banner-slider .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  gap: 10px;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  section.banner .banner-slider .owl-dots {
    bottom: 55px;
  }
}
section.banner .banner-slider .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
section.banner .banner-slider .owl-dots .owl-dot.active {
  background-color: #fff;
}
@media (min-width: 992px) {
  section.banner .banner-slider .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
  }
}
section.banner .slider-arrow {
  position: absolute;
  bottom: 13%;
  z-index: 10;
  background-color: transparent;
  border-style: none;
  transform: translate(0, 50%);
}
@media (min-width: 768px) {
  section.banner .slider-arrow {
    bottom: 50%;
  }
}
section.banner .slider-arrow:focus {
  outline: none;
}
section.banner .slider-arrow figure {
  width: 35px;
  height: -moz-max-content;
  height: max-content;
}
@media (min-width: 992px) {
  section.banner .slider-arrow figure {
    width: 70px;
  }
}
section.banner .slider-arrow figure img {
  height: 100%;
  width: 100%;
}
section.banner .slider-arrow.prev-slide {
  left: 38%;
}
@media (min-width: 768px) {
  section.banner .slider-arrow.prev-slide {
    left: 50px;
  }
}
section.banner .slider-arrow.next-slide {
  right: 38%;
}
@media (min-width: 768px) {
  section.banner .slider-arrow.next-slide {
    right: 50px;
  }
}
section.banner .scroll-down-home {
  position: absolute;
  right: 10%;
  bottom: 7%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
@media (min-width: 576px) {
  section.banner .scroll-down-home {
    display: flex;
  }
}
section.banner .scroll-down-home a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  display: inline-block;
}
section.banner .scroll-down-home .line-down-wrap {
  position: relative;
  height: 50px;
  width: 50px;
  text-align: center;
  margin-top: 15px;
}
section.banner .scroll-down-home .line-down-wrap span {
  animation: lineDown 2s ease 0s infinite normal forwards;
  background-color: #24B4BA;
  display: inline-block;
  width: 3px;
  height: 40px;
  position: absolute;
}
section.banner .scroll-down-home .line-down-wrap figure {
  animation: arrowDown 3s infinite linear;
  height: 40px;
  width: -moz-max-content;
  width: max-content;
}
section.banner .scroll-down-home .line-down-wrap figure img {
  transform: rotate(90deg);
  height: 100%;
  width: 100%;
}

section.services {
  background: url("../images/services-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
section.services .headings {
  transform: translate(0, 50px);
  opacity: 0;
}
section.services .headings h2 {
  color: #fff;
}
section.services a.view-all {
  transform: translate(0, 100%);
  opacity: 0;
  color: #fff;
  font-size: 12px;
  padding-bottom: 5px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
section.services a.view-all::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
section.services .services-nav {
  transform: translate(0, 50px);
  opacity: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  section.services .services-nav {
    margin-bottom: 100px;
  }
}
section.services .services-nav button:focus {
  outline: none;
  box-shadow: none;
}
section.services .services-nav button img {
  width: 40px;
}
@media (min-width: 992px) {
  section.services .services-nav button img {
    width: 70px;
  }
}
section.services .services-slider .owl-stage-outer {
  padding: 30px 0;
}
section.services .services-slider .owl-stage {
  padding-left: 0 !important;
}
section.services .services-slider .owl-stage .owl-item {
  transition: 0.4s;
}
@media (min-width: 768px) {
  section.services .services-slider .owl-stage .owl-item:nth-child(2n+2) {
    margin-top: 50px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card {
  background-color: transparent;
  perspective: 1000px;
  min-height: 390px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card {
    min-height: 500px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card:hover .service-card-inner .service-card-back {
  bottom: 0;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 390px;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner {
    min-height: 500px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front {
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front::before {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front .content {
  position: absolute;
  bottom: 40px;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front .content span {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front .content a {
  color: #4cb3b3;
  display: inline-flex;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #4cb3b3;
  border-radius: 50%;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-front .content a i {
  transform: rotate(-40deg);
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back {
  border-radius: 8px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #fff;
  transition: 0.4s;
  bottom: -100%;
  padding: 14px;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back {
    padding: 30px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content {
  height: 100%;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content .scroll-content {
  height: 85%;
  overflow-y: scroll;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content .scroll-content::-webkit-scrollbar {
  width: 6px;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content .scroll-content::-webkit-scrollbar-thumb {
  background: #f1f1f1;
  border-radius: 10px;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content {
    margin-top: 50px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content figure img {
  width: 40px !important;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content figure img {
    width: 60px !important;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content h5 {
  font-size: 18px;
  margin: 10px 0;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content h5 {
    font-size: 20px;
    margin: 20px 0;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content p {
  color: #909fba;
  font-size: 12px;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content p.title {
  color: rgba(6, 50, 82, 0.8784313725);
  font-weight: 500;
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content a {
  width: 195px;
}
@media (min-width: 576px) {
  section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content a {
    width: 215px;
  }
}
section.services .services-slider .owl-stage .owl-item .service-card .service-card-inner .service-card-back .content ol {
  font-size: 12px;
  color: #909fba;
  padding-left: 1rem;
}

section.globe-wrapper {
  position: relative;
  max-height: unset;
  overflow: hidden;
  background-color: rgba(104, 192, 255, 0.431372549);
}
@media (min-width: 992px) {
  section.globe-wrapper {
    max-height: 800px;
  }
}
section.globe-wrapper .globe {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  section.globe-wrapper .globe {
    width: 90%;
  }
}

section.explore {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  section.explore {
    flex-wrap: nowrap;
  }
}
section.explore .left-section {
  background: url("../images/explore-left.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-basis: 100%;
  padding: 50px 20px;
}
@media (min-width: 992px) {
  section.explore .left-section {
    padding: 20px;
    padding: 60px 60px 60px 180px;
    flex-basis: 40%;
    min-height: 100vh;
  }
}
section.explore .left-section .headings {
  margin-bottom: 20px;
  transform: translate(0, 100px);
  opacity: 0;
}
section.explore .left-section .headings h2 {
  color: #fff;
}
section.explore .left-section .nav-tabs li {
  transform: translate(0, 100px);
  opacity: 0;
  margin-bottom: 30px;
}
section.explore .left-section .nav-tabs li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4117647059);
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  display: block;
  transition: 0.4s;
}
section.explore .left-section .nav-tabs li a.active {
  font-size: 26px;
  color: #fff;
}
section.explore .left-section .nav-tabs li a.active::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 70px;
  height: 3px;
  background-color: #fff;
}
section.explore .right-section {
  flex-basis: 100%;
  position: relative;
}
section.explore .right-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
@media (min-width: 992px) {
  section.explore .right-section {
    min-height: 100vh;
    flex-basis: 60%;
  }
}
section.explore .right-section .bg-image {
  position: relative;
}
section.explore .right-section .bg-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}
@media (min-width: 992px) {
  section.explore .right-section .bg-image img {
    height: 100vh;
  }
}
section.explore .right-section .bg-image .explore-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
}
@media (min-width: 992px) {
  section.explore .right-section .bg-image .explore-slider-wrapper {
    align-items: end;
    padding: 60px 180px 60px 60px;
  }
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider {
  transform: translate(100px, 0);
  opacity: 0;
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item h4 {
    margin-bottom: 20px;
    font-size: 40px;
  }
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item p {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
@media (min-width: 992px) {
  section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item p {
    font-size: 14px;
  }
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item a {
  width: 180px;
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .item a .text {
  color: #fff;
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .owl-dots .owl-dot {
  width: 12px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3294117647);
  margin: 0 5px;
  border-radius: 20px;
  transition: 0.4s;
  outline: none;
}
section.explore .right-section .bg-image .explore-slider-wrapper .explore-slider .owl-dots .owl-dot.active {
  width: 35px;
  background-color: #fff;
}

section.explore-new {
  height: unset;
}
@media (min-width: 992px) {
  section.explore-new {
    height: 100vh;
  }
}
section.explore-new .left-section {
  background: url("../images/explore-left.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  section.explore-new .left-section {
    padding: 0 100px;
  }
}
section.explore-new .left-section a.view-all {
  opacity: 1 !important;
  display: inline-block;
  margin-top: 20px;
}
@media (min-width: 768px) {
  section.explore-new .left-section a.view-all {
    margin-top: 0;
  }
}
section.explore-new .left-section .headings h2 {
  color: #fff;
}
section.explore-new .left-section ul.nav li {
  position: relative;
}
section.explore-new .left-section ul.nav li a {
  padding: 5px 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: capitalize;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
@media (min-width: 576px) {
  section.explore-new .left-section ul.nav li a {
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  section.explore-new .left-section ul.nav li a {
    font-size: 24px;
  }
}
section.explore-new .left-section ul.nav li a.active {
  color: #fff;
}
section.explore-new .left-section ul.nav li a.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #fff;
  width: 80px;
  height: 4px;
}
section.explore-new .tab-content {
  background-color: #929ba2;
}
section.explore-new .tab-content .tab-pane {
  position: relative;
}
section.explore-new .tab-content .tab-pane .explore-slider figure {
  position: relative;
}
section.explore-new .tab-content .tab-pane .explore-slider figure img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  section.explore-new .tab-content .tab-pane .explore-slider figure img {
    height: 100vh;
  }
}
section.explore-new .tab-content .tab-pane .explore-slider figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
section.explore-new .tab-content .tab-pane .explore-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
section.explore-new .tab-content .tab-pane .explore-slider .owl-dots .owl-dot {
  transition: 0.4s;
  width: 10px;
  height: 10px;
  background-color: #24B4BA;
  border-radius: 50%;
  margin: 0 2px;
}
section.explore-new .tab-content .tab-pane .explore-slider .owl-dots .owl-dot.active {
  width: 20px;
  border-radius: 20px;
}
section.explore-new .tab-content .tab-pane .explore-slider .owl-dots .owl-dot:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
section.explore-new .tab-content .tab-pane .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 2;
}
@media (min-width: 576px) {
  section.explore-new .tab-content .tab-pane .content {
    width: 80%;
  }
}
section.explore-new .tab-content .tab-pane .content span.title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  section.explore-new .tab-content .tab-pane .content span.title {
    font-size: 36px;
  }
}
section.explore-new .tab-content .tab-pane .content p {
  color: #fff;
  margin-top: 20px;
  line-height: unset;
  font-size: 14px;
}
@media (min-width: 768px) {
  section.explore-new .tab-content .tab-pane .content p {
    font-size: 16px;
    line-height: 1.9;
  }
}
section.explore-new .tab-content .tab-pane .content a {
  width: 180px;
}
section.explore-new .tab-content .tab-pane .content a span {
  color: #fff !important;
}

section.stats {
  background-image: url("../images/BG-4.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.stats .stat-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 28px 20px;
  transform: translate(30px, 0);
  opacity: 0;
  min-height: 190px;
}
@media (min-width: 376px) {
  section.stats .stat-card {
    min-height: 175px;
  }
}
@media (min-width: 992px) {
  section.stats .stat-card {
    min-height: 144px;
  }
}
@media (min-width: 1200px) {
  section.stats .stat-card {
    min-height: unset;
  }
}
section.stats .stat-card .stat-card-text {
  padding-left: 0;
  position: relative;
}
@media (min-width: 992px) {
  section.stats .stat-card .stat-card-text {
    padding-left: 40px;
  }
}
section.stats .stat-card .stat-card-text span {
  font-weight: 600;
  color: #5eb2f1;
  font-size: 28px;
}
@media (min-width: 992px) {
  section.stats .stat-card .stat-card-text span {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  section.stats .stat-card .stat-card-text span {
    font-size: 40px;
  }
}
section.stats .stat-card .stat-card-text p {
  color: #8f9db9;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 992px) {
  section.stats .stat-card .stat-card-text::before {
    position: absolute;
    content: "";
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background-color: #dbdde1;
  }
}

section.testimonials {
  background-image: url("../images/testimonials-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
}
@media (min-width: 992px) {
  section.testimonials {
    background-size: cover;
    background-position: right 0;
  }
}
section.testimonials::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 200px;
  content: "";
  background-color: #151c38;
}
section.testimonials .testimonial-img-slider .owl-stage-outer {
  overflow: hidden;
  overflow-x: visible;
}
section.testimonials .testimonial-img-slider .item {
  position: relative;
}
section.testimonials .testimonial-img-slider .item span.designation {
  position: absolute;
  bottom: 50px;
  left: 80px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
section.testimonials .testimonial-img-slider .item span.fname {
  position: absolute;
  bottom: 100px;
  right: 15px;
  font-size: 56px;
  color: #fff;
  font-weight: 600;
}
section.testimonials .testimonial-img-slider .item span.lname {
  position: absolute;
  bottom: 45px;
  right: 15px;
  font-size: 56px;
  color: #fff;
  font-weight: 600;
}
section.testimonials .testimonial-message-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 100px;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .item .message {
  color: #fff;
  font-size: 14px;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav {
  margin-top: 30px;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav button i {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 50%;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav button:focus {
  outline: none;
  box-shadow: none;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav button.owl-prev {
  margin-right: 10px;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav button.owl-prev.disabled {
  display: none;
}
section.testimonials .testimonial-message-parent .testimonial-message-slider .owl-nav button.owl-next.disabled {
  display: none;
}
section.testimonials .section-title {
  position: absolute;
  top: 45px;
  left: -180px;
  width: 100%;
  z-index: 1024;
}
section.testimonials .section-title span {
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}
section.testimonials .section-title span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 125%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
}

section.testimonials-new {
  background-color: #151c38;
  background-image: url("../images/testimonials-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.testimonials-new .testimonial-img-slider .item {
  position: relative;
}
section.testimonials-new .testimonial-img-slider .item figure {
  transform: translate(-100px, 0);
  opacity: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-img-slider .item figure {
    margin-right: 60px;
    margin-left: auto;
  }
}
section.testimonials-new .testimonial-img-slider .item figure img {
  width: 320px !important;
}
@media (min-width: 576px) {
  section.testimonials-new .testimonial-img-slider .item figure img {
    width: 400px !important;
  }
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-img-slider .item figure img {
    width: 500px !important;
  }
}
section.testimonials-new .testimonial-img-slider .item figure span.designation {
  transform: translate(-100px, 0);
  opacity: 0;
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
section.testimonials-new .testimonial-img-slider .item span.fname {
  opacity: 0;
  transform: scale(1.2);
  position: absolute;
  bottom: 120px;
  right: 15px;
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.testimonials-new .testimonial-img-slider .item span.fname {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-img-slider .item span.fname {
    font-size: 56px;
  }
}
section.testimonials-new .testimonial-img-slider .item span.lname {
  opacity: 0;
  transform: scale(1.2);
  position: absolute;
  bottom: 80px;
  right: 15px;
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.testimonials-new .testimonial-img-slider .item span.lname {
    bottom: 60px;
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-img-slider .item span.lname {
    font-size: 56px;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper {
  height: 370px;
  position: relative;
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-message-slider-wrapper {
    height: 100%;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider {
  max-width: 300px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 576px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider {
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider {
    transform: translateX(0);
    top: 20%;
    left: 10%;
    max-width: 400px;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .item {
  transform: translate(100px, 0);
  opacity: 0;
  max-width: 300px;
}
@media (min-width: 576px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .item {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .item {
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .item {
    max-width: 400px;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .item .message {
  color: #fff;
  font-size: 14px;
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav {
  margin-top: 10px;
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav {
    margin-top: 30px;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav button i {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 50%;
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav button:focus {
  outline: none;
  box-shadow: none;
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav button.owl-prev {
  margin-right: 10px;
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav button.owl-prev.disabled {
  display: none;
}
section.testimonials-new .testimonial-message-slider-wrapper .testimonial-message-slider .owl-nav button.owl-next.disabled {
  display: none;
}
section.testimonials-new .testimonial-message-slider-wrapper .comma-wrapper {
  position: absolute;
  top: 20%;
  left: -10px;
}
@media (min-width: 992px) {
  section.testimonials-new .testimonial-message-slider-wrapper .comma-wrapper {
    left: 0;
  }
}
section.testimonials-new .testimonial-message-slider-wrapper .comma-wrapper img {
  transform: scale(0.1);
  opacity: 0;
  width: 30px;
}
@media (min-width: 768px) {
  section.testimonials-new .testimonial-message-slider-wrapper .comma-wrapper img {
    width: 50px;
  }
}

section.clients {
  background-color: #e2eff7;
}
@media (min-width: 992px) {
  section.clients {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  section.clients .client-wrap {
    position: relative;
    z-index: 20;
    top: -60px;
    background-color: #fff;
    padding-top: 50px;
    border-radius: 8px 8px;
  }
}
section.clients figure {
  transform: translate(0, 100px);
  opacity: 0;
}
@media (min-width: 992px) {
  section.clients .second-row {
    border-top: 1px solid lightgray;
  }
}
section.clients .client-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  section.clients .client-col:not(:last-child) {
    border-right: 1px solid lightgray;
  }
}

section.cta .cta-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 45px 25px;
  border-radius: 20px;
  background: rgb(23, 115, 183);
  background: linear-gradient(125deg, rgb(23, 115, 183) 50%, rgb(0, 82, 141) 100%);
}
@media (min-width: 992px) {
  section.cta .cta-wrap {
    flex-direction: row;
    align-items: center;
    padding: 70px 25px;
  }
}
@media (min-width: 1200px) {
  section.cta .cta-wrap {
    padding: 70px 50px;
  }
}
section.cta .cta-wrap h4 {
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 0;
}
section.cta .cta-wrap h4 span {
  transform: translate(0, 60px);
  opacity: 0;
  display: inline-block;
}
@media (min-width: 1200px) {
  section.cta .cta-wrap h4 {
    font-size: 22px;
  }
}
section.cta .cta-wrap a {
  width: 165px;
}
section.cta .cta-wrap a .text {
  color: #fff;
}

footer {
  background: linear-gradient(146deg, rgb(4, 70, 119) 50%, rgb(0, 47, 81) 100%);
}
footer .dividing-line {
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  margin-top: 20px;
}
footer .top-footer {
  padding: 60px 0 20px 0;
}
@media (min-width: 576px) {
  footer .top-footer {
    padding: 60px 0 40px 0;
  }
}
footer .top-footer .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  margin-right: 12px;
  flex: none;
}
footer .top-footer .icon svg {
  height: 100%;
  width: 100%;
  fill: #24B4BA;
}
footer .top-footer p {
  color: rgba(255, 255, 255, 0.8);
}
footer .top-footer .footer-links h6 {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  footer .top-footer .footer-links h6 {
    margin-bottom: 30px;
  }
}
footer .top-footer .footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}
footer .top-footer .footer-links a:hover {
  color: #24B4BA;
}
@media (min-width: 576px) {
  footer .top-footer .footer-links a {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
footer .top-footer .footer-social-links {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
footer .top-footer .footer-social-links a {
  border: 2px solid #24B4BA;
  display: inline-block;
  height: 40px;
  width: 40px;
  padding: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}
@media (min-width: 992px) {
  footer .top-footer .footer-social-links a {
    height: 45px;
    width: 45px;
  }
}
footer .top-footer .footer-social-links a:hover {
  background-color: #24B4BA;
}
footer .top-footer .footer-social-links a:hover i,
footer .top-footer .footer-social-links a:hover svg {
  color: #fff;
}
footer .top-footer .footer-social-links a.linkedin i {
  font-size: 16px;
}
@media (min-width: 992px) {
  footer .top-footer .footer-social-links a.linkedin i {
    font-size: 20px;
  }
}
footer .top-footer .footer-social-links a i,
footer .top-footer .footer-social-links a svg {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
@media (min-width: 992px) {
  footer .top-footer .footer-social-links a i,
  footer .top-footer .footer-social-links a svg {
    margin-right: 0;
    font-size: 20px;
  }
}
footer .top-footer .footer-social-links a span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
}
footer .top-footer .footer-social-links a span svg {
  height: 100%;
  width: 100%;
}
footer .bottom-footer {
  padding: 40px 0 20px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  footer .bottom-footer {
    flex-direction: row;
    padding: 50px 0 40px 0;
  }
}
footer .bottom-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-align: center;
}
@media (min-width: 576px) {
  footer .bottom-footer p {
    font-size: 13px;
  }
}
footer .bottom-footer p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

@keyframes lineDown {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(80px);
  }
}
@keyframes arrowDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.breadcrumb-wrap {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .breadcrumb-wrap {
    margin-top: 0px;
  }
}
.breadcrumb-wrap .breadcrumb {
  background-color: unset;
  padding-left: 0;
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.1019607843);
  padding: 5px 10px 3px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (min-width: 576px) {
  .breadcrumb-wrap .breadcrumb {
    padding: 8px 20px 6px;
  }
}
.breadcrumb-wrap .breadcrumb li {
  color: #fff;
  font-size: 14px;
  align-items: center;
  padding-left: 0;
}
@media (min-width: 576px) {
  .breadcrumb-wrap .breadcrumb li {
    font-size: 16px;
  }
}
.breadcrumb-wrap .breadcrumb li::before {
  content: "";
  width: 8px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin: 0 12px;
}
.breadcrumb-wrap .breadcrumb li.active {
  align-items: center;
  padding-left: 0;
}
.breadcrumb-wrap .breadcrumb li.active::before {
  content: "";
  width: 8px;
  height: 10px;
  background-color: #24B4BA;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin: 0 12px;
}
.breadcrumb-wrap .breadcrumb li a {
  color: rgba(255, 255, 255, 0.5019607843);
  margin-bottom: 2px;
  text-decoration: none;
  transition: 0.4s;
  font-size: 14px;
}
@media (min-width: 576px) {
  .breadcrumb-wrap .breadcrumb li a {
    font-size: 16px;
  }
}
.breadcrumb-wrap .breadcrumb li a:hover {
  color: #fff;
}
.breadcrumb-wrap .breadcrumb li:first-child::before {
  display: none;
}

.custom-btn-animated {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}
.custom-btn-animated span.text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  color: #09324e;
  position: relative;
  z-index: 10;
  transition: 0.4s;
  right: 0;
  margin-top: 3px;
}
.custom-btn-animated span.circle {
  margin-left: 20px;
  width: 55px;
  height: 55px;
  border: 2px solid #24B4BA;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  right: -75px;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .custom-btn-animated span.circle {
    right: -80px;
  }
}
.custom-btn-animated span.circle i {
  color: #4cb3b3;
}
.custom-btn-animated.hover {
  text-decoration: none;
}
.custom-btn-animated.hover span.text {
  right: -8px;
  color: #fff;
}
.custom-btn-animated.hover span.circle {
  border-radius: 50px;
  justify-content: flex-end;
  padding-right: 20px;
  background-color: #24B4BA;
}
.custom-btn-animated.hover span.circle i {
  color: #fff;
}

section.page-header {
  background-image: url("../images/bdr-bg-contact-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  background-attachment: fixed;
  position: relative;
}
section.page-header.about {
  background-image: url("/images/dji_0159.jpg");
}
section.page-header.milestones {
  background-image: url("/images/saj_2872.jpg");
}
section.page-header.awards {
  background-image: url("../images/global-presence/global-presence-banner.jpg");
}
section.page-header.news {
  background-image: url("https://motaen.com/upload/wallpapers/source/2014/03/23/15/04/39618/qoyM2B3a0K.jpg");
  background-position: top top;
}
section.page-header.bod {
  background-image: url("/images/saj_3978.jpg");
}
section.page-header.emd {
  background-image: url("/images/ethical-marketing.jpg");
}
section.page-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(5, 72, 120, 0.4196078431);
}
section.page-header.iprPage {
  background-image: url("/images/saj_3012.jpg");
}
section.page-header.strengthPage {
  background-image: url("../images/strengths/strength_banner.jpg");
}
section.page-header.job-apply {
  height: 500px;
}
section.page-header.job-apply .page-header-content {
  top: 70%;
}
section.page-header.achivements {
  background-image: url("../images/achievements/our_achievements_banner.jpg");
}
section.page-header.newsPage {
  background-image: url("../images/news-details/news_details-banner.jpg");
}
section.page-header.newsDetailsPage {
  background-image: url("../images/news-details/news_details-banner.jpg");
}
section.page-header.teamPage {
  background-image: url("../images/about/about_banner.jpg");
}
section.page-header.missionPage {
  background-image: url("../images/mission/mission-and-vision-banner.jpg");
}
section.page-header.csrPage {
  background-image: url("/images/saj_3022.jpg");
}
section.page-header.companyPoliciesPage {
  background-image: url("../images/facilities/bdr.jpg");
  background-position-y: bottom;
}
section.page-header.facilitiesPage {
  background-image: url("../images/facilities/facilities-banner.jpg");
}
section.page-header.tradePage {
  background-image: url("../images/trade-exhibition/trade-exhibits_banner.jpg");
}
section.page-header.products-page {
  background-image: url("/images/saj_3090.jpg");
}
section.page-header.innovation {
  background-image: url("/images/saj_3396.jpg");
}
section.page-header.regulatory {
  background-image: url("/images/saj_2962.jpg");
}
section.page-header.research {
  background-image: url("/images/saj_3291.jpg");
}
section.page-header.contract-page {
  background-image: url("/images/saj_2728.jpg");
}
section.page-header.culture {
  background-image: url("/images/saj_2933.jpg");
}
section.page-header.job-openings {
  background-image: url("/images/saj_4399.jpg");
}
@media (min-width: 576px) {
  section.page-header {
    height: 100vh;
  }
}
section.page-header.video {
  background-image: unset;
}
section.page-header.video .bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
section.page-header.video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(2, 57, 96, 0.6588235294);
}
@media (min-width: 768px) {
  section.page-header {
    padding-top: 160px !important;
  }
}
section.page-header.small-page-header {
  height: 55vh;
}
section.page-header.small-page-header .page-header-content {
  top: 65%;
}
@media (min-width: 576px) {
  section.page-header.small-page-header .page-header-content {
    top: 71%;
  }
}
section.page-header.small-page-header .scroll-down-arrow {
  bottom: 40px;
}
section.page-header .page-header-content {
  position: absolute;
  top: 60%;
  border-left: 6px solid #24B4BA;
  padding-left: 15px;
  transform: translateY(-50%);
}
@media (min-width: 576px) {
  section.page-header .page-header-content {
    top: 50%;
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  section.page-header .page-header-content {
    width: 40%;
  }
}
@media (min-width: 1700px) {
  section.page-header .page-header-content {
    width: 30%;
  }
}
section.page-header .page-header-content h2 {
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
}
@media (min-width: 576px) {
  section.page-header .page-header-content h2 {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  section.page-header .page-header-content h2 {
    font-size: 35px;
  }
}
@media (min-width: 768px) {
  section.page-header .page-header-content h2 {
    font-size: 40px;
  }
}
section.page-header .page-header-content p {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.page-header .page-header-content p {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  section.page-header .page-header-content p {
    font-size: 20px;
  }
}
section.page-header .scroll-down-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  section.page-header .scroll-down-arrow {
    right: 30px;
    display: flex;
    bottom: 40px;
  }
}
@media (min-width: 768px) {
  section.page-header .scroll-down-arrow {
    right: 100px;
  }
}
@media (min-width: 992px) {
  section.page-header .scroll-down-arrow {
    bottom: 110px;
  }
}
section.page-header .scroll-down-arrow a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  display: inline-block;
}
section.page-header .scroll-down-arrow .line-down-wrap {
  position: relative;
  overflow: hidden;
  height: 50px;
  width: 50px;
  text-align: center;
  margin-top: 15px;
}
section.page-header .scroll-down-arrow .line-down-wrap span {
  animation: lineDown 0.9s ease 0s infinite normal forwards;
  background-color: #24B4BA;
  display: inline-block;
  width: 3px;
  height: 40px;
  position: absolute;
}

section.location-map {
  padding: 0 !important;
  scroll-margin-top: 100px;
}
section.location-map .map-wrap {
  width: 100%;
  height: 500px;
}
@media (min-width: 992px) {
  section.location-map .map-wrap {
    height: 100%;
  }
}
section.location-map .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
section.location-map .headquarters-address-wrap {
  padding: 60px 15px;
  background-color: #ebf7ff;
  background-image: url("../images/contact/integrations-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  section.location-map .headquarters-address-wrap {
    border-top-right-radius: 10px;
    padding: 80px 15px;
  }
}
@media (min-width: 992px) {
  section.location-map .headquarters-address-wrap {
    margin-top: -120px;
    padding: 80px 0px;
  }
}
section.location-map .headquarters-address-wrap .headquarters-address {
  width: 100%;
  margin-left: auto;
}
@media (min-width: 992px) {
  section.location-map .headquarters-address-wrap .headquarters-address {
    width: 90%;
    padding: 0px 0 80px;
  }
}
@media (min-width: 1200px) {
  section.location-map .headquarters-address-wrap .headquarters-address {
    width: 80%;
  }
}
@media (min-width: 1700px) {
  section.location-map .headquarters-address-wrap .headquarters-address {
    width: 60%;
  }
}
section.location-map .headquarters-address-wrap .headquarters-address .address {
  margin-top: 40px;
}
section.location-map .headquarters-address-wrap .headquarters-address .address p {
  font-size: 16px;
}
@media (min-width: 768px) {
  section.location-map .headquarters-address-wrap .headquarters-address .address p {
    font-size: 18px;
  }
}
section.location-map .headquarters-address-wrap .headquarters-address .address a {
  width: 200px;
}
@media (min-width: 576px) {
  section.location-map .headquarters-address-wrap .headquarters-address .address a {
    width: 220px;
  }
}
section.location-map .headquarters-address-wrap .headquarters-address .address h6 {
  margin-bottom: 2px;
}
section.location-map .headquarters-address-wrap .headquarters-address .address-line {
  position: relative;
  margin-bottom: 40px;
  padding-left: 15px;
  border-left: 4px solid #fff;
}
section.location-map .headquarters-address-wrap .headquarters-address .address-line p,
section.location-map .headquarters-address-wrap .headquarters-address .address-line a {
  font-size: 15px;
}
@media (min-width: 576px) {
  section.location-map .headquarters-address-wrap .headquarters-address .address-line p,
  section.location-map .headquarters-address-wrap .headquarters-address .address-line a {
    font-size: 16px;
  }
}

section.contact-form .join-list {
  margin-top: 40px;
}
section.contact-form .join-list h4 {
  font-size: 19px;
}
@media (min-width: 768px) {
  section.contact-form .join-list h4 {
    font-size: 21px;
  }
}
section.contact-form .join-list p {
  font-size: 14px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  section.contact-form .join-list p {
    font-size: 16px;
  }
}
section.contact-form .join-list form {
  margin-top: 30px;
}
section.contact-form .join-list form .email-wrap {
  border-radius: 4px;
  background-color: #fcfeff;
  border: 1px solid #cbe1ef;
  box-shadow: inset 0 2px 4px 0 rgba(206, 209, 224, 0.2);
}
@media (min-width: 992px) {
  section.contact-form .join-list form .email-wrap {
    width: 80%;
  }
}
section.contact-form .join-list form .form-group {
  width: 100%;
}
@media (min-width: 576px) {
  section.contact-form .join-list form .form-group {
    width: 75%;
  }
}
section.contact-form .join-list form .form-group input[type=email] {
  border: 0;
  height: 50px;
  background-color: transparent;
}
section.contact-form .join-list form .form-group input[type=email]::-moz-placeholder {
  font-size: 14px;
  text-transform: capitalize;
}
section.contact-form .join-list form .form-group input[type=email]::placeholder {
  font-size: 14px;
  text-transform: capitalize;
}
section.contact-form .join-list form .form-group input[type=email]:focus {
  box-shadow: unset !important;
}
section.contact-form .join-list form .form-group.form-check {
  margin-top: 15px;
}
section.contact-form .join-list form .form-group.form-check input {
  position: relative;
  margin-right: 15px;
  opacity: 0;
}
section.contact-form .join-list form .form-group.form-check input:checked + label::before {
  content: "✔";
  color: #09324e;
}
section.contact-form .join-list form .form-group.form-check label {
  position: relative;
  font-size: 14px;
}
section.contact-form .join-list form .form-group.form-check label::before {
  content: "";
  min-width: 20px;
  height: 20px;
  border: 1px solid #09324e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
section.contact-form .join-list form .form-group.form-check label a {
  color: #24B4BA;
  text-decoration: none;
}
section.contact-form .join-list form button {
  height: 52px;
  font-weight: 500;
  color: #fff;
  position: relative;
  border: 3px solid #24B4BA;
  background-color: #24B4BA;
  width: 15%;
  border-radius: 0 4px 4px 0;
  margin: -1px 0;
}
section.contact-form .join-list.contact a {
  color: #24B4BA;
}

section.location {
  background-image: url("../images/vision-section-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media (min-width: 576px) {
  section.location .company-location-wrap {
    padding-top: 25px;
  }
}
section.location .company-location-wrap .location-detail {
  margin-bottom: 35px;
  padding: 22px;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
section.location .company-location-wrap .location-detail:hover h6,
section.location .company-location-wrap .location-detail:hover p,
section.location .company-location-wrap .location-detail:hover a,
section.location .company-location-wrap .location-detail:hover i {
  color: #fff;
}
section.location .company-location-wrap .location-detail:hover::before {
  bottom: 0;
}
section.location .company-location-wrap .location-detail::before {
  content: "";
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #24B4BA;
  z-index: 0;
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.location .company-location-wrap .location-detail {
    height: auto;
  }
}
@media (min-width: 768px) {
  section.location .company-location-wrap .location-detail {
    padding: 35px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  section.location .company-location-wrap .location-detail {
    height: 240px;
  }
}
section.location .company-location-wrap .location-detail h6 {
  color: #09324e;
  position: relative;
  transition: 0.4s;
}
section.location .company-location-wrap .location-detail p {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 15px;
  position: relative;
  transition: 0.4s;
}
section.location .company-location-wrap .location-detail p i {
  font-size: 18px;
  transition: 0.4s;
}
section.location .company-location-wrap .location-detail a {
  color: #09324e;
  text-decoration: none;
  display: inline-block;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  font-size: 15px;
}
section.location .company-location-wrap .location-detail a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: -200px;
  transition: 0.4s;
}
section.location .company-location-wrap .location-detail a:hover::before {
  left: 0;
}
section.location .company-location-wrap .location-detail i,
section.location .company-location-wrap .location-detail svg {
  color: #24B4BA;
  font-size: 18px;
  transition: 0.4s;
  position: relative;
}

section.contact-cta {
  background: #24B4BA;
  padding: 60px 0 !important;
}
@media (min-width: 576px) {
  section.contact-cta {
    padding: 100px 0 !important;
  }
}
section.contact-cta .contact-cta-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  section.contact-cta .contact-cta-wrap {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
section.contact-cta .contact-cta-wrap h4 {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.contact-cta .contact-cta-wrap h4 {
    font-size: 24px;
  }
}
section.contact-cta .contact-cta-wrap .social-links {
  display: flex;
  align-items: center;
}
section.contact-cta .contact-cta-wrap .social-links a {
  text-decoration: none;
  display: inline-block;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-right: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  section.contact-cta .contact-cta-wrap .social-links a {
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0px;
  }
}
section.contact-cta .contact-cta-wrap .social-links a i,
section.contact-cta .contact-cta-wrap .social-links a svg {
  color: #fff;
  font-size: 24px;
}
@media (min-width: 576px) {
  section.contact-cta .contact-cta-wrap .social-links a i,
  section.contact-cta .contact-cta-wrap .social-links a svg {
    font-size: 30px;
  }
}

section.our-story {
  background: linear-gradient(135deg, #00305e 0%, #0069b4 100%);
  overflow: hidden;
  padding-top: 140px !important;
}
@media (min-width: 576px) {
  section.our-story {
    padding-top: 140px !important;
  }
}
@media (min-width: 992px) {
  section.our-story {
    padding-top: 220px !important;
  }
}
section.our-story p {
  font-weight: 400;
}
section.our-story .story-img {
  position: relative;
}
section.our-story .story-img figure {
  text-align: right;
}
section.our-story .story-img figure .story-poster {
  width: 100%;
}
@media (min-width: 576px) {
  section.our-story .story-img figure .story-poster {
    width: 75%;
  }
}
section.our-story .story-img .story-small-img {
  position: absolute;
  transform: translateY(-50%);
  left: 0px;
  top: 50%;
  text-align: left;
}
@media (min-width: 576px) {
  section.our-story .story-img .story-small-img {
    left: 30px;
  }
}
@media (min-width: 992px) {
  section.our-story .story-img .story-small-img {
    top: 70%;
    transform: unset;
  }
}
section.our-story .story-img .story-small-img img {
  width: 70%;
}
@media (min-width: 576px) {
  section.our-story .story-img .story-small-img img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  section.our-story .story-img .story-small-img img {
    width: 70%;
  }
}
section.our-story .story-pointers-wrap .story-pointer {
  display: flex;
  align-items: center;
}
section.our-story .story-pointers-wrap .story-pointer .pointer-icon {
  min-width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  margin-right: 15px;
}
section.our-story .story-pointers-wrap .story-pointer .pointer-icon span {
  color: #09324e;
}
section.our-story .story-pointers-wrap .story-pointer p {
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}

.focus-area {
  position: relative;
}
.focus-area .focus-wrapper {
  min-height: 900px;
  width: 100%;
}
.focus-area .focus-wrapper .indicators {
  left: 0;
  bottom: 45%;
  height: 1px;
  width: 100%;
  display: none;
  position: absolute;
  z-index: 4;
  background-color: #e2eff7;
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .indicators {
    bottom: 30%;
  }
}
.focus-area .focus-wrapper .indicators .indicator-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator {
  width: 8px;
  height: 8px;
  background-color: #24B4BA;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #24B4BA;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator.first {
  left: 4%;
  width: 8px;
  height: 8px;
  background-color: #24B4BA;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.first {
    left: 55%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.first {
    left: 45%;
  }
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator.second {
  left: 35%;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.second {
    left: 65%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.second {
    left: 55%;
  }
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator.third {
  left: 65%;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.third {
    left: 75%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.third {
    left: 65%;
  }
}
.focus-area .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
  left: 90%;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
    left: 85%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
    left: 75%;
  }
}
.focus-area .focus-wrapper .focus-slide {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.focus-area .focus-wrapper .focus-slide .focus-content {
  padding-left: 50px;
}
.focus-area .focus-wrapper .focus-slide .focus-content h3 {
  font-size: 19px;
  color: #09324e;
  margin-top: 100px;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-content h3 {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .focus-area .focus-wrapper .focus-slide .focus-content h3 {
    font-size: 21px;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-content p {
  margin-top: 25px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .focus-area .focus-wrapper .focus-slide .focus-content p {
    font-size: 18px;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-content h4 {
  color: #909fba;
  margin-bottom: 20px;
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img {
  position: relative;
  max-height: 350px;
  z-index: 20;
  overflow: hidden;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img {
    max-height: unset;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img.slide-one {
  top: 13px;
}
@media (min-width: 376px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.slide-one {
    top: 0px;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img.second-slider {
  top: 12px;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.second-slider {
    top: 0;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img.second-last-slide {
  top: 25px;
}
@media (min-width: 376px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.second-last-slide {
    top: 12px;
  }
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.second-last-slide {
    top: 0px;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img.last-slide {
  top: 49px;
}
@media (min-width: 376px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.last-slide {
    top: 36px;
  }
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.last-slide {
    top: 0px;
  }
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.last-slide img {
    margin-top: 1.7rem;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img.last-slide img {
    margin-top: 0;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #24B4BA;
  opacity: 1;
  transform: translateX(-200px);
}
@media (min-width: 322px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img .cover {
    display: block;
  }
}
@media (min-width: 768px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img .cover {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img .cover {
    width: 100%;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img img {
  max-height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 576px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img img {
    max-height: unset;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img img {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .focus-area .focus-wrapper .focus-slide .focus-slide-img img {
    width: 100%;
  }
}
.focus-area .focus-wrapper .focus-slide .focus-slide-img .reveal-screen {
  position: absolute;
  background-color: #24B4BA;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 992px) {
  .focus-area .focus-area-heading {
    padding-left: 50px;
    padding-top: 30px;
  }
}
.focus-area.diff-approach {
  background-color: #fff;
}
.focus-area.diff-approach .focus-wrapper .focus-slide .focus-slide-img {
  height: 550px;
}
.focus-area.diff-approach .focus-wrapper .focus-slide .focus-slide-img img {
  width: 100%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-slide-img img {
    height: 100%;
  }
}
.focus-area.diff-approach .focus-wrapper .focus-slide .focus-content {
  padding-left: 0px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-content {
    margin-left: 30px;
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-content {
    margin-left: 35px;
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-content {
    margin-left: 134px;
  }
}
@media (min-width: 1700px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-content {
    margin-left: 380px;
  }
}
.focus-area.diff-approach .focus-wrapper .focus-slide .focus-content h3 {
  margin-top: 0;
}
.focus-area.diff-approach .focus-wrapper .focus-slide .focus-content h4 {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .focus-area.diff-approach .focus-wrapper .focus-slide .focus-content h4 {
    margin-bottom: 20px;
  }
}
.focus-area.diff-approach .focus-wrapper .indicators {
  bottom: 18%;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .indicators {
    bottom: 30%;
  }
}
.focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap {
  background-color: #e2eff7;
}
.focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.first {
  left: 20%;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.first {
    left: 55px;
  }
}
@media (min-width: 1200px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.first {
    left: 150px;
  }
}
@media (min-width: 1700px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.first {
    left: 400px;
  }
}
.focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.second {
  left: 40%;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.second {
    left: 155px;
  }
}
@media (min-width: 1200px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.second {
    left: 250px;
  }
}
@media (min-width: 1700px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.second {
    left: 500px;
  }
}
.focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.third {
  left: 60%;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.third {
    left: 255px;
  }
}
@media (min-width: 1200px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.third {
    left: 350px;
  }
}
@media (min-width: 1700px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.third {
    left: 600px;
  }
}
.focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
  left: 80%;
}
@media (min-width: 992px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
    left: 355px;
  }
}
@media (min-width: 1200px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
    left: 450px;
  }
}
@media (min-width: 1700px) {
  .focus-area.diff-approach .focus-wrapper .indicators .indicator-wrap .indicator.fourth {
    left: 700px;
  }
}

section.diff-approach-slider .approach-slider .owl-item {
  transition: 0.3s !important;
}
section.diff-approach-slider .approach-slider .item .focus-slider-content {
  transition: 0.3s !important;
}
section.diff-approach-slider .approach-slider .item .focus-slider-content h4 {
  font-size: 16px;
  color: #09324e;
}
section.diff-approach-slider .approach-slider .item .focus-slider-content h3 {
  font-size: 20px;
  color: #09324e;
  margin-bottom: 20px;
}
section.diff-approach-slider .approach-slider .item .focus-slider-img-wrap {
  max-height: 545px;
  transition: 0.3s !important;
  transition-delay: 0s;
}
section.diff-approach-slider .approach-slider .item .focus-slider-img-wrap figure img {
  max-height: 545px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.diff-approach-slider .approach-slider .item.active-item .item .focus-slider-content {
  opacity: 1;
}
section.diff-approach-slider .approach-slider .owl-dots {
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
  position: relative;
  width: calc(100% - 80px);
  left: 40px;
}
@media (min-width: 992px) {
  section.diff-approach-slider .approach-slider .owl-dots {
    position: absolute;
    left: 40px;
    bottom: 30px;
    width: 38%;
  }
}
section.diff-approach-slider .approach-slider .owl-dots::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e2eff7;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
section.diff-approach-slider .approach-slider .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #24B4BA;
  transition: 0.4s;
  outline: 0;
  box-shadow: unset;
  border: 0;
}
section.diff-approach-slider .approach-slider .owl-dots button.active {
  transform: scale(2);
  transform-origin: center;
}
section.diff-approach-slider .approach-slider .owl-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: -34px;
  transform: translate(0, -50%);
}
@media (min-width: 992px) {
  section.diff-approach-slider .approach-slider .owl-nav {
    width: 45%;
    bottom: -6px;
  }
}
section.diff-approach-slider .approach-slider .owl-nav button {
  background-color: #24B4BA;
  border-radius: 50%;
  z-index: 30;
  padding: 10px !important;
  height: 40px;
  width: 40px;
  position: relative;
  text-align: center;
  border-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.diff-approach-slider .approach-slider .owl-nav button:focus {
  outline: none;
}
section.diff-approach-slider .approach-slider .owl-nav button span {
  color: white;
  height: 100%;
  width: 100%;
  font-size: 30px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
}
@media (min-width: 992px) {
  section.diff-approach-slider._about .approach-slider .owl-dots {
    right: 40px;
    left: unset;
  }
  section.diff-approach-slider._about .approach-slider .owl-nav {
    right: 0;
    bottom: -6px;
    left: unset;
  }
}

section.bdr-growth-mobile ul li {
  padding: 40px 0;
}
section.bdr-growth-mobile ul li:not(:last-of-type) {
  border-bottom: 1px solid #09324e;
}
section.bdr-growth-mobile ul li h3 {
  font-size: 20px;
}
section.bdr-growth-mobile ul li span {
  font-size: 18px;
}
section.bdr-growth-mobile ul li p {
  font-size: 16px;
}

section.bdr-growth .bdr-heading-wrap {
  position: relative;
  color: #09324e;
  padding-left: 5em;
}
section.bdr-growth .bdr-heading-wrap .bdr-heading {
  opacity: 0;
  left: 45%;
  transform: translateX(-50%);
  width: 100%;
  position: absolute;
  top: 8em;
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: flex-end;
  transition: 0.4s;
}
section.bdr-growth .bdr-heading-wrap .bdr-heading span {
  font-size: 45px;
}
section.bdr-growth .bdr-content-wrap {
  padding-top: 225px;
}
section.bdr-growth .bdr-content-wrap .bdr-content {
  border-bottom: 1px solid #aaa;
  min-height: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.bdr-growth .bdr-content-wrap .bdr-content h4 {
  transition: 0.4s;
  font-size: 18px;
}
section.bdr-growth .bdr-content-wrap .bdr-content p {
  transition: 0.4s;
  font-size: 14px;
}
section.bdr-growth .bdr-content-wrap .bdr-content.faded-text h4 {
  color: #dddddd;
}
section.bdr-growth .bdr-content-wrap .bdr-content.faded-text p {
  color: #dddddd;
}

section.growth-bdr {
  background-color: #eff9ff;
}
section.growth-bdr .growth-card .line-wrap {
  position: relative;
}
section.growth-bdr .growth-card .line-wrap .line {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #24B4BA;
}
section.growth-bdr .growth-card .line-wrap .point-circle {
  background-color: #24B4BA;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 0;
}
section.growth-bdr .growth-card .line-wrap .point-circle span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
section.growth-bdr .growth-card .line-wrap .point-circle span span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #24B4BA;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
section.growth-bdr .growth-card .heading {
  padding: 0 13px;
}
section.growth-bdr .growth-card .heading h4 {
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.growth-bdr .growth-card .heading h4 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  section.growth-bdr .growth-card .heading h4 {
    font-size: 26px;
  }
}
section.growth-bdr .growth-card .heading h5 {
  font-size: 17px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.growth-bdr .growth-card .heading h5 {
    font-size: 20px;
  }
}
section.growth-bdr .growth-card .heading p {
  font-size: 15px;
}
@media (min-width: 576px) {
  section.growth-bdr .growth-card .heading p {
    font-size: 16px;
  }
}

section.what-we-do {
  background-image: url("../images/vision-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.what-we-do.strength-do {
  background: rgb(3, 84, 170);
  background: linear-gradient(90deg, rgb(3, 84, 170) 0%, rgb(5, 40, 76) 100%);
}
section.what-we-do figure img {
  width: 100%;
  border-radius: 10px;
  border-top-right-radius: 60px;
}
@media (min-width: 576px) {
  section.what-we-do figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.what-we-do figure img {
    width: 100%;
    max-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section.page-link-cta {
  position: relative;
}
section.page-link-cta .page-link-cta-wrap {
  min-height: 200px;
  transition: 0.4s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: 0.4s;
}
@media (min-width: 992px) {
  section.page-link-cta .page-link-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 576px) {
  section.page-link-cta .page-link-cta-wrap {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  section.page-link-cta .page-link-cta-wrap {
    min-height: 500px;
  }
}
section.page-link-cta .page-link-cta-wrap:hover .cta-bg-img img {
  transform: scale(1.2);
}
section.page-link-cta .page-link-cta-wrap .left-side-box,
section.page-link-cta .page-link-cta-wrap .right-side-box {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #24B4BA;
  opacity: 0.7;
  position: absolute;
  transition: all 0.4s;
}
section.page-link-cta .page-link-cta-wrap .left-side-box {
  opacity: 0;
}
section.page-link-cta .page-link-cta-wrap .cta-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.page-link-cta .page-link-cta-wrap .cta-bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
section.page-link-cta .page-link-cta-wrap .page-link-url {
  z-index: 10;
  position: relative;
  margin-left: 15px;
}
section.page-link-cta .page-link-cta-wrap .page-link-url a {
  display: inline-block;
  font-size: 30px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
}
@media (min-width: 576px) {
  section.page-link-cta .page-link-cta-wrap .page-link-url a {
    font-size: 40px;
    padding: 0 3rem;
  }
}
@media (min-width: 768px) {
  section.page-link-cta .page-link-cta-wrap .page-link-url a {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  section.page-link-cta .page-link-cta-wrap .page-link-url a {
    width: 100%;
  }
}
section.page-link-cta .page-link-cta-wrap .page-link-url h6 {
  font-size: 18px;
  color: #fff;
  position: relative;
  padding-left: 22px;
  margin-bottom: 0;
  font-weight: 300;
  margin-left: 3px;
}
@media (min-width: 576px) {
  section.page-link-cta .page-link-cta-wrap .page-link-url h6 {
    margin-left: 5px;
  }
}
@media (min-width: 992px) {
  section.page-link-cta .page-link-cta-wrap .page-link-url h6 {
    margin-left: 10px;
  }
}
section.page-link-cta .page-link-cta-wrap .page-link-url h6::before {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
}
section.page-link-cta .cta-center-div {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  background-color: #24B4BA;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.page-link-cta .cta-center-div {
    width: 70px;
    height: 70px;
  }
}
section.page-link-cta .cta-center-div svg {
  fill: #fff;
}

section.quote {
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
section.quote .bg-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  section.quote .bg-logo {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.quote .bg-logo {
    left: 32%;
    width: 50%;
  }
}
section.quote .quote-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px 160px;
  position: relative;
}
@media (min-width: 322px) {
  section.quote .quote-wrap {
    padding: 30px 30px 160px;
  }
}
@media (min-width: 1200px) {
  section.quote .quote-wrap {
    padding: 30px 110px 160px;
  }
}
@media (min-width: 992px) {
  section.quote .quote-wrap .main-quote {
    margin-bottom: 250px;
  }
}
section.quote .quote-wrap .main-quote h2 {
  font-size: 32px;
  font-weight: 400;
}
@media (min-width: 376px) {
  section.quote .quote-wrap .main-quote h2 {
    font-size: 38px;
  }
}
@media (min-width: 576px) {
  section.quote .quote-wrap .main-quote h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  section.quote .quote-wrap .main-quote h2 {
    font-size: 71px;
  }
}
@media (min-width: 992px) {
  section.quote .quote-wrap .main-quote h2 {
    font-size: 100px;
  }
}
section.quote .quote-wrap .main-quote h2 span {
  color: #24B4BA;
}
section.quote .quote-wrap .small-quote {
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 70%;
}
@media (min-width: 322px) {
  section.quote .quote-wrap .small-quote {
    bottom: 45px;
  }
}
@media (min-width: 376px) {
  section.quote .quote-wrap .small-quote {
    width: 58%;
    bottom: 25px;
  }
}
@media (min-width: 576px) {
  section.quote .quote-wrap .small-quote {
    bottom: 67px;
    left: unset;
    right: 0px;
  }
}
@media (min-width: 768px) {
  section.quote .quote-wrap .small-quote {
    bottom: 50px;
    right: 30px;
    width: 46%;
  }
}
@media (min-width: 992px) {
  section.quote .quote-wrap .small-quote {
    bottom: 60px;
    right: 0;
    width: 34%;
  }
}
@media (min-width: 1200px) {
  section.quote .quote-wrap .small-quote {
    bottom: 100px;
    width: 31%;
  }
}
section.quote .quote-wrap .small-quote p {
  font-size: 15px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.quote .quote-wrap .small-quote p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  section.quote .quote-wrap .small-quote p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.quote .quote-wrap .small-quote p {
    font-size: 20px;
  }
}
section.quote.ipr-quote {
  background: rgb(243, 249, 252);
  background: linear-gradient(45deg, rgb(243, 249, 252) 0%, rgb(220, 242, 255) 100%);
}
section.quote.ipr-quote .quote-wrap .small-quote {
  border-left: 4px solid #24B4BA;
  padding: 10px 15px;
}
@media (min-width: 992px) {
  section.quote.ipr-quote .quote-wrap .small-quote {
    bottom: 200px;
    width: 40%;
  }
  section.quote.ipr-quote .quote-wrap .small-quote p {
    font-size: 26px;
  }
}

section.mission-vision {
  background-color: #24B4BA;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.mission-vision.video {
  background-color: unset;
}
section.mission-vision.video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(7, 71, 117, 0.8392156863);
}
section.mission-vision.dark {
  background-color: #E2EFF7;
}
section.mission-vision.dark h2,
section.mission-vision.dark p {
  color: #212529;
}
section.mission-vision .left-img {
  width: 300px;
  height: 300px;
  position: relative;
  margin: auto;
}
@media (min-width: 576px) {
  section.mission-vision .left-img {
    width: 380px;
    height: 380px;
  }
}
@media (min-width: 992px) {
  section.mission-vision .left-img {
    width: 450px;
    height: 450px;
    margin: unset;
  }
}
@media (min-width: 1200px) {
  section.mission-vision .left-img {
    width: 470px;
    height: 470px;
  }
}
section.mission-vision .left-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 20;
  -o-object-fit: cover;
     object-fit: cover;
}
section.mission-vision .left-img svg {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 0;
  fill: #219da3;
  width: 330px;
  height: 330px;
}
section.mission-vision .left-img svg.vision {
  fill: rgba(27, 146, 151, 0.4901960784);
}
@media (min-width: 576px) {
  section.mission-vision .left-img svg {
    transform: rotate(45deg);
    width: 420px;
    height: 420px;
    top: -21px;
    left: -21px;
  }
}
@media (min-width: 992px) {
  section.mission-vision .left-img svg {
    width: 500px;
    height: 500px;
    top: -27px;
    left: -27px;
  }
}
@media (min-width: 1200px) {
  section.mission-vision .left-img svg {
    width: 510px;
    height: 510px;
    top: -21px;
    left: -21px;
  }
}
section.mission-vision h2 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
}
@media (min-width: 576px) {
  section.mission-vision h2 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  section.mission-vision h2 {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  section.mission-vision h2 {
    font-size: 72px;
    margin-bottom: 20px;
  }
}
section.mission-vision p {
  color: #fff;
  line-height: 2;
  font-size: 16px;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  section.mission-vision p {
    font-size: 18px;
  }
}
section.mission-vision p.miss-highlights {
  border-left: 6px solid #24B4BA;
  position: relative;
  padding: 0 10px;
}
@media (min-width: 768px) {
  section.mission-vision p.miss-highlights {
    padding-right: 100px;
  }
}
@media (min-width: 992px) {
  section.mission-vision p.miss-highlights {
    padding: 0 20px;
  }
}
section.mission-vision p.miss-highlights i {
  position: absolute;
  right: 0px;
  font-size: 40px;
  color: #24B4BA;
  top: 50%;
  font-size: 40px;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 768px) {
  section.mission-vision p.miss-highlights i {
    display: block;
  }
}
@media (min-width: 992px) {
  section.mission-vision p.miss-highlights i {
    right: -45px;
  }
}
section.mission-vision .vision-img-wrap img {
  width: 125px;
  position: absolute;
  right: 5%;
  z-index: 0;
}
@media (min-width: 768px) {
  section.mission-vision .vision-img-wrap img {
    width: 200px;
  }
}
section.mission-vision .vision-img-wrap img.top-img {
  transform: translateY(-100px);
}
@media (min-width: 576px) {
  section.mission-vision .vision-img-wrap img.top-img {
    transform: translateY(-400px);
  }
}

section.award-card {
  background-color: #E2EFF7;
}
section.award-card .award-card-wrap .award-card {
  min-height: 350px;
  perspective: 1000px;
}
section.award-card .award-card-wrap .award-card:hover .award-card-inner {
  transform: rotateY(-180deg);
}
section.award-card .award-card-wrap .award-card .award-card-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 350px;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-front {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 8px;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-front .award-content {
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-front .award-content::before {
  content: "";
  width: 40%;
  height: 2px;
  background-color: #24B4BA;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-front .award-content img {
  width: 80px;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-front .award-content h4 {
  color: #09324e;
  font-size: 20px;
  text-align: center;
  margin-top: 10%;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #fff;
  transform: rotateY(180deg);
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back.first {
  background-image: url("../images/certification/card-back1.jpg");
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back.second {
  background-image: url("../images/certification/card-back2.jpg");
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back.third {
  background-image: url("../images/certification/card-back3.jpg");
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back.fourth {
  background-image: url("../images/certification/card-back4.jpg");
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back.fifth {
  background-image: url("../images/certification/card-back5.jpg");
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content {
  padding: 20px;
  position: relative;
  height: 100%;
  text-align: center;
  z-index: 10;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content::before {
  content: "";
  width: 40%;
  height: 2px;
  background-color: #24B4BA;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content h4 {
  color: #fff;
  font-size: 18px;
  margin-top: 10%;
}
@media (min-width: 768px) {
  section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content h4 {
    font-size: 20px;
  }
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content p {
  color: #fff;
  margin: 30px 0;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 10px;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content a:hover::before {
  width: 100%;
}
section.award-card .award-card-wrap .award-card .award-card-inner .award-card-back .award-content a::before {
  content: "";
  position: absolute;
  width: 40%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #24B4BA;
  height: 2px;
  transition: 0.4s;
}

section.our-team {
  padding: 60px 0 !important;
}
@media (min-width: 576px) {
  section.our-team {
    padding: 100px 0 !important;
  }
}
section.our-team .other-team-heading {
  text-transform: uppercase;
  color: #09324e;
  font-size: 22px;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  section.our-team .other-team-heading {
    font-size: 30px;
    text-align: left;
  }
}
section.our-team .team-member-wrap .team-member-details h4 {
  font-size: 20px;
  text-transform: capitalize;
  color: #09324e;
}
@media (min-width: 576px) {
  section.our-team .team-member-wrap .team-member-details h4 {
    font-size: 26px;
  }
}
section.our-team .team-member-wrap .team-member-details h6 {
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  color: #09324e;
  opacity: 0.7;
  font-style: italic;
}
@media (min-width: 576px) {
  section.our-team .team-member-wrap .team-member-details h6 {
    font-size: 18px;
  }
}
section.our-team .team-member-wrap .team-member-details p {
  margin: 15px 0;
}
@media (min-width: 768px) {
  section.our-team .team-member-wrap .team-member-details p {
    margin: 30px 0;
  }
}
section.our-team .team-member-wrap .team-member-details button {
  background: none;
  border: 0;
  outline: none;
  width: 138px;
}
@media (min-width: 576px) {
  section.our-team .team-member-wrap .team-member-details button {
    width: 150px;
  }
}
@media (min-width: 992px) {
  section.our-team .team-member-wrap .team-member-img figure {
    text-align: center;
  }
}
section.our-team .team-member-wrap .team-member-img figure img {
  width: 180px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 992px) {
  section.our-team .team-member-wrap .team-member-img figure img {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  section.our-team .team-member-wrap .team-member-img figure img {
    width: 400px;
  }
}

section.other-team-member-wrap {
  background-image: url("../images/vision-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 0 !important;
}
@media (min-width: 576px) {
  section.other-team-member-wrap {
    padding: 100px 0 !important;
  }
}
section.other-team-member-wrap.white-bg {
  background-image: none;
  background-color: #fff;
}
section.other-team-member-wrap .other-team-member {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.other-team-member-wrap .other-team-member {
    justify-content: space-between;
    padding: 40px 0;
  }
}
section.other-team-member-wrap .other-team-member:hover .other-team-member-img::before {
  bottom: 0;
}
section.other-team-member-wrap .other-team-member .other-team-member-details {
  text-align: center;
}
section.other-team-member-wrap .other-team-member .other-team-member-details h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  section.other-team-member-wrap .other-team-member .other-team-member-details h4 {
    font-size: 20px;
  }
}
section.other-team-member-wrap .other-team-member .other-team-member-details h6 {
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.7;
  font-style: italic;
}
@media (min-width: 576px) {
  section.other-team-member-wrap .other-team-member .other-team-member-details h6 {
    font-size: 16px;
  }
}
section.other-team-member-wrap .other-team-member .other-team-member-img {
  margin-bottom: 20px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
section.other-team-member-wrap .other-team-member .other-team-member-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: 0.4s;
  background-color: rgba(5, 72, 120, 0.5098039216);
}
section.other-team-member-wrap .other-team-member .other-team-member-img figure img {
  width: 125px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 768px) {
  section.other-team-member-wrap .other-team-member .other-team-member-img figure img {
    width: 150px;
    aspect-ratio: 1/1;
  }
}

.fullpage-overlay {
  position: fixed;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(7, 71, 117, 0.6901960784);
  z-index: 10;
  transition: width 1s;
}
.fullpage-overlay .close-bio {
  position: absolute;
  top: 20px;
  left: 8%;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.2509803922), 0 8px 16px -8px rgba(0, 0, 0, 0.3019607843), 0 -6px 16px -6px rgba(0, 0, 0, 0.031372549);
  border: 0;
  outline: none;
  background-color: #24B4BA;
}
@media (min-width: 1200px) {
  .fullpage-overlay .close-bio {
    left: 45%;
  }
}
.fullpage-overlay .close-bio svg {
  fill: #fff;
  transition: 0.4s;
  margin-bottom: 3px;
}
.fullpage-overlay .close-bio:hover svg {
  transform: rotate(100deg);
}

.team-member-bio {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -100%;
  transition: right 1s;
  background-color: #fff;
  padding: 40px 20px;
  z-index: 20;
  overflow-y: auto;
}
.team-member-bio::-webkit-scrollbar {
  width: 5px;
}
.team-member-bio::-webkit-scrollbar-thumb {
  background-color: #24B4BA;
}
@media (min-width: 576px) {
  .team-member-bio {
    padding: 40px 60px;
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .team-member-bio {
    width: 50%;
  }
}
.team-member-bio .bio-wrapper {
  min-height: 100vh;
}
.team-member-bio .bio-wrapper h5 {
  color: #09324e;
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 25px;
}
.team-member-bio .team-member-bio-wrap {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .team-member-bio .team-member-bio-wrap {
    margin-bottom: 50px;
  }
}
.team-member-bio .team-member-bio-wrap .team-member-profile img {
  max-width: 120px;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .team-member-bio .team-member-bio-wrap .team-member-profile img {
    max-width: 150px;
  }
}
.team-member-bio .team-member-bio-wrap .team-member-details h4 {
  font-size: 22px;
  text-transform: capitalize;
  color: #09324e;
}
@media (min-width: 992px) {
  .team-member-bio .team-member-bio-wrap .team-member-details h4 {
    font-size: 25px;
  }
}
.team-member-bio .team-member-bio-wrap .team-member-details h6 {
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  color: #09324e;
  opacity: 0.7;
  font-style: italic;
}
.team-member-bio .team-member-bio-wrap a {
  padding: 8px 20px 7px;
  border: 1px solid #09324e;
  color: #fff;
  background-color: #09324e;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.4s;
}
.team-member-bio .team-member-bio-wrap a:hover {
  background-color: #fff;
  color: #09324e;
}
.team-member-bio .team-member-bio-wrap a i,
.team-member-bio .team-member-bio-wrap a svg {
  font-size: 18px;
  margin-right: 8px;
}
.team-member-bio p {
  line-height: 1.8;
  color: rgba(6, 50, 82, 0.8784313725);
}
.team-member-bio .close-bio {
  position: absolute;
  top: 20px;
  right: 20px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.2509803922), 0 8px 16px -8px rgba(0, 0, 0, 0.3019607843), 0 -6px 16px -6px rgba(0, 0, 0, 0.031372549);
  border: 0;
  outline: none;
  background-color: #24B4BA;
}
.team-member-bio .close-bio svg {
  fill: #fff;
  transition: 0.4s;
}
.team-member-bio .close-bio:hover svg {
  transform: rotate(100deg);
}

section.news .visit-news {
  width: 170px;
}
section.news .news-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-bottom: 15px;
  transition: 0.4s;
  height: 100%;
}
section.news .news-card figure {
  position: relative;
}
section.news .news-card figure img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news .news-card .category-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #24B4BA;
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
}
@media (min-width: 576px) {
  section.news .news-card .category-badge {
    padding: 4px 10px;
    font-size: 15px;
  }
}
section.news .news-card span.news-date {
  display: block;
  margin: 20px 0 10px;
  font-size: 14px;
  color: #24B4BA;
}
@media (min-width: 576px) {
  section.news .news-card span.news-date {
    margin: 30px 0 20px;
  }
}
section.news .news-card h4 a {
  text-decoration: none;
  font-size: 18px;
  text-transform: capitalize;
  color: #09324e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  section.news .news-card h4 a {
    font-size: 19px;
  }
}
section.news .news-card p {
  margin-top: 20px;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 576px) {
  section.news .news-card p {
    font-size: 16px;
  }
}
section.news .news-card a {
  width: 150px;
}
@media (min-width: 576px) {
  section.news .news-card a {
    width: 170px;
  }
}

section.research-development {
  background-image: url("../images/vision-section-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card {
  min-height: 300px;
  perspective: 1000px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card:hover .res-dev-pointer-card-inner {
  transform: rotateY(-180deg);
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card:hover .res-dev-pointer-card-inner .res-dev-back::after {
  bottom: 0%;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card:hover .res-dev-pointer-card-inner .res-dev-back .backcard-wrap {
  bottom: 0;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  width: 100%;
  min-height: 300px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-front {
  background-color: #204473;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 8px;
  flex-direction: column;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-front .res-dev-img-wrap {
  position: relative;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-front .res-dev-img-wrap img {
  border-radius: 50%;
  width: 150px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-front .res-dev-img-wrap span.num {
  position: absolute;
  top: 68%;
  font-size: 16px;
  border-radius: 50%;
  font-weight: 500;
  left: -8px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #24B4BA;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-front h4 {
  font-size: 18px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 8px;
  transform: rotateY(180deg);
  background-color: #fff;
  padding: 40px 10px 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -2;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  background: rgb(7, 71, 117);
  background: linear-gradient(0deg, rgba(7, 71, 117, 0.8388130252) 0%, rgba(7, 71, 117, 0.4486169468) 51%);
  z-index: -1;
  transition: 0.4s;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.player {
  background-image: url("../images/homepage/intergrated-player.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.launch {
  background-image: url("../images/homepage/first-to-launch.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.niche {
  background-image: url("../images/homepage/niche-therapy.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.presence {
  background-image: url("../images/homepage/strong-presence.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.product {
  background-image: url("../images/homepage/product-launch.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.mngmt {
  background-image: url("../images/homepage/management-team.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back.covid {
  background-image: url("../images/homepage/coivd-control.jpg");
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back p {
  color: #fff;
  font-size: 15px;
}
section.research-development .res-dev-pointers-wrap .res-dev-pointer-card .res-dev-pointer-card-inner .res-dev-back .backcard-wrap {
  position: relative;
  bottom: -100px;
  transition: 0.4s;
  overflow-y: auto;
}

section.covid-molecules,
section.blockbuster-molecules {
  padding-bottom: 300px !important;
  background-color: #243d6e;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.covid-molecules,
  section.blockbuster-molecules {
    padding-bottom: 150px !important;
  }
}
@media (min-width: 992px) {
  section.covid-molecules .mol-heading-wrap,
  section.blockbuster-molecules .mol-heading-wrap {
    width: 320px;
    margin-left: 13%;
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  section.covid-molecules .mol-heading-wrap,
  section.blockbuster-molecules .mol-heading-wrap {
    margin-left: 30%;
  }
}
@media (min-width: 1700px) {
  section.covid-molecules .mol-heading-wrap,
  section.blockbuster-molecules .mol-heading-wrap {
    margin-left: 50%;
  }
}
section.covid-molecules .molecules-tabs-wrap,
section.blockbuster-molecules .molecules-tabs-wrap {
  margin-top: 50px;
  overflow-x: auto;
  position: relative;
}
section.covid-molecules .molecules-tabs-wrap::-webkit-scrollbar,
section.blockbuster-molecules .molecules-tabs-wrap::-webkit-scrollbar {
  display: none;
}
@media (min-width: 576px) {
  section.covid-molecules .molecules-tabs-wrap,
  section.blockbuster-molecules .molecules-tabs-wrap {
    overflow-x: unset;
  }
}
section.covid-molecules .molecules-tabs-wrap ul,
section.blockbuster-molecules .molecules-tabs-wrap ul {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(145, 156, 164, 0.3098039216);
  border-bottom: 1px solid rgba(145, 156, 164, 0.3098039216);
}
@media (min-width: 992px) {
  section.covid-molecules .molecules-tabs-wrap ul,
  section.blockbuster-molecules .molecules-tabs-wrap ul {
    border-top: unset;
    border-bottom: unset;
    justify-content: unset;
    flex-direction: column;
  }
}
section.covid-molecules .molecules-tabs-wrap ul li,
section.blockbuster-molecules .molecules-tabs-wrap ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  section.covid-molecules .molecules-tabs-wrap ul li,
  section.blockbuster-molecules .molecules-tabs-wrap ul li {
    border-top: 1px solid rgba(145, 156, 164, 0.3098039216);
  }
  section.covid-molecules .molecules-tabs-wrap ul li:last-child,
  section.blockbuster-molecules .molecules-tabs-wrap ul li:last-child {
    border-bottom: 1px solid rgba(145, 156, 164, 0.3098039216);
  }
}
section.covid-molecules .molecules-tabs-wrap ul li a,
section.blockbuster-molecules .molecules-tabs-wrap ul li a {
  padding: 15px 0;
  display: block;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  cursor: pointer;
}
section.covid-molecules .molecules-tabs-wrap ul li a:hover,
section.blockbuster-molecules .molecules-tabs-wrap ul li a:hover {
  color: #24B4BA;
}
section.covid-molecules .molecules-tabs-wrap ul li a.active,
section.blockbuster-molecules .molecules-tabs-wrap ul li a.active {
  color: #24B4BA;
}
section.covid-molecules .molecules-tabs-wrap ul li i,
section.blockbuster-molecules .molecules-tabs-wrap ul li i {
  display: none;
  color: transparent;
  padding-right: 15px;
}
@media (min-width: 992px) {
  section.covid-molecules .molecules-tabs-wrap ul li i,
  section.blockbuster-molecules .molecules-tabs-wrap ul li i {
    display: block;
  }
}
section.covid-molecules .molecules-tabs-wrap .mol-tab-slider,
section.blockbuster-molecules .molecules-tabs-wrap .mol-tab-slider {
  position: relative;
  border-top: 1px solid #e2eff7;
  border-bottom: 1px solid #e2eff7;
}
section.covid-molecules .molecules-tabs-wrap .mol-tab-slider .item,
section.blockbuster-molecules .molecules-tabs-wrap .mol-tab-slider .item {
  text-align: center;
  padding: 20px 0;
}
section.covid-molecules .molecules-tabs-wrap .mol-tab-slider .item a,
section.blockbuster-molecules .molecules-tabs-wrap .mol-tab-slider .item a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
section.covid-molecules .mol-tab-btn-wrap,
section.blockbuster-molecules .mol-tab-btn-wrap {
  position: relative;
  top: 0px;
  height: 10px;
  left: 0;
  width: 100%;
}
section.covid-molecules .mol-tab-btn-wrap button,
section.blockbuster-molecules .mol-tab-btn-wrap button {
  position: absolute;
  background-color: #24B4BA;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #24B4BA;
  outline: 0;
  top: -55px;
  z-index: 100;
}
section.covid-molecules .mol-tab-btn-wrap button i,
section.covid-molecules .mol-tab-btn-wrap button svg,
section.blockbuster-molecules .mol-tab-btn-wrap button i,
section.blockbuster-molecules .mol-tab-btn-wrap button svg {
  color: #fff;
}
section.covid-molecules .mol-tab-btn-wrap button.mol_left,
section.blockbuster-molecules .mol-tab-btn-wrap button.mol_left {
  left: 0;
}
section.covid-molecules .mol-tab-btn-wrap button.mol_right,
section.blockbuster-molecules .mol-tab-btn-wrap button.mol_right {
  right: 0;
}
section.covid-molecules .molecules-slider-wrap,
section.blockbuster-molecules .molecules-slider-wrap {
  height: 100%;
  position: relative;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider {
  position: absolute;
  bottom: -260px;
  left: 5%;
  min-height: 300px;
  width: 90%;
  padding: 30px;
  border-radius: 8px;
  background-color: #24B4BA;
  z-index: 10;
}
@media (min-width: 576px) {
  section.covid-molecules .molecules-slider-wrap .molecules-slider,
  section.blockbuster-molecules .molecules-slider-wrap .molecules-slider {
    bottom: -50px;
    width: 450px;
    left: 30px;
  }
}
@media (min-width: 992px) {
  section.covid-molecules .molecules-slider-wrap .molecules-slider,
  section.blockbuster-molecules .molecules-slider-wrap .molecules-slider {
    bottom: 80px;
    left: -60px;
  }
}
@media (min-width: 1200px) {
  section.covid-molecules .molecules-slider-wrap .molecules-slider,
  section.blockbuster-molecules .molecules-slider-wrap .molecules-slider {
    left: -180px;
  }
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .item ul,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .item ul {
  list-style: none;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .item ul li,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .item ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: #fff;
  font-size: 15px;
}
@media (min-width: 576px) {
  section.covid-molecules .molecules-slider-wrap .molecules-slider .item ul li,
  section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .item ul li {
    font-size: 16px;
  }
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .item ul li::before,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .item ul li::before {
  content: "";
  position: absolute;
  min-width: 8px;
  left: 0;
  height: 8px;
  background-color: #fff;
  top: 20%;
  border-radius: 50%;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .item h5,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .item h5 {
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  margin-bottom: 20px;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap {
  margin-top: 20px;
  text-align: right;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap button,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap button {
  border: 2px solid #24B4BA;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: 0;
  margin: 0 10px;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap button i,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap button i {
  color: #24B4BA;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a:hover::before,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a:hover::before {
  left: 0%;
}
section.covid-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a::before,
section.blockbuster-molecules .molecules-slider-wrap .molecules-slider .nav-wrap a::before {
  content: "";
  width: 100%;
  transition: 0.4s;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: -100px;
  background-color: #fff;
}
section.covid-molecules .molecules-slider-wrap img,
section.blockbuster-molecules .molecules-slider-wrap img {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 576px) {
  section.covid-molecules .molecules-slider-wrap img,
  section.blockbuster-molecules .molecules-slider-wrap img {
    height: 500px;
  }
}
@media (min-width: 992px) {
  section.covid-molecules .molecules-slider-wrap img,
  section.blockbuster-molecules .molecules-slider-wrap img {
    position: absolute;
    height: 100%;
  }
}

section.blockbuster-molecules {
  padding: 60px 0 !important;
}
section.blockbuster-molecules .research-nav-pills {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: scroll;
  border-block: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 0;
}
section.blockbuster-molecules .research-nav-pills::-webkit-scrollbar {
  display: none;
}
section.blockbuster-molecules .research-nav-pills .nav-item a {
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
}
section.blockbuster-molecules .research-nav-pills .nav-item a:hover {
  color: #24B4BA;
}
section.blockbuster-molecules .research-nav-pills .nav-item a.active {
  color: #24B4BA;
  background-color: transparent;
}
@media (min-width: 992px) {
  section.blockbuster-molecules .research-nav-pills .nav-item a {
    font-size: 16px;
  }
}
section.blockbuster-molecules .research-info-card-wrap {
  border-radius: 10px;
}
section.blockbuster-molecules .research-info-card-wrap .research-card {
  background-color: #1c2e51;
  height: 100%;
  border-radius: 10px 10px 0 0;
  padding: 20px;
}
@media (min-width: 992px) {
  section.blockbuster-molecules .research-info-card-wrap .research-card {
    border-radius: 10px 0 0 10px;
    padding: 40px;
  }
}
section.blockbuster-molecules .research-info-card-wrap .research-card h3 {
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.blockbuster-molecules .research-info-card-wrap .research-card h3 {
    font-size: 20px;
  }
}
section.blockbuster-molecules .research-info-card-wrap .research-card ul li {
  margin-bottom: 15px;
  font-size: 14px;
}
@media (min-width: 992px) {
  section.blockbuster-molecules .research-info-card-wrap .research-card ul li {
    font-size: 15px;
  }
}
section.blockbuster-molecules .research-info-card-wrap .research-image-wrap {
  background-color: #415989;
  border-radius: 0 0 10px 10px;
  padding: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  section.blockbuster-molecules .research-info-card-wrap .research-image-wrap {
    border-radius: 0 10px 10px 0;
  }
}

section.news-details p {
  margin: 30px 0;
  line-height: 1.9;
  font-size: 15px;
}
@media (min-width: 576px) {
  section.news-details p {
    font-size: 16px;
  }
}
section.news-details p.bold-text {
  font-weight: 500;
  color: #09324e;
}
section.news-details p.highlights {
  font-size: 18px;
  line-height: 1.9;
  margin: 28px 0;
  padding-left: 26px;
  border-left: 6px solid #24B4BA;
}
@media (min-width: 768px) {
  section.news-details p.highlights {
    padding-left: 30px;
    margin: 40px 0;
    font-size: 22px;
  }
}
section.news-details .news-deatil-heading h3 {
  color: #09324e;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  section.news-details .news-deatil-heading h3 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  section.news-details .news-deatil-heading h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
section.news-details .news-deatil-heading .news-date {
  font-size: 16px;
  font-style: italic;
  text-transform: capitalize;
  display: inline-block;
  color: #24B4BA;
}
section.news-details .news-text-wrap h4 {
  color: #09324e;
  font-size: 22px;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.news-details .news-text-wrap h4 {
    font-size: 30px;
  }
}

section.bg-video {
  height: 600px;
  position: relative;
}
section.bg-video::before {
  content: "";
  position: absolute;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(6, 151, 158);
  background: linear-gradient(90deg, rgb(6, 151, 158) 0%, rgb(12, 53, 137) 51%);
}
section.bg-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.bg-video .made-in-india-logo {
  position: absolute;
  right: 35px;
  z-index: 100;
}
@media (min-width: 1024) {
  section.bg-video .made-in-india-logo {
    top: -20px;
  }
}
@media (min-width: 322px) {
  section.bg-video .made-in-india-logo img {
    width: 100px;
  }
}
@media (min-width: 768px) {
  section.bg-video .made-in-india-logo img {
    width: 130px;
  }
}
@media (min-width: 1024) {
  section.bg-video .made-in-india-logo img {
    width: 160px;
  }
}

.sidenav {
  position: fixed;
  overflow: scroll;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgb(36, 180, 186);
  background: linear-gradient(0deg, rgb(36, 180, 186) 0%, rgba(36, 180, 186, 0.7903536415) 51%, rgb(36, 180, 186) 100%);
  z-index: 100;
  transition: 0.4s;
}
.sidenav .logo-wrap img {
  width: 100px;
  margin-top: -20px;
}
@media (min-width: 576px) {
  .sidenav .logo-wrap img {
    margin-top: 0;
  }
}
.sidenav .sidenav-close {
  width: 40px;
  border: 0;
  outline: 0;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 7%;
  top: 5%;
}
.sidenav .sidenav-close svg {
  transition: 0.4s;
  fill: #24B4BA;
}
.sidenav .sidenav-close:hover svg {
  transform: rotate(90deg);
}
.sidenav .side-nav-menu-wrap {
  width: 100%;
  margin-top: 30px;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 0;
  display: inline-block;
  text-decoration: none;
  transition: 0.6s;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item a:hover {
  transform: scale(1.3);
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper {
  display: flex;
  justify-content: space-between;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper button {
  background-color: transparent;
  border-style: none;
  transition: 0.3s;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper button span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper button span svg {
  height: 100%;
  width: 100%;
  fill: #fff;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper button:focus {
  outline: none;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .nav-link-wrapper button:not(.collapsed) {
  transform: rotate(180deg);
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .collapse-list {
  list-style-type: none;
  padding-left: 15px;
}
.sidenav .side-nav-menu-wrap .main-nav-list .main-list-item .collapse-list li a {
  font-weight: 500;
  font-size: 16px;
}

section.social-links .links_wrap {
  border-top: 1px solid rgba(144, 159, 186, 0.2588235294);
}
section.social-links .social-links-wrap {
  display: flex;
  align-items: center;
}
section.social-links .social-links-wrap span {
  color: #09324e;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 768px) {
  section.social-links .social-links-wrap span {
    font-size: 18px;
  }
}
section.social-links .social-links-wrap i,
section.social-links .social-links-wrap svg {
  font-size: 20px;
  color: #09324e;
  display: inline-block;
  margin-left: 20px;
  transition: 0.4s;
}
section.social-links .social-links-wrap i:hover,
section.social-links .social-links-wrap svg:hover {
  color: #24B4BA;
}
section.social-links a {
  color: #09324e;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s;
}
section.social-links a:hover {
  color: #24B4BA;
}
@media (min-width: 768px) {
  section.social-links a {
    font-size: 18px;
  }
}
section.social-links a i,
section.social-links a svg {
  margin-right: 15px;
}

section.latest-article .art_wrap {
  border-bottom: 1px solid rgba(144, 159, 186, 0.2588235294);
}
section.latest-article .article-heading {
  margin-bottom: 40px;
  color: #09324e;
}
section.latest-article .articles-wrap {
  border-top: 1px solid rgba(144, 159, 186, 0.2588235294);
  padding: 50px 0;
}
section.latest-article .articles-wrap .article-title {
  text-transform: capitalize;
}
section.latest-article .articles-wrap .article-details h4 a {
  text-decoration: none;
  font-size: 18px;
  color: #09324e;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.latest-article .articles-wrap .article-details h4 a {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  section.latest-article .articles-wrap .article-details h4 a {
    font-size: 28px;
  }
}
section.latest-article .articles-wrap .article-details p {
  font-size: 16px;
}
@media (min-width: 768px) {
  section.latest-article .articles-wrap .article-details p {
    font-size: 18px;
  }
}
section.latest-article .articles-wrap .article-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

section.short-content {
  position: relative;
  background-image: url("../images/vision-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 200px;
}
section.short-content::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 0;
  width: 90%;
  height: 100%;
  background-image: url("/images/saj_4226.jpg");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  section.short-content::before {
    top: -400px;
  }
}
section.short-content .short-content-wrap {
  height: 400px;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  position: relative;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.short-content .short-content-wrap {
    height: 400px;
    padding: 70px;
  }
}
@media (min-width: 768px) {
  section.short-content .short-content-wrap {
    width: 600px;
  }
}
section.short-content .short-content-wrap p {
  color: #09324e;
  font-size: 18px;
  line-height: 2.2;
}
@media (min-width: 576px) {
  section.short-content .short-content-wrap p {
    font-size: 20px;
  }
}

section.milestones-slider-wrapper {
  background-image: url("../images/services-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
section.milestones-slider-wrapper .milestones-slider .owl-stage-outer {
  padding: 30px 0 0 0;
}
section.milestones-slider-wrapper .milestones-slider .item {
  position: relative;
  transition: 0.4s;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card {
  width: 100%;
  min-height: 450px;
  background-color: transparent;
  perspective: 1000px;
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.milestones-slider-wrapper .milestones-slider .item .milestone-card {
    transform: translateY(70px);
  }
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card:hover .milestone-card-inner {
  transform: rotateY(-180deg);
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner {
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
  min-height: 450px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front {
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front img {
  -o-object-fit: cover;
     object-fit: cover;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(9, 50, 78);
  background: linear-gradient(0deg, #0e588b 0%, rgba(9, 50, 78, 0) 100%);
  z-index: 0;
  border-radius: 8px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front .front-text-wrap {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front span.card-title {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  width: 100%;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 20px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front a {
  color: #4cb3b3;
  display: inline-flex;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #4cb3b3;
  border-radius: 50%;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-front a i {
  transform: rotate(-40deg);
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back {
  border-radius: 8px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  background-color: #eee;
  color: white;
  transform: rotateY(180deg);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content {
  width: 100%;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content figure img {
  width: 40px !important;
}
@media (min-width: 576px) {
  section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content figure img {
    width: 60px !important;
  }
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content h5 {
  font-size: 18px;
  margin: 10px 0;
  color: #09324e;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content h5 {
    font-size: 20px;
    margin: 20px 0;
  }
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content p {
  color: #09324e;
  font-size: 14px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content a {
  width: 195px;
}
@media (min-width: 576px) {
  section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content a {
    width: 215px;
  }
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content ul li {
  color: #09324e;
  padding-left: 18px;
  position: relative;
  margin-bottom: 7px;
}
section.milestones-slider-wrapper .milestones-slider .item .milestone-card .milestone-card-inner .milestone-card-back .content ul li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 0;
  top: 8px;
  background-color: #24B4BA;
}
section.milestones-slider-wrapper .milestones-slider .item .line-wrapper {
  text-align: center;
  position: relative;
}
section.milestones-slider-wrapper .milestones-slider .item .line-wrapper span.line {
  display: inline-block;
  width: 2px;
  background-color: transparent;
  height: 100px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
section.milestones-slider-wrapper .milestones-slider .item .line-wrapper span.line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1294117647);
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.milestones-slider-wrapper .milestones-slider .item .line-wrapper span.line::before {
    top: 100%;
  }
}
section.milestones-slider-wrapper .milestones-slider .item .line-wrapper span.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid transparent;
  transition: 0.4s;
}
section.milestones-slider-wrapper .milestones-slider .item .line-wrapper span.dot::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  background-color: #24B4BA;
  border-radius: 50%;
}
section.milestones-slider-wrapper .milestones-slider .item.active_card .milestone-card {
  transform: translateY(30px);
}
section.milestones-slider-wrapper .milestones-slider .item.active_card .line-wrapper span.line::before {
  top: 22px;
}
section.milestones-slider-wrapper .milestones-slider .item.active_card .line-wrapper span.dot {
  border: 2px solid #24B4BA;
}
section.milestones-slider-wrapper .slider-navs button:focus {
  outline: none;
  box-shadow: none;
}
section.milestones-slider-wrapper .timeline {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1294117647);
  position: absolute;
  bottom: 112px;
  left: 50%;
  transform: translateX(-50%);
}

section.evolution {
  background: rgb(243, 249, 252);
  background: linear-gradient(45deg, rgb(243, 249, 252) 0%, rgb(220, 242, 255) 100%);
  position: relative;
}
section.evolution .animation-border {
  padding: 20px;
  border-radius: 6px;
  height: 100%;
}
section.evolution .evolution-card {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 12px 28px rgba(212, 226, 235, 0.4784313725);
  transition: 0.4s;
  height: 100%;
}
section.evolution .evolution-card .card-title {
  font-weight: 500;
  font-size: 20px;
}
section.evolution .evolution-card .card-title span {
  color: #09324e;
}
section.evolution .evolution-card .card-title span.year {
  font-size: 12px;
  font-weight: 500;
  color: #24B4BA;
  background-color: rgba(36, 180, 186, 0.1019607843);
  border-radius: 3px;
  padding: 7px 20px 3px;
  text-align: center;
  margin-bottom: 12px;
}
section.evolution .evolution-card .card-body ul li {
  font-size: 14px;
  padding: 10px 0;
}
section.evolution .evolution-card .line-wrapper {
  display: none;
}
@media (min-width: 992px) {
  section.evolution .evolution-card .line-wrapper {
    display: block;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    bottom: -46px;
  }
  section.evolution .evolution-card .line-wrapper span {
    display: inline-block;
    width: 2px;
    height: 39px;
    background-color: #bee0f5;
    position: relative;
    overflow: hidden;
  }
  section.evolution .evolution-card .line-wrapper span::before {
    content: "";
    position: absolute;
    transition: 0.4s;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    pointer-events: none;
    background-color: #24B4BA;
  }
  section.evolution .evolution-card .line-wrapper .circle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #bee0f5;
    transition: 0.4s;
  }
}
section.evolution .evolution-card:hover .line-wrapper .circle {
  background-color: #24B4BA;
}
section.evolution .evolution-card:hover .line-wrapper span::before {
  top: 0%;
}
section.evolution .line-through {
  display: none;
}
@media (min-width: 992px) {
  section.evolution .line-through {
    display: block;
    position: absolute;
    z-index: 0;
    display: inline-block;
    width: 120%;
    height: 1px;
    background-color: #bee0f5;
    bottom: 60px;
    transform: translate(-50%) rotate(0deg);
    left: 50%;
  }
}

section.our-strengths .strengths-wrap .strengths-img figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  section.our-strengths .strengths-wrap .strengths-img figure img {
    min-height: 570px;
    border-top-right-radius: 60px;
  }
}
section.our-strengths .strengths-wrap .strengths-content-wrap {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
@media (min-width: 992px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap {
    border-top-left-radius: 60px;
  }
}
@media (min-width: 576px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap {
    background-color: #09324e;
    margin-left: -70%;
    padding: 20px 25px;
  }
}
@media (min-width: 1200px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap {
    padding: 50px;
    margin-left: -40%;
    min-height: 460px;
  }
}
@media (min-width: 1700px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap {
    min-height: 550px;
  }
}
section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content {
  background-color: #09324e;
  margin-top: -20%;
  padding: 20px;
  width: 95%;
  margin-left: auto;
}
@media (min-width: 576px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content {
    width: 90%;
  }
}
@media (min-width: 992px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content {
    margin-top: 0;
    width: 100%;
    padding: 20px;
  }
}
section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content p {
  font-size: 15px;
  color: #fff;
}
@media (min-width: 576px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content p {
    font-size: 16px;
  }
}
section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content h4 {
  font-size: 18px;
}
@media (min-width: 576px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content h4 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  section.our-strengths .strengths-wrap .strengths-content-wrap .strengths-content h4 {
    font-size: 24px;
  }
}

section.strength-slider {
  background-color: #E2EFF7;
}
section.strength-slider .strength_slider .item {
  display: flex;
  justify-content: center;
  background-color: #fff;
  transition: 0.4s;
  position: relative;
  min-height: 300px;
  border-right: 1px solid #E2EFF7;
}
section.strength-slider .strength_slider .item .strength-item-wrap {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  padding: 32px 40px 25px;
  position: relative;
  align-items: flex-start;
  overflow: hidden;
}
section.strength-slider .strength_slider .item .strength-item-wrap::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: -100%;
  transition: 0.4s;
  background-color: #24B4BA;
  z-index: 10;
}
section.strength-slider .strength_slider .item .strength-item-wrap::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(36, 180, 186, 0.231372549);
  z-index: 0;
}
section.strength-slider .strength_slider .item .str-item-img {
  width: 60px;
}
section.strength-slider .strength_slider .item .str-item-img figure img {
  width: 100%;
}
section.strength-slider .strength_slider .item h4 {
  color: #09324e;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 1.4;
}
section.strength-slider .strength_slider .item p {
  margin-bottom: 0;
  margin-top: 5px;
}
section.strength-slider .strength_slider .item .bottom_line {
  width: 60%;
  height: 2px;
  background-color: rgba(36, 180, 186, 0.1607843137);
  position: relative;
  overflow: hidden;
}
section.strength-slider .strength_slider .item .bottom_line::before {
  content: "";
  width: 100%;
  transition: 0.4s;
  height: 100%;
  left: -100%;
  top: 0;
  position: absolute;
  background-color: #24B4BA;
}
section.strength-slider .strength_slider .item a {
  text-decoration: none;
}
section.strength-slider .strength_slider .item a img {
  width: 40px;
}
section.strength-slider .strength_slider .item:hover .bottom_line::before {
  left: 0%;
}
section.strength-slider .strength_slider .item:hover .strength-item-wrap::before {
  left: 0%;
}

section.rnd-points {
  background: rgb(3, 84, 170);
  background: linear-gradient(90deg, rgb(3, 84, 170) 0%, rgb(5, 40, 76) 100%);
}
section.rnd-points .accordion .card {
  background-color: transparent;
  border: none;
  margin-bottom: 25px;
}
section.rnd-points .accordion .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0.75rem 0.25rem;
}
@media (min-width: 576px) {
  section.rnd-points .accordion .card .card-header {
    padding: 0.75rem 1.25rem;
  }
}
section.rnd-points .accordion .card .card-header h2 button {
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}
section.rnd-points .accordion .card .card-header h2 button img {
  transition: 0.4s;
}
section.rnd-points .accordion .card .card-header h2 button img.rotate {
  transform: rotate(90deg);
}
section.rnd-points .accordion .card .card-header h2 button:focus {
  box-shadow: none;
}
section.rnd-points .accordion .card .card-header h2 i {
  color: #ee7c3c;
}
section.rnd-points .accordion .card .card-body {
  color: #fff;
}
section.rnd-points .accordion .card .card-body .edu-pointers h4 {
  font-size: 18px;
  color: #24B4BA;
}
section.rnd-points .accordion .card .card-body ul {
  margin-left: 10px;
}
section.rnd-points .accordion .card .card-body ul li {
  padding-left: 17px;
  margin-bottom: 15px;
  position: relative;
}
section.rnd-points .accordion .card .card-body ul li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #24B4BA;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
section.rnd-points figure img {
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 10px 10px 10px;
}

section.formulation .formultaion-img figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 576px) {
  section.formulation .formultaion-img figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.formulation .formultaion-img figure img {
    width: 80%;
    margin: auto;
  }
}

section.rnd-carousel-section {
  position: relative;
}
section.rnd-carousel-section.csr-slider {
  background-color: #E2EFF7;
}
section.rnd-carousel-section.csr-slider .bottom-strip {
  background-image: unset;
}
section.rnd-carousel-section .rnd-carousel .item {
  min-height: 300px;
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  section.rnd-carousel-section .rnd-carousel .item {
    min-height: unset;
    padding-bottom: unset;
  }
}
@media (min-width: 1200px) {
  section.rnd-carousel-section .rnd-carousel .item {
    max-width: 700px;
    padding-bottom: 80px;
  }
}
section.rnd-carousel-section .rnd-carousel .item figure {
  position: relative;
  min-height: 300px;
}
@media (min-width: 576px) {
  section.rnd-carousel-section .rnd-carousel .item figure {
    min-height: unset;
  }
}
section.rnd-carousel-section .rnd-carousel .item figure img {
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 992px) {
  section.rnd-carousel-section .rnd-carousel .item figure img {
    min-height: 500px;
  }
}
section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper {
  border-radius: 8px;
  position: absolute;
  padding: 20px;
  bottom: -50px;
  right: 0;
  max-width: 340px;
  box-shadow: 0 12px 28px rgba(32, 68, 115, 0.1294117647);
}
section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 50px;
  background-color: #24B4BA;
  left: 0;
  top: 18%;
}
@media (min-width: 576px) {
  section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper {
    bottom: 15px;
    max-width: 370px;
    padding: 10px 20px;
  }
}
@media (min-width: 992px) {
  section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper {
    bottom: 0;
    right: -15px;
  }
}
@media (min-width: 1200px) {
  section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper {
    right: -200px;
    bottom: 15px;
  }
}
section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper .h4 {
  font-size: 20px;
  color: #09324e;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
}
@media (min-width: 768px) {
  section.rnd-carousel-section .rnd-carousel .item figure .text-wrapper {
    padding: 40px;
  }
}
section.rnd-carousel-section .bottom-strip {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  background: rgb(3, 84, 170);
  background: linear-gradient(90deg, rgb(3, 84, 170) 0%, rgb(5, 40, 76) 100%);
}
@media (min-width: 992px) {
  section.rnd-carousel-section .bottom-strip {
    height: 300px;
  }
}
section.rnd-carousel-section .bottom-strip .slider-navs {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 10;
}
@media (min-width: 1200px) {
  section.rnd-carousel-section .bottom-strip .slider-navs.csr-strip {
    top: -320px;
    right: 20%;
    bottom: unset;
  }
}
@media (min-width: 1700px) {
  section.rnd-carousel-section .bottom-strip .slider-navs.csr-strip {
    right: 33%;
  }
}
section.rnd-carousel-section .bottom-strip .slider-navs button:focus {
  box-shadow: none;
}

section.api img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  section.api img {
    height: 750px;
  }
}
@media (min-width: 1200px) {
  section.api img {
    height: 550px;
  }
}
@media (min-width: 1700px) {
  section.api img {
    height: 500px;
  }
}
section.api .api-content-wrap {
  background-color: #09324e;
}
@media (min-width: 992px) {
  section.api .api-content-wrap {
    border-top-left-radius: 60px;
  }
}
section.api .api-content-wrap .api-content {
  padding: 30px 25px;
}
@media (min-width: 576px) {
  section.api .api-content-wrap .api-content {
    padding: 50px 30px;
  }
}
@media (min-width: 1200px) {
  section.api .api-content-wrap .api-content {
    padding: 70px 50px 50px 80px;
  }
}
section.api .api-content-wrap .api-content p {
  color: #fff;
  font-size: 15px;
}

section.api-card {
  background-image: url("../images/facilities/f-bg2.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.api-card .api-card-wrap {
  padding: 30px 20px;
  border-radius: 8px;
  position: relative;
  z-index: 10;
}
section.api-card .api-card-wrap::before {
  content: "";
  border-radius: 8px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2196078431);
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
}
@media (min-width: 768px) {
  section.api-card .api-card-wrap {
    padding: 30px;
  }
}
section.api-card .api-card-wrap .api-card-heading {
  position: relative;
}
section.api-card .api-card-wrap .api-card-heading span {
  font-size: 12px;
  text-transform: uppercase;
  color: #24B4BA;
  font-weight: 600;
}
section.api-card .api-card-wrap .api-card-heading h4 {
  color: #fff;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
}
@media (min-width: 576px) {
  section.api-card .api-card-wrap .api-card-heading h4 {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  section.api-card .api-card-wrap .api-card-heading h4 {
    font-size: 26px;
  }
}
section.api-card .api-card-wrap .api_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.api-card .api-card-wrap .api_card .str-item-img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-color: #24B4BA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
section.api-card .api-card-wrap .api_card .str-item-img figure {
  text-align: center;
}
section.api-card .api-card-wrap .api_card .str-item-img figure img {
  width: 70%;
}
section.api-card .api-card-wrap .api_card h4 {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
}
section.api-card .api-card-wrap .api_card ul {
  margin-top: 5px;
}
section.api-card .api-card-wrap .api_card ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  color: #e7e7e7;
}
section.api-card .api-card-wrap .api_card ul li::before {
  content: "";
  min-width: 7px;
  height: 7px;
  background-color: #24B4BA;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}
section.api-card .api-card-wrap .api_card ul li:last-child {
  margin-bottom: 0;
}
section.api-card .api-card-wrap .api_card ul button {
  background-color: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 1px;
  border-bottom: 1px solid #24B4BA;
}
section.api-card .api-card-wrap .api_card ul .more-list {
  display: none;
}
section.api-card .api-card-wrap .api_card ol {
  margin: 16px 0;
}
section.api-card .api-card-wrap .api_card ol li {
  padding-left: 15px;
}
section.api-card .api-card-wrap .api_card ol li::before {
  display: "";
  width: 5px;
  height: 2px;
  position: absolute;
  top: 10px;
  left: 0;
}
section.api-card .api-card-wrap img {
  border-radius: 12px;
  width: 100%;
}

section.rnd-why-choose-us {
  background: rgb(3, 84, 170);
  background: linear-gradient(90deg, rgb(3, 84, 170) 0%, rgb(5, 40, 76) 100%);
}
section.rnd-why-choose-us .rnd-card {
  border: 1px solid rgba(28, 102, 155, 0.2);
  min-height: 200px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(32, 68, 115, 0.3803921569);
  position: relative;
  z-index: 10;
  overflow: hidden;
}
section.rnd-why-choose-us .rnd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1098039216);
  z-index: 0;
}
section.rnd-why-choose-us .rnd-card::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: 0.4s;
}
section.rnd-why-choose-us .rnd-card .rnd-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.4s;
  transition-delay: 0.1s;
}
section.rnd-why-choose-us .rnd-card .rnd-icon i {
  transition: 0.4s;
  font-size: 24px;
  color: #034994;
}
section.rnd-why-choose-us .rnd-card h5 {
  color: #fff;
  margin-top: 35px;
  position: relative;
  transition: 0.4s;
}
section.rnd-why-choose-us .rnd-card p {
  transition: 0.4s;
  position: relative;
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
}
section.rnd-why-choose-us .rnd-card:hover::after {
  top: 0%;
}
section.rnd-why-choose-us .rnd-card:hover .rnd-icon {
  background-color: #034994;
}
section.rnd-why-choose-us .rnd-card:hover .rnd-icon i {
  color: #fff;
}
section.rnd-why-choose-us .rnd-card:hover h5,
section.rnd-why-choose-us .rnd-card:hover p {
  color: #034994;
}

section.regulatory-content {
  background-color: #E2EFF7;
}
section.regulatory-content .content-wrapper {
  position: relative;
}
section.regulatory-content .content-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 992px) {
  section.regulatory-content .content-wrapper img {
    height: 500px;
  }
}
section.regulatory-content .content-wrapper .text-wrapper {
  background-color: #fff;
  position: relative;
  bottom: 15px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(32, 68, 115, 0.1294117647);
}
@media (min-width: 992px) {
  section.regulatory-content .content-wrapper .text-wrapper {
    position: absolute;
  }
}
section.regulatory-content .content-wrapper .text-wrapper.right {
  right: 0;
  left: unset;
}
section.regulatory-content .content-wrapper .text-wrapper.right::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 4px;
  height: 40px;
  background-color: #24B4BA;
  z-index: 10;
  transition: 0.2s;
}
@media (min-width: 992px) {
  section.regulatory-content .content-wrapper .text-wrapper.right::before {
    top: 3rem;
  }
}
section.regulatory-content .content-wrapper .text-wrapper.left {
  left: 0;
  right: unset;
}
section.regulatory-content .content-wrapper .text-wrapper.left::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: unset;
  left: 0;
  width: 4px;
  height: 40px;
  background-color: #24B4BA;
  z-index: 10;
  transition: 0.2s;
}
@media (min-width: 992px) {
  section.regulatory-content .content-wrapper .text-wrapper.left::before {
    right: 0;
    top: 3rem;
  }
}
section.regulatory-content .content-wrapper .text-wrapper h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #09324e;
}
@media (min-width: 576px) {
  section.regulatory-content .content-wrapper .text-wrapper h4 {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  section.regulatory-content .content-wrapper .text-wrapper h4 {
    font-size: 28px;
  }
}
section.regulatory-content .content-wrapper .text-wrapper p {
  font-size: 15px;
}
@media (min-width: 576px) {
  section.regulatory-content .content-wrapper .text-wrapper p {
    font-size: 16px;
  }
}
section.regulatory-content .content-wrapper .text-wrapper p span {
  color: #0069b4;
  font-weight: 500;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border {
  box-shadow: inset 0 0 0 2px #fff;
  position: relative;
  border-radius: 10px;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border::before, section.regulatory-content .content-wrapper .text-wrapper .animation-border::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border::before {
  top: 0;
  left: 0;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border::after {
  bottom: 0;
  right: 0;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border:hover::before, section.regulatory-content .content-wrapper .text-wrapper .animation-border:hover::after {
  width: 100%;
  height: 100%;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border:hover::before {
  border-top-color: #24B4BA;
  border-right-color: #24B4BA;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
section.regulatory-content .content-wrapper .text-wrapper .animation-border:hover::after {
  border-bottom-color: #24B4BA;
  border-left-color: #24B4BA;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}
section.regulatory-content .content-wrapper .text-wrapper:hover.right::before, section.regulatory-content .content-wrapper .text-wrapper:hover.left::before {
  top: 0;
  width: 2px;
}

section.ipr-left-right {
  background-image: url("../images/vision-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.ipr-left-right figure {
  width: 100%;
}
@media (min-width: 992px) {
  section.ipr-left-right figure {
    text-align: center;
  }
}
section.ipr-left-right figure img {
  border-radius: 10px;
  border-top-right-radius: 60px;
  width: 100%;
}
@media (min-width: 576px) {
  section.ipr-left-right figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.ipr-left-right figure img {
    width: unset;
  }
}

section.ipr-cards {
  background-image: url("../images/vision-section-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.ipr-cards .ipr-cards-img figure {
  width: 100%;
}
@media (min-width: 992px) {
  section.ipr-cards .ipr-cards-img figure {
    text-align: center;
  }
}
section.ipr-cards .ipr-cards-img figure img {
  border-radius: 10px;
  border-bottom-left-radius: 60px;
  width: 100%;
}
@media (min-width: 576px) {
  section.ipr-cards .ipr-cards-img figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.ipr-cards .ipr-cards-img figure img {
    width: unset;
  }
}
section.ipr-cards .ipr-cards-content .ipr_card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.ipr-cards .ipr-cards-content .ipr_card {
    flex-direction: row;
  }
}
section.ipr-cards .ipr-cards-content .ipr_card .ipr-icon {
  min-width: 60px;
  height: 60px;
  margin-right: 25px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #24B4BA;
  position: relative;
  overflow: hidden;
}
section.ipr-cards .ipr-cards-content .ipr_card .ipr-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #24B4BA;
  transition: 0.4s;
}
section.ipr-cards .ipr-cards-content .ipr_card .ipr-icon i {
  color: #24B4BA;
  font-size: 30px;
  transition: 0.4s;
  position: relative;
}
section.ipr-cards .ipr-cards-content .ipr_card .ipr-text h4 {
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
}
section.ipr-cards .ipr-cards-content .ipr_card .ipr-text p {
  color: #fff;
}
section.ipr-cards .ipr-cards-content .ipr_card:hover .ipr-icon::before {
  top: 0%;
}
section.ipr-cards .ipr-cards-content .ipr_card:hover .ipr-icon i {
  color: #fff;
}

section.ipr-service {
  background-color: #E2EFF7;
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card {
  background-color: #fff;
  margin-top: 25px;
  padding: 25px 20px;
  border-radius: 8px;
}
@media (min-width: 576px) {
  section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card {
    padding: 25px;
  }
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card .ipr-profile-wrap {
  display: flex;
  align-items: center;
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card .ipr-profile-wrap .ipr-profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card .ipr-profile-wrap .ipr-profile-img img {
  width: 100%;
  -o-object-position: top;
     object-position: top;
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card .ipr-profile-wrap .ipr-profile-details h5 {
  font-size: 18px;
  font-weight: 600px;
  color: #09324e;
  text-transform: capitalize;
  margin-bottom: 0;
}
section.ipr-service .ipr-service-main-card-wrap .ipr-service-main-card .ipr-profile-wrap .ipr-profile-details span {
  font-size: 14px;
  color: #24B4BA;
  font-weight: 600;
}
section.ipr-service .ipr-service-small-card {
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media (min-width: 576px) {
  section.ipr-service .ipr-service-small-card {
    grid-template-columns: auto auto;
  }
}
section.ipr-service .ipr-service-small-card .ipr_service_card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
}
section.ipr-service .ipr-service-small-card .ipr_service_card .icon {
  margin-bottom: 15px;
}
section.ipr-service .ipr-service-small-card .ipr_service_card h5 {
  color: #09324e;
  font-size: 18px;
  text-transform: capitalize;
}

section.world-map {
  background: rgb(213, 229, 242);
  background: linear-gradient(90deg, rgb(213, 229, 242) 0%, rgb(216, 242, 243) 100%);
}
section.world-map .tabs-wrapper button {
  padding: 12px;
  background-color: #24B4BA;
  color: #fff;
  width: 160px;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: none;
}
section.world-map .tabs-wrapper button:focus, section.world-map .tabs-wrapper button:active {
  background-color: #001b2e;
}
section.world-map figure {
  position: relative;
}
section.world-map figure img {
  opacity: 0.85;
  filter: drop-shadow(8px 28px 14px rgba(33, 98, 135, 0.0745098039));
}
section.world-map figure .pointer {
  position: absolute;
  cursor: pointer;
}
section.world-map figure .pointer i {
  font-size: 12px;
  color: #24B4BA;
}
@media (min-width: 768px) {
  section.world-map figure .pointer i {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  section.world-map figure .pointer i {
    font-size: 30px;
  }
}
section.world-map figure .pointer.one {
  top: 24%;
  right: 30%;
}
section.world-map figure .pointer.two {
  top: 33%;
  right: 48.5%;
}
section.world-map figure .pointer.three {
  top: 35%;
  right: 47%;
}
section.world-map figure .pointer.four {
  top: 38%;
  right: 48%;
}
section.world-map figure .pointer.five {
  top: 41%;
  right: 46.5%;
}
section.world-map figure .pointer.six {
  top: 48%;
  right: 51%;
}
section.world-map figure .pointer.seven {
  top: 27%;
  right: 41%;
}
section.world-map figure .pointer.eight {
  top: 28%;
  right: 43%;
}
section.world-map figure .pointer.nine {
  top: 30%;
  right: 42%;
}
section.world-map figure .pointer.ten {
  top: 37%;
  right: 41%;
}
section.world-map figure .pointer.eleven {
  top: 42%;
  right: 40%;
}
section.world-map figure .pointer.twelve {
  top: 39%;
  right: 40%;
}
section.world-map figure .pointer.thirteen {
  top: 44%;
  right: 41%;
}
section.world-map figure .pointer.fourteen {
  top: 46%;
  right: 42%;
}
section.world-map figure .pointer.fifteen {
  top: 49%;
  right: 44%;
}
section.world-map figure .pointer.sixteen {
  top: 43%;
  right: 37%;
}
section.world-map figure .pointer.seventeen {
  top: 47%;
  right: 37%;
}
section.world-map figure .pointer.eighteen {
  top: 49%;
  right: 39.5%;
}
section.world-map figure .pointer.nineteen {
  top: 51%;
  right: 37%;
}
section.world-map figure .pointer.twenty {
  top: 43%;
  right: 33.3%;
}
section.world-map figure .pointer.twentyone {
  top: 60%;
  right: 22%;
}
section.world-map figure .pointer.twentytwo {
  top: 48%;
  right: 26.7%;
}
section.world-map figure .pointer.twentythree {
  top: 51%;
  right: 21%;
}
section.world-map figure .pointer.twentyfour {
  top: 56%;
  right: 20.5%;
}
section.world-map figure .pointer.twentyfive {
  top: 49%;
  right: 19%;
}
section.world-map figure .pointer.twentysix {
  top: 58%;
  right: 27.7%;
}
section.world-map figure .pointer.twentyseven {
  top: 54%;
  right: 23%;
}
section.world-map figure .pointer.twentyeight {
  top: 61%;
  right: 18%;
}
section.world-map figure .pointer.twentynine {
  top: 63%;
  right: 15.5%;
}
section.world-map figure .pointer.usone {
  top: 34%;
  right: 80%;
}
section.world-map figure .pointer.ustwo {
  top: 43%;
  right: 81%;
}
section.world-map figure .pointer.usthree {
  top: 50%;
  right: 80%;
}
section.world-map figure .pointer.usfour {
  top: 34%;
  right: 80%;
  display: none;
}
section.world-map figure .pointer.usfive {
  top: 57%;
  right: 75%;
}
section.world-map figure .pointer.ussix {
  top: 52%;
  right: 72.5%;
}
section.world-map figure .pointer.usseven {
  top: 63%;
  right: 74%;
}
section.world-map figure .pointer.useight {
  top: 61%;
  right: 72%;
}
section.world-map figure .pointer.usnine {
  top: 58%;
  right: 70%;
}
section.world-map figure .pointer.usten {
  top: 67%;
  right: 73%;
}
section.world-map figure .pointer.useleven {
  top: 68%;
  right: 65%;
}
section.world-map figure .pointer.ustwelve {
  top: 64%;
  right: 67%;
}
section.world-map figure .pointer.usthirteen {
  top: 73%;
  right: 71%;
}
section.world-map figure .pointer.usfourteen {
  top: 72%;
  right: 68%;
}
section.world-map figure .pointer.usfifteen {
  top: 68%;
  right: 69%;
}
section.world-map figure .pointer.ussixteen {
  top: 78%;
  right: 71%;
}
section.world-map figure .pointer.usseventeen {
  top: 77%;
  right: 67.5%;
}
section.world-map figure .pointer.useighteen {
  top: 47%;
  right: 74.5%;
}

section.quality-policy h2 {
  color: #fff;
}
section.quality-policy figure {
  padding-right: 50px;
}
section.quality-policy figure img {
  width: 100%;
  border-radius: 10px;
  border-top-right-radius: 90px;
}
section.quality-policy .quality-policy-content {
  padding-top: 40px;
}
@media (min-width: 1200px) {
  section.quality-policy .quality-policy-content {
    padding-top: 0px;
  }
}

section.quality-assurance {
  background: linear-gradient(0deg, rgb(10, 56, 90) 0%, rgb(1, 22, 46) 100%);
}
section.quality-assurance h2 {
  color: #fff;
}
section.quality-assurance figure img {
  border-radius: 10px;
}
section.quality-assurance span.tag {
  font-size: 14px;
  font-weight: 500;
  color: #249ea0;
  display: inline-block;
  text-transform: uppercase;
}
section.quality-assurance .quality-assurance-content .bold-text {
  color: #249ea0;
}
section.quality-assurance .quality-assurance-content ul {
  list-style: none;
  margin-top: 30px;
}
section.quality-assurance .quality-assurance-content ul li {
  position: relative;
  font-size: 14px;
  color: #fff;
  padding-left: 25px;
}
section.quality-assurance .quality-assurance-content ul li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 8px;
  width: 8px;
  background-color: #4cb3b3;
  border-radius: 100%;
  z-index: 100;
}

section.qa-cycle h3 {
  text-align: center;
  margin-bottom: 20px;
}
section.qa-cycle p {
  text-align: center;
}
section.qa-cycle .qa-cycle-img {
  width: 100%;
}

section.quality-control .quality-card-wrraper {
  margin-top: -200px;
  position: relative;
  padding: 45px 0 0 0 !important;
}
@media (min-width: 576px) {
  section.quality-control .quality-card-wrraper {
    padding: 60px 0 0 0 !important;
  }
}
@media (min-width: 992px) {
  section.quality-control .quality-card-wrraper {
    margin-top: -300px;
    padding: 40px 0 0 100px !important;
  }
}
section.quality-control .quality-card-wrraper figure {
  margin-top: 15px !important;
}
section.quality-control .quality-control-heading {
  max-width: 660px;
  font-size: 28px;
}
section.quality-control p {
  font-size: 16px;
}

section.our-achievements {
  background-color: #E2EFF7;
}
section.our-achievements .achievements-cards {
  margin-top: 20px;
}
@media (min-width: 576px) {
  section.our-achievements .achievements-cards {
    margin-top: 40px;
  }
}
section.our-achievements .achievements-cards .achievements-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 350px;
}
section.our-achievements .achievements-cards .achievements-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background-color: rgba(4, 61, 99, 0.3254901961);
}
section.our-achievements .achievements-cards .achievements-card a {
  position: absolute;
  opacity: 0;
  top: 60%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  width: 100%;
  z-index: 200;
  transition: 0.5s ease-out;
}
section.our-achievements .achievements-cards .achievements-card::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(9, 50, 78, 0) 0%, rgba(6, 84, 136, 0.4352941176) 79%);
}
section.our-achievements .achievements-cards .achievements-card .achievements-card-title {
  position: absolute;
  padding: 0px 20px;
  top: 84%;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  font-size: 15px;
  width: 100%;
  z-index: 200;
  font-weight: 500;
  transition: 0.5s ease-out;
}
@media (min-width: 576px) {
  section.our-achievements .achievements-cards .achievements-card .achievements-card-title {
    font-size: 16px;
  }
}
section.our-achievements .achievements-cards .achievements-card figure {
  height: 100%;
}
section.our-achievements .achievements-cards .achievements-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.our-achievements .achievements-cards .achievements-card:hover .card-content {
  top: 0px;
  transition: 0.5s ease-out;
}
section.our-achievements .achievements-cards .achievements-card:hover .achievements-card-title {
  top: 52%;
  transition: 0.5s ease-out;
}
section.our-achievements .achievements-cards .achievements-card:hover a {
  position: absolute;
  top: 40%;
  opacity: 1;
  text-align: center;
  color: #fff;
  font-size: 18px;
  width: 100%;
  z-index: 200;
  transition: 0.5s ease-out;
}
section.our-achievements .achievements-cards .achievements-card .card-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 350px;
  background-color: rgba(0, 0, 0, 0.5);
}

section.innovation-tech {
  background-image: url("../images/vision-section-bg.png");
}
section.innovation-tech figure img {
  border-radius: 10px;
  border-top-right-radius: 60px;
  width: 100%;
}
@media (min-width: 576px) {
  section.innovation-tech figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.innovation-tech figure img {
    width: unset;
  }
}

section.innovation-tech-work {
  background: #4b6cb7;
  /* fallback for old browsers */
  background: rgb(10, 56, 90);
  background: linear-gradient(0deg, rgb(10, 56, 90) 0%, rgb(1, 22, 46) 100%);
}
section.innovation-tech-work figure img {
  border-radius: 10px;
  border-bottom-left-radius: 60px;
  width: 100%;
}
@media (min-width: 576px) {
  section.innovation-tech-work figure img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.innovation-tech-work figure img {
    width: unset;
  }
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content .innovation-tech-img {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  border: 1px solid #24B4BA;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content .innovation-tech-img i {
  font-size: 30px;
  color: #24B4BA;
  z-index: 100;
  transition: 0.4s;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content .innovation-tech-img::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #24B4BA;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content span {
  color: #24B4BA;
  font-weight: bold;
  font-size: 20px;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content p {
  max-width: 600px;
  font-size: 14px;
  color: #fff;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content:hover .innovation-tech-img i {
  color: #fff;
}
section.innovation-tech-work .innovation-tech-wrraper .innovation-tech-content:hover .innovation-tech-img::after {
  top: 0;
  transition: 0.3s ease-out;
}

section.contract-manufacturing {
  background: #4b6cb7;
  /* fallback for old browsers */
  background: rgb(10, 56, 90);
  background: linear-gradient(0deg, rgb(10, 56, 90) 0%, rgb(1, 22, 46) 100%);
}
section.contract-manufacturing figure img {
  width: 100%;
  border-radius: 10px;
  border-top-right-radius: 60px;
}
@media (min-width: 768px) {
  section.contract-manufacturing figure img {
    width: unset;
  }
}

@media (min-width: 992px) {
  section.our-clients {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  section.our-clients .client-wrap {
    position: relative;
    z-index: 20;
    top: 0px;
    background-color: #fff;
    padding-top: 50px;
    border-radius: 8px 8px 0 0;
  }
}
section.our-clients figure {
  transform: translate(0, 100px);
  opacity: 0;
}
@media (min-width: 992px) {
  section.our-clients .second-row {
    border-top: 1px solid lightgray;
  }
}
section.our-clients .client-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  section.our-clients .client-col:not(:last-child) {
    border-right: 1px solid lightgray;
  }
}

section.trade-exhibits {
  background: rgb(3, 84, 170);
  background: linear-gradient(90deg, rgb(3, 84, 170) 0%, rgb(5, 40, 76) 100%);
  position: relative;
}
section.trade-exhibits .owl-item .item .gallery-year {
  text-align: center;
  padding: 20px 0px;
  position: relative;
  display: block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1098039216);
}
section.trade-exhibits .owl-item .item .gallery-year.show {
  border-bottom: 3px solid #24B4BA;
}
section.trade-exhibits .owl-item .item .gallery-year.show::before {
  content: "";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 48%;
  margin-left: -5px;
  border-width: 10px;
  border-style: solid;
  border-color: #24B4BA transparent transparent transparent;
  z-index: 100;
}
section.trade-exhibits .owl-item .item .blank {
  height: 10px;
  width: 100%;
}
section.trade-exhibits .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
}
section.trade-exhibits .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
}
section.trade-exhibits .owl-carousel .owl-nav .owl-prev {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63.5px;
  height: 63.5px;
  background-color: rgba(255, 255, 255, 0.1098039216);
  font-size: 40px;
  color: #fff;
  outline: none;
}
@media (min-width: 1200px) {
  section.trade-exhibits .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 0px;
    left: -70px;
  }
}
section.trade-exhibits .owl-carousel .owl-nav .owl-prev .arrow-left {
  vertical-align: initial;
  width: 25px;
  height: 25px;
}
section.trade-exhibits .owl-carousel .owl-nav .owl-next {
  position: static;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63.5px;
  height: 63.5px;
  background-color: rgba(255, 255, 255, 0.1098039216);
  top: 0px;
  right: 0px;
  font-size: 40px;
  color: #fff;
  outline: none;
}
section.trade-exhibits .owl-carousel .owl-nav .owl-next .arrow-right {
  vertical-align: initial;
  width: 25px;
  height: 25px;
}
@media (min-width: 1200px) {
  section.trade-exhibits .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0px;
    right: -70px;
  }
}
@media (min-width: 1200px) {
  section.trade-exhibits .owl-carousel .owl-nav {
    display: block;
  }
}
section.trade-exhibits .gallery {
  margin-top: 30px;
}
section.trade-exhibits .gallery .gallery-img-wrapper {
  position: relative;
  overflow: hidden;
}
section.trade-exhibits .gallery .gallery-img-wrapper a .gallery-img {
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.trade-exhibits .gallery .gallery-img-wrapper a .gallery-card {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 345px;
  top: 345px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.5s ease-out;
}
section.trade-exhibits .gallery .gallery-img-wrapper:hover .gallery-card {
  top: 0px;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper {
  text-decoration: none;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card figure {
  height: 270px;
  position: relative;
  flex: none;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card figure img {
  border-radius: 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card figure::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  transition: 0.3s;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card .heading-wrapper {
  background-color: #fff;
  padding: 17px 15px;
  border-radius: 0 0;
  height: 100%;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card .heading-wrapper h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.35;
  transition: 0.3s;
  color: #09324e;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card .news-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #24B4BA;
  padding: 5px 10px;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card:hover figure:before {
  background-color: rgba(36, 180, 186, 0.5);
}
section.trade-exhibits .gallery .gallery-image-card-wrapper .gallery-image-card:hover .heading-wrapper h4 {
  color: #24B4BA;
}

section.simple-page-header {
  background-image: url("../images/strengths/strength-img.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
section.simple-page-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 48, 94, 0.4);
}
@media (min-width: 992px) {
  section.simple-page-header {
    min-height: 600px;
  }
}
section.simple-page-header .simple_header_content_wrap h4 {
  background-color: #09324e;
  color: #fff;
  text-transform: capitalize;
  display: inline-block;
  padding: 15px 20px;
  font-size: 16px;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.simple-page-header .simple_header_content_wrap h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  section.simple-page-header .simple_header_content_wrap h4 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.simple-page-header .simple_header_content_wrap h4 {
    font-size: 24px;
  }
}
section.simple-page-header .simple_header_content_wrap h2 {
  color: #fff;
  padding: 15px 20px;
  display: inline-block;
  background-color: rgba(36, 180, 186, 0.5803921569);
  font-size: 20px;
}
@media (min-width: 576px) {
  section.simple-page-header .simple_header_content_wrap h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  section.simple-page-header .simple_header_content_wrap h2 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  section.simple-page-header .simple_header_content_wrap h2 {
    font-size: 32px;
  }
}

section.about-csr {
  background-color: #09324e;
}
section.about-csr .about-csr-heading {
  position: relative;
  padding-top: 20px;
}
section.about-csr .about-csr-heading::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background-color: #fff;
  top: 0;
  left: 0;
}
section.about-csr .about-csr-heading h3 {
  text-transform: capitalize;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  section.about-csr .about-csr-heading h3 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  section.about-csr .about-csr-heading h3 {
    font-size: 30px;
  }
}
section.about-csr .about-csr-content p {
  color: #fff;
  font-size: 15px;
}
@media (min-width: 992px) {
  section.about-csr .about-csr-content p {
    font-size: 18px;
    line-height: 1.9;
  }
}

section.csr-focus-area {
  background-color: #24B4BA;
}
section.csr-focus-area .csr-card {
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 12px 28px rgba(32, 68, 115, 0.0705882353);
}
section.csr-focus-area .csr-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1882352941);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.168627451);
  border-radius: 10px;
}
section.csr-focus-area .csr-card::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: -1;
}
@media (min-width: 576px) {
  section.csr-focus-area .csr-card {
    min-height: 300px;
  }
}
@media (min-width: 992px) {
  section.csr-focus-area .csr-card {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  section.csr-focus-area .csr-card {
    padding: 20px;
  }
}
section.csr-focus-area .csr-card:hover::after {
  top: 0%;
}
section.csr-focus-area .csr-card:hover .csr-icon {
  background-color: #24B4BA;
  box-shadow: 12px 16px 32px rgba(36, 180, 186, 0.2509803922);
}
section.csr-focus-area .csr-card:hover .csr-icon i {
  color: #fff;
}
section.csr-focus-area .csr-card:hover h4 {
  color: #09324e;
}
section.csr-focus-area .csr-card:hover p {
  color: #09324e;
}
section.csr-focus-area .csr-card figure {
  width: 70px;
}
section.csr-focus-area .csr-card figure img {
  width: 100%;
}
section.csr-focus-area .csr-card h4 {
  font-size: 19px;
  margin-top: 35px;
  text-transform: capitalize;
  color: #fff;
  transition: 0.4s;
  transition-delay: 0.1s;
  font-weight: 400;
  line-height: 1.5;
}
section.csr-focus-area .csr-card p {
  margin-top: 20px;
  color: #fff;
  transition: 0.4s;
}
section.csr-focus-area .csr-card .csr-icon {
  background-color: #fff;
  border-radius: 8px;
  display: inline-block;
  width: 60px;
  height: 60px;
  transition: 0.4s;
  transition-delay: 0.2s;
  box-shadow: 0 12px 28px rgba(16, 139, 145, 0.2705882353);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.csr-focus-area .csr-card .csr-icon i {
  font-size: 24px;
  color: #24B4BA;
  transition: 0.4s;
  transition-delay: 0.2s;
}
section.csr-focus-area.cultrue-values {
  background-color: #E2EFF7;
}
section.csr-focus-area.cultrue-values .csr-card {
  margin-bottom: 30px;
  box-shadow: unset;
}
@media (min-width: 576px) {
  section.csr-focus-area.cultrue-values .csr-card {
    min-height: 315px;
  }
}
@media (min-width: 1200px) {
  section.csr-focus-area.cultrue-values .csr-card {
    padding: 18px;
  }
}
section.csr-focus-area.cultrue-values .csr-card::before {
  background-color: #c6dfef;
}
section.csr-focus-area.cultrue-values .csr-card h4 {
  color: #09324e;
  font-size: 18px;
}
section.csr-focus-area.cultrue-values .csr-card p {
  color: #09324e;
}
section.csr-focus-area.product-types .csr-card {
  position: relative;
}
@media (min-width: 576px) {
  section.csr-focus-area.product-types .csr-card {
    min-height: 420px;
  }
}
@media (min-width: 992px) {
  section.csr-focus-area.product-types .csr-card {
    padding: 25px;
  }
}
@media (min-width: 992px) {
  section.csr-focus-area.product-types .csr-card {
    min-height: 466px;
  }
}
@media (min-width: 1200px) {
  section.csr-focus-area.product-types .csr-card {
    min-height: 420px;
  }
}
section.csr-focus-area.product-types .csr-card h4 {
  font-weight: 500;
}
section.csr-focus-area.product-types .csr-card .product-btn {
  border: 2px solid #fff;
  outline: 0;
  padding: 8px 25px;
  background-color: transparent;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  transition: 0.4s;
  text-decoration: none;
}
@media (min-width: 576px) {
  section.csr-focus-area.product-types .csr-card .product-btn {
    position: absolute;
    bottom: 25px;
    left: 23px;
  }
}
section.csr-focus-area.product-types .csr-card:hover .product-btn {
  background-color: #24B4BA;
  color: #fff;
}

section.csr-sustainability .csr-heading {
  position: relative;
  padding-top: 20px;
}
section.csr-sustainability .csr-heading::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background-color: #24B4BA;
  top: 0;
  left: 0;
}
section.csr-sustainability .csr-heading h3 {
  text-transform: capitalize;
  color: #09324e;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 576px) {
  section.csr-sustainability .csr-heading h3 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  section.csr-sustainability .csr-heading h3 {
    font-size: 30px;
  }
}

.csr-sustainability-wrap {
  margin-top: 60px;
}
.csr-sustainability-wrap figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.csr-sustainability-wrap figure img.csr-main {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (min-width: 1700px) {
  .csr-sustainability-wrap figure img.csr-main {
    transform: scaleX(1.05);
  }
}
.csr-sustainability-wrap .csr-sus-content-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 30px;
  position: relative;
  min-height: 500px;
  align-items: center;
  flex-direction: column;
  background: rgb(18, 70, 106);
  background: linear-gradient(45deg, #12466a 0%, #001b2e 100%);
}
@media (min-width: 576px) {
  .csr-sustainability-wrap .csr-sus-content-wrap {
    min-height: 350px;
  }
}
@media (min-width: 992px) {
  .csr-sustainability-wrap .csr-sus-content-wrap {
    min-height: unset;
  }
}
@media (min-width: 992px) {
  .csr-sustainability-wrap .csr-sus-content-wrap .csr-sus-content {
    max-width: 70%;
  }
}
.csr-sustainability-wrap .csr-sus-content-wrap p {
  color: #fff;
  font-size: 15px;
}
.csr-sustainability-wrap .csr-sus-content-wrap .csr-icon {
  position: absolute;
  background-color: #24B4BA;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  top: -40px;
}
@media (min-width: 768px) {
  .csr-sustainability-wrap .csr-sus-content-wrap .csr-icon {
    top: -60px;
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 992px) {
  .csr-sustainability-wrap .csr-sus-content-wrap .csr-icon {
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
  }
}
.csr-sustainability-wrap .csr-sus-content-wrap .csr-icon figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.csr-sustainability-wrap .csr-sus-content-wrap .csr-icon figure img {
  width: 50%;
}
@media (min-width: 992px) {
  .csr-sustainability-wrap .csr-sus-content-wrap .csr-icon.bottom-icon {
    left: unset;
    right: -60px;
  }
}
.csr-sustainability-wrap .csr-sus-content-wrap h4 {
  align-self: flex-start;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .csr-sustainability-wrap .csr-sus-content-wrap h4 {
    font-size: 28px;
  }
}

section.formulation-container figure img {
  width: 100%;
  border-radius: 8px;
}
section.formulation-container .formula-quote {
  border-left: 5px solid #24B4BA;
  padding: 5px 0;
  padding-left: 25px;
}
section.formulation-container .formula-quote h4 {
  color: #09324e;
  line-height: 1.4;
  margin-bottom: 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  section.formulation-container .formula-quote h4 {
    font-size: 30px;
  }
}
section.formulation-container.product-description .formula-content-wrap .goto-products {
  border: 2px solid #09324e;
  color: #fff;
  background-color: #09324e;
  transition: 0.4s;
  padding: 8px 25px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
}
section.formulation-container.product-description .formula-content-wrap .goto-products:hover {
  color: #09324e;
  background-color: #fff;
}

section.api-container {
  padding-top: 50px !important;
}
@media (min-width: 992px) {
  section.api-container {
    padding-top: 100px !important;
  }
}
section.api-container figure {
  margin-bottom: 0px;
}
section.api-container figure img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

section.api-text-wrap {
  position: relative;
  background-color: #004494;
}
@media (min-width: 992px) {
  section.api-text-wrap {
    background: radial-gradient(337.5px at 90.28% 66%, #0075b1 0%, #004494 100%);
  }
}
section.api-text-wrap p {
  color: #fff;
  font-size: 15px;
}
section.api-text-wrap::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 100%;
  top: -60px;
  left: 0;
  background-color: #004494;
  border-top-right-radius: 20px;
}
@media (min-width: 576px) {
  section.api-text-wrap::before {
    width: 60%;
  }
}
@media (min-width: 992px) {
  section.api-text-wrap::before {
    top: -130px;
    width: 50%;
  }
}
section.api-text-wrap h6 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  border-left: 5px solid #24B4BA;
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 0 5px 20px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  section.api-text-wrap h6 {
    margin-bottom: 50px;
    margin-top: 60px;
  }
}
section.api-text-wrap .api-pointers {
  margin-bottom: 30px;
}
section.api-text-wrap .api-pointers h4 {
  font-size: 18px;
  color: #fff;
}

section.api-card-links {
  background-image: url("../images/facilities/bdr-baska-front.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 200px !important;
}
@media (min-width: 992px) {
  section.api-card-links {
    padding-bottom: 300px !important;
  }
}
section.api-card-links::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(90deg, #06979e 0%, #0c3589 50%);
  opacity: 0.8;
}
section.api-card-links .api-card-links-wrap {
  border: 1px solid #fff;
  padding: 30px 20px;
  position: relative;
  border-radius: 10px;
  z-index: 10;
  overflow: hidden;
  box-shadow: 4px 12px 60px rgba(9, 50, 78, 0.6901960784);
  background-color: #fff;
}
@media (min-width: 768px) {
  section.api-card-links .api-card-links-wrap {
    padding: 40px 30px;
  }
}
section.api-card-links .api-card-links-wrap .headings h2 {
  font-size: 20px;
}
@media (min-width: 576px) {
  section.api-card-links .api-card-links-wrap .headings h2 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  section.api-card-links .api-card-links-wrap .headings h2 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  section.api-card-links .api-card-links-wrap .headings h2 {
    font-size: 24px;
  }
}
section.api-card-links .api-card-links-wrap .links-api {
  margin-top: 30px;
  margin-left: 20px;
}
section.api-card-links .api-card-links-wrap .links-api a {
  text-decoration: none;
  display: block;
  padding-left: 20px;
  position: relative;
  overflow: hidden;
}
section.api-card-links .api-card-links-wrap .links-api a::before, section.api-card-links .api-card-links-wrap .links-api a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #e7e7e7;
}
section.api-card-links .api-card-links-wrap .links-api a::after {
  background-color: #24B4BA;
  top: -100%;
  transition: 0.4s;
}
section.api-card-links .api-card-links-wrap .links-api a span {
  font-size: 12px;
  color: #09324e;
  font-weight: 500;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  section.api-card-links .api-card-links-wrap .links-api a span {
    font-size: 14px;
  }
}
section.api-card-links .api-card-links-wrap .links-api a h4 {
  font-size: 16px;
  color: #24B4BA;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  section.api-card-links .api-card-links-wrap .links-api a h4 {
    font-size: 18px;
  }
}
section.api-card-links .api-card-links-wrap .links-api a:hover::after {
  top: 0%;
}

section.api-card-deatils {
  scroll-margin-top: 300px;
}
section.api-card-deatils .api-card-deatils-wrap {
  margin-top: -200px;
  position: relative;
  padding: 45px 0 0 0;
}
@media (min-width: 576px) {
  section.api-card-deatils .api-card-deatils-wrap {
    padding: 60px 0 0 0;
  }
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap {
    margin-top: -300px;
    padding: 60px 0 0 100px;
  }
}
section.api-card-deatils .api-card-deatils-wrap::before {
  content: "";
  width: 100%;
  left: -15px;
  position: absolute;
  top: 0;
  background-color: #fff;
  height: 100%;
}
@media (min-width: 576px) {
  section.api-card-deatils .api-card-deatils-wrap::before {
    left: -150px;
    width: 130%;
  }
}
@media (min-width: 768px) {
  section.api-card-deatils .api-card-deatils-wrap::before {
    width: 100%;
    left: -50px;
  }
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap::before {
    width: 80%;
    left: 0;
  }
}
section.api-card-deatils .api-card-deatils-wrap::after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #24B4BA;
  top: 0;
  left: 0px;
  position: absolute;
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap::after {
    left: 100px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card_heading span {
  font-size: 12px;
  color: #24B4BA;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.api-card-deatils .api-card-deatils-wrap .card_heading span {
    font-size: 14px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card_heading h4 {
  font-size: 20px;
  color: #09324e;
  margin-top: 7px;
}
@media (min-width: 768px) {
  section.api-card-deatils .api-card-deatils-wrap .card_heading h4 {
    font-size: 26px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers h4 {
  font-size: 16px;
  color: #09324e;
  position: relative;
  padding-left: 15px;
}
@media (min-width: 768px) {
  section.api-card-deatils .api-card-deatils-wrap .card-pointers h4 {
    font-size: 18px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #24B4BA;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers h4.small-title {
  font-size: 15px;
  display: inline-block;
  margin-left: 16px;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul {
  margin-top: 20px;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul li {
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
  margin-left: 15px;
  font-size: 15px;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 8px;
  border-radius: 50%;
  background-color: #24B4BA;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul li span {
  color: #09324e;
  font-weight: 500;
}
@media (min-width: 768px) {
  section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature ul.checked-list li {
    margin-left: 20px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature ul.checked-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #24B4BA;
  width: 30px;
  height: 30px;
  top: 2px;
  left: -6px;
  background-color: unset;
  border-radius: unset;
  font-size: 12px;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature ul.checked-list li.no-before {
  margin-left: 0;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature ul.checked-list li.no-before::before {
  display: none;
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature ul.checked-list li.topMargin {
    margin-top: 58px;
  }
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap .card-pointers.card-feature.card-feature-right {
    margin-top: 58px;
  }
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul.dashed-list {
  margin-top: 0;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul.dashed-list li::before {
  content: "" !important;
  border-radius: unset !important;
  width: 6px !important;
  height: 3px !important;
  background-color: #24B4BA !important;
  top: 8px !important;
  left: -5px;
}
section.api-card-deatils .api-card-deatils-wrap .card-pointers ul.dashed-list.left-pos li::before {
  left: 0;
}
section.api-card-deatils .api-card-deatils-wrap figure {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap figure {
    margin-top: 60px;
  }
}
section.api-card-deatils .api-card-deatils-wrap figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media (min-width: 992px) {
  section.api-card-deatils .api-card-deatils-wrap.culture-details .culture-slider {
    margin-top: 80px;
  }
}

section.api-banner {
  min-height: 500px;
  background-image: url("../images/about/about_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
section.api-banner.culture {
  background-image: url("/images/saj_2762.jpg");
}
section.api-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 68, 148, 0.4901960784);
}
section.api-banner.banner-gradient::before {
  background: linear-gradient(90deg, #06979e 0%, #0c3589 50%);
  opacity: 0.6;
}

section.culture-testimonial {
  background: linear-gradient(90deg, #0354aa 0%, #05284c 100%);
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item {
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item {
    padding: 30px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-img {
    width: 20%;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-img figure {
  width: 120px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -15px;
}
@media (min-width: 576px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-img figure {
    width: 150px;
  }
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-img figure {
    width: 170px;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-img figure img {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text {
  margin-top: 30px;
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text {
    width: 72%;
    margin-top: 0;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text p {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
}
@media (min-width: 576px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text p {
    font-size: 18px;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text .designation-wrap {
  color: #24B4BA;
  display: block;
  margin-top: 30px;
  font-weight: 600;
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text .designation-wrap {
    margin-top: 20px;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .item .testimonial-text .designation-wrap span.designation {
  display: block;
  font-weight: 400;
  margin-left: 10px;
  margin-top: 3px;
  color: #fff;
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
section.culture-testimonial .testimonial-wrap .testimonial-slider .owl-dots .owl-dot.active {
  background-color: #fff;
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-slider .owl-dots .owl-dot {
    height: 13px;
    width: 13px;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-nav {
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 20;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .testimonial-nav {
    width: 110%;
    justify-content: space-between;
    left: 50%;
    top: 50%;
    right: unset;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1700px) {
  section.culture-testimonial .testimonial-wrap .testimonial-nav {
    width: 120%;
  }
}
section.culture-testimonial .testimonial-wrap .testimonial-nav button {
  border-radius: 50%;
  background-color: #24B4BA;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
section.culture-testimonial .testimonial-wrap .testimonial-nav button span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
}
section.culture-testimonial .testimonial-wrap .testimonial-nav button span svg {
  height: 100%;
  width: 100%;
}
section.culture-testimonial .testimonial-wrap .slider-quote {
  position: absolute;
  top: 70px;
  right: 0px;
}
@media (min-width: 576px) {
  section.culture-testimonial .testimonial-wrap .slider-quote {
    right: 45px;
    top: 100px;
  }
}
@media (min-width: 992px) {
  section.culture-testimonial .testimonial-wrap .slider-quote {
    top: -40px;
    right: -60px;
  }
}
section.culture-testimonial .testimonial-wrap .slider-quote img {
  width: 80px;
}

section.job-openings {
  background-color: #E2EFF7;
}
section.job-openings .job-opening-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(212, 226, 235, 0.4784313725);
  padding: 30px 15px;
}
@media (min-width: 768px) {
  section.job-openings .job-opening-card {
    padding: 40px 30px;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap h4 {
  font-size: 18px;
  color: #09324e;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  section.job-openings .job-opening-card .job-descripion-wrap h4 {
    font-size: 20px;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap .job-locations {
  margin: 20px 0 15px;
  display: flex;
}
@media (min-width: 768px) {
  section.job-openings .job-opening-card .job-descripion-wrap .job-locations {
    margin: 20px 0 25px;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap .job-locations i {
  color: #24B4BA;
  font-size: 18px;
  margin-right: 10px;
}
section.job-openings .job-opening-card .job-descripion-wrap .job-locations span.job-location {
  padding: 3px 8px;
  font-size: 14px;
  margin-right: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: rgba(36, 180, 186, 0.0705882353);
  color: #24B4BA;
}
section.job-openings .job-opening-card .job-descripion-wrap .job-description {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  section.job-openings .job-opening-card .job-descripion-wrap .job-description {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap .job-description p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  section.job-openings .job-opening-card .job-descripion-wrap .job-description p {
    width: 75%;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap .job-description .apply-btn {
  margin-top: 20px;
}
@media (min-width: 992px) {
  section.job-openings .job-opening-card .job-descripion-wrap .job-description .apply-btn {
    width: 20%;
    margin-top: 0;
  }
}
section.job-openings .job-opening-card .job-descripion-wrap .job-description .apply-btn button {
  padding: 6px 20px;
  border: 2px solid #09324e;
  outline: 0;
  color: #fff;
  background-color: #09324e;
  border-radius: 4px;
  transition: 0.4s;
}
section.job-openings .job-opening-card .job-descripion-wrap .job-description .apply-btn button:hover {
  background-color: #fff;
  color: #09324e;
}

section.products-listing {
  background-color: #00305e;
}
section.products-listing .product-listing-wrap .product-card {
  background-color: #00417c;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 12px;
  justify-content: space-between;
  text-decoration: none;
  min-height: 74px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
section.products-listing .product-listing-wrap .product-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #24B4BA;
  transition: 0.4s;
  z-index: 0;
}
section.products-listing .product-listing-wrap .product-card:hover::before {
  left: 0%;
}
section.products-listing .product-listing-wrap .product-card .product-icon {
  width: 20%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.products-listing .product-listing-wrap .product-card .product-icon::before {
  content: "";
  position: absolute;
  height: 40px;
  right: -5px;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 27, 46, 0.231372549);
}
section.products-listing .product-listing-wrap .product-card .product-name {
  width: 75%;
  position: relative;
}
section.products-listing .product-listing-wrap .product-card .product-name span {
  font-weight: 500;
  color: #fff;
}

.privacy-policy-wrap p,
.terms-and-conditions-wrap p {
  font-size: 13px;
}
@media (min-width: 576px) {
  .privacy-policy-wrap p,
  .terms-and-conditions-wrap p {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .privacy-policy-wrap p,
  .terms-and-conditions-wrap p {
    font-size: 15px;
  }
}

section.about-us-slogan {
  position: relative;
}
section.about-us-slogan .main-image {
  margin-bottom: 0;
  width: 100%;
  max-height: 600px;
}
section.about-us-slogan .main-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-us-slogan .quote-wrapper {
  position: absolute;
  left: 50%;
  background-color: #fff;
  bottom: 0;
  width: 90%;
  padding: 20px 0;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.about-us-slogan .quote-wrapper {
    width: 80%;
    padding: 50px 0;
  }
}
@media (min-width: 1200px) {
  section.about-us-slogan .quote-wrapper {
    width: 50%;
  }
}
section.about-us-slogan .quote-wrapper .quote {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (min-width: 576px) {
  section.about-us-slogan .quote-wrapper .quote {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
section.about-us-slogan .quote-wrapper .quote figure {
  margin-bottom: 0;
  height: 50px;
  width: 50px;
}
@media (min-width: 576px) {
  section.about-us-slogan .quote-wrapper .quote figure {
    height: 80px;
    width: 80px;
  }
}
section.about-us-slogan .quote-wrapper .quote figure img {
  height: 100%;
  width: 100%;
}

section.pdfs {
  background-color: #eff9ff;
}
section.pdfs .pdf-card {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  background-color: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.pdfs .pdf-card {
    padding: 18px;
    -moz-column-gap: 36px;
         column-gap: 36px;
  }
}
section.pdfs .pdf-card span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 5px;
  position: relative;
  height: 30px;
  width: 30px;
  aspect-ratio: 1/1;
  transition: 0.4s;
}
@media (min-width: 576px) {
  section.pdfs .pdf-card span {
    padding: 7px;
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 992px) {
  section.pdfs .pdf-card span {
    padding: 10px;
    height: 50px;
    width: 50px;
  }
}
section.pdfs .pdf-card span svg {
  fill: #24B4BA;
  height: 100%;
  width: 100%;
}
section.pdfs .pdf-card span svg path {
  stroke: #24B4BA;
}
section.pdfs .pdf-card span::before {
  content: "";
  background-color: rgba(53, 145, 238, 0.1882352941);
  position: absolute;
  height: 100%;
  width: 1px;
  right: -12px;
  top: 0;
}
@media (min-width: 576px) {
  section.pdfs .pdf-card span::before {
    right: -18px;
  }
}
section.pdfs .pdf-card h4 {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 600;
  transition: 0.3s;
  color: #09324e;
}
@media (min-width: 576px) {
  section.pdfs .pdf-card h4 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.pdfs .pdf-card h4 {
    font-size: 18px;
  }
}
section.pdfs .pdf-card:hover {
  transform: translateY(-10px) !important;
  background-color: #24B4BA;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
section.pdfs .pdf-card:hover h4 {
  color: #fff;
}
section.pdfs .pdf-card:hover span::before {
  background-color: #fff;
}
section.pdfs .pdf-card:hover span svg {
  fill: #fff;
}
section.pdfs .pdf-card:hover span svg path {
  stroke: #fff;
}

section.culture-desc._dark-blue-bg {
  background: linear-gradient(90deg, #0354aa 0%, #05284c 100%);
}
section.culture-desc._light-blue-bg {
  background-color: #24b4ba;
}
section.culture-desc .life-slider .item {
  height: 250px;
}
@media (min-width: 576px) {
  section.culture-desc .life-slider .item {
    height: 270px;
  }
}
section.culture-desc .life-slider .item figure {
  height: 100%;
  width: 100%;
  position: relative;
}
section.culture-desc .life-slider .item figure::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(36, 180, 186, 0.3);
  opacity: 0;
  transition: 0.3s;
  left: 0;
  top: 0;
  border-radius: 10px;
}
section.culture-desc .life-slider .item figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
section.culture-desc .life-slider .item:hover figure::before {
  opacity: 1;
}/*# sourceMappingURL=style.min.css.map */
