@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #000000;
}

nav {
  background-color: #fafafa;
  color: #000;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1490196078);
}

.read-more-btn{
  text-decoration: none;
    border: 1px solid #1396e7;
    color: #0085D8;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.read-more-btn:hover{
  background-color: #0085D8;
  color: #fff;
}
/*
.my-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.my-navbar .logo {
  height: 40px;
  overflow: hidden;
}
.my-navbar .logo img {
  height: inherit;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.my-navbar .menu {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.my-navbar .menu li {
  margin-right: 30px;
}
.my-navbar .menu li a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
*/
.sidepanel {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #184c7b;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #f1f1f1;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 36px;
  cursor: pointer;
  background: none !important;
  color: #184c7b;
  padding: 4px 6px;
  border: none;
  display: none;
}

.openbtn:hover {
  background-color: #444;
}

@media screen and (max-width: 992px) {
  .my-navbar .menu {
    display: none;
  }
  .openbtn {
    display: block;
  }
}
.banner-section {
  height: 685px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.banner-section .video-player{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.banner-section .video-player video{
  width: 100%;
}
.banner-section .banner-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: calc(100vh - 160px);
}
.banner-section .banner-content .title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
}
.banner-section .banner-content .subtitle {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.banner-section .banner-content .action-btn {
  margin-top: 20px;
  text-decoration: none;
  padding: 6px 15px;
  font-size: 13px;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
}
.banner-section .banner-content .action-btn:hover{
  background-color: #E9DF00;
  color: #000;
  border: 1px solid #E9DF00;
}
@media screen and (max-width: 992px) {
  .banner-section {
    height: 260px;
  }
  .banner-section .banner-wrapper {
    height: 260px;
  }
  .banner-section .banner-wrapper .banner-content .title {
    font-size: 26px;
  }
  .banner-section .banner-wrapper .banner-content .subtitle {
    font-size: 14px;
  }
}
.under-banner {
  height: 100px;
  width: 100%;
  background-color: #cccccc;
}

.slider-section {
  padding: 75px 0;
  background-color: #F1F1F1;
}
.slider-section .slider-wrapper .title {
  color: #004C7B;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
.slider-section .slider-wrapper .subtitle {
  font-size: 16px;
  color: #004C7B;
  font-weight: 400;
  width: 64%;
  text-align: center;
  line-height: 20px;
  margin: 0 auto;
  margin-bottom: 45px;
}
.slider-section .slick-next:before, .slider-section .slick-prev:before {
  font-size: 32px;
  text-shadow: 1px 1px 2px #b8b8b8;
}
.slider-section .slick-next {
  right: 30px;
  z-index: 99;
}
.slider-section .slick-next::before {
  content: "\f105";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 40px;
  width: 40px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4117647059);
}
.slider-section .slick-prev {
  left: 10px;
  z-index: 99;
}
.slider-section .slick-prev::before {
  content: "\f104";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 40px;
  width: 40px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4117647059);
}
.slider-section .slick-dots li button:before {
  height: 30px;
  width: 30px;
}
.slider-section .slider-card {
  text-decoration: none;
  margin: 15px 30px;
  background-color: #fff;
  box-shadow: 2px 4px 12px #d1cece;
}
.slider-section .slider-card .img-container {
  height: 235px;
  width: 100%;
  overflow: hidden;
}
.slider-section .slider-card .img-container img {
  height: inherit;
  width: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-section .slider-card .card-content {
  padding: 15px;
}
.slider-section .slider-card .card-title {
  color: #0085D8;
  font-size: 18px;
  font-weight: 600;
  height: 55px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.slider-section .slider-card .description {
  line-height: 20px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  min-height: 140px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.slider-section .button-container {
  text-align: center;
  margin-top: 75px;
}
.slider-section .button-container a {
    text-decoration: none;
    border: 1px solid #1396e7;
    color: #0085D8;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.slider-section .button-container a:hover{
  background-color: #0085D8;
  color: #FFFFFF;
}

@media screen and (max-width: 992px) {
  .slider-section .slider-wrapper .title {
    font-size: 26px;
  }
  .slider-section .slider-wrapper .subtitle {
    font-size: 15px;
    width: 100%;
  }
  .slider-section .slick-prev {
    left: -10px;
  }
  .slider-section .slick-next {
    right: 0;
  }
}
.blue-section {
  padding: 75px 0;
  background-position: bottom;
  width: 100%;
  background-color: #FFFFFF;
  background-size: cover;
}
.blue-section .title {
  color: #004C7B;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  width: 80%;
  line-height: 120%;
  margin: 0 auto;
  text-align: center;
}
.blue-section .subtitle {
  font-size: 36px;
  color: #0085D8;
  font-weight: 600;
  width: 64%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 90px;
}
.blue-section .button-container {
  text-align: center;
  margin-top: 75px;
}
.blue-section .button-container a {
    text-decoration: none;
    border: 1px solid #1396e7;
    color: #0085D8;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.blue-section .button-container a:hover{
  color: #ffffff;
  background-color: #1396e7;
}

.blue-section .blue-content .blue-card {
  text-decoration: none;
  padding: 30px;
  background-color: #fff;
  box-shadow: 3px 5px 7px rgba(21, 21, 21, 0.2509803922);
  height: 200px;
}
.blue-section .blue-content .blue-card .card-title {
  color: #004C7B;
  font-size: 20px;
  font-weight: 700;
}
.blue-section .blue-content .blue-card .description {
  line-height: 24px;
  color: #004C7B;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .blue-section .title {
    font-size: 26px;
    width: 100%;
  }
  .blue-section .subtitle {
    width: 100%;
    font-size: 26px;
    margin-bottom: 30px;
  }
  .blue-content .blue-card {
    margin-bottom: 30px;
  }
}
.service-section {
  padding: 75px 0;
  background: #F1F1F1;
}
.service-section .title {
  color: #004C7B;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.service-section .subtitle {
  font-size: 14px;
  color: rgb(33, 33, 33);
  font-weight: 400;
  width: 64%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 45px;
}
.service-section .bodytext {
  font-size: 14px;
  color: rgb(33, 33, 33);
  font-weight: 400;
  width: 64%;
  text-align: center;
  margin: 20px auto;
}
.service-section .service-card {
  text-decoration: none;
  margin-bottom: 30px;
  display: block;
  background-color: #fff;
  box-shadow: 2px 4px 12px #d1cece;
}
.service-section .service-card .img-container {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.service-section .service-card .img-container img {
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-section .service-card .card-content {
  padding: 15px;
  height: 86px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.service-section .service-card .card-title {
  color: #0085D8;
  font-size: 16px;
  font-weight: 600;
}
.service-section .service-card .description {
  margin-top: 15px;
  line-height: 18px;
  color: #004C7B;
  font-weight: 400;
  font-size: 12px;
}
.service-section .button-container {
  text-align: center;
  margin-top: 75px;
}
.service-section .button-container a {
    text-decoration: none;
    border: 1px solid #1396e7;
    color: #0085D8;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.service-section .button-container a:hover{
  background-color: #1396e7;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .service-section .title {
    font-size: 26px;
  }
  .service-section .subtitle {
    font-size: 15px;
    width: 100%;
  }
}
.our-team-section {
  padding: 75px 0;
  background-color: #F1F1F1;
}
.our-team-section .title {
  color: #004C7B;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.our-team-section .subtitle {
  font-size: 14px;
  color: rgb(33, 33, 33);
  font-weight: 400;
  width: 64%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 45px;
}
.our-team-section .team-card {
  text-decoration: none;
  margin: 0 15px;
  margin-bottom: 30px;
  display: block;
}
.our-team-section .team-card .img-container {
  height: 280px;
  overflow: hidden;
}
.our-team-section .team-card .img-container img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-team-section .team-card .card-content {
  padding: 15px 0;
}
.our-team-section .team-card .card-title {
  color: #004C7B;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.our-team-section .team-card .description {
  margin-top: 10px;
  line-height: 18px;
  color: #004C7B;
  font-weight: 400;
  font-size: 12px;
}

@media screen and (max-width: 992px) {
  .our-team-section {
    padding-bottom: 0;
  }
  .our-team-section .title {
    font-size: 26px;
  }
  .our-team-section .subtitle {
    font-size: 15px;
    width: 100%;
  }
}
.contact-section {
  background-color: #FFFFFF;
  padding: 75px 0;
  background-position: bottom;
  width: 100%;
  background-size: cover;
}
.contact-section .inactive {
  display: none;
}
.contact-section .send-btn {
  text-align: center;
  margin-top: 30px;
}
.contact-section .send-btn button {
  background-color: #0085D8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 60px;
  border: none;
  border-radius: 5px;
}
.contact-section .title {
  color: #004C7B;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  text-align: center;
}
.contact-section .contact-wrapper {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 30px 60px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 4px 4px 15px rgb(176, 176, 176);
}
.contact-section form input {
  background-color: #F1F1F1;
  border: 1px solid #0085D8;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 4px 15px;
  width: 560px;
}
.contact-section form input::-moz-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section form input:-ms-input-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section form input::placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section form textarea {
  background-color: #F1F1F1;
  border: 1px solid #0085D8;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 4px 15px;
  width: 560px;
}
.contact-section form textarea::-moz-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section form textarea:-ms-input-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section form textarea::placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.contact-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-section ul li .contact-btn {
  background-color: #0085D8;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  width: 460px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  padding: 7px 20px;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .contact-section .title {
    font-size: 26px;
  }
  .contact-section ul li .contact-btn {
    width: 100%;
    padding: 7px 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section form input{
    width: 100%;
  }
  .contact-section form textarea{
    width: 100%;
  }
}
.companies-section {
  background-color: #F1F1F1;
  padding: 30px 0;
}
.companies-section ul {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.companies-section ul li a {
  text-decoration: none;
}
.companies-section ul li a img {
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .companies-section ul {
    padding: 0;
    overflow: scroll;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .companies-section ul li a img {
    height: 36px;
  }
}
.footer {
  background-color: #004C7B;
  padding: 60px 0;
}
.footer .logo {
  height: 66px;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.footer .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: inherit;
}
.footer .title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li a {
  text-decoration: none;
  line-height: 18px;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
.footer .button-container {
  margin-bottom: 15px;
}
.footer .button-container a {
  width: 140px;
  text-align: center;
  border-radius: 4px;
  padding: 6px 0px;
  font-size: 14px;
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 1px solid #fff;
}
.footer .social-links a {
  background-color: #fff;
  height: 30px;
  width: 30px;
  display: inline-flex;
  color: #004C7B;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  border-radius: 4px;
  font-size: 20px;
  margin-right: 2px;
}
.footer .other-info {
  margin-top: 40px;
}
.footer .other-info h6 {
  display: flex;
  line-height: 20px;
  align-items: baseline;
  justify-content: flex-start;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}
.footer .other-info h6 i {
  width: 26px;
}

@media screen and (max-width: 992px) {
  .footer .logo {
    margin-bottom: 45px;
  }
  .footer .title{
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .footer .button-container{
    margin-top: 45px;
  }
}
.news-banner-section {
  height: 400px;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.news-banner-section::after{
  content: "";
  position: absolute;
  background-color: #0000003b;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.news-banner-section .banner-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 400px;
}
.news-banner-section .banner-content .title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
.news-banner-section .banner-content .subtitle {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.news-banner-section .banner-content .action-btn {
  margin-top: 10px;
  text-decoration: none;
  padding: 6px 15px;
  font-size: 13px;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
}
.news-banner-section .banner-content .action-btn:hover{
  background-color: #E9DF00;
  color: #000;
  border: 1px solid #E9DF00;

}

@media screen and (max-width: 992px) {
  .news-banner-section {
    height: 260px;
  }
  .news-banner-section .banner-wrapper {
    height: 260px;
  }
  .news-banner-section .banner-content .title {
    font-size: 26px;
  }
  .news-banner-section .banner-content .subtitle {
    font-size: 15px;
  }
}
.news-release-section {
  padding: 60px 0;
}
.news-release-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 46px;
  line-height: 200%;
}
.news-release-section .release-card {
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.2s linear;
  box-shadow: 0px 5px 10px #a3a3a34f;
  height: 330px;
  display: block;
  text-decoration: none;
  color: #333;

}
.news-release-section .release-card .title, .news-release-section .release-card .date {
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  color: "#000";
}
.news-release-section .release-card .title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  min-height: 40px;
}
.news-release-section .release-card .description {
  font-size: 14px;
  margin: 30px 0;
  min-height: 130px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  font-weight: 500;
}
.news-release-section .release-card:hover {
  transition: all 0.2s linear;
  box-shadow: -3px -3px 8px #a3a3a34f;

}
.news-release-section .release-card:hover .title {
  color: #0085D8;
}
.news-release-section .read-more {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
  color: #000;
  text-decoration: none;
}
.news-release-section .release-card:hover .read-more{
  color: #0085D8
}
.news-release-section .read-more span {
  color: #004C7B;
}
.news-release-section .read-more span:hover {
  color: #004C7B;
}
.news-release-section .read-more-main {
  background-color: #0085D8;
  color: #fff;
  margin: 0 auto;
  display: block;
  width: 150px;
  text-decoration: none;
  padding: 12px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}
.news-release-section nav {
  background-color: #fff;
  box-shadow: none;
  box-shadow: none;
}

.news-release-section .page-item .page-link {
  border: none;
  color: rgb(102, 101, 101);
}
.news-release-section .page-item.active .page-link {
  border: none;
  color: #fff;
  background-color: #184c7b;
}

.pagination-section nav {
  background-color: #fff;
  box-shadow: none;
  box-shadow: none;
}
.pagination-section .page-item .page-link {
  border: none;
  color: rgb(102, 101, 101);
}
.pagination-section .page-item.active .page-link {
  border: none;
  color: #fff;
  background-color: #184c7b;
}

@media screen and (max-width: 992px) {
  .news-release-section .main-title {
    font-size: 26px;
  }
  .news-release-section .release-card {
    padding: 15px;
  }
}
.news-list-section {
  padding: 60px 0;
  background-color: #F1F1F1;
}
.news-list-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
  text-align: center;
}
.news-list-section .main-subtitle {
  color: #000;
  font-size: 20px;
  width: 75%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.news-list-section .news-list-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
.news-list-section .news-card {
  padding: 45px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.news-list-section .news-card::after {
  background-color: rgba(0, 0, 0, 0.3882352941);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.news-list-section .news-card .title {
  z-index: 1;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 80%;
}
.news-list-section .news-card .subtitle {
  z-index: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}
.news-list-section .news-card .button-wrapper {
  text-align: center;
  z-index: 1;
}
.news-list-section .news-card button {
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 5px 10px;
  align-items: center;
  border-radius: 4px;
  font-weight: 600;
  background: none;
  transition: all 0.2s linear;
}
.news-list-section .news-card button:hover{
  color: #000;
  background: #ffffff;
}
.news-list-section .send-btn {
  text-align: center;
  margin-top: 30px;
}
.news-list-section .send-btn button {
  background-color: #0085D8;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 60px;
  border: none;
  border-radius: 5px;
}
.news-list-section .title {
  color: #004C7B;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  text-align: center;
}
.news-list-section form input {
  background-color: #F1F1F1;
  border: 1px solid #0085D8;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 4px 15px;
}
.news-list-section form input::-moz-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section form input:-ms-input-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section form input::placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section form textarea {
  background-color: #F1F1F1;
  border: 1px solid #0085D8;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 4px 15px;
}
.news-list-section form textarea::-moz-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section form textarea:-ms-input-placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section form textarea::placeholder {
  color: #0085D8;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  font-size: 14px;
}
.news-list-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list-section ul li .contact-btn {
  background-color: #0085D8;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  width: 460px;
  text-align: center;
  font-size: 12px;
  line-height: 28px;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .news-list-section .main-title {
    font-size: 26px;
  }
  .news-list-section .main-subtitle {
    font-size: 15px;
    width: 100%;
  }
}
.media-contact-section {
  padding: 60px 0;
}
.media-contact-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
  margin-bottom: 30px;
}
.media-contact-section .contact-wrap {
  border-left: 3px solid #0085D8;
  padding: 25px 45px 15px 20px;
}
.media-contact-section .contact-wrap .title {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 600;
}
.media-contact-section .contact-wrap .other {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .media-contact-section .main-title {
    font-size: 26px;
  }
  .media-contact-section .contact-wrap {
    margin-bottom: 30px;
  }
}
.event-community-section {
  padding: 60px 0;
}
.event-community-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 30px;
  line-height: 200%;
}
.event-community-section .news-latest-wrapper .slick-next {
  right: 30px;
  z-index: 99;
}
.event-community-section .news-latest-wrapper .slick-next::before {
  content: "\f105";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 40px;
  width: 40px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4117647059);
}
.event-community-section .news-latest-wrapper .slick-prev {
  left: 10px;
  z-index: 99;
}
.event-community-section .news-latest-wrapper .slick-prev::before {
  content: "\f104";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  font-size: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 40px;
  width: 40px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4117647059);
}
.event-community-section .news-latest-wrapper .slider-card {
  text-decoration: none;
  margin: 15px 30px;
  display: block;
  background-color: #fff;
  box-shadow: 2px 4px 12px #d1cece;
  height: 330px;
}
.event-community-section .news-latest-wrapper .slider-card .img-container {
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.event-community-section .news-latest-wrapper .slider-card .img-container img {
  height: inherit;
  width: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-community-section .news-latest-wrapper .slider-card .card-content {
  padding: 15px;
}
.event-community-section .news-latest-wrapper .slider-card .card-title {
  color: #0085D8;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.event-community-section .news-latest-wrapper .slider-card .description {
  line-height: 20px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.event-community-section .news-latest-wrapper .button-container {
  text-align: center;
  margin-top: 75px;
}
.event-community-section .news-latest-wrapper .button-container a {
  text-decoration: none;
  border: 1px solid #1396e7;
  color: #0085D8;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
}
.event-community-section .news-latest-wrapper.nopadding .slider-card {
  text-decoration: none;
  margin: 15px;
}
.event-community-section nav {
  background-color: #fff;
  margin-top: 45px;
  box-shadow: none;
}
.event-community-section .page-item .page-link {
  border: none;
  color: rgb(102, 101, 101);
}
.event-community-section .page-item.active .page-link {
  border: none;
  color: #fff;
  background-color: #184c7b;
}

@media screen and (max-width: 992px) {
  .event-community-section {
    padding-top: 0px;
  }
  .event-community-section .main-title {
    font-size: 26px;
  }
}
.about-first-section {
  padding: 60px 0;
}
.about-first-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
}
.about-first-section p {
  font-size: 15px;
}
.about-first-section .main-subtitle {
  color: #004C7B;
  font-size: 24px;
  width: 80%;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 45px;
}
.about-first-section .news-list-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}
.about-first-section .news-card {
  padding: 45px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.about-first-section .news-card::after {
  background-color: rgba(0, 0, 0, 0.3882352941);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.about-first-section .news-card .title {
  z-index: 1;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 80%;
}
.about-first-section .news-card .subtitle {
  z-index: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}
.about-first-section .news-card .button-wrapper {
  text-align: center;
  z-index: 1;
}
.about-first-section .news-card a {
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  padding: 7px 15px;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .about-first-section .main-title {
    font-size: 26px;
  }
  .about-first-section .main-subtitle {
    font-size: 15px;
    width: 100%;
  }
  .about-first-section{
    padding-bottom: 30px;
  }
}
.our-value-section .greenhouse-button {
  margin-top: 15px;
  text-decoration: none;
    border: 1px solid #1396e7;
    color: #0085D8;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;   
}

.our-value-section .greenhouse-description {
  font-weight: 500;
  line-height: 150%;
}

.our-value-section .greenhouse-button:hover{
  background-color: #0085D8;
  color: #fff;
}

.our-value-section {
  padding: 60px 0;
  background-color: #F1F1F1;
}
.our-value-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
}
.our-value-section .our-value-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
   column-gap: 15px;
   flex-wrap: wrap;
}
.our-value-section .our-value-wrapper .value-card {
  height: 220px;
  width: calc(20% - 15px);
  min-width: 210px;
  margin-bottom: 30px;
  perspective: 1000px;
}
.our-value-section .our-value-wrapper .value-card .title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.our-value-section .our-value-wrapper .value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}
.our-value-section .our-value-wrapper .value-card:hover .value-card-inner {
  transform: rotateY(180deg);
}
.our-value-section .our-value-wrapper .value-card-front, .our-value-section .our-value-wrapper .value-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.our-value-section .our-value-wrapper .value-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 10px #4e4e4e;
  background-color: #004C7B;
}
.our-value-section .our-value-wrapper .value-card-back {
  background-color: #0085D8;
  color: white;
  transform: rotateY(180deg);
  padding: 0px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}
.our-value-section .our-value-wrapper .value-card-back p {
  margin-bottom: 0;
}

.our-value-section .button-container {
  text-align: center;
}
.our-value-section .button-container a {
  color: #0085D8;
  border: 2px solid #0085D8;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  margin-top: 30px;
  display: inline-block;
  font-weight: 500;
}

.employee-zone-wrapper .zone-title{
  font-size: 36px;
  color: #0085D8;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.employee-zone-wrapper .zone-item {
  box-shadow: 1px 1px 5px #a09696;
  transition: all 0.2s linear;
  padding: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}
.employee-zone-wrapper .zone-item:hover {
  box-shadow: 1px 8px 8px #666262;
}
.employee-zone-wrapper .zone-item .title{
  margin-top: 10px;
  color: #004C7B;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  height: 50px;
}

.employee-zone-wrapper .zone-item:hover .title{
  color: #0085D8;
}

.employee-zone-wrapper .zone-item .img-wrapper {
  text-align: center;
}

.employee-zone-wrapper .zone-item .img-wrapper img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  transition: all 0.2s linear;
}

.employee-zone-wrapper .zone-item:hover .img-wrapper img {
  transform: scale(1.1);
}

.greenhouse-single-card {
  margin-top: 30px;
  background: #0085D8;
  padding: 30px;
  text-align: center;
}

.greenhouse-single-card .title {
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.greenhouse-single-card .card-button-wrapper{
  display: flex;
  justify-content: center;
}


.greenhouse-single-card .card-button-wrapper a{
  margin-right: 10px;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s linear;   
}

.greenhouse-single-card .card-button-wrapper a:hover{
  color: #000;
  background: #fff;
}

@media screen and (max-width: 992px) {
  .our-value-section .main-title {
    font-size: 26px;
  }
  .our-value-section .our-value-wrapper .value-card {
    height: 150px;
  }
  .our-value-section .our-value-wrapper .value-card-back {
    font-size: 11px;
    font-weight: 400;
  }
  .our-value-section .our-value-wrapper .value-card-back p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .our-value-section .our-value-wrapper .value-card {
    height: 150px;
    width: 100%;
  }
}
.our-story-section {
  padding: 60px 0;
}
.our-story-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
  margin-bottom: 20px;
}
.our-story-section p {
  font-size: 15px;
}

@media screen and (max-width: 992px) {
  .our-story-section{
    padding-top: 0;
  }
  .our-story-section .main-title {
    font-size: 26px;
  }
  .our-story-section .our-value-wrapper .value-card {
    height: 120px;
  }
}

.our-mission-section {
  padding: 0 0 60px 0;
}
.our-mission-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
  margin-bottom: 20px;
}
.our-mission-section p {
  font-size: 15px;
}

@media screen and (max-width: 992px) {
  .our-mission-section{
    padding-top: 0;
  }
  .our-mission-section .main-title {
    font-size: 26px;
  }
  .our-mission-section .our-value-wrapper .value-card {
    height: 120px;
  }
}

.number-section {
  padding: 60px 0;
  background-color: #F1F1F1;
}
.number-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 120%;
}
.number-section .main-subtitle {
  color: #004C7B;
  font-size: 22px;
  width: 700px;
  font-weight: 600;
  margin-bottom: 30px;
}
.number-section .number-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.number-section .number-section-wrapper .number-card {
  background-color: #0085D8;
  height: 160px;
  width: 19%;
  margin-bottom: 15px;
}
.number-section .number-section-wrapper .number-card .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  -moz-column-gap: 30px;
       column-gap: 30px;
  height: 100%;
}
.number-section .number-section-wrapper .number-card .number {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.number-section .number-section-wrapper .number-card .description {
  font-size: 16px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .number-section .main-title {
    font-size: 26px;
  }
  .number-section .main-subtitle {
    font-size: 15px;
    margin-bottom: 0;
    width: 100%;
  }
  .number-section .number-section-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .number-section .number-section-wrapper .number-card {
    width: calc(50% - 10px);
  }
}
.expertise-section {
  padding: 60px 0;
}
.expertise-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  line-height: 180%;
}
.expertise-section p {
  font-size: 15px;
}
.expertise-section .main-subtitle {
  color: #004C7B;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}
.expertise-section .img-wrapper img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.expertise-section .accordion-item {
  border: none;
}
.expertise-section .accordion-item .accordion-button {
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background: none;
  box-shadow: none;
}

.expertise-section .accordion-item .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
  font-size: 20px;
  background-image: none;
}
.expertise-section .accordion-item .read-more {
  display: block;
  text-decoration: none;
  color: #004C7B;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
}

.solution-section {
  padding: 60px 0;
}
.solution-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 180%;
  margin-bottom: 45px;
}
.solution-section p {
  font-size: 15px;
}
.solution-section .main-subtitle {
  color: #004C7B;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 45px;
  text-align: center;
}
.solution-section .solution-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  height: 410px;
  margin-bottom: 30px;
  padding: 40px 20px;
  box-shadow: 3px 3px 12px rgba(54, 54, 54, 0.5411764706);
}
.solution-section .solution-card .img-wrapper {
  text-align: center;
}
.solution-section .solution-card .img-wrapper img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
.solution-section .solution-card .title {
  color: #004C7B;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 150%;
  min-height: 60px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  margin-top: 15px;
}
.solution-section .solution-card .description {
  color: #282828;
  font-size: 15px;
  text-align: center;
  line-height: 150%;
  height: 110px;
  font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.solution-section .solution-card .button-wrapper{
  text-align: center;
  margin-top: 30px;
}
.solution-section .solution-card .button-wrapper a{
  text-decoration: none;
  color: #000;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}
.solution-section .solution-card:hover .title{
  color: #0085D8;
}
.solution-section .solution-card:hover .button-wrapper a{
  color: #0085D8;
}

@media screen and (max-width: 992px) {
  .solution-section .main-title {
    font-size: 26px;
  }
  .solution-section .main-subtitle {
    font-size: 15px;
  }
}
.why-choose-section {
  padding: 60px 0;
}
.why-choose-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 180%;
}
.why-choose-section .main-subtitle {
  color: #004C7B;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 45px;
}
.why-choose-section .after-item {
  width: 115px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 0;
}
.why-choose-section .after-item .left-circle {
  display: block;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.why-choose-section .after-item .center-line {
  width: 40px;
  height: 4px;
  position: relative;
}
.why-choose-section .after-item .center-line::after {
  position: absolute;
  left: -5px;
  right: 0;
  content: "";
  height: 4px;
  background-color: #0085D8;
}
.why-choose-section .after-item .right-circle {
  display: block;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
}
.why-choose-section .timeline-section {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
}
.why-choose-section .timeline-section .timeline-card {
  padding: 30px;
  height: 180px;
  background-color: #0085D8;
}
.why-choose-section .timeline-section .timeline-card .title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.why-choose-section .timeline-section .timeline-card .description {
  font-size: 15px;
  color: #fff;
}
.why-choose-section .timeline-section .start-section {
  width: calc(50% - 70px);
}
.why-choose-section .timeline-section .start-section .timeline-card {
  margin-bottom: 180px;
  position: relative;
}
.why-choose-section .timeline-section .start-section .timeline-card .after-item {
  position: absolute;
  right: -92px;
  top: 20px;
}
.why-choose-section .timeline-section .start-section .timeline-card .after-item .left-circle {
  position: relative;
  height: 40px;
  width: 40px;
}
.why-choose-section .timeline-section .start-section .timeline-card .after-item .left-circle::after {
  position: absolute;
  content: "";
  z-index: -1;
  height: 30px;
  width: 30px;
  display: block;
  top: 5px;
  left: 5px;
  border: 4px solid #0085D8;
  border-radius: 50%;
  background: #fff;
}
.why-choose-section .timeline-section .start-section .timeline-card .after-item .right-circle {
  height: 30px;
  width: 30px;
  display: block;
  border: 4px solid #0085D8;
  border-radius: 50%;
  background: #fff;
}
.why-choose-section .timeline-section .end-section {
  width: calc(50% - 70px);
}
.why-choose-section .timeline-section .end-section .timeline-card {
  margin-top: 180px;
  position: relative;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item {
  width: 105px;
  position: absolute;
  left: -82px;
  top: 20px;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item .right-circle {
  position: relative;
  height: 40px;
  width: 40px;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item .right-circle::after {
  position: absolute;
  content: "";
  z-index: -1;
  height: 30px;
  width: 30px;
  display: block;
  top: 5px;
  left: 5px;
  border: 4px solid #0085D8;
  border-radius: 50%;
  background: #fff;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item .left-circle {
  height: 30px;
  width: 30px;
  display: block;
  border: 4px solid #0085D8;
  border-radius: 50%;
  background: #fff;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item .center-line {
  width: 35px;
  height: 4px;
  position: relative;
}
.why-choose-section .timeline-section .end-section .timeline-card .after-item .center-line::after {
  position: absolute;
  left: 0px;
  right: -5px;
  z-index: 9;
  content: "";
  height: 4px;
  background-color: #0085D8;
}
.why-choose-section .timeline-section .middle-section {
  width: 140px;
  position: relative;
  z-index: -1;
}
.why-choose-section .timeline-section .middle-section::after {
  position: absolute;
  content: "";
  border-left: 4px solid #0085D8;
  top: 30px;
  left: 70px;
  bottom: 320px;
}
.why-choose-section .contact-us-btn {
  text-align: center;
  margin-top: 60px;
}
.why-choose-section .contact-us-btn a {
  text-decoration: none;
  border: 1px solid #1396e7;
  color: #0085D8;
  padding: 10px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s linear;
}

.why-choose-section .contact-us-btn a:hover{
  background-color: #1396e7;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .why-choose-section {
    padding-top: 0;
  }
  .why-choose-section .main-title {
    font-size: 26px;
  }
  .why-choose-section .contact-us-btn a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .why-choose-section .main-subtitle {
    font-size: 15px;
  }
  .why-choose-section .timeline-section {
    -moz-column-gap: 15px;
         column-gap: 15px;
    flex-wrap: wrap;
  }
  .why-choose-section .timeline-section .start-section {
    width: 100%;
  }
  .why-choose-section .timeline-section .start-section .timeline-card {
    margin-bottom: 30px;
  }
  .why-choose-section .timeline-section .after-item {
    display: none;
  }
  .why-choose-section .timeline-section .middle-section {
    display: none;
  }
  .why-choose-section .timeline-section .end-section {
    width: 100%;
  }
  .why-choose-section .timeline-section .end-section .timeline-card {
    margin-bottom: 30px;
    margin-top: 0;
  }
  .why-choose-section .timeline-section .timeline-card {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 4px;
  }
  .why-choose-section .timeline-section .timeline-card .title {
    font-size: 14px;
  }
  .why-choose-section .timeline-section .timeline-card .description {
    font-size: 12px;
  }
}
.expertise-banner-section {
  height: 500px;
  background-position: center;
  background-size: cover;
}
.expertise-banner-section .banner-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 500px;
}
.expertise-banner-section .banner-content .title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  width: 700px;
}
.expertise-banner-section .banner-content .subtitle {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.expertise-banner-section .banner-content .action-btn {
  margin-top: 45px;
  text-decoration: none;
  padding: 6px 30px;
  font-size: 14px;
  color: #000;
  background-color: #E9DF00;
  border-radius: 4px;
  display: inline-block;
}

@media screen and (max-width: 992px) {
  .expertise-banner-section {
    height: 260px;
  }
  .expertise-banner-section .banner-wrapper {
    height: 260px;
  }
  .expertise-banner-section .banner-content .title {
    font-size: 26px;
    width: 100%;
  }
}
.single-expertise-section {
  padding: 60px 0;
}
.single-expertise-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  line-height: 180%;
  margin-bottom: 30px;
  margin-top: 45px;
}
.single-expertise-section p {
  font-size: 16px;
  font-weight: 400;
}
.single-expertise-section .main-subtitle {
  color: #004C7B;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}
.single-expertise-section .banner-wrapper img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-expertise-section .img-wrapper img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.single-expertise-section .accordion-item {
  border: none;
}
.single-expertise-section .accordion-item .accordion-button {
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background: none;
  box-shadow: none;
}
.single-expertise-section .accordion-item .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
  font-size: 20px;
  background-image: none;
}
.single-expertise-section .accordion-item .read-more {
  display: block;
  text-decoration: none;
  color: #004C7B;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
}
.single-expertise-section .side-wrapper .page-title {
  font-size: 16px;
  color: #004C7B;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
}
.single-expertise-section .side-wrapper ul {
  list-style: none;
  padding: 0;
}
 .side-wrapper ul li {
  margin-top: 5px;
}
 .side-wrapper ul a, .career-grid-left ul a {
  text-decoration: none;
  color: #0085D8;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  column-gap: 10px;
  justify-content: flex-start
}

 .side-wrapper ul a .services-arrow-title, .career-grid-left ul a .services-arrow-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.apply-modal {
    display: none;
    position: fixed;
    z-index: 100001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply-modal-content {
    background-color: white;
    padding: 30px;
    width: 40%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.apply-modal-content h2 {
    margin-bottom: 20px;
}

.apply-modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-modal-content label {
    text-align: left;
    font-weight: bold;
}

.apply-modal-content input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.apply-modal-content button {
    background-color: #0085D8; /* IT-Strat bright blue */
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-modal-content button:hover {
    background-color: #004C7B; /* It-Strat blue on hover */
}
	
.apply-now-btn {
    background-color: #0085D8 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-now-btn:hover {
    background-color: #004C7B !important; /* IT-Strat blue on hover */
}	

.apply-now-btn:active {
    background-color: #004C7B !important; /* IT-Strat blue on hover */
	box-shadow: inset 0 0 10px #000; /* Creates an inner shadow effect */
}	

@media screen and (max-width: 1280px) {
	.apply-modal-content {
		width: 60%;
		max-height: 90vh;
  		overflow-y: auto;
	}
}

@media screen and (max-width: 850px) {
	.apply-modal-content {
		width: 80%;
		max-height: 90vh;
  		overflow-y: auto;
	}
}

.single-expertise-section .date {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}
.single-expertise-section .news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
  .single-expertise-section {
    padding: 30px 0;
  }
  .single-expertise-section .side-wrapper {
    margin-bottom: 45px;
  }
  .single-expertise-section .banner-wrapper img {
    height: 200px;
  }
  .single-expertise-section .img-wrapper {
    margin-bottom: 15px;
  }
}
.key-section {
  padding: 60px 0;
}
.key-section .main-title {
  color: #282828;
  font-weight: 700;
  font-size: 52px;
  text-align: center;
  line-height: 180%;
  margin-bottom: 30px;
}
.key-section p {
  font-size: 18px;
  color: #282828;
}
.key-section.primaryBg {
  background-color: #004C7B;
}
.key-section.primaryBg .main-title {
  color: #fff;
}
.key-section.primaryBg p {
  color: #fff;
}

.whitepaper-list-section {
  padding: 60px 0;
}
.whitepaper-list-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 200%;
}
.whitepaper-list-section .main-subtitle {
  color: #000;
  font-size: 20px;
  width: 75%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.whitepaper-list-section .news-card {
  padding: 30px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.whitepaper-list-section .news-card::after {
  background-color: rgba(0, 0, 0, 0.3882352941);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.whitepaper-list-section .news-card .title {
  z-index: 1;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
.whitepaper-list-section .news-card .subtitle {
  z-index: 1;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
}
.whitepaper-list-section .news-card .button-wrapper {
  text-align: center;
  z-index: 1;
}
.whitepaper-list-section .news-card a {
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  padding: 7px 15px;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  margin: 0 auto;
}
.whitepaper-list-section nav {
  background-color: #fff;
  margin-top: 45px;
  box-shadow: none;
}
.whitepaper-list-section .page-item .page-link {
  border: none;
  color: rgb(102, 101, 101);
}
.whitepaper-list-section .page-item.active .page-link {
  border: none;
  color: #fff;
  background-color: #184c7b;
}

@media screen and (max-width: 992px) {
  .whitepaper-list-section .main-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 15px;
  }
}
.contract-section {
  padding: 60px 0;
}
.contract-section .contract-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 40px 20px;
  box-shadow: 3px 3px 12px rgba(54, 54, 54, 0.2);
}
.contract-section .contract-card .title {
  color: #004C7B;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 200%;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.contract-section .contract-card .description {
  color: #282828;
  font-size: 14px;
  text-align: center;
  line-height: 150%;
  font-weight: 500;
  min-height: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.contract-section .contract-card .btn-container {
  text-align: center;
  margin-top: 30px;
}
.contract-section .contract-card .btn-container a {
  font-size: 12px;
  color: #0085D8;
  text-decoration: none;
  border: 1px solid #0085D8;
  padding: 5px 10px;
  align-items: center;
  border-radius: 4px;
  font-weight: 600;
}
.contract-section .contract-card .btn-container a:hover{
  background-color: #0085D8;
  color: #ffffff;

}

.career-section {
  padding: 60px 0;
}
.career-section .search-wrapper {
  margin-bottom: 90px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-section .search-wrapper input {
  border: 2px solid #b5b5b5;
  padding: 4px 15px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  min-width: 400px;
}
.career-section .search-wrapper input::-moz-placeholder {
  font-size: 14px;
}
.career-section .search-wrapper input:-ms-input-placeholder {
  font-size: 14px;
}
.career-section .search-wrapper input::placeholder {
  font-size: 14px;
}
.career-section .search-wrapper button {
  font-size: 14px;
  color: #fff;
  background-color: #0085D8;
  padding: 7.5px 30px;
  border-radius: 6px;
  border: none;
  margin-left: -9px;
}
.career-section .accordion-header {
  display: flex;
  margin-bottom: 0;
  justify-content: space-between;
  font-size: 14px;
  border: none;
  position: relative;
}
.career-section .accordion-header .accordion-button {
  padding-left: 30px;
  box-shadow: none;
  width: auto;
  font-weight: 600;
  border: none;
  background: none !important;
}
.career-section .accordion-header .accordion-button::after {
  left: 0px;
  position: absolute;
}

.career-section .accordion-item .accordion-side-button {
  padding: 0 20px;
  box-shadow: none;
  width: auto;
  font-weight: 600;
  border: none;
  color: #0085D8;
  background: none !important;
}

.career-section .accordion-item .accordion-side-button:hover {
  color: #004C7B;
}

.career-section .accordion-header .other-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career-section .accordion-header .other-wrap .more-detail {
  font-weight: 600;
  text-decoration: none;
  color: #0085D8;
  margin-left: 45px;
}
.career-section .accordion-header .other-wrap .refer {
  font-weight: 600;
  text-decoration: none;
  color: #0085D8;
  margin-left: 45px;
}
.career-section .accordion-header .other-wrap .apply {
  font-weight: 600;
  text-decoration: none;
  background-color: #0085D8;
  color: #fff;
  border-radius: 6px;
  padding: 10px 30px;
  margin-left: 45px;
}
.career-section .accordion-body {
  padding: 15px 150px 15px 45px;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
}
.career-section .accordion-body .career-details {
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
  font-weight: 500;
}

.career-section .accordion-body .career-details i {
  color: #0c63e4;
}
.career-section .accordion-item {
  border: none;
  border-bottom: 2px solid #cdcdcd;
  border-radius: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.career-section nav {
  background-color: #fff;
  margin-top: 45px;
  box-shadow: none;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.career-section nav .show-page {
  font-size: 17px;
}
.career-section nav .show-page span {
  font-weight: 600;
}
.career-section .page-item .page-link {
  border: none;
  color: rgb(102, 101, 101);
}
.career-section .page-item.active .page-link {
  border: none;
  color: #fff;
  background-color: #184c7b;
}

@media screen and (max-width: 992px) {
  .career-section .search-wrapper {
    margin-bottom: 45px;
  }
  .career-section .search-wrapper input {
    min-width: auto;
  }
  .career-section .accordion-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #bcbbbb;
  }
  .career-section .accordion-header {
    flex-wrap: wrap;
  }
  .career-section .accordion-header .accordion-button {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .career-section .accordion-header .other-wrap .more-detail {
    font-size: 12px;
    margin-left: 30px;
  }
  .career-section .accordion-header .other-wrap .refer {
    font-size: 12px;
    margin-left: 30px;
  }
  .career-section .accordion-header .other-wrap .apply {
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-left: 30px;
  }
  .career-section .accordion-body {
    padding: 15px 30px 0px 30px;
    font-size: 13px;
    font-weight: 300;
    text-align: justify;
  }
  .career-section nav {
    display: block;
  }
  .career-section nav .show-page {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .career-section .search-wrapper button{
    padding: 7.5px 14px;
  }
  .career-section .accordion-body .career-details{
    display: block;
    line-height: 26px;
  }
}
.benefits-section {
  padding: 60px 0;
  background-color: #004C7B;
}
.benefits-section .main-title {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 180%;
}
.benefits-section p {
  font-size: 15px;
}
.benefits-section .main-subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 45px;
  text-align: center;
}
.benefits-section .solution-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 40px 20px;
  height: 450px;
  box-shadow: 3px 3px 12px rgba(54, 54, 54, 0.5411764706);
}

.benefits-section .solution-card:hover .title{
  color: #1396e7
}
.benefits-section .solution-card .img-wrapper {
  text-align: center;
}
.benefits-section .solution-card .img-wrapper img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
.benefits-section .solution-card .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 200%;
  margin-bottom: 15px;
}
.benefits-section .solution-card .title:hover{
  color: #1396e7
}
.benefits-section .solution-card .description {
  color: #282828;
  font-size: 16px;
  text-align: center;
  line-height: 150%;
  font-weight: 600;
  display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

@media screen and (max-width: 992px) {
  .benefits-section .main-title {
    font-size: 26px;
  }
  .benefits-section .main-subtitle {
    font-size: 15px;
  }
}
.client-section-hero-btn {
  color: #000 !important;
  font-size: 15px !important;
  font-weight: 700;
}

.companies-logo {
  background-color: #fff;
  padding: 60px 0;
}
.companies-logo .containerLogo {
  margin: 80px 0;
}
.companies-logo ul {
  list-style: none;
  display: flex;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  justify-content: space-around;
}
.companies-logo ul li {
  margin-bottom: 45px;
  margin-right: 10px;
}
.companies-logo ul li a {
  text-decoration: none;
}
.companies-logo ul li a img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
  margin: 1rem 0;
}

@media screen and (max-width: 992px) {
  .companies-logo .containerLogo {
    margin: 0;
  }
  .companies-logo ul li a img {
    height: 100px;
  }
}
.clientsection {
  background-color: #f1f1f1;
  padding: -30 !important;
}
.clientsection img {
  height: 100;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clientsection .sectionContents {
  padding: 10px !important;
}
.clientsection .sectionCardTitle {
  text-transform: uppercase;
  font-size: 30px !important;
  font-weight: 700;
  color: #004c7b;
}
.clientsection .sectionCardSubtext {
  font-size: 15px !important;
  color: #000 !important;
  margin-top: 15px;
  color: #004c7b;
}
.clientsection .section-button-container {
  text-align: center;
  margin-top: 25px;
}
.clientsection .section-button-container a {
  text-decoration: none;
  border: 2px solid #0085d8;
  color: #0085d8;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
}

.client-end-section {
  padding: 60px 0;
}

.client-section-main {
  color: #0085d8 !important;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 45px;
}

.client-latest-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 30px;
  margin-bottom: 90px;
}

.grid1 {
  padding: 40px 60px 20px 60px;
  box-shadow: 6px 8px 7px rgba(21, 21, 21, 0.2509803922);
}
.grid1 .testimonial .items .client-section-para {
  font-size: 15px !important;
  color: #000;
}
.grid1 .testimonial .items .client-section-heading {
  color: #004c7b;
  font-size: 25px !important;
  font-weight: 700;
  margin-top: 15px;
}
.grid1 .testimonial .items .client-section-subtext {
  color: #000;
  font-size: 14px !important;
  font-weight: 700;
  margin-top: 12px;
}
.grid1 .testimonial .items img {
  height: 100%;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 12px;
}

.grid2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 40px 60px;
  background-color: #f1f1f1;
}
.grid2 .client-section-button-container {
  text-align: center;
  margin-top: 25px;
}
.grid2 .client-section-button-container a {
  text-decoration: none;
  background-color: #0085d8;
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 4px;
}
.grid2 .client-section-para {
  font-size: 20px;
  font-weight: 700;
  padding: 0 45px;
}

@media screen and (max-width: 992px) {
  .client-section-main {
    font-size: 26px;
  }
  .client-latest-wrapper {
    display: block;
  }
  .grid1 {
    margin-bottom: 30px;
    padding: 30px;
  }
  .grid2 {
    padding: 30px;
  }
  .grid2 .client-section-para {
    padding: 0;
  }
}
.successStories {
  background-color: #fff !important;
}
.successStories .successStoriesTitle {
  display: flex;
  margin-left: 20px;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #004c7b;
}

@media screen and (max-width: 992px) {
  .successStories .successStoriesTitle {
    font-size: 26px;
  }
}
.clientBanner {
  background-color: #004c7b;
  color: #fff;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clientBanner .successBanner {
  display: flex;
  justify-content: space-between;
}
.clientBanner .successBanner .successClientName {
  font-weight: 700;
  font-size: 22px;
}
.clientBanner .successBanner .successClientIndustry {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clientBanner .successBanner .successClientIndustry span {
  color: #e9df00;
}

.success-grid-section {
  margin-top: 80px;
}
.success-grid-section .success-grid-box {
  display: grid;
  grid-template-columns: 200px auto 200px;
}
.success-grid-section .success-grid-box .success-grid1 .success-grid1-head {
  color: #004c7b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.success-grid-section .success-grid-box .success-grid1 .success-grid1-links ul {
  list-style: none;
  padding-left: 0;
}
.success-grid-section .success-grid-box .success-grid1 .success-grid1-links ul li {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 4px 0;
}
.success-grid-section .success-grid-box .success-grid1 .success-grid1-links ul li a {
  color: #000 !important;
  text-decoration: none;
}
.success-grid-section .success-grid-box .success-grid2 {
  padding: 20px 20px 0 20px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-top-section {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 30px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-top-section .grid2-date {
  margin: 10px 0;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-top-section .grid2-author-name {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-top-section .grid2-author-desc {
  margin-top: 20px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-top-section .grid2-author-desc span {
  font-weight: 700;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-bgImg-section img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container {
  margin-top: 30px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .grid-head {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  color: #004c7b;
  font-weight: 700;
  font-size: 20px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section {
  font-size: 14px !important;
  overflow: hidden;
  font-weight: 400;
  padding-right: 10px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 .carousel-section {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 .carousel-section .carousel-texts {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 .carousel-section .owl-carousel .carouselItems .carousel-img-container {
  display: flex;
  justify-content: center;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section-grid2 .carousel-section .owl-carousel .carouselItems .carousel-img-container img {
  width: 65px !important;
  height: 65px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .carousel-wrap {
  background-color: red;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .info-section3 {
  display: flex;
  align-items: center;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .info-section3 .info-section3-title {
  display: flex;
  justify-content: center;
  font-size: 12px !important;
  font-weight: 400;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section:nth-child(even) .info-section-grid .para-section-grid2 {
  order: 1;
}
.success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section:nth-child(even) .info-section-grid .para-section {
  order: 2;
  margin-left: 10px;
}
.success-grid-section .success-grid-box .success-grid3 {
  padding-left: 10px;
}
.success-grid-section .success-grid-box .success-grid3 ul {
  list-style: none;
  padding-left: 0;
}
.success-grid-section .success-grid-box .success-grid3 ul li {
  font-size: 14px;
  font-weight: 400;
  padding: 4px 0;
}
.success-grid-section .success-grid-box .success-grid3 ul li a {
  text-decoration: none;
  color: #000 !important;
}
.success-grid-section .success-grid-box .success-grid3 ul li .success-gird3-list-bullet {
  list-style: disc !important;
  margin-left: 2rem !important;
}

.success-grid3.mobile-success-stories-timeline{
  display: none;
}

@media screen and (max-width: 992px) {
  .success-grid3.mobile-success-stories-timeline{
    display: block;
    margin-top: 40px;
  }
  .success-grid3.mobile-success-stories-timeline ul{
    list-style: circle !important;
  }
  
  .success-grid3.desktop-success-stories-timeline{
    display: none;
  }
  
  .clientBanner .successBanner {
    display: block;
  }
  .clientBanner .successBanner .successClientName {
    font-size: 18px;
    text-align: center;
  }
  .clientBanner .successBanner .successClientIndustry {
    justify-content: center;
    font-size: 14px;
  }
  .success-grid-section {
    margin-top: 30px;
  }
  .success-grid-section .success-grid-box {
    display: block;
  }
  .success-grid-section .success-grid-box .success-grid3 {
    margin-bottom: 45px;
  }
  .success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid {
    display: block;
  }
  .success-grid-section .success-grid-box .success-grid2 .success-grid2-info-container .success-grid2-info-section .info-section-grid .para-section {
    margin-bottom: 15px;
  }
}

.success-news-banner .banner-content {
  width: 600px;
  height: 310px;
}
.success-news-banner .success-banner2-testimonial {
  padding: 30px 0;
  border-radius: 20px;
  background-color: #0085d8;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid2 {
  color: #fff;
  font-weight: 700;
  margin: 30px 30px 30px 20px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid2 .testimonial-text {
  font-size: 14px;
  margin-bottom: 10px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid2 .testimonial-head {
  font-size: 20px;
  margin-bottom: 10px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid2 .testimonial-title {
  font-size: 14px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid1 {
  margin-left: 15px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid1 img {
  height: 20px;
  width: 20px;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid3 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.success-news-banner .success-banner2-testimonial .success-scroll .testimonial-grid3 img {
  transform: rotate(180deg);
  height: 20px;
  width: 20px;
  margin-right: 15px;
}

@media screen and (max-width: 992px) {
  .success-news-banner {
    background: none !important;
  }
  .success-news-banner .banner-content {
    width: 100%;
  }
  .success-news-banner.success-single-footer-banner{
    height: 100%;
    margin-bottom: 20px;
  } 
  .success-news-banner.success-single-footer-banner .banner-content{
    height: 100%;
  }  
}
.success-contact-container {
  height: 450px;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.success-contact-container .success-contact-box {
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: auto;
  width: 500px;
  padding: 30px;
}
.success-contact-container .success-contact-box .contact-box-head {
  display: flex;
  justify-content: center;
  color: #004c7b;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}
.success-contact-container .success-contact-box .contact-help-box .contact-help-text {
  font-size: 14px;
  font-weight: 400;
}
.success-contact-container .success-contact-box .contact-help-box .contact-help-btn {
  display: flex;
  flex-direction: column;
}
.success-contact-container .success-contact-box .contact-help-box .contact-help-btn .help-btn {
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 5px 10px;
  background-color: #0085d8;
  margin-top: 15px;
  border-radius: 4px;
  cursor: pointer;
}
.success-contact-container .success-contact-box .contact-help-box .contact-help-btn .help-btn a {
  text-decoration: none;
  color: #fff;
}

.contact-page {
  height: auto;
}
.contact-page .contact-page-grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 65% 35%);
}
.contact-page .contact-page-grid .page-grid1-container {
  padding: 50px 0 50px 100px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 {
  padding: 60px 0 60px 90px;
  background-color: #fff !important;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-page-title {
  font-size: 15px;
  font-weight: 500;
  margin: 15px 0;
  width: 70%;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input {
  display: flex;
  flex-direction: column;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid input {
  padding: 5px;
  margin: 10px 0;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid input[type=text] {
  color: #838383;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid input[type=text]::placeholder{
  font-size: 14px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input textarea::placeholder{
  font-size: 14px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .radio-btn-text {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .radio-btn-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input textarea {
  width: 80%;
  color: #838383;
  padding: 10px 0 0 5px;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .contact-submit-btn-container {
  width: 85%;
  margin: 20px 0;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .contact-submit-btn-container .contact-submit-btn {
  border-radius: 4px;
  border: none;
  padding: 5px 18px;
  background-color: #004c7b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.2s ease-in-out;
}
.contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .contact-submit-btn-container .contact-submit-btn:hover {
  background-color: #033757;
}
.contact-page .contact-page-grid .page-grid2 {
  background-color: #004c7b !important;
}

@media screen and (max-width: 992px) {
  .contact-page .contact-page-grid {
    display: block;
  }
  .contact-page .contact-page-grid .page-grid1-container {
    padding: 0;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 {
    padding: 30px;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-page-title {
    font-size: 13px;
    width: 100%;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .radio-btn-text {
    font-size: 16px;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid {
    width: 100%;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .form-input-grid input {
    font-size: 14px;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .radio-btn-container {
    margin: 0;
    margin-bottom: 15px;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input .radio-btn-container label {
    font-size: 12px;
  }
  .contact-page .contact-page-grid .page-grid1-container .page-grid1 .contact-form .form-input textarea {
    width: 100%;
    padding: 20px;
  }
}
.career-detail-banner {
  background-color: #F1F1F1;
}
.career-detail-banner .banner-header {
  padding: 40px 0;
  font-size: 22px;
  font-weight: 700;
}

.career-detail-section {
  margin: 50px 0;
}
.career-detail-section .career-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.career-detail-section .career-detail-grid .career-grid-left {
  margin-right: 30px;
}
.career-detail-section .career-detail-grid .career-grid-left .career-details-back-btn a {
  color: #004c7b;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.career-detail-section .career-detail-grid .career-grid-left .career-details-back-btn ul {
  padding-left: 0px;
  margin-top: 8px;
}
.career-detail-section .career-detail-grid .career-grid-left .career-details-back-btn ul li {
  list-style: none;
  padding: 2px 0;
}
.career-detail-section .career-detail-grid .career-grid-left .career-details-back-btn ul li a {
  text-decoration: none;
  color: #0085D8;
  font-size: 14px;
  font-weight: 400;
}
.career-detail-section .career-detail-grid .career-grid-right {
  box-shadow: -1px 5px 7px rgba(21, 21, 21, 0.2509803922);
  padding: 40px;
  color: #333;
  height: auto;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-banner-img {
  width: 80%;
  margin: 0 auto;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-links .career-details-link a {
  text-decoration: none;
  color: #0085D8;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-prompt {
  margin: 20px 0 10px 0;
  color: #333;
  font-size: 15px;
  font-weight: 700;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-prompt span {
  font-weight: 400;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-container .career-details-head {
  font-size: 22px;
  font-weight: 700;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-container .career-details-head-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 0;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-container .career-details-head-icons img {
  width: 15px;
  height: 100%;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-para {
  padding: 25px 0;
  font-size: 14px;
  font-weight: 400;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-list-second {
  margin-top: 10px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-btn-group {
  display: grid;
  flex-direction: row;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-btn-group .career-details-btn a {
  background-color: #0085d8;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 10px;
  height: 100%;
  text-decoration: none;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-btn-group .career-details-btn a img {
  width: 20px;
  height: 100%;
  margin-right: 10px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .para-secondary {
  padding: 10px 0 0 0 !important;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .heading-secondary {
  padding: 0 0 10px 0 !important;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .career-details-head2 {
  color: #004c7b !important;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .point-contact-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .point-contact-grid-container .contact-grid-box {
  border-left: 3px solid #0085D8;
  margin: 10px 0px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .point-contact-grid-container .contact-grid-box .contact-grid-head .contact-box-text {
  margin-left: 10px;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .point-contact-grid-container .contact-grid-box .contact-grid-head {
  font-size: 16px;
  font-weight: 700;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .point-contact-grid-container .contact-grid-box .contact-text-text {
  font-size: 14px;
  font-weight: 400;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .career-details-para-list ul {
  padding: 10px inherit;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .career-details-para-list ul li {
  font-size: 14px !important;
  font-weight: 400 !important;
}
.career-detail-section .career-detail-grid .career-grid-right .career-right-paper .career-details-head-secondary .career-details-para-list ul .dla-list {
  font-size: 18px importnt !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 992px) {
  .career-detail-section .career-detail-grid {
    display: block;
  }
  .career-detail-banner .banner-header {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */
.solution-card-link{
  text-decoration: none;
}

.team-section {
  padding: 60px 0;
}
.team-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  line-height: 180%;
}
.team-section p {
  font-size: 15px;
}
.team-section .main-subtitle {
  color: #424242;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
  margin-bottom: 45px;
  text-align: center;
  max-width: 800px;
}

.leader-card {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.leader-card .img-wrapper {
  width: 200px;
}
.leader-card .img-wrapper img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
.leader-card .content {
  margin-left: 20px;
  margin-top: 20px;
  flex: 1;
}
.leader-card .content .name {
  font-size: 22px;
  font-weight: 600;
}
.leader-card .content a {
  text-decoration: none;
  margin-top: 20px;
  display: block;
  color: #0085D8;
}

.team-section-gray {
  background-color: #F1F1F1;
}

.team-card {
  background-color: #fff;
  padding: 30px 15px;
  margin-bottom: 25px;
}
.team-card .img-wrapper {
  text-align: center;
}
.team-card .img-wrapper img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}
.team-card .name {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  .leader-card .img-wrapper {
    width: 120px;
  }
  .leader-card .img-wrapper img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
  }
  .leader-card .content .name {
    font-size: 18px;
  }
}
.bio-banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.bio-banner .content {
  width: 50%;
}
.bio-banner .content .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0085D8;
  text-decoration: none;
}
.bio-banner .content .name {
  font-size: 46px;
  font-weight: 600;
  line-height: 80px;
}
.bio-banner .content .position {
  font-size: 18px;
  font-weight: 700;
  color: #004C7B;
}
.bio-banner .img-wrapper {
  flex: 1;
}
.bio-banner .img-wrapper img {
  min-width: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px;
}

.bio-section {
  background-color: #F1F1F1;
  padding: 60px 0;
}
.bio-section .main-title {
  color: #004C7B;
  font-weight: 700;
  font-size: 42px;
  line-height: 180%;
}
.bio-section .description {
  font-weight: 500;
  max-width: 800px;
  font-size: 15px;
}
.bio-section ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}
.bio-section ul a {
  color: #004C7B;
  font-size: 22px;
  margin-right: 10px;
}


@media screen and (max-width: 992px) {
  .bio-banner .content {
    width: 100%;
    margin: 30px 0;
  }
  .bio-banner .img-wrapper img {
    min-width: 300px;
  }
}/*# sourceMappingURL=style.css.map */

.client-outer-wrapper{    
  padding: 30px 20px;
  box-shadow: 2px 2px 10px #c7c4c4;
  border-radius: 3px;
  margin-bottom: 30px;
  width: calc(20% - 20px);
  /* height: 550px; */
  min-width: 220px;
}

.client-outer-wrapper .client-img{
 text-align: center;

}
.client-outer-wrapper .client-img img{
  height: 150px;
  width: 150px;
  object-fit: contain;
  overflow: hidden;
}
/* .client-outer-wrapper .client-name {
  font-size: 18px;
  text-align: center;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  padding-top: 5px;
  margin-top: 10px;
  height: 60px;
} */
.client-outer-wrapper .client-name {
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  color: #141414;
  font-weight: 700;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  padding-top: 5px;
  margin-top: 10px;
  height: 60px;
}
.client-outer-wrapper .client-name:hover{
  color:#0085D8;
}
.client-outer-wrapper .client-name:active{
  color:#004C7B;
}

.client-outer-wrapper .client-description{
  font-size: 16px;
  color: #000;
  font-weight: 500;
  /* height: 205px; */
  text-align: center;
  line-height: 160%;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.client-outer-wrapper .button-wrapper{
  text-align: center;
}
.client-outer-wrapper .client-button{

  font-size: 12px;
  color: #0085D8;
  text-decoration: none;
  border: 1px solid #0085D8;
  padding: 5px 10px;
  align-items: center;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 30px;
  display: inline-block;

}
.client-outer-wrapper .client-button:hover{
  background-color: #0085D8;
  color: #ffffff;

}

.main-breadcrumb{
    font-size: 16px;
    color: #004C7B;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}

.title-flex{
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
}
.slick-dots li button:before{
  font-size: 13px !important;
}

.slick-dots li.slick-active button:before{
  color: #1396e7 !important;
}

/* company row */
.company-row{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
}

/* --- Consolidated Main Navigation and Header Styles --- */

/* This block styles the main navbar container, logo, and the WordPress menu */
.my-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.my-navbar .logo {
  height: 40px;
  overflow: hidden;
}

.my-navbar .logo img {
  height: inherit;
  overflow: hidden;
  object-fit: contain;
}

.my-navbar .menu {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}

.my-navbar .menu > li.menu-item {
  margin-right: 25px;
  position: relative; /* Required for dropdowns */
}

.my-navbar .menu > li.menu-item > a {
  font-size: 14px;
  font-weight: 600; /* Explicitly set font weight */
  text-transform: none; /* This fixes the uppercase issue */
  color: #000;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease-in-out; /* Add a smooth transition effect */
}

/* Add a hover effect for main menu items */
.my-navbar .menu > li.menu-item > a:hover {
    color: #00529b; /* A highlight color, e.g., your corporate blue */
}

/* Highlight the Active/Current Menu Item and ensure it stays highlighted on hover */
.my-navbar .menu > li.current-menu-item > a,
.my-navbar .menu > li.current-menu-item > a:hover {
    color: #00529b; /* A highlight color, e.g., your corporate blue */
    border-bottom: 2px solid #00529b;
}

/* Dropdown Sub-Menu Styling */
.my-navbar .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px; /* Set a minimum width for the dropdown */
    z-index: 1000;
}

/* Show the sub-menu on hover */
.my-navbar .menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Sub-menu item links */
.my-navbar .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500; /* Set a normal font weight */
    text-transform: none; /* Ensure sub-menu items are not uppercase */
    text-decoration: none; /* Remove underline */
}

.my-navbar .sub-menu li a:hover {
    background-color: #f0f2f5;
    color: #00529b; /* Add a hover color */
}
