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

@font-face {
  font-family: "MYRIADPRO-REGULAR";
  src: url("../fonts/MYRIADPRO-REGULAR.OTF");
}
@font-face {
  font-family: "MYRIADPRO-BOLD";
  src: url("../fonts/MYRIADPRO-BOLD.OTF");
}
h1,
h2 {
  font-size: 40px !important;
  font-family: "MYRIADPRO-BOLD";
  color: #fdb912 !important;
  text-transform: uppercase;
}

h2 {
  font-size: 30px !important;
  text-transform: none;
}

body {
  font-family: "MYRIADPRO-REGULAR" !important;
}

a {
  text-decoration: none !important;
}

p {
  font-size: 16px !important;
}

.text_height {
  line-height: 30px;
}

.navbar {
  background-color: #fff;
}
.navbar .nav-item .dropdown {
  width: 200px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0 !important;
  display: none;
  position: absolute;
  top: 60px;
  animation: fadeDown 0.3s ease forwards;
  /* Apply the fade-down animation */
  transition-delay: 0.2s;
  z-index: 9999;
}
.navbar .nav-item .dropdown .dropdown_list {
  list-style: none;
  padding: 8px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(206, 201, 201, 0.2470588235);
}
.navbar .nav-item .dropdown .dropdown_list:hover {
  background-color: #ffb540;
}
.navbar .nav-item .dropdown .dropdown_list a {
  color: #000;
  font-weight: 500;
}
.navbar .nav-item .nav-link {
  padding-right: 30px !important;
  color: #000 !important;
}
.navbar .nav-item .active {
  background-color: transparent !important;
}
.navbar .nav-item:hover .dropdown {
  display: block;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner_1 {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 75vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2745098039);
}

.banner_2 {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 75vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2745098039);
}

.banner_3 {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 75vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2745098039);
  background-size: cover;
}

.banner_content {
  display: flex;
  align-items: end !important;
  justify-content: center;
  height: 75vh;
}
.banner_content .banner_title {
  display: flex;
  align-items: center !important;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.431372549);
  color: #fff;
  gap: 50px;
  width: 100%;
  padding: 15px;
}
.banner_content .banner_title h1 {
  border-right: 4px solid #fff;
  padding-right: 40px;
  margin-bottom: 0 !important;
}
.banner_content .banner_title span {
  font-size: 18px;
}

.global_data__title h2 {
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 15px;
}

.global_img {
  text-align: center;
}
.global_img img {
  height: 300px;
}

.sec_bg {
  background-color: #f1f1f1;
}

.sec_bg2 {
  background-color: #ffb540 !important;
}
.sec_bg2 .database_text h2 {
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 10px;
  color: #000;
}
.sec_bg2 .database_text p {
  color: #000;
}

.box-title {
  text-align: center;
}
.box-title img {
  height: 150px;
}

.card__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.card__box .card__box1 {
  width: 200px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.card__box .card__box1:hover {
  transform: translateY(-30px);
}
.card__box .card__box1:hover .card_number,
.card__box .card__box1:hover p {
  color: #219bce;
}
.card__box .card__box1 .card_box_title {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  text-align: center;
}
.card__box .card__box1 .card_number {
  font-size: 30px;
  font-family: "MYRIADPRO-BOLD";
  text-align: center;
}
.card__box .card__box1 .card_number::after {
  content: "+";
  padding-left: 5px;
}
.card__box .card__box1:nth-child(1) {
  margin-top: 90px;
}
.card__box .card__box1:nth-child(2) {
  margin-bottom: 40px;
}
.card__box .card__box1:nth-child(3) {
  margin-top: 90px;
}
.card__box .card__box1:nth-child(4) {
  margin-bottom: 40px;
}

.footer_sec {
  background-color: #ffb540 !important;
}
.footer_sec .footer_line {
  border-left: 1px solid rgba(153, 146, 146, 0.368627451);
  padding-left: 55px !important;
}
.footer_sec .footer-nav h5 {
  font-family: "MYRIADPRO-BOLD";
}
.footer_sec .footer-nav ul {
  padding-left: 0 !important;
  padding-top: 15px;
}
.footer_sec .footer-nav ul li {
  margin-bottom: 10px;
  padding-left: 10px;
}
.footer_sec .footer-nav ul li::marker {
  content: "\f2e4";
  font-family: "remixicon";
}
.footer_sec .footer-nav ul li a {
  color: #000;
}

.footerBottom_bg .copy-right {
  text-align: center;
  padding: 10px;
}
.footerBottom_bg .copy-right p {
  margin-bottom: 0 !important;
}
.footerBottom_bg .copy-right a,
.footerBottom_bg .copy-right p {
  color: #000 !important;
}

.banner {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 65vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5019607843);
}
.banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65vh;
  color: #fff;
}

.card_box {
  background: rgb(33, 155, 206);
  background: linear-gradient(90deg, rgb(33, 155, 206) 0%, rgb(149, 204, 139) 92%);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  padding: 15px;
  height: calc(100% - 20px);
  margin: 25px 0;
  display: block;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.card_box:hover {
  transform: translateY(-20px);
}
.card_box:hover .card-img img {
  transform: scale(1.2);
}
.card_box .card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.card_box .card-img img {
  height: 50px;
}
.card_box .card_title {
  padding-top: 15px;
}
.card_box .card_title ul {
  padding-top: 10px;
}
.card_box .card_title ul li {
  text-align: start;
  margin-bottom: 8px;
}

.contact_bg {
  background-color: #94CB8B;
}

.contact-info {
  margin-top: 30px;
}
.contact-info ul {
  list-style: none;
  padding: 0 !important;
}
.contact-info ul li {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  gap: 10px;
}
.contact-info ul li i {
  font-size: 20px;
  padding: 15px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid rgba(253, 186, 18, 0.3843137255);
  padding: 10px;
}
.contact-info ul li a {
  color: #000;
}

.sec-bg {
  background-color: #f1f1f1;
}
.sec-bg .contact-form {
  background-color: #fff;
  padding: 25px 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}
.sec-bg .contact-form .form-title {
  text-align: center;
  padding-bottom: 30px;
}
.sec-bg .contact-form .form-group input {
  border: none;
  border-bottom: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.sec-bg .contact-form .submit-btn {
  padding: 10px 100px;
  background-color: #ffb540;
  color: #fff;
  border: none;
  border-radius: 30px;
  display: table;
  margin: 0 auto;
}
.sec-bg .contact-form .submit-btn:hover {
  background-color: #259dcc;
}

.button-wrap-title h3 {
  text-align: center;
  padding-bottom: 30px;
}

a.button {
  display: block;
  background-color: #fdb912 !important;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin: 15px;
  padding: 10px;
  border-radius: 5px;
}

a.button:hover {
  color: #fff;
}

a.active {
  background-color: #259dcc !important;
  color: #fff;
}

.content {
  color: #000;
  margin-top: 20px;
}

div[class*=content-] {
  display: none;
}

div.active {
  display: block;
}

.list-item ul {
  list-style: none;
  padding: 0 !important;
}
.list-item ul li {
  margin-bottom: 8px;
  display: flex;
}
.list-item ul li::before {
  content: "\ea6c";
  font-family: "remixicon";
  font-size: 20px;
  padding-right: 10px;
}

.services-card {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
  padding: 10px;
  height: calc(100% - 0px);
}
.services-card .services-list ul {
  list-style: none;
  padding: 0 !important;
}
.services-card .services-list ul li {
  margin: 10px 0;
  display: flex;
  background-color: rgba(147, 189, 62, 0.6156862745);
  padding: 10px;
  font-weight: 600;
  color: #000;
}
.services-card .services-list ul li::before {
  content: "\ed4e";
  font-family: "remixicon";
  padding-right: 10px;
  color: #119046;
  font-size: 18px;
}
.services-card img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.services-card .services-title {
  padding-top: 15px;
}
.services-card .services-Btn {
  margin: 10px 0;
  display: inline-block;
}
.services-card .services-Btn .ser-Btn {
  background-color: #ffb540;
  color: #000;
  padding: 10px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.services-card .services-Btn .ser-Btn:hover {
  background-color: #2B5B98;
}/*# sourceMappingURL=style.css.map */