@import url("https://fonts.googleapis.com/css2?family=Artifika&family=Courgette&family=DM+Sans:wght@400;500;700&family=Inria+Sans:wght@400;700&family=Josefin+Slab:wght@300;400;500;600;700&family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200&family=Karla:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;600;700&family=Poppins:wght@400;500&family=Raleway:wght@400;500;600;700&family=Roboto+Condensed:wght@700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

h2,
h3,
h4 {
  font-size: 25px !important;
  color: #337E89;
  font-weight: 600 !important;
}

h5 {
  font-size: 18px !important;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

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

.btn1 {
  background-color: #337E89 !important;
  padding: 10px 25px !important;
  color: #fff !important;
  border-radius: 30px !important;
  transition: all 0.3s ease-in-out;
}
.btn1:hover {
  background-color: #CDE990 !important;
  color: #fff !important;
}

.btn2 {
  background-color: #fff !important;
  padding: 10px 25px !important;
  color: #000 !important;
  border-radius: 30px !important;
  margin-top: 15px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.btn2:hover {
  background-color: #337E89 !important;
  color: #fff !important;
}

.content-color {
  color: #fff;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  padding: 0;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(245, 237, 220, 0.8980392157) !important;
  background: linear-gradient(90deg, rgb(208, 242, 113) 0%, rgba(255, 255, 255, 0.596) 0%);
  animation-name: example;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.navbar .nav-item {
  padding-right: 20px;
}
.navbar .nav-item a {
  color: #000 !important;
}
.navbar .contact-btn {
  background-color: #337E89;
  padding: 10px 20px;
  color: #fff;
  border-radius: 30px;
}

.banner {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 75vh;
  background-size: cover;
  background-position: bottom;
}
.banner .banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  text-align: center;
}
.banner .banner-title h1 {
  color: #CDE990;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-img img {
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-title h2 {
  margin-bottom: 15px;
}

.sec-banner1 {
  background: url("../images/sec-banner1.png") center no-repeat;
  width: 100%;
  background-size: cover;
}

.text_wrapper {
  text-align: center;
  margin: 15px;
}
.text_wrapper h2 {
  color: #CDE990;
  margin-bottom: 15px;
}

.our-client {
  margin-top: 20px;
}
.our-client .c-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.our-client .c-flex:hover {
  transform: scale(1.1);
  color: #b1e937;
}

.sec-banner2 {
  background: url("../images/sec-banner2.png") center no-repeat;
  width: 100%;
  background-size: cover;
}
.sec-banner2 .approach-icon .c-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: #fff;
  margin-top: 40px;
}
.sec-banner2 .approach-icon .c-row .c-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sec-banner2 .approach-icon .c-row .icons-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-banner2 .approach-icon .c-row .icons-img:hover {
  background-color: #CDE990;
}
.sec-banner2 .approach-icon .c-row .icons-img img {
  width: 40px;
}

.why-choose {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.767) 0px 0px 0px 1px;
  margin-top: 50px;
  border-radius: 30px;
}

.why-choose-icons {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin-top: 20px;
}
.why-choose-icons img {
  height: 30px;
}

.why-choose-img {
  text-align: center;
}
.why-choose-img img {
  width: 500px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.card {
  border-radius: 10px !important;
  min-height: 480px;
}
.card img {
  border-top-right-radius: 10px !important;
  border-top-left-radius: 10px !important;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.card .card-body {
  background: #337E89;
  color: #fff;
}
.card .card-body h5 {
  font-weight: 500 !important;
}
.card .card-body span {
  font-size: 14px;
}
.card .card-body p {
  margin-top: 15px;
}
.card .card-body a {
  color: #CDE990;
}

.sec-banner3 {
  background: url("../images/sec-banner3.png") center no-repeat;
  width: 100%;
  background-size: cover;
}
.sec-banner3 .services-img h5,
.sec-banner3 .services-img p {
  margin-top: 20px;
}

.inquiry-form {
  background-color: #000;
  border-radius: 20px;
  margin-top: 40px;
}
.inquiry-form form {
  width: 80%;
  margin: 0 auto;
}
.inquiry-form .captcha-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiry-form .dynamic-code {
  padding: 6px 0;
  background: #fff;
  color: #337E89;
  border: 1px solid #337E89;
  border-radius: 8px;
  text-align: center;
}
.inquiry-form .captcha-reload {
  padding-left: 4px;
  color: #fff;
}
.inquiry-form .form-group input {
  border-radius: 30px;
}
.inquiry-form .submit-btn {
  background-color: #337E89;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  color: #fff;
}
.inquiry-form .submit-btn:hover {
  background-color: #CDE990;
}

.sec-banner4 {
  opacity: 0.8999999762;
  background: linear-gradient(90deg, #1B7AA9 0%, #1E6F57 47.19%, #339B5C 100%);
}
.sec-banner4 .card-box {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  min-height: 380px;
  position: relative;
}
.sec-banner4 .card-box .card-box-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  margin-bottom: 15px;
}
.sec-banner4 .card-box .card-box-icon h5 {
  font-weight: 600;
}
.sec-banner4 .card-box .card-box-btn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.client-logos img {
  text-align: center !important;
  width: 130px !important;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.client-box {
  background-color: #337E89;
  padding: 15px;
  min-height: 350px;
  border-radius: 10px;
}
.client-box p {
  color: #fff;
}
.client-box .client-info {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin-bottom: 15px;
}
.client-box .client-info span {
  color: #fff;
}
.client-box .client-info img {
  width: 90px !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  display: none;
}

.contact-info {
  text-align: center;
}
.contact-info i {
  font-size: 20px;
  padding-right: 15px;
}
.contact-info .contact-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.contact-info .contact-icon a {
  color: #000;
}
.contact-info .contact-icon i {
  font-size: 20px;
  padding-right: 10px;
}
.contact-info .contact-info-btn {
  text-align: center;
}

.social-icons {
  text-align: center;
}
.social-icons i {
  font-size: 20px;
  margin-right: 50px;
  color: #337E89;
}

.footer-sec {
  background: url("../images/footer-sec.png") center no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
}
.footer-sec .footer-text {
  color: #fff;
}
.footer-sec .footer-text h2 {
  color: #fff;
  margin-bottom: 20px;
}
.footer-sec .footer-text p {
  font-size: 15px !important;
}
.footer-sec .footer-text ul {
  padding: 0;
}
.footer-sec .footer-text ul li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.footer-sec .footer-text ul li a {
  color: #fff;
  font-size: 15px;
}
.footer-sec .footer-text ul li i {
  font-size: 20px;
}

.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.copy-right a {
  color: #000;
}

.about-banner {
  background: url("../images/about-banner.jpg") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 65vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4196078431);
}
.about-banner .banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65vh;
  color: #fff;
}
.about-banner .banner-title h1 {
  font-weight: 600;
}

.about-content {
  background-color: #337E89;
  padding: 25px;
}

.choose-us-title h2 {
  color: #fff;
}

.choose-box {
  margin-bottom: 20px;
  background-color: #fff;
  padding: 35px;
  min-height: 240px;
  position: relative;
  margin: 20px 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
.choose-box:hover {
  background-color: #CDE990;
}
.choose-box h5 {
  font-weight: 600;
}
.choose-box .choose-icon {
  position: absolute;
  top: -20px;
  left: -30px;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 50%;
  padding: 10px;
}
.choose-box .choose-icon img {
  height: 30px;
}

.team-box {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  height: 200px;
}
.team-box:hover {
  transform: translateY(-10px);
}
.team-box .team-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}
.team-box .team-content h5 {
  font-weight: 600;
}
.team-box .team-content img {
  height: 180px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 10px;
}
.team-box .team-content p {
  margin-top: 10px;
}
.team-box .team-title .trigger-modal {
  border: none !important;
  background: transparent;
  color: #091eda;
}

.modal-content {
  z-index: 999999 !important;
}

.services-images {
  text-align: center;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  min-height: 300px;
  margin-bottom: 25px;
}
.services-images img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-images h5 {
  margin-top: 25px;
  padding: 0;
  font-weight: 600;
  color: #337E89;
}

.services-content {
  text-align: justify;
}

.solutions-content {
  text-align: justify;
}

.contact-text h2 {
  margin-bottom: 40px;
}
.contact-text ul {
  list-style: none;
  padding: 0;
}
.contact-text ul li {
  margin-bottom: 20px;
  display: flex;
  font-size: 18px;
  gap: 20px;
}
.contact-text ul li i {
  font-size: 18px;
}
.contact-text ul li a {
  font-size: 18px;
  color: #000;
}

.contact-form_1 {
  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;
}
.contact-form_1 .form-title {
  text-align: center;
  padding-bottom: 30px;
}
.contact-form_1 .form-group input {
  border: none;
  border-bottom: 1px solid rgba(148, 140, 140, 0.7450980392);
  border-radius: 0;
}
.contact-form_1 .captcha-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-form_1 .dynamic-code {
  padding: 6px 0;
  background: #fff;
  color: #337E89;
  border: 1px solid #337E89;
  border-radius: 8px;
  text-align: center;
}
.contact-form_1 .captcha-reload {
  padding-left: 4px;
}
.contact-form_1 .submit-btn {
  padding: 10px 100px;
  background-color: #337E89;
  color: #fff;
  border: none;
  border-radius: 30px;
  display: table;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */