@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #168b42;
  --primary-50: #e0f3e7;
  --primary-100: #a3d4b5;
  --secondary: #1d2564;
  --orange: #ff6800;
  --tertiary: #000000;
  --quarternary: #141414;
  --border-primary: #168b42;
  --ff-primary: "Binson", sans-serif;
  --ff-secondary: "Poppins", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
body {
  margin: 0;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1400px;
}
.navbar .badge {
  margin: 0 5px;
}
a.navbar-brand {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .header {
    background-color: #000000;
  }
}

.badge {
  font-size: 18px !important;
  border-radius: 10px;
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
  .navbar-brand img {
    width: 80px;
  }
}

@media (max-width: 430px) {
  .badge {
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
  }
}
.form-control {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #168b42;
  outline: 0;
  box-shadow: 0 0 0 0.2rem #168b4321;
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-orange {
  background-color: var(--orange) !important;
}
.bg-secondary-100 {
  background-color: #e8ecee !important;
}
.bg-primary-50 {
  background-color: var(--primary-50) !important;
}
.bg-primary-100 {
  background-color: var(--primary-100) !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.m-100 {
  margin: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 600 !important;
}

.border-white {
  border-color: #ffffff20 !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: var(--primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary) !important;
}
button {
  outline: 0;
  border: 0;
}
a:hover {
  opacity: 1 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  line-height: 1.2em !important;
  color: #000000;
}
h1 {
  font-size: 54px;
  font-weight: bold;
}

h2 {
  font-size: 42px;
  font-weight: bold;
}
h3 {
  font-size: 30px;
  font-weight: 700;
}
h4 {
  font-size: 26px;
  font-weight: 600;
}
h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em !important;
}
h6 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 48px;
    font-weight: 700;
  }
  h2 {
    font-size: 36px;
    font-weight: 700;
  }
  h3 {
    font-size: 28px;
    font-weight: 700;
  }
  h4 {
    font-size: 24px;
    font-weight: 700;
  }
  h5 {
    font-size: 20px;
    font-weight: 400;
  }
}

.rounded-5 {
  border-radius: 20px !important;
}
.rounded-6 {
  border-radius: 24px !important;
}

