.banner {
  height: 450px;
  background-image: url("../assets/Exterior.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.banner .background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0a3b7c;
  opacity: 0.8;
  z-index: 0;
}
.banner .banner-wrapper {
  width: 100%;
  max-width: 840px;
  z-index: 1;
  position: relative;
  margin-bottom: 70px;
}
.banner .banner-wrapper .banner-title {
  margin: 0px;
  font-size: 90px;
  color: white;
  font-weight: 700;
  line-height: 85px;
}
.banner .banner-wrapper .nanox-logo {
  filter: brightness(0) invert(1);
  width: 500px;
}
.banner .banner-wrapper .banner-subtitle {
  margin: 0px;
  font-size: 25px;
  line-height: 40px;
  color: white;
  margin-top: 0px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .banner .banner-wrapper {
    display: flex;
    flex-direction: column;
  }
  .banner .banner-wrapper .nanox-logo {
    width: 450px;
  }
  .banner .banner-wrapper .banner-subtitle {
    font-size: 20px;
    line-height: 30px;
    width: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner {
    height: auto;
    padding: 90px 0px 50px 0px;
  }
  .banner .banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .banner .banner-wrapper .nanox-logo {
    width: 400px;
  }
  .banner .banner-wrapper .banner-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 575.98px) {
  .banner {
    height: auto;
    padding: 100px 0px 40px 0px;
  }
  .banner .banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .banner .banner-wrapper .nanox-logo {
    max-width: 350px;
    padding: 0px 40px;
    margin-bottom: 30px;
  }
  .banner .banner-wrapper .banner-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    padding: 0px 15px 0px 0px;
  }
}
.header {
  background-color: transparent;
  padding: 20px 0px;
  position: fixed;
  width: 100%;
  top: 0px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}
.header .header-mobile {
  display: none;
}
.header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .header-wrapper .jdi-logo {
  opacity: 0;
  filter: brightness(0) invert(1);
  width: 150px;
}
.header .header-wrapper .header-link {
  display: flex;
}
.header .header-wrapper .header-link .link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.header .header-wrapper .header-link .link-list .link-text {
  margin: 0px;
  color: white;
  font-size: 18px;
  margin-right: 10px;
  border-right: solid 1px white;
  padding-right: 10px;
}
.header .header-wrapper .header-link .link-list .link-text:last-child {
  border-right: none;
}
.header .header-wrapper .header-link .link-list .link-text:hover {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.527);
}
.header .header-wrapper .header-link .link-logo .nanox-logo {
  width: 200px;
  filter: brightness(0) invert(1);
}
.header .header-wrapper .header-link .link-logo:hover {
  opacity: 0.5;
}

.scroll-active {
  box-shadow: 0 -6px 10px 5px rgb(0, 0, 0);
  background-color: #0a3b7c;
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 10px 0px;
}
.scroll-active .header-wrapper {
  align-items: center;
}
.scroll-active .header-wrapper .jdi-logo {
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 2s;
  width: 150px;
}
.scroll-active .header-wrapper .header-link .link-list .link-text {
  font-size: 16px;
}
.scroll-active .header-wrapper .header-link .link-logo .nanox-logo {
  width: 125px;
}

