@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--text);
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --paddingleftright: 0;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: url(../../icon/location-gradient.svg);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.custom-select.has-icon::after {
  left: 0;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--primary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

b, strong {
  font-weight: bold;
  color: black;
}

html {
  scroll-behavior: smooth;
}

:root {
  --upperheader: 82px;
  --upperheaderpadding: 10px;
  --upperheaderwithpadding: calc(var(--upperheader) + (var(--upperheaderpadding) * 2));
  --bottomheader: 45px;
  --upperheaderfixed: 60px;
  --bottomheaderfixed: 45px;
  --headerfixed: calc(var(--upperheaderfixed) + var(--bottomheaderfixed));
  --footerstrip: 60px;
  --primary: #0A3481;
  --secondary: #DDE9FF;
  --gradient-a: linear-gradient(270deg, #4374F6 0%, #5F12B8 60%, #262A7D 95.5%);
  --gradient-b: linear-gradient(90deg, #BFD0FD 0%, #FFFFFF 50%, #ECCEFE 100%);
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #F1F1F1;
  --container: 1280px;
  --containerfluid: 2rem;
  padding: 0;
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --headerheight: 68px;
    --headerfixed: 60px;
    --containerfluid: 15px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

main {
  padding-top: var(--headerheight);
}

b {
  font-weight: 700;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

svg path {
  transition: 0.5s ease;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 58px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.1;
  text-transform: capitalize;
  color: var(--black);
  font-weight: 700;
}
@media only screen and (max-width: 1280px) {
  .heading h3, .heading h2 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1152px) {
  .heading h3, .heading h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3, .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .heading h3, .heading h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 345px) {
  .heading h3, .heading h2 {
    font-size: 24px;
  }
}
.heading.h-medium h3, .heading.h-medium h2 {
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .heading.h-medium h3, .heading.h-medium h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 675px) {
  .heading.h-medium h3, .heading.h-medium h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 345px) {
  .heading.h-medium h3, .heading.h-medium h2 {
    font-size: 24px;
  }
}
.heading.h-large h3, .heading.h-large h2 {
  font-size: 64px;
}
@media only screen and (max-width: 1152px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1152px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 675px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 345px) {
  .heading.h-large h3, .heading.h-large h2 {
    font-size: 24px;
  }
}
.heading.c-white h2, .heading.c-white h3 {
  color: var(--white);
}
.heading.c-primary h2, .heading.c-primary h3 {
  color: var(--primary);
}
.heading.c-primary h2 ~ p, .heading.c-primary h3 ~ p {
  color: var(--text);
  margin-top: 10px;
}

h4 {
  font-size: 36px;
  line-height: 1.28;
  font-weight: 700;
}

h5 {
  font-size: 24px;
  line-height: 1.167;
  font-weight: 700;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md .figure img, .item-md .figure video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close:not(.btn) {
  position: absolute;
  top: 0;
  right: 0;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn) path {
  stroke: var(--black);
}

.btn {
  --height: 38px;
  --padding: 28px;
  height: var(--height);
  line-height: var(--height);
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
  text-transform: capitalize;
  color: var(--white);
  border: 1px solid var(--primary);
  background: var(--primary);
  border-radius: 5px;
  padding: 0 var(--padding);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
.btn:hover {
  background: none;
  color: var(--primary);
}
.btn.white {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}
.btn.white:hover {
  background: none;
  color: var(--white);
}
.btn.primary-border {
  background: none;
  border-color: var(--primary);
  color: var(--primary);
}
.btn.primary-border path {
  fill: var(--primary);
}
.btn.primary-border:hover {
  background: var(--primary);
  color: var(--white);
}
.btn.primary-border:hover path {
  fill: var(--white);
}
.btn.white-border {
  background: none;
  border-color: var(--white);
  color: var(--white);
}
.btn.white-border:hover {
  background: var(--white);
  color: var(--primary);
}
.btn.white-border:hover path {
  fill: var(--primary);
}
.btn.w-100 {
  width: 100%;
}
.btn.wide {
  --padding: 40px;
}
.btn.btn-large {
  --height: 42px;
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner::before {
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}
.banner .bg {
  line-height: 0;
  height: 688px;
}
@media only screen and (max-width: 991px) {
  .banner .bg {
    height: 585px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .bg {
    height: 435px;
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper {
    top: 67%;
    translate: 0 -67%;
  }
}
.banner .banner-wrapper h1 {
  font-size: 48px;
  line-height: 1.125;
  font-weight: 700;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .banner .banner-wrapper h1 {
    font-size: 28px;
  }
}
.banner .banner-wrapper .content {
  color: var(--white);
}
.banner .banner-wrapper .content h6 {
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper .content h6 {
    font-size: 16px;
  }
}
.banner .banner-wrapper .content h1 {
  margin-bottom: 16px;
}
.banner .banner-wrapper .content h5 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .banner .banner-wrapper .content h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper .content h5 {
    font-size: 18px;
  }
}
.banner .banner-wrapper .content .btn {
  margin-top: 54px;
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper .content .btn {
    margin-top: 35px;
  }
}
.banner .banner-wrapper .content h4 {
  margin: 5px 0 7px;
}
@media only screen and (max-width: 1024px) {
  .banner .banner-wrapper .content h4 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper .content h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 675px) {
  .banner .banner-wrapper .content h4 {
    font-size: 22px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  --size: 47px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  transition: 0.5s ease;
}
.swiper-prev path, .swiper-next path {
  fill: #000;
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev.white path, .swiper-next.white path {
  fill: var(--black);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled) path, .swiper-next.white:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.primary-border, .swiper-next.primary-border {
  border-color: var(--primary);
  background: none;
}
.swiper-prev.primary-border path, .swiper-next.primary-border path {
  fill: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled), .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled) path, .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
}
.swiper-prev.white-border path, .swiper-next.white-border path {
  fill: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled) path, .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--primary);
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}
.website-content h2 {
  font-size: 34px;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-spacing: -0.07em;
  font-weight: 500;
}
.website-content p b, .website-content li b {
  font-weight: 700;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}

@media only screen and (max-width: 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}
.slider-section .upper-sec {
  position: relative;
  margin-bottom: 4.3rem;
}
@media only screen and (max-width: 1152px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec {
    margin-bottom: 2.6rem;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .slider-section .upper-sec {
    padding-right: 13px;
  }
}
.slider-section .upper-sec .swiper-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}
.slider-section .upper-sec .swiper-nav .swiper-prev {
  margin-right: 14px;
}
.slider-section .upper-sec .heading {
  text-align: center;
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .common-grid {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}

.gradient-a-bg {
  background: var(--gradient-a);
}

.gradient-b-bg {
  background: var(--gradient-b);
}

.count-wrap-info .count-inf .count, .count-wrap-info .count-inf p {
  color: var(--white);
  line-height: 1.2;
}
.count-wrap-info .count-inf .count {
  font-size: 30px;
}
@media only screen and (max-width: 1152px) {
  .count-wrap-info .count-inf .count {
    font-size: 28px;
  }
}
.count-wrap-info .count-inf p {
  margin-top: 4px;
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 4px;
  }
}

.leader-col {
  border-radius: 15px;
  overflow: hidden;
}
.leader-col::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.8) 100%);
}
.leader-col figure img {
  aspect-ratio: 0.846;
}
.leader-col figcaption {
  padding: 0 30px 30px;
  color: var(--white);
}
@media only screen and (max-width: 675px) {
  .leader-col figcaption {
    padding: 0 20px 20px;
  }
}
.leader-col figcaption .desg, .leader-col figcaption .cmpn {
  line-height: 1.2;
}
.leader-col figcaption .desg {
  font-weight: 700;
  margin: 1px 0 4px;
}
.leader-col figcaption .cmpn {
  font-size: 14px;
  font-weight: 500;
}
.leader-col .linkd-in {
  line-height: 0;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  position: absolute;
  top: 25px;
  right: 27px;
}
.leader-col .linkd-in:hover {
  background: var(--primary);
}
.leader-col .linkd-in:hover path {
  fill: var(--white);
}

.ico-card {
  padding: 5px 0;
}
.ico-card .card-wrap {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.0509803922), 0px 2px 5px 0px rgba(50, 50, 105, 0.1490196078);
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  padding: 30px 15px 35px;
  text-align: center;
  height: 100%;
}
.ico-card .card-wrap .ico {
  width: 60px;
  line-height: 0;
  margin-left: auto;
  margin-right: auto;
}
.ico-card .card-wrap .ico img {
  width: 100%;
}
.ico-card .card-wrap h6 {
  margin: 25px 0 10px;
  color: var(--primary);
}
.ico-card .card-wrap p {
  color: var(--text);
  font-weight: 500;
}

.card-data {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
}
@media only screen and (max-width: 675px) {
  .card-data {
    padding: 20px 15px;
  }
}
.card-data > *:not(h5):not(:last-child) {
  margin-bottom: 16px;
}
.card-data h5 {
  color: var(--primary);
  margin-bottom: 10px;
}
.card-data p, .card-data li {
  color: var(--text);
  font-weight: 500;
}
.card-data p span, .card-data p b, .card-data li span, .card-data li b {
  color: var(--black);
  font-weight: 600;
}
.card-data ul {
  padding-left: 20px;
}
.card-data ul li {
  list-style: disc;
}
.card-data ul li:not(:last-child) {
  margin-bottom: 10px;
}
.card-data ul li::marker {
  color: var(--primary);
}

.common-section .heading {
  margin-bottom: 4.6rem;
}
@media only screen and (max-width: 860px) {
  .common-section .heading {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (max-width: 675px) {
  .common-section .heading {
    margin-bottom: 2.5rem;
  }
}
.common-section .common-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}
@media only screen and (max-width: 675px) {
  .common-section .common-flex {
    gap: 3rem;
  }
}
.common-section .common-flex.align-center-flex {
  align-items: center;
}
.common-section .common-flex.sticky-section .colA, .common-section .common-flex.sticky-section .colB {
  position: sticky;
  top: calc(var(--headerfixed) + 20px);
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .common-section .common-flex.sticky-section .colA, .common-section .common-flex.sticky-section .colB {
    position: initial;
    height: initial;
  }
}
.common-section .common-flex .colA, .common-section .common-flex .colB {
  flex: 1;
}
@media only screen and (max-width: 860px) {
  .common-section .common-flex .colA, .common-section .common-flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
.common-section .common-flex .colA figure {
  border-radius: 15px;
  line-height: 0;
  overflow: hidden;
}
.common-section .common-flex .colA figure img, .common-section .common-flex .colA figure video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-section .common-flex .colA figure video {
  aspect-ratio: 1.36;
}
.common-section .common-flex .colA figure iframe {
  width: 100%;
  filter: grayscale(1);
}
@media only screen and (max-width: 675px) {
  .common-section .btn-div-btm {
    text-align: center;
  }
}

.common-content.common-content-600 p, .common-content.common-content-600 li {
  font-weight: 600;
}
.common-content.common-content-gray.common-content-600 p, .common-content.common-content-gray.common-content-600 li, .common-content.common-content-gray.common-content-600 span {
  font-weight: 600;
}
.common-content.common-content-gray p, .common-content.common-content-gray li {
  color: var(--text);
  font-weight: 500;
}
.common-content.common-content-gray p a, .common-content.common-content-gray li a {
  color: #4374f6;
}
.common-content.common-content-gray p span, .common-content.common-content-gray li span {
  color: var(--black);
}
.common-content.common-content-white h2, .common-content.common-content-white h3, .common-content.common-content-white h4, .common-content.common-content-white h5, .common-content.common-content-white h6, .common-content.common-content-white p, .common-content.common-content-white li {
  color: var(--white);
}
.common-content.common-content-white p, .common-content.common-content-white li {
  font-weight: 500;
}
.common-content.common-content-white ul li::before {
  background: var(--white);
}
.common-content.common-content-white.common-content-white-fade p, .common-content.common-content-white.common-content-white-fade li, .common-content.common-content-white.common-content-white-fade span {
  color: rgba(255, 255, 255, 0.7);
}
.common-content > :first-child {
  margin-top: 0 !important;
}
.common-content > :last-child {
  margin-bottom: 0 !important;
}
.common-content h2, .common-content h3, .common-content h4, .common-content h5, .common-content h6 {
  color: var(--primary);
}
.common-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
}
.common-content h2 {
  font-size: 48px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 1024px) {
  .common-content h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 675px) {
  .common-content h2 {
    font-size: 32px;
  }
}
.common-content h3 {
  font-size: 36px;
  line-height: 1.21;
  margin-bottom: 24px;
  margin-top: 43px;
}
@media only screen and (max-width: 675px) {
  .common-content h3 {
    font-size: 26px;
  }
}
.common-content h4 {
  font-size: 24px;
}
@media only screen and (max-width: 675px) {
  .common-content h4 {
    font-size: 20px;
  }
}
.common-content h5 {
  font-size: 20px;
}
.common-content h6 {
  font-size: 18px;
}
.common-content h4, .common-content h5, .common-content h6 {
  margin-top: 43px;
  margin-bottom: 10px;
}
.common-content p, .common-content ul {
  margin-bottom: 17px;
}
.common-content ul {
  padding-left: 10px;
}
.common-content ul li {
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 675px) {
  .common-content ul li {
    padding-left: 25px;
  }
}
.common-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.common-content ul li::before {
  content: "";
  top: 4px;
  left: 0;
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary);
}
@media only screen and (max-width: 675px) {
  .common-content ul li::before {
    height: 11px;
    width: 11px;
    top: 6px;
  }
}
.common-content p, .common-content li {
  color: var(--black);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-spacing: -0.07em;
}
.common-content p b, .common-content li b {
  font-weight: 600;
}
.common-content a {
  color: var(--black);
}
.common-content a:hover {
  text-decoration: underline;
}

.contect-CMN-sec {
  padding: 7rem 0;
}
@media only screen and (max-width: 1024px) {
  .contect-CMN-sec {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 675px) {
  .contect-CMN-sec {
    padding: 50px 0;
  }
}
.contect-CMN-sec.contect-CMN-sec-white .content {
  color: var(--white);
}
.contect-CMN-sec.contect-CMN-sec:not(.contect-CMN-sec-white) .content *:not(h1, h2, h3, h4, h5, h6) {
  color: var(--text);
}
.contect-CMN-sec .content {
  max-width: 578px;
  margin-left: auto;
  margin-right: auto;
}
.contect-CMN-sec .content .heading {
  margin-bottom: 1.8rem;
}

.contect-CMN-sec-II {
  padding: 75px 0 105px;
}
.contect-CMN-sec-II .content {
  max-width: 788px;
  margin-left: auto;
  margin-right: auto;
}
.contect-CMN-sec-II .heading {
  margin-bottom: 30px;
}
.contect-CMN-sec-II .desc p {
  font-size: 20px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .contect-CMN-sec-II .desc p {
    font-size: 18px;
  }
}
.contect-CMN-sec-II .desc p:not(:last-child) {
  margin-bottom: 20px;
}
.contect-CMN-sec-II .btn-div-btm {
  margin-top: 32px;
}

.common-form-sec {
  padding: 75px 0 85px;
}
.common-form-sec .heading {
  max-width: 583px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 47px;
}
.common-form-sec .form-wrap {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.common-form-sec .form-wrap .form {
  --item: 2;
  --gaplr: 17px;
  --gaptb: 17px;
}
@media only screen and (max-width: 675px) {
  .common-form-sec .form-wrap .form {
    --item: 1;
  }
}
.common-form-sec .form-wrap .form .sbmt-grp {
  margin-top: 50px;
}
.common-form-sec .form-wrap .form .sbmt-grp .btn {
  text-transform: uppercase;
  font-weight: 600;
}
.common-form-sec .form-wrap .ntc-inf {
  margin-top: 40px;
}

.home-secD {
  padding: 70px 0 120px;
}
@media only screen and (max-width: 1152px) {
  .home-secD {
    padding: 40px 0 70px;
  }
}
.home-secD .sponsor-slider .item .card {
  margin: 6px 0;
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  border-radius: 15px;
  background: var(--white);
  text-align: center;
  padding: 0 10px 25px;
}
.home-secD .sponsor-slider .item .card figure {
  line-height: 0;
}
.home-secD .sponsor-slider .item .card figcaption {
  font-size: 14px;
  line-height: 24px;
  color: var(--text);
}
.home-secD .btn-div-btm {
  margin-top: 5rem;
}
@media only screen and (max-width: 1152px) {
  .home-secD .btn-div-btm {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .btn-div-btm {
    margin-top: 2.8rem;
  }
}
@media only screen and (max-width: 520px) {
  .home-secD .btn-div-btm .btn {
    --padding: 18px;
    font-size: 14px;
  }
}

.daterangepicker {
  font-family: "Urbanist", sans-serif !important;
}
.daterangepicker option.disabled, .daterangepicker td.disabled {
  text-decoration: none !important;
}
.daterangepicker td.active {
  background-color: var(--primary) !important;
}
.daterangepicker .drp-buttons .btn {
  --height: 30px;
  padding: 0 15px !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
  transition: box-shadow 0s ease, 0.5s ease;
}
header.header-fixed {
  height: var(--headerfixed);
  --upperheader: var(--upperheaderfixed);
  --upperheaderpadding: 8px;
  --bottomheader: var(--bottomheaderfixed);
}
header.header-fixed .upper-header .colB ul li:has(.logo-spnsr) .logo-spnsr {
  height: 35px;
}
@media only screen and (max-width: 675px) {
  header.header-fixed .upper-header {
    height: var(--headerfixed);
  }
}
header.header-fixed .upper-header::before {
  height: 100%;
}
header .upper-header {
  height: var(--upperheader);
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  padding-left: var(--containerfluid);
  padding-right: var(--containerfluid);
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  header .upper-header {
    height: var(--headerheight);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
header .upper-header .colA, header .upper-header .colB {
  height: 100%;
  padding: var(--upperheaderpadding) 0;
  transition: 0.5s ease;
}
header .upper-header .colA .logo {
  position: absolute;
  z-index: 99;
  width: 104px;
  height: 104px;
}
@media only screen and (max-width: 540px) {
  header .upper-header .colA .logo {
    width: 50px;
    position: relative;
    height: 100%;
    padding: 0;
  }
}
header .upper-header .colA a, header .upper-header .colA img {
  height: 100%;
}
header .upper-header .colB {
  flex: 1;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  header .upper-header .colB {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
header .upper-header .colB ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  header .upper-header .colB ul {
    height: auto;
  }
}
header .upper-header .colB ul li {
  display: inline-block;
  vertical-align: middle;
}
header .upper-header .colB ul li .btn {
  --padding: 17px;
}
header .upper-header .colB ul li:has(.logo-spnsr) {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .upper-header .colB ul li:has(.logo-spnsr) {
    display: none;
  }
}
header .upper-header .colB ul li:has(.logo-spnsr) .logo-spnsr {
  height: 45px;
  transition: 0.5s ease;
}
header .upper-header .colB ul li:has(.logo-bvil) {
  border-left: 1px solid #CCCCCC;
  padding-left: 27px;
  margin-left: 27px;
  margin-right: 27px;
}
@media only screen and (max-width: 1152px) {
  header .upper-header .colB ul li:has(.logo-bvil) {
    padding-left: 20px;
    margin-left: 15px;
    margin-right: 22px;
  }
}
header .upper-header .colB ul li:has(.evnt-dt-hdr) {
  height: 100%;
  margin-left: 20px;
}
header .upper-header .colB ul li .evnt-dt-hdr {
  height: 100%;
}
header .upper-header .colB ul li:not(:has(.btn)) {
  color: var(--primary);
}
@media only screen and (max-width: 675px) {
  header .upper-header .colB ul li:not(:has(.ham-btn)) {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  header .upper-header .colB ul li:has(.skfw) {
    display: none;
  }
}
header .upper-header .colB ul li .skfw {
  margin-right: 34px;
  display: flex;
}
header .upper-header .colB ul li .skfw img {
  margin-right: 7px;
}
@media only screen and (max-width: 1152px) {
  header .upper-header .colB ul li .skfw {
    margin-right: 12px;
  }
}
header .upper-header .colB ul li .dwnld-brchr-btn {
  margin-right: 16px;
}
@media only screen and (max-width: 1152px) {
  header .upper-header .colB ul li .dwnld-brchr-btn {
    margin-right: 10px;
  }
}
header .upper-header .colB ul li .ham-btn {
  margin-left: 20px;
  width: 38px;
  height: 25px;
  --border: 2px;
  border: var(--border) solid var(--primary);
  border-left: none;
  border-right: none;
  position: relative;
}
@media only screen and (max-width: 1152px) {
  header .upper-header .colB ul li .ham-btn {
    margin-left: 25px;
  }
}
header .upper-header .colB ul li .ham-btn:hover::before {
  width: 100%;
}
header .upper-header .colB ul li .ham-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 38px;
  height: var(--border);
  background: var(--primary);
  transition: 0.5s ease;
}
header .bottom-header {
  background: var(--secondary);
  display: flex;
  align-items: center;
  position: relative;
}
header .bottom-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--primary);
}
@media only screen and (max-width: 991px) {
  header .bottom-header {
    display: none;
  }
}
header .bottom-header::before {
  height: 0;
  transition: 0.5s ease;
  z-index: 0;
}
header .bottom-header > ul {
  text-align: right;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
header .bottom-header > ul > li {
  display: inline-block;
  vertical-align: middle;
}
header .bottom-header > ul > li:not(:last-child) {
  margin-right: 1.2rem;
}
@media only screen and (max-width: 1280px) {
  header .bottom-header > ul > li:not(:last-child) {
    margin-right: 0.8rem;
  }
}
@media only screen and (max-width: 1152px) {
  header .bottom-header > ul > li:not(:last-child) {
    margin-right: 0.5rem;
  }
}
header .bottom-header > ul > li.hasDropdown {
  position: relative;
}
header .bottom-header > ul > li.hasDropdown:hover > a {
  color: var(--primary);
  background: var(--white);
}
header .bottom-header > ul > li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .bottom-header > ul > li > a {
  display: inline-block;
  color: var(--black);
  padding: 0 20px;
  height: var(--bottomheader);
  line-height: var(--bottomheader);
}
@media only screen and (max-width: 1280px) {
  header .bottom-header > ul > li > a {
    font-size: 14px;
    padding: 0 17px;
  }
}
@media only screen and (max-width: 1152px) {
  header .bottom-header > ul > li > a {
    padding: 0 12px;
  }
}
header .bottom-header > ul > li > a:hover {
  color: var(--primary);
  background: var(--white);
}
header .bottom-header > ul > li .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 250px;
}
header .bottom-header > ul > li .dropdown-menu::before {
  display: none;
  content: "";
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: var(--primary);
  transform: rotate(45deg);
  z-index: -1;
}
header .bottom-header > ul > li .dropdown-menu ul {
  background: var(--white);
  padding: 16px 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  text-align: left;
  border-top-left-radius: 0;
}
header .bottom-header > ul > li .dropdown-menu ul li:not(:last-child) {
  margin-bottom: 3px;
}
header .bottom-header > ul > li .dropdown-menu ul li a {
  font-size: 14px;
  display: block;
  color: var(--black);
  padding: 4px 20px;
  border-radius: 5px;
}
header .bottom-header > ul > li .dropdown-menu ul li a:hover {
  background: #f5f5f5;
  color: var(--primary);
}
header .bottom-header > ul > li .dropdown-menu ul li a span {
  display: block;
  width: 24px;
  line-height: 0;
}

@media only screen and (max-width: 991px) {
  footer {
    background: rgba(211, 211, 211, 0.2);
  }
}
@media only screen and (max-width: 540px) {
  footer {
    background: rgba(211, 211, 211, 0.2);
  }
}
footer .upper-footer {
  background: var(--secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 50px;
}
@media only screen and (max-width: 1200px) {
  footer .upper-footer {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 991px) {
  footer .upper-footer {
    border-radius: 0px;
    padding: 15px 0px;
  }
}
@media only screen and (max-width: 675px) {
  footer .upper-footer {
    border-radius: 0px;
    padding: 15px 0px;
    display: none;
  }
}
footer .upper-footer li {
  display: inline-block;
  vertical-align: middle;
}
footer .upper-footer .colA {
  flex: 1;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .colA {
    padding-right: 0;
    text-align: center;
  }
}
footer .upper-footer .colA li {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 12px 0;
}
footer .upper-footer .colA li:not(:last-child) {
  border-right: 1px solid #909090;
  padding-right: 30px;
  margin-right: 30px;
}
@media only screen and (max-width: 1200px) {
  footer .upper-footer .colA li:not(:last-child) {
    padding-right: 16px;
    margin-right: 16px;
  }
}
footer .upper-footer .colA li .ico {
  flex: 0 1 auto;
  margin-top: 10px;
}
footer .upper-footer .colA li .inf {
  flex: 1;
  padding-left: 15px;
}
@media only screen and (max-width: 1200px) {
  footer .upper-footer .colA li .inf {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .colA li .inf {
    text-align: left;
  }
}
footer .upper-footer .colA li .inf h6 {
  color: var(--black);
  margin-bottom: 4px;
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  footer .upper-footer .colA li .inf h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 675px) {
  footer .upper-footer .colA li .inf h6 {
    display: none;
  }
}
footer .upper-footer .colA li .inf a, footer .upper-footer .colA li .inf p {
  color: var(--black);
  font-weight: 400;
}
@media only screen and (max-width: 1200px) {
  footer .upper-footer .colA li .inf a, footer .upper-footer .colA li .inf p {
    font-size: 14px;
  }
}
footer .upper-footer .colA li .inf a:hover {
  color: var(--primary);
}
footer .upper-footer .colB {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .upper-footer .colB .primary {
  background: #051026;
  border: 1px solid #051026;
}
footer .upper-footer .colB .transparent {
  background: var(--primary);
  border: 1px solid #051026;
  color: #051026;
}
@media only screen and (max-width: 991px) {
  footer .upper-footer .colB {
    display: none;
  }
}
footer .middle-footer {
  border: 1px solid rgba(252, 253, 253, 0.2);
  border-left: none;
  border-right: none;
  padding: 38px 0;
}
footer .middle-footer .footer-wrapper {
  display: grid;
  grid-template-columns: 10.235% auto auto 1fr auto;
  grid-gap: 76px;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 35px 20px;
  }
}
@media only screen and (max-width: 767px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: auto 1fr 46%;
  }
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper {
    grid-template-columns: 100%;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .col-md:first-child {
    grid-column: span 4;
    justify-content: center;
    display: flex;
  }
  footer .middle-footer .footer-wrapper .col-md:last-child {
    grid-column: span 4;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  footer .middle-footer .footer-wrapper .col-md:first-child {
    grid-column: initial;
  }
  footer .middle-footer .footer-wrapper .col-md:last-child {
    grid-column: initial;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  footer .middle-footer .footer-wrapper .col-md:has(.logo) {
    display: none;
  }
}
footer .middle-footer .footer-wrapper .logo img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .middle-footer .footer-wrapper .logo img {
    max-width: 250px;
  }
}
footer .middle-footer .footer-wrapper h6 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper h6 {
    margin-bottom: 12px;
  }
}
footer .middle-footer .footer-wrapper ul li a {
  display: block;
  padding: 2px 0;
  color: #3E3E3E;
  font-weight: 400;
}
footer .middle-footer .footer-wrapper ul li a:has(svg) {
  display: flex;
  gap: 15px;
}
footer .middle-footer .footer-wrapper ul li a:hover {
  color: var(--primary);
}
footer .middle-footer .footer-wrapper ul li:not(:last-child) {
  margin-bottom: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 675px) {
  footer .middle-footer .footer-wrapper ul li:not(:last-child) {
    margin-bottom: 2px;
  }
}
footer .middle-footer .footer-wrapper .footer-social li {
  display: inline-block;
}
footer .bottom-footer {
  padding: 28px 35px;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 675px) {
  footer .bottom-footer {
    padding: 15px 0 60px;
    overflow: hidden;
  }
}
footer .bottom-footer p, footer .bottom-footer a {
  color: rgb(156, 154, 154);
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-left: 8px;
}
footer .bottom-footer a img {
  width: 60px;
}
footer .bottom-footer .flex {
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .flex {
    text-align: center;
  }
}
footer .bottom-footer .col-df {
  flex: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .col-df {
    flex: 0 1 100%;
    padding-right: 0;
  }
}
footer .bottom-footer .col-df span {
  border-left: 1px solid var(--white);
  padding-left: 15px;
  margin-left: 15px;
}
@media only screen and (max-width: 675px) {
  footer .bottom-footer .col-df span {
    display: block;
    border: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
  }
}
footer .bottom-footer .col-df span a {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin-left: 8px;
}
footer .bottom-footer .col-df-b {
  flex: 0 1 auto;
}
@media only screen and (max-width: 991px) {
  footer .bottom-footer .col-df-b {
    flex: 0 1 100%;
    margin-bottom: 2rem;
  }
}
footer .bottom-footer .col-df-b li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
footer .bottom-footer .col-df-b li:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 12px;
  margin-right: 12px;
}
footer .bottom-footer .col-df-b li a:hover {
  color: var(--primary);
}

.ham-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.5s ease;
}
@media only screen and (max-width: 1366px) {
  .ham-pop {
    background-size: 30%;
  }
}
@media only screen and (max-width: 991px) {
  .ham-pop {
    transform: translateX(100%);
  }
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.ham-pop .model-body {
  margin-top: 60px;
  padding: 22px 52px 30px;
  background-position: 100% 100%;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(204, 204, 204, 0.8);
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body {
    padding: 60px 25px 20px;
  }
}
.ham-pop .model-body .logo {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: left;
  align-items: center;
  margin: 0px 0 30px 0;
}
.ham-pop .model-body .logo img {
  width: 100px;
}
.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 22px;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.ham-pop .model-body .nav-list > li > a {
  font-size: 32px;
  line-height: 1.06;
  color: var(--text);
  display: inline-block;
  font-weight: 600;
}
@media only screen and (max-width: 1366px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 675px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 20px;
  }
}
.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--primary);
  transform: translateX(5px);
}
.ham-pop .model-body .nav-list > li.has-dropdown {
  position: relative;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 22px;
  height: var(--sizeplu);
  width: var(--sizeplu);
  cursor: pointer;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::before, .ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: 0.5s ease;
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico::before {
  transform: rotate(90deg);
}
.ham-pop .model-body .nav-list > li.has-dropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham {
  display: none;
  border: 1px solid #ccc;
  border-right: none;
  border-left: none;
  margin: 12px 0;
  padding: 15px 0;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li:not(:last-child) {
  margin-bottom: 5px;
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li a {
  color: var(--text);
}
.ham-pop .model-body .nav-list > li.has-dropdown .dropdown-menu-ham li a:hover {
  color: var(--black);
}
.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons {
  margin-bottom: 2rem;
}
.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
.ham-pop .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.ham-pop .model-body .bottom-list .social-icons a:hover path {
  fill: var(--primary);
}

.form-pop {
  right: 0;
  max-width: 500px;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: white;
  background-size: 60% auto, 100% 100%;
  background-position: 80% 100%, 0 0;
}
.form-pop.is-open {
  transform: translateX(0%);
}
.form-pop .close path {
  stroke: var(--text);
  stroke-width: 2;
}
.form-pop .model-body {
  padding: 2px 40px 30px;
  height: 100%;
  overflow-y: auto;
  margin-top: 60px;
}
.form-pop .model-body .form-group::before {
  background: #ccc;
}
.form-pop .model-body .title {
  text-align: center;
}
.form-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-weight: 500;
}
.form-pop .model-body .title p {
  color: rgba(114, 114, 124, 0.6588235294);
  margin: 10px auto 30px;
  width: 320px;
}
.form-pop .model-body .hasDropdown:hover .dropdown-menu-ham {
  display: block;
}
.form-pop .model-body button {
  border: 1px solid white;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #0A3481;
  color: white;
  font-weight: 600;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 5px;
  margin-bottom: 50px;
}
.form-pop .model-body button:hover {
  background-color: white;
  border-color: #0A3481;
  color: #0A3481;
  transition: 0.5s;
}
.form-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.form-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.form-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .form-pop .model-body {
    padding: 22px 25px 20px;
  }
}
@media only screen and (max-width: 520px) {
  .form-pop .model-body {
    padding: 22px 15px 20px;
  }
}
.form-pop .model-body .ico {
  max-width: 75px;
  width: 100%;
  margin-bottom: 22px;
  line-height: 0;
}
.form-pop .model-body .ico img, .form-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.form-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1366px) {
  .form-pop .model-body .nav-list > li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.form-pop .model-body .nav-list > li > a {
  font-size: 28px;
  color: var(--black);
  display: inline-block;
}
@media only screen and (max-width: 1366px) {
  .form-pop .model-body .nav-list > li > a {
    font-size: 25px;
  }
}
.form-pop .model-body .nav-list > li > a:hover {
  color: var(--black);
}
.form-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-pop .model-body .bottom-list .cal-btn-ham {
  color: var(--text);
  font-weight: 600;
}
@media only screen and (max-width: 520px) {
  .form-pop .model-body .bottom-list .cal-btn-ham {
    font-weight: 500;
  }
}
.form-pop .model-body .bottom-list .cal-btn-ham:hover {
  color: var(--black);
}
.form-pop .model-body .bottom-list .social-icons a {
  display: inline-block;
  vertical-align: middle;
}
.form-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (max-width: 520px) {
  .form-pop .model-body .bottom-list .social-icons a:not(:last-child) {
    margin-right: 10px;
  }
}
.form-pop .model-body .bottom-list .social-icons a path {
  transition: 0.5s ease;
}
.form-pop .model-body .bottom-list .social-icons a:hover path {
  fill: var(--black);
}

.enquire-pop {
  right: 0;
  max-width: 435px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.7s ease;
  z-index: 111;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 25px;
  right: 25px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .close {
    top: 20px;
    right: 20px;
  }
}
.enquire-pop .close span {
  display: inline-block;
  color: var(--black);
  text-transform: capitalize;
  font-size: 13px;
}
.enquire-pop .close path {
  stroke: var(--black);
}
.enquire-pop .model-body {
  padding: 45px 42px 50px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: none;
  height: 6px;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 25px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.enquire-pop .model-body .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body .title {
    margin-bottom: 25px;
  }
}
.enquire-pop .model-body .title .ico {
  max-width: 120px;
  margin: 0 auto;
  padding-bottom: 4px;
}
.enquire-pop .model-body .title h3 {
  text-align: center;
  color: var(--black);
  font-size: 26px;
  max-width: 300px;
  margin: 0 auto;
}
.enquire-pop .model-body .form-grid {
  --item: 1;
  --gaplr: 12px;
  --gaptb: 12px;
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #0A3481;
  display: none;
}
@media only screen and (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  color: var(--white);
  font-size: 14px;
  height: var(--footerstrip);
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg[fill] {
  fill: var(--white);
}
.footer-strip ul li a svg path[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg path[fill] {
  fill: var(--white);
}/*# sourceMappingURL=header.css.map */