p,
a,
label,
span,
li,
div {
  font-family: var(--ff-secondary);
}
.text-body {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}
.search-input {
  width: 67%;
  margin: 0 auto;
}
.search-input form {
  width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************Form**************
  ****************************/

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-gradient {
  background: #168b42;
  background: -moz-linear-gradient(
    90.01deg,
    #168b42 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    #168b42 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: linear-gradient(
    90.01deg,
    #168b42 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  ) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #168b42 !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}

/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-orange {
  color: var(--orange) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #ffffff !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
  *********NAVIGATION**********
  ****************************/
nav li a {
  margin: 0;
  background-color: transparent;
  transition: background-color 0.25s, color 0.25s;
}

.nav-link {
  font-size: 16px;
  position: relative;
  letter-spacing: 1.1px;
}
.navbar-nav .nav-item .nav-link {
  color: #fff !important;
}

#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
}
/* .content {
  margin-top: 211.92px;
} */
/* @media screen and (max-width: 768px) {
  .content {
    margin-top: 66px;
  }
} */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  width: 15px;
  height: 30px;
}
.swiper-container {
  width: 100%;
  height: 715px;
  overflow: hidden;
}
.bg-otbminimoto {
  background-image: url("../../images/otb-minimoto.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

img.logo-img {
  /* mix-blend-mode: luminosity;
  opacity: 0.3; */
  object-fit: contain;
  margin: 10px;
}
.required-sign {
  color: #168b42;
}
.copywrite-text {
  font-size: 16px;
  color: #fff;
}
.social-icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .copywrite-text {
    text-align: center;
  }
  .social-icons-wrapper {
    justify-content: center;
    margin-top: 30px;
  }
}
.hero-section {
  background-image: url("../../images/home-banner-img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.badge {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: 60px;
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  overflow: hidden;
}
.badge:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 2px solid var(--orange);
}

.web-list {
  list-style: square !important;
}
.web-list li::marker {
  color: var(--orange);
}
input#search {
  max-width: 565px !important;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 10px 0px 0px 10px;
}
.search-input button {
  height: 60px;
  border: 1px solid var(--border-primary);
  border-radius: 10px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.logos img {
  object-fit: contain;
  transition: all 0.5s ease;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}
.bg-gradi {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(22, 139, 66, 0.20211834733893552) 40%
  );
}

.navbar-nav .nav-item.active .nav-link {
  color: #fff !important;
  font-weight: 700;
}
.hover-card {
  padding: 10px;
  transition: all 0.5s ease;
}
.hover-card:hover {
  background: #ffffff;
  box-shadow: 0px 8px 25px rgba(63, 152, 72, 0.12);
  border-radius: 20px;
  padding: 10px;
  transition: all 0.5s ease;
}

.hover-card:hover .title-text {
  color: #1d2564 !important;
}
.desc-par {
  display: none;
}

.hover-card:hover .desc-par {
  display: block !important;
}
.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 80px !important;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination-bullet {
  background: #ffffff33 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  background: #ffffff !important;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1045px;
    margin: 1.75rem auto;
  }
}
button.close {
  position: absolute;
  right: 0;
  background: var(--primary);
  padding: 10px;
  height: 40px;
  width: 40px;
  z-index: 99999;
  opacity: 1;
  color: #fff;
}
@media screen and (max-width: 408px) {
  iframe {
    width: 100%;
    height: 200px;
  }
}

.hero-section-2 {
  background-image: url("../../images/banner-img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
}

.people-card-wrapper .card {
  transition: all 0.5s ease;
}
.people-card-wrapper .card:hover {
  background-color: #1d2564 !important;
  box-shadow: 0px 4px 5.8px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  transform: translate(0, -20px);
}
.people-card-wrapper .card:hover h5 {
  color: #ff6800 !important;
}
.people-card-wrapper .card p {
  display: none;
}

.people-card-wrapper .card:hover p {
  display: block;
}
.people-card-wrapper .card:hover .card-body {
  padding: 1.25rem !important;
}

.accordion {
  color: #1d2564;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  transition: 0.4s;
  font-weight: 500;
  font-size: 24px;
  line-height: 44px;
  font-feature-settings: "liga" off;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.active.accordion {
  margin-bottom: 0px;
}
.active,
.accordion:hover {
  background-color: var(--secondary);
  color: #fff;
  border-radius: 10px 10px 0 0;
}
.accordion:not(.active):hover {
  background-color: var(--secondary);
  color: #fff;
  border-radius: 10px;
}

.panel {
  padding: 20px 20px;
  display: none;
  background-color: white;
  overflow: hidden;
  margin-bottom: 15px;
}
.panel p {
  margin-bottom: 0;
}
.accordion.active + .panel {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}
.accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion.active::after {
  content: "-";
  color: #fff;
  float: right;
  margin-left: 5px;
  background-color: var(--orange);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-weight: 500;
}
.accordion::after {
  content: "+";
  color: #fff;
  float: right;
  margin-left: 5px;
  background-color: var(--secondary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-weight: 500;
}
.accordion:hover::after {
  background-color: var(--orange);
}

@media screen and (max-width: 768px) {
  .accordion {
    font-size: 16px;
    line-height: 16px;
  }
  .accordion.active::after {
    height: 17.4px;
    width: 17.4px;
    line-height: 17.4px;
  }
  .accordion::after {
    height: 17.4px;
    width: 17.4px;
    line-height: 17.4px;
  }
}

.newsletter-card-wrapper .card {
  transition: all 0.5s ease;
}
.newsletter-card-wrapper .card:hover {
  background-color: #fff !important;
  box-shadow: 0px 8px 25px rgba(63, 152, 72, 0.12);
  transition: all 0.5s ease;
  transform: translate(0, -20px);
}
.newsletter-card-wrapper .card h5 {
  opacity: 0;
}

.newsletter-card-wrapper .card:hover h5 {
  color: #1d2564 !important;
  opacity: 1;
  margin-bottom: 0;
}
.newsletter-card-wrapper .card p {
  opacity: 0;
}

.newsletter-card-wrapper .card:hover p {
  opacity: 1;
}
.newsletter-card-wrapper .card:hover .card-body {
  padding: 1.25rem !important;
}
.swiper-horizontal {
  touch-action: pan-y;
  overflow: hidden;
}
.newslator-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newslator-swiper-pagination .swiper-pagination-bullet {
  background: #1d25641e !important;
  opacity: 1 !important;
}

.newslator-swiper-pagination .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
  background: #1d2564 !important;
}
.newslator-swiper-navigation .swiper-button-prev,
.newslator-swiper-navigation .swiper-button-next {
  color: white;
  background: #ff6800;
  padding: 20px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0%, -100%);
  bottom: auto;
  border: 10px solid #fff;
}
.newslator-swiper-navigation .swiper-button-next:after,
.newslator-swiper-navigation .swiper-rtl .swiper-button-prev:after {
  font-size: 15px;
}
.newslator-swiper-navigation .swiper-button-prev:after,
.newslator-swiper-navigation .swiper-rtl .swiper-button-next:after {
  font-size: 15px;
}
.newslator-swiper-navigation .swiper-button-next,
.newslator-swiper-navigation .swiper-rtl .swiper-button-prev {
  right: -0px;
  left: auto;
}
.newslator-swiper-navigation .swiper-button-prev,
.newslator-swiper-navigation .swiper-rtl .swiper-button-next {
  left: -0px;
  right: auto;
}
.newslator-swiper {
  padding: 30px;
}
.page-number {
  padding: 10px 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 10px;
  color: #000000;
  margin: 0 10px;
}

.page-number.active {
  background: #ff6800;
  color: #fff;
}
.post h2 a {
  color: #000;
  text-decoration: none;
}
.post p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.video-btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999999999;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 1024px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}
.close {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: #168b42;
  color: #fff;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.tab-title {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.tab-title.active {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  transition: all 0.5s ease;
}
.tab-title .tab-svg {
  width: 100%;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 10px;
  margin-right: 20px;
  transition: all 0.5s ease;
}
.tab-title.active .tab-svg {
  background-color: var(--orange);
  transition: all 0.5s ease;
}
.tab-title.active .tab-svg path {
  stroke: #fff;
}
.tab-title.active h3 {
  color: var(--orange);
}
.tab-content img {
  display: none;
  max-width: 100%;
  border-radius: 20px;
}
.tab-content img.active {
  display: block;
}
.people-card {
  display: flex;
  flex-direction: column;
}
.people-card img {
  z-index: 1;
  position: relative;
}
.p-text {
  background: #1d2564;
  border-radius: 20px;
  height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: -88px;
}
.people-card .p-text .small {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
.swiper-slide {
  height: 349px !important;
}