@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #264490;
  --secondary: #6fa72c;
  --yellow: #fbbc33;
  --tertiary: #000000;
  --quarternary: #141414;
  --border-primary: #264490;
  --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;
  }
}

@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;
}
textarea {
  height: auto !important;
}
.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #264490;
  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-yellow {
  background-color: var(--yellow) !important;
}
.bg-secondary-100 {
  background-color: #6fa72c1a !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;
}
.bg-gray-50 {
  background-color: #f2f2f2 !important;
}
.object-fit-cover {
  object-fit: cover;
}
.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;
}

button {
  outline: 0;
  border: 0;
}

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: 600;
  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-3 {
  border-radius: 10px !important;
}
.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 {
  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: #264490;
  background: -moz-linear-gradient(
    90.01deg,
    #264490 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    #264490 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  );
  background: linear-gradient(
    90.01deg,
    #264490 20.69%,
    rgba(8, 177, 244, 0) 97.66%
  ) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #264490 !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-yellow {
  color: var(--yellow) !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: 20px;
  position: relative;
  letter-spacing: 1.1px;
  color: #000000 !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;
  }
} */
@media screen and (min-width: 1200px) {
  .Banner {
    font-size: 22px;
  }
}

@media screen and (min-width: 800px) {
  .Banner {
    font-size: 20px;
  }
}

.Banner {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
.hover\:bg-yellow:hover {
  background-color: var(--yellow) !important;
}
.hover\:shadow-primary:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.two-col-ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media (max-width: 500px) {
  .two-col-ul {
    display: block;
  }
}

.two-col-ul li {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

.two-col-ul img {
  margin-right: 10px;
}
.rounded-30 {
  border-radius: 30px;
}
.swiper-slide {
  height: 470px !important;
}
.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 50px;
}
.swiper-v2.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  overflow: hidden;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: #28448e33 !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}
.swiper-pagination-bullet-active {
  background: #28448e !important;
  margin: 15px !important;
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: block;
  border: 1px solid #28448e;
  position: absolute;
  top: -4.5px;
  left: -4.5px;
}
.card-body-content {
  display: grid;
  grid-template-columns: 30% 30% 30% 30%;
}
.w-33 {
  width: 33% !important;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #0b090a;
  border-radius: 50%;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-name {
  color: #264490;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.client-company {
  color: #0b090a4d;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.block {
  text-align: left;
}

@media (max-width: 768px) {
  .img-res {
    display: flex;
    flex-direction: column-reverse;
  }
}
.v2-title {
  font-size: 40px;
}
@media (max-width: 600px) {
  .v2-title {
    font-size: 33px;
  }
  .text-body.w-50.mx-auto {
    width: 100% !important;
  }
  .card-body-content {
    display: grid;
    grid-template-columns: 50% 50% !important;
  }
  .logo-img {
    width: 120px;
  }
}
@media (min-width: 767px) {
  .w-md-75 {
    width: 75%;
  }
}

.memberships-section .bordered {
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media (max-width: 767px) {
  .memberships-section .bordered {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-right: 0;
    border-left: 0;
  }
}

 .thank-you-container {
            text-align: center;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 7em;
        }

 .error-container {
            text-align: center;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 7em;
        }

.mt-6 {
margin-top: 12em !important;
}