.disable-scroll {
  overflow: hidden;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .header {
    background-color: transparent;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-wrapper {
    display: none;
  }
  .header .header-mobile {
    display: block;
  }
  .header .header-mobile .display-holder {
    display: flex;
    justify-content: space-between;
  }
  .header .header-mobile .display-holder .logo-container .mobile-logo {
    max-width: 130px;
    filter: brightness(0) invert(1);
    opacity: 0;
  }
  .header .header-mobile .display-holder .logo-container .visible {
    opacity: 1;
  }
  .header .header-mobile .display-holder .link-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-mobile .display-holder .link-container .dropdown-btn {
    color: white;
    font-size: 30px;
    outline: none;
  }
  .header .header-mobile .display-holder .link-container .dropdown-btn:focus {
    outline: none !important;
  }
  .header .header-mobile .dropdown-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
    height: 0px;
    opacity: 0;
    pointer-events: none;
  }
  .header .header-mobile .dropdown-holder .link-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    border-bottom: solid 1px white;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 50%;
  }
  .header .header-mobile .dropdown-holder .link-wrapper .header-mobile-link {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .header .header-mobile .dropdown-holder .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px 30px 0px;
  }
  .header .header-mobile .dropdown-holder .logo-wrapper .jdi-logo {
    width: 200px;
    filter: brightness(0) invert(1);
  }
  .header .header-mobile .active {
    height: 100vh;
    opacity: 1;
    transition: 0.5s ease;
    pointer-events: auto;
  }
  .scroll-active {
    background-color: #0a3b7c;
    box-shadow: 0 -6px 10px 5px rgb(0, 0, 0);
  }
  .scroll-active .header-mobile .display-holder .logo-container .visible {
    opacity: 1;
  }
}
@media (max-width: 575.98px) {
  .header {
    background-color: transparent;
    padding: 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-wrapper {
    display: none;
  }
  .header .header-mobile {
    display: block;
  }
  .header .header-mobile .display-holder {
    display: flex;
    justify-content: space-between;
  }
  .header .header-mobile .display-holder .logo-container .mobile-logo {
    max-width: 130px;
    filter: brightness(0) invert(1);
    padding: 10px 0px;
    opacity: 0;
  }
  .header .header-mobile .display-holder .logo-container .visible {
    opacity: 1;
  }
  .header .header-mobile .display-holder .link-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-mobile .display-holder .link-container .dropdown-btn {
    color: white;
    font-size: 30px;
    outline: none;
  }
  .header .header-mobile .display-holder .link-container .dropdown-btn:focus {
    outline: none !important;
    box-shadow: none;
  }
  .header .header-mobile .dropdown-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
    height: 0px;
    opacity: 0;
    pointer-events: none;
  }
  .header .header-mobile .dropdown-holder .link-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
    border-bottom: solid 1px white;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 50%;
  }
  .header .header-mobile .dropdown-holder .link-wrapper .header-mobile-link {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .header .header-mobile .dropdown-holder .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px 30px 0px;
  }
  .header .header-mobile .dropdown-holder .logo-wrapper .jdi-logo {
    width: 200px;
    filter: brightness(0) invert(1);
  }
  .header .header-mobile .active {
    height: 100vh;
    opacity: 1;
    transition: 0.5s ease;
    pointer-events: auto;
  }
  .scroll-active {
    background-color: #0a3b7c;
    box-shadow: 0 -6px 10px 5px rgb(0, 0, 0);
  }
  .scroll-active .header-mobile .display-holder .logo-container .visible {
    opacity: 1;
  }
}
.about {
  height: 500px;
  background-color: whitesmoke;
  display: flex;
  justify-content: end;
  align-items: center;
}
.about .about-wrapper {
  padding: 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .about-wrapper .text-content {
  width: 50%;
}
.about .about-wrapper .text-content .section-title {
  margin: 0px;
  font-size: 35px;
  font-weight: 600;
}
.about .about-wrapper .text-content .title-border {
  width: 90px;
  border: solid 2px #0a3b7c;
  margin-bottom: 15px;
}
.about .about-wrapper .text-content .section-text {
  margin: 0px;
  width: 100%;
  max-width: 500px;
  padding-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
}
.about .about-wrapper .img-content {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.about .about-wrapper .img-content .img-holder {
  display: flex;
}
.about .about-wrapper .img-content .img-holder .about-img-a {
  width: 100%;
  max-width: 160px;
  margin: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  display: flex;
}
.about .about-wrapper .img-content .img-holder .about-img-a .img-fluid {
  max-width: 100%;
  height: auto;
}
.about .about-wrapper .img-content .img-holder .about-img-a:hover {
  cursor: pointer;
  opacity: 0.6;
}
.about .about-wrapper .img-content .img-holder .about-img-b {
  width: 100%;
  max-width: 360px;
  margin: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  display: flex;
}
.about .about-wrapper .img-content .img-holder .about-img-b .img-fluid {
  max-width: 100%;
  height: auto;
}
.about .about-wrapper .img-content .img-holder .about-img-b:hover {
  cursor: pointer;
  opacity: 0.6;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .about {
    height: auto;
  }
  .about .about-wrapper .text-content {
    width: 100%;
    padding-right: 30px;
  }
  .about .about-wrapper .text-content .section-text {
    max-width: 100%;
    padding-bottom: 15px;
  }
  .about .about-wrapper .img-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .about {
    height: auto;
  }
  .about .about-wrapper {
    flex-direction: column;
  }
  .about .about-wrapper .text-content {
    width: 100%;
  }
  .about .about-wrapper .text-content .section-text {
    max-width: 100%;
    padding-bottom: 15px;
  }
  .about .about-wrapper .img-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
  }
  .about .about-wrapper .img-content .img-holder .about-img-a {
    max-width: 230px;
  }
  .about .about-wrapper .img-content .img-holder .about-img-b {
    max-width: 430px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .about {
    height: auto;
  }
  .about .about-wrapper {
    flex-direction: column;
  }
  .about .about-wrapper .text-content {
    width: 100%;
  }
  .about .about-wrapper .text-content .section-title {
    font-size: 25px;
  }
  .about .about-wrapper .text-content .section-text {
    max-width: 100%;
    padding-bottom: 15px;
    font-size: 18px;
  }
  .about .about-wrapper .img-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  .about {
    height: auto;
  }
  .about .about-wrapper {
    flex-direction: column;
  }
  .about .about-wrapper .text-content {
    width: 100%;
  }
  .about .about-wrapper .text-content .section-title {
    font-size: 25px;
  }
  .about .about-wrapper .text-content .section-text {
    max-width: 100%;
    padding-bottom: 15px;
    font-size: 18px;
  }
  .about .about-wrapper .img-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.products {
  padding: 50px 0px;
  background-image: url("../assets/what-we-do-2.jpg");
  background-position: bottom;
  background-size: cover;
  position: relative;
}
.products .background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #434c58;
  opacity: 0.8;
  z-index: 0;
}
.products .title-holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}
.products .title-holder .section-title {
  margin: 0px;
  font-size: 35px;
  font-weight: 600;
  color: white;
}
.products .title-holder .section-subtitle {
  font-size: 20px;
  color: white;
  margin: 0px;
  width: 100%;
  max-width: 75%;
  text-align: center;
  line-height: 25px;
}
.products .service-holder {
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 0px 50px;
}
.products .service-holder .content-wrapper {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
}
.products .service-holder .content-wrapper .service-title {
  margin: 0px;
  color: white;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 5px;
}
.products .service-holder .content-wrapper .title-border {
  width: 90px;
  border: solid 2px white;
  margin-bottom: 15px;
}
.products .service-holder .content-wrapper .service-list .service-text {
  margin: 0px;
  color: white;
  font-size: 18px;
}
.products .service-holder .image-wrapper {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .service-holder .image-wrapper .service-img {
  width: 100%;
  max-width: 350px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.products .product-swiper .swiper-wrapper {
  padding-bottom: 45px;
}
.products .product-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.products .product-swiper .swiper-wrapper .service-wrapper {
  display: flex;
  background-color: white;
  width: 800px;
  height: 318px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.products .product-swiper .swiper-wrapper .service-wrapper .image-holder {
  width: 50%;
}
.products .product-swiper .swiper-wrapper .service-wrapper .image-holder .service-img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.products .product-swiper .swiper-wrapper .service-wrapper .content-holder {
  width: 50%;
}
.products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper {
  padding: 20px;
}
.products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-title {
  margin: 0px;
  color: black;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 28px;
}
.products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .title-border {
  width: 90px;
  border: solid 2px #0a3b7c;
  margin-bottom: 15px;
}
.products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-list .service-text {
  margin: 0px;
  color: black;
  font-size: 16px;
  font-weight: 500;
  text-indent: -10px;
  margin-left: 10px;
  line-height: 28px;
}
.products .product-swiper .swiper-button-next {
  right: 75px;
}
.products .product-swiper .swiper-button-prev {
  left: 75px;
}
.products .product-swiper .swiper-button-next, .products .product-swiper .swiper-button-prev {
  color: #a6c9ef;
}
.products .product-swiper .swiper-button-next::after, .products .product-swiper .swiper-button-prev::after {
  font-size: 50px;
}
.products .product-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #a6c9ef;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .products .product-swiper .swiper-button-prev {
    left: 0px;
  }
  .products .product-swiper .swiper-button-next {
    right: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .products .product-swiper .swiper-button-prev {
    left: 0px;
  }
  .products .product-swiper .swiper-button-next {
    right: 0px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper {
    width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .image-holder {
    width: 100%;
    max-width: 600px;
    height: 250px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder {
    width: 100%;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-title {
    font-size: 20px;
    margin-bottom: 3px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-list .service-text {
    font-weight: 400;
    line-height: 23px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .products .title-holder .section-subtitle {
    max-width: 100%;
  }
  .products .product-swiper .swiper-button-prev {
    left: 0px;
  }
  .products .product-swiper .swiper-button-next {
    right: 0px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 400px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .image-holder {
    width: 100%;
    height: 200px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .image-holder .service-img {
    object-fit: cover;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder {
    width: 100%;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper {
    padding: 15px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-title {
    font-size: 18px;
    margin-bottom: 3px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-list .service-text {
    font-weight: 400;
    line-height: 24px;
  }
}
@media (max-width: 575.98px) {
  .products .title-holder .section-title {
    font-size: 25px;
  }
  .products .title-holder .section-subtitle {
    max-width: 100%;
    font-size: 18px;
    line-height: 25px;
  }
  .products .product-swiper .swiper-button-prev {
    display: none;
  }
  .products .product-swiper .swiper-button-next {
    display: none;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    max-width: 400px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .image-holder {
    width: 100%;
    height: 200px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .image-holder .service-img {
    object-fit: cover;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder {
    width: 100%;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper {
    padding: 15px;
    height: 300px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-title {
    font-size: 18px;
    margin-bottom: 3px;
  }
  .products .product-swiper .swiper-wrapper .service-wrapper .content-holder .content-wrapper .service-list .service-text {
    font-weight: 400;
    line-height: 24px;
  }
}
.items {
  background-color: #f2f6fd;
  padding: 50px 0px;
}
.items .section-title {
  margin: 0px;
  font-size: 35px;
  font-weight: 600;
  color: black;
  text-align: center;
}
.items .section-subtitle {
  font-size: 18px;
  color: black;
  margin: 0px;
  width: 100%;
  max-width: 70%;
  text-align: center;
  line-height: 25px;
  margin: 0 auto;
}
.items .items-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 30px;
}
.items .items-wrapper .item-holder {
  padding: 10px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 250px;
  height: 375px;
}
.items .items-wrapper .item-holder .image-holder .image-background {
  background-color: rgba(100, 149, 237, 0.3607843137);
  border-radius: 40px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.items .items-wrapper .item-holder .image-holder .image-background .src-img {
  width: 100%;
  height: auto;
}
.items .items-wrapper .item-holder .title-holder {
  margin: 0px;
  font-size: 20px;
  line-height: 30px;
  color: #05294b;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}
.items .items-wrapper .item-holder .description-holder {
  margin: 0px;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #3c3c3c;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .items .items-wrapper {
    flex-wrap: wrap;
  }
  .items .items-wrapper .item-holder {
    width: 40%;
    max-width: 40%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .items .items-wrapper {
    flex-wrap: wrap;
  }
  .items .items-wrapper .item-holder {
    width: 40%;
    max-width: 40%;
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  .items .section-subtitle {
    max-width: 100%;
    font-size: 17px;
  }
  .items .section-title {
    line-height: 30px;
    margin-bottom: 15px;
    font-size: 25px;
  }
  .items .items-wrapper {
    flex-wrap: wrap;
  }
  .items .items-wrapper .item-holder {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.recognition {
  background-color: white;
  padding: 50px 0px;
}
.recognition .section-title {
  margin: 0px;
  font-size: 35px;
  font-weight: 600;
  color: black;
  text-align: center;
}
.recognition .section-subtitle {
  font-size: 18px;
  color: black;
  margin: 0px;
  width: 100%;
  max-width: 50%;
  text-align: center;
  line-height: 25px;
  margin: 0 auto;
}
.recognition .recognition-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 30px;
}
.recognition .recognition-wrapper .image-wrapper {
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.recognition .recognition-wrapper .image-wrapper:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.recognition .recognition-wrapper .image-wrapper:hover .img-overlay {
  opacity: 0.7;
}
.recognition .recognition-wrapper .image-wrapper .src-img {
  width: 100%;
  max-width: 150px;
  height: 200px;
  border: solid 1px gainsboro;
}
.recognition .recognition-wrapper .image-wrapper .img-overlay {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: 0;
  right: 0;
  background-color: #0a3b7c;
  opacity: 0;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  transition: 0.5s ease;
  padding: 0px 15px;
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .recognition .section-title {
    line-height: 40px;
    margin-bottom: 15px;
  }
  .recognition .section-subtitle {
    max-width: 100%;
  }
  .recognition .recognition-wrapper {
    flex-wrap: wrap;
  }
  .recognition .recognition-wrapper .image-wrapper {
    margin-bottom: 20px;
    margin-right: 30px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .recognition .section-title {
    line-height: 40px;
    margin-bottom: 15px;
  }
  .recognition .section-subtitle {
    max-width: 100%;
  }
  .recognition .recognition-wrapper {
    flex-wrap: wrap;
  }
  .recognition .recognition-wrapper .image-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .recognition .section-title {
    line-height: 30px;
    margin-bottom: 15px;
    font-size: 25px;
  }
  .recognition .section-subtitle {
    max-width: 100%;
  }
  .recognition .recognition-wrapper {
    flex-wrap: wrap;
  }
  .recognition .recognition-wrapper .image-wrapper {
    margin-bottom: 20px;
  }
}
.contact {
  padding: 25px 0px 30px 0px;
  background-color: #f2f6fd;
  scroll-behavior: smooth;
}
.contact .title-group {
  display: flex;
  justify-content: center;
}
.contact .title-group .content-wrapper .section-title {
  margin: 0px;
  font-size: 25px;
  font-weight: 600;
  color: black;
}
.contact .title-group .content-wrapper .title-border {
  width: 70px;
  border: solid 2px #0a3b7c;
  margin-bottom: 10px;
}
.contact .contact-wrapper {
  display: flex;
  padding: 0px 100px;
}
.contact .contact-wrapper .contact-address {
  width: 100%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}
.contact .contact-wrapper .contact-address .address-group .address-label {
  margin: 0px;
  font-size: 20px;
  line-height: 30px;
  color: #05294b;
  font-weight: 500;
}
.contact .contact-wrapper .contact-address .address-group .address-text {
  margin: 0px;
  font-size: 16px;
  line-height: 23px;
  color: #5A6D7E;
}
.contact .contact-wrapper .contact-address .address-group .email-label {
  margin: 0px;
  font-size: 20px;
  line-height: 30px;
  color: #05294b;
  font-weight: 500;
  margin-top: 15px;
}
.contact .contact-wrapper .contact-address .address-group .email-text {
  margin: 0px;
  font-size: 16px;
  line-height: 23px;
  color: #5A6D7E;
}
.contact .contact-wrapper .contact-address .address-group .contact-btn-group {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.contact .contact-wrapper .contact-address .address-group .bh-group {
  margin-left: 15px;
}
.contact .contact-wrapper .contact-address .address-group .bt-title {
  padding-top: 30px;
}
.contact .contact-wrapper .contact-address .address-group .bh-text {
  padding-bottom: 8px;
}
.contact .contact-wrapper .contact-address .address-group .bh-text-info {
  margin: 0px;
  font-size: 15px;
  line-height: 25px;
  color: #5A6D7E;
}
.contact .contact-wrapper .contact-info {
  width: 100%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.contact .contact-wrapper .contact-info .btn-contact {
  width: 100%;
  margin-right: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background-color: #40526b;
  border-color: #0a3b7c;
  margin-bottom: 10px;
}
.contact .contact-wrapper .contact-info .btn-contact .fa {
  margin-right: 10px;
}
.contact .contact-wrapper .contact-info .btn-contact:hover {
  background-color: white;
  color: #0a3b7c;
}
.contact .policy-wrapper {
  margin-bottom: 40px;
  text-align: center;
}
.contact .policy-wrapper .policy-text {
  margin-bottom: 0px;
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .contact .contact-wrapper {
    padding: 0px 0px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .contact .contact-wrapper {
    padding: 0px 0px;
    flex-direction: column;
  }
  .contact .contact-wrapper .contact-address {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .contact .contact-wrapper .contact-address .address-group .address-text {
    font-size: 16px;
  }
  .contact .contact-wrapper .contact-info {
    align-items: center;
    max-width: 100%;
  }
  .contact .contact-wrapper .contact-info .btn-contact {
    max-width: 200px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .contact .contact-wrapper {
    padding: 0px 0px;
    flex-direction: column;
  }
  .contact .contact-wrapper .contact-address {
    max-width: 100%;
    margin-bottom: 30px;
    padding: 0 30px;
  }
  .contact .contact-wrapper .contact-address .address-group .address-text {
    font-size: 16px;
  }
  .contact .contact-wrapper .contact-address .address-group .contact-btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    flex-direction: column;
  }
  .contact .contact-wrapper .contact-info {
    align-items: center;
    max-width: 100%;
  }
  .contact .contact-wrapper .contact-info .btn-contact {
    max-width: 300px;
    font-size: 16px;
  }
  .contact .policy-wrapper {
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
  }
  .contact .policy-wrapper .policy-text {
    margin-bottom: 0px;
    font-size: 14px;
  }
}
.footer {
  padding: 30px 0px;
  background-color: #0b192a;
  position: relative;
}
.footer .footer-wrapper .footer-text {
  text-align: center;
  font-size: 18px;
  color: #c7c7c7;
  line-height: 18px;
  margin: 0px;
}
.footer .up-button {
  margin: 0;
  background-color: white;
  position: absolute;
  right: 50px;
  bottom: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: solid 1px white;
}
.footer .up-button .fa {
  margin-top: -5px;
  font-size: 20px;
}
.footer .up-button:hover {
  cursor: pointer;
  background-color: #0b192a;
  color: whitesmoke;
}

@media (max-width: 575.98px) {
  .footer .footer-wrapper .footer-text {
    padding: 0px 40px;
  }
  .footer .up-button {
    border: solid 1px gray;
    right: 20px;
    bottom: 75px;
  }
}
.policy {
  padding: 50px 0px;
}
.policy .upper-policy {
  margin-bottom: 50px;
}
.policy .upper-policy .upper-policy-group {
  text-align: right;
  font-size: 18px;
  margin-bottom: 20px;
}
.policy .upper-policy .upper-policy-group .upper-policy-text {
  margin-bottom: 0px;
}
.policy .page-title {
  padding-bottom: 15px;
}
.policy .page-section {
  padding-top: 20px;
}
.policy .page-section .nested-list .list-title {
  padding-top: 10px;
}

@media (max-width: 575.98px) {
  .policy .upper-policy {
    margin-bottom: 50px;
  }
  .policy .upper-policy .upper-policy-group {
    text-align: right;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .policy .upper-policy .upper-policy-group .upper-policy-text {
    margin-bottom: 0px;
  }
  .policy .page-title {
    padding-bottom: 0px;
    font-size: 30px;
  }
  .policy .page-text {
    font-size: 14px;
  }
  .policy .page-section .section-title {
    font-size: 18px;
  }
  .policy .page-section .list-item {
    font-size: 14px;
  }
  .policy .page-section .section-text {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
