@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%;
  }
}
@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(--litewhite);
  --borderafter: var(--text);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .sbmt-grp {
  margin-top: 20px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.has-icon input {
  --iconsize: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0px)) 50%;
  padding-right: calc(var(--paddingleftright, 0px) + var(--iconsize, 0px) + var(--paddingleftright, 0px));
}
.form .form-group.has-icon.calender-icon input {
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.5 2H14.5V0.5C14.5 0.367392 14.4473 0.240215 14.3536 0.146447C14.2598 0.0526785 14.1326 0 14 0C13.8674 0 13.7402 0.0526785 13.6464 0.146447C13.5527 0.240215 13.5 0.367392 13.5 0.5V2H6.5V0.5C6.5 0.367392 6.44732 0.240215 6.35355 0.146447C6.25979 0.0526785 6.13261 0 6 0C5.86739 0 5.74021 0.0526785 5.64645 0.146447C5.55268 0.240215 5.5 0.367392 5.5 0.5V2H2.5C1.8372 2.00079 1.20178 2.26444 0.73311 2.73311C0.264441 3.20178 0.000793929 3.8372 0 4.5V17.5C0.000793929 18.1628 0.264441 18.7982 0.73311 19.2669C1.20178 19.7356 1.8372 19.9992 2.5 20H17.5C18.163 20 18.7989 19.7366 19.2678 19.2678C19.7366 18.7989 20 18.163 20 17.5V4.5C20 3.83696 19.7366 3.20107 19.2678 2.73223C18.7989 2.26339 18.163 2 17.5 2ZM19 17.5C19 17.8978 18.842 18.2794 18.5607 18.5607C18.2794 18.842 17.8978 19 17.5 19H2.5C2.10218 19 1.72064 18.842 1.43934 18.5607C1.15804 18.2794 1 17.8978 1 17.5V9H19V17.5ZM19 8H1V4.5C1 3.672 1.67 3 2.5 3H5.5V4.5C5.5 4.63261 5.55268 4.75979 5.64645 4.85355C5.74021 4.94732 5.86739 5 6 5C6.13261 5 6.25979 4.94732 6.35355 4.85355C6.44732 4.75979 6.5 4.63261 6.5 4.5V3H13.5V4.5C13.5 4.63261 13.5527 4.75979 13.6464 4.85355C13.7402 4.94732 13.8674 5 14 5C14.1326 5 14.2598 4.94732 14.3536 4.85355C14.4473 4.75979 14.5 4.63261 14.5 4.5V3H17.5C17.8978 3 18.2794 3.15804 18.5607 3.43934C18.842 3.72064 19 4.10218 19 4.5V8Z" fill="%23666666" fill-opacity="0.7"/%3E%3C/svg%3E');
}
.form .form-group.has-icon.search-icon input {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.893 13.92L16.973 17M16 8.5C16 10.4891 15.2098 12.3968 13.8033 13.8033C12.3968 15.2098 10.4891 16 8.5 16C6.51088 16 4.60322 15.2098 3.1967 13.8033C1.79018 12.3968 1 10.4891 1 8.5C1 6.51088 1.79018 4.60322 3.1967 3.1967C4.60322 1.79018 6.51088 1 8.5 1C10.4891 1 12.3968 1.79018 13.8033 3.1967C15.2098 4.60322 16 6.51088 16 8.5Z' stroke='%23939393' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.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: var(--labelbackground);
  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(--black);
  font-size: inherit;
  font-family: inherit;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group textarea:focus {
  outline: none;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus {
  outline: none;
}
.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input[readonly], .form .form-group textarea[readonly] {
  caret-color: transparent;
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--black);
  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(--black);
  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 .form-group .error {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  color: red;
  line-height: normal;
  font-size: 12px;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.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(--inputsize);
  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;
  --iconpath: url(../../icon/location-primary.svg);
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --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: var(--bgcolor);
}
.custom-select.has-icon::after {
  left: var(--paddingleftright, 0px);
  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, 0);
  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: 4;
  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;
}

html {
  scroll-behavior: smooth;
}

.mb-0 {
  margin-bottom: 0 !important;
}

:root {
  --headerpadding: 35px;
  --headerheight: 95px;
  --headerfixed: 65px;
  --footerstrip: 66px;
  --primary: #5393C5;
  --bgcolor: #03052E;
  --primary-hover: #000;
  --secondary: #03052E;
  --gradient-a: linear-gradient(270deg, #03052E 0%, #03052E 100%);
  --gradient-b: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-c: linear-gradient(270deg, #D8D8D8 0%, #EBEBEB 50%, #C5C5C5 100%);
  --gradient-d: linear-gradient(360deg, #E6E6E6 0%, #C6C6C6 100%);
  --gradient-e: linear-gradient(180deg, #E5E5E5 0%, #FFFFFF 46.5%, #F6F6F6 100%);
  --text: #666666;
  --green: green;
  --white: #FFFFFF;
  --litewhite:#c0c0c0;
  --black: #000000;
  --black-light: #313131;
  --gray: #F6F6F6;
  --container: 1280px;
  --containerfluid: 3rem;
}
@media only screen and (max-width: 768px) {
  :root {
    --headerfixed: 50px;
  }
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --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: var(--primary);
}
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%;
  }
}

::-webkit-scrollbar-thumb {
  background: var(--primary) !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bgcolor);
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Graphik";
  font-weight: normal;
}

b {
  font-weight: 500;
}

h2 {
  font-family: "Graphik";
}

p {
  color: var(--text);
  font-family: "Graphik";
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

.svg path {
  transition: none;
}
.svg path[stroke], .svg path[fill=none] {
  stroke: currentColor;
}
.svg path[fill] {
  fill: currentColor;
}

.gray-bg {
  background: #F3F3F3;
}

.primary-bg {
  background: var(--primary);
}

.c-primary {
  color: var(--primary);
}

.c-text {
  color: var(--text);
}

.c-red {
  color: red;
}

.c-green, .green-color {
  color: #13bb75 !important;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

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;
}

.position-relative {
  position: relative;
}

.lh-normal {
  line-height: normal;
}

.cursor-pointer {
  cursor: pointer !important;
}

.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;
}

.social-icons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

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

h1 {
  font-size: 64px;
  line-height: 1.05;
  font-family: "Graphik";
}
@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;
}

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

.heading:has(h2 ~ h6) h3, .heading:has(h2 ~ h6) h2, .heading:has(h3 ~ h6) h3, .heading:has(h3 ~ h6) h2, .heading:has(h2 ~ h5) h3, .heading:has(h2 ~ h5) h2, .heading:has(h3 ~ h5) h3, .heading:has(h3 ~ h5) h2, .heading:has(h2 ~ p) h3, .heading:has(h2 ~ p) h2, .heading:has(h3 ~ p) h3, .heading:has(h3 ~ p) h2 {
  margin-bottom: 12px;
}
.heading h3, .heading h2 {
  font-size: 48px;
  line-height: 1.25;
  color: var(--black);
  font-family: "Graphik";
  font-weight: 600;
}
@media only screen and (max-width: 1230px) {
  .heading h3, .heading h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1152px) {
  .heading h3, .heading h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .heading h3, .heading h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading h3, .heading h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .heading h3, .heading h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 345px) {
  .heading h3, .heading h2 {
    font-size: 24px;
  }
}
.heading h3 span, .heading h2 span {
  color: var(--primary);
}
.heading h6 {
  font-size: 18px;
  line-height: 1.34;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .heading h6 {
    font-size: 16px;
  }
}
.heading h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.29;
}
@media only screen and (max-width: 520px) {
  .heading h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .heading p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 345px) {
  .heading p {
    font-size: 13px;
  }
}
.heading:not(.c-white) h6, .heading:not(.c-white) p {
  color: var(--text);
  font-weight: 400;
}
.heading.lh-1 h3, .heading.lh-1 h2 {
  line-height: 1;
}
.heading.h-medium h2, .heading.h-medium h3 {
  font-size: 36px;
}
@media only screen and (max-width: 991px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .heading.h-medium h2, .heading.h-medium h3 {
    font-size: 24px;
  }
}
.heading.h-small h2, .heading.h-small h3 {
  font-size: 20px;
  line-height: 25.8px;
}
.heading.c-white > *:not(.btn) {
  color: var(--white);
}

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

h5 {
  font-size: 24px;
  line-height: 1.167;
}
@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;
}

.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;
}

.justify-between {
  justify-content: space-between;
}

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

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

img {
  max-width: 100%;
}

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

input {
  font-family: inherit;
  font-size: inherit;
  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;
  display: block;
  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: var(--bgcolor);
}
.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 iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  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.4588235294);
  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;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.btn, .btn2 {
  height: var(--height);
  line-height: var(--height);
  align-items: center;
  display: inline-flex;
  overflow: hidden;
  text-transform: uppercase;
  color: var(--white);
  -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.w-100, .btn2.w-100 {
  width: 100%;
}

.btn {
  --padding: 18px;
  --height: 36px;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  line-height: 14.76px;
  letter-spacing: 0.1em;
  border-radius: 40px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
}
@media only screen and (max-width: 991px) {
  .btn {
    --padding: 13px;
    letter-spacing: 0;
  }
}
.btn:hover {
  border-color: var(--primary);
  background: none;
  color: var(--primary);
}
.btn:hover path {
  fill: var(--primary);
}
@media only screen and (max-width: 540px) {
  .btn {
    --height: 28px;
  }
}
.btn.btn-large, .btn.btn-medium {
  font-size: 16px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 991px) {
  .btn.btn-large, .btn.btn-medium {
    font-size: 13px;
  }
}
.btn.btn-large {
  --height: 42px;
  --padding: 38px;
}
@media only screen and (max-width: 991px) {
  .btn.btn-large {
    --padding: 15px !important;
    --height: 43px;
    position: relative;
  }
}
.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}
.btn.white {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.btn.white path {
  fill: var(--black);
}
.btn.white:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn.white:hover path {
  fill: var(--white);
}
.btn.primary-border {
  background: none;
  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);
}

.btn2 {
  gap: 27px;
  --height: 40px;
  border-bottom: 1px solid var(--white);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991px) {
  .btn2 {
    font-size: 13px;
  }
}
.btn2 path {
  fill: var(--white);
}
.btn2:hover {
  background: var(--white);
  color: var(--primary);
  padding: 0 20px;
  border-radius: 40px;
  gap: 12px;
}
.btn2:hover path {
  fill: var(--primary);
}

.btn-btn {
  width: 133px;
  height: 44px;
  gap: 10px;
  border-radius: 25px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.btn-btn:hover {
  background: none;
  border: 1px solid var(--primary);
}
.btn-btn span {
  font-weight: 600;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 70;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close {
  cursor: pointer;
}
.model .close:not(.btn, .close-video, .not-ab) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
  z-index: 1;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video, .not-ab) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video, .not-ab) path {
  stroke: var(--black);
}

.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);
}

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

.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;
}
@media only screen and (max-width: 540px) {
  .swiper-nav.center-full {
    display: 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.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  transition: 0.5s ease;
  color: var(--white);
}
.swiper-prev:not(.no-background) path[stroke], .swiper-prev:not(.no-background) path[fill=none], .swiper-next:not(.no-background) path[stroke], .swiper-next:not(.no-background) path[fill=none] {
  stroke: var(--black);
}
.swiper-prev:not(.no-background) path[fill], .swiper-next:not(.no-background) path[fill] {
  fill: var(--black);
}
.swiper-prev:hover:not(.swiper-button-disabled, .no-background), .swiper-next:hover:not(.swiper-button-disabled, .no-background) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.swiper-prev.secondary-border, .swiper-next.secondary-border {
  border-color: var(--secondary);
  background: none;
  color: var(--secondary);
}
.swiper-prev.secondary-border:hover:not(.swiper-button-disabled), .swiper-next.secondary-border:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  color: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
  color: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
  color: var(--secondary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--black);
  background: none;
  color: var(--text);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.swiper-prev.green-border, .swiper-next.green-border {
  border-color: var(--primary);
  background: none;
  color: var(--text);
}
.swiper-prev.green-border:hover:not(.swiper-button-disabled), .swiper-next.green-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.swiper-prev.gray-arrow, .swiper-next.gray-arrow {
  color: #888888;
}
.swiper-prev.black-arrow, .swiper-next.black-arrow {
  color: var(--black);
}
.swiper-prev.black-arrow:hover:not(.swiper-button-disabled), .swiper-next.black-arrow:hover:not(.swiper-button-disabled) {
  color: var(--secondary);
}
.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: 51px;
  --border: 1px;
  --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;
  }
}
@media only screen and (max-width: 540px) {
  .play-btn {
    --btnsize: 35px;
  }
}
.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 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Graphik";
  font-weight: normal;
}
@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;
    font-weight: bold;
  }
}
.website-content h2 {
  font-size: 34px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 0px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (max-width: 520px) {
  .website-content p, .website-content li {
    font-size: 14px;
  }
}
.website-content p b, .website-content li b {
  font-weight: 600;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 30px;
}
.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: 520px) {
  .website-content ul li::before {
    width: 6px;
  }
}
.website-content.website-content-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.website-content.website-content-medium h5, .website-content.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content.website-content-medium p, .website-content.website-content-medium ul {
  margin-bottom: 20px;
}

[data-video], [data-model], [data-scrollTo] {
  cursor: pointer;
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.mt-hdrfix {
  margin-top: var(--headerfixed);
}

.banner {
  position: relative;
}
.banner.center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
}
.banner.common-banner {
  padding: 90px 0;
}
.banner .bg {
  line-height: 0;
  height: 100vh;
}
@media only screen and (max-width: 1152px) {
  .banner .bg {
    height: 520px;
  }
}
@media only screen and (max-width: 520px) {
  .banner .bg {
    height: 320px;
  }
}
.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;
  bottom: 15%;
  z-index: 3;
}
@media only screen and (max-width: 520px) {
  .banner .banner-wrapper {
    bottom: 18%;
  }
}
.banner .content.content-white > *:not(.btn) {
  color: var(--white);
}
.banner .content.content-font2 h1 {
  font-family: "Graphik";
  color: var(--black-light);
  font-weight: 600;
  line-height: 1.25;
}
.banner .content.ttl-m h1 {
  font-size: 36px;
}
.banner .content.f-semibold h1 {
  font-weight: 600;
}
.banner .content .ico {
  line-height: 0;
  margin-bottom: 30px;
}
.banner .content .ico img {
  width: 68px;
}
.banner .content h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  max-width: 527px;
  font-family: "Graphik";
  font-weight: 600;
}
@media only screen and (max-width: 1152px) {
  .banner .content h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .content h1 {
    font-size: 34px;
  }
}
.banner .content h1:has(~ *) {
  margin-bottom: 10px;
}
.banner .content p {
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .banner .content p {
    font-size: 14px;
  }
}
.banner .content p:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h6 {
  font-size: 18px;
  line-height: 1.34;
  color: var(--text);
  margin-top: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .banner .content h6 {
    font-size: 14px;
  }
}
.banner .content h6:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h4 {
  font-size: 24px;
}
.banner .content h4:has(~ *) {
  margin-bottom: 10px;
}
.banner .content h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
.banner .content h5:has(~ *) {
  margin-bottom: 10px;
}

.swiper-pagination-bullets {
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .swiper-pagination-bullets {
    --swiper-pagination-bullet-size: 10px;
  }
}

.btn-div-wrap > *:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap > *:not(:last-child) {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

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

.slider-section .upper-sec {
  position: relative;
  padding-top: 4rem;
}
.slider-section .upper-sec .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.news-col {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2392156863);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure::before {
  animation: shine 0.4s linear;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
  width: 100%;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .ttl {
  color: var(--primary);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .desc {
  color: var(--black);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .date {
  color: var(--text);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}
.news-col .figure {
  height: 361px;
  line-height: 0;
  display: block;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.news-col .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.news-col .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.news-col .figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.2;
  transition: 0.5s ease;
  position: relative;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-col .figinfo {
  position: absolute;
  color: white;
  text-align: center;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-col .figinfo h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 10px;
}
.news-col .figinfo p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
  text-align: center;
}
.news-col .figcaption {
  --pdt: 18px;
  --pdlr: 24px;
  --pdb: -40px;
  --btnsize: 40px;
  --btnmargin: 27px;
  padding: var(--pdt) var(--pdlr) calc(var(--pdb) + var(--btnmargin) + var(--btnsize));
  position: relative;
  flex: 1;
}
.news-col .figcaption .btn-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
}
.news-col .figcaption .ttl {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 10px;
}
.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: 0.5s ease;
}
.news-col .figcaption .desc {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}
.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}
.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}
.product-item .figure {
  display: block;
  line-height: 0;
}
.product-item .figure img {
  width: 100%;
  transition: 1s ease;
}
.product-item .figcaption {
  padding-top: 30px;
  text-align: center;
}
.product-item .figcaption h4 {
  font-size: 32px;
}
.product-item .figcaption h5 {
  font-size: 24px;
}
.product-item .figcaption h4, .product-item .figcaption h5 {
  line-height: 1.167;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}
.breadcrumps li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.breadcrumps li::before {
  content: ">";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  font-size: 12px;
  font-family: monospace;
  color: var(--text);
}
.breadcrumps li:last-child::before {
  display: none;
}
.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    font-size: 12px;
    text-overflow: ellipsis;
  }
}
.breadcrumps li a.active {
  color: var(--black);
}
.breadcrumps li:not(:last-child) {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}
.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

.bg-circle {
  position: relative;
  --bgcolor: rgb(256 256 256);
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
}
.bg-circle::before {
  top: var(--top);
  right: var(--right);
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3000030518px);
}
.bg-circle .container {
  position: relative;
  z-index: 1;
}

.common-slider-1 .swiper {
  max-width: calc(100% - 45px);
}
@media only screen and (max-width: 540px) {
  .common-slider-1 .swiper {
    max-width: 100%;
  }
}

.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 1px 3px 1px rgba(60, 64, 67, 0.1490196078), 0px 1px 2px 0px rgba(60, 64, 67, 0.3019607843);
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
.information-pop {
  max-width: 70%;
  background: var(--white);
  transition: 0.7s ease;
  z-index: 9999;
  top: 50%;
  left: 50%;
  bottom: auto;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transform-origin: left center;
  scale: 0;
  max-height: 70vh;
  overflow: auto;
}
.information-pop::-webkit-scrollbar {
  width: 4px;
}
.information-pop::-webkit-scrollbar-track {
  box-shadow: unset;
  background: #fff;
}
.information-pop::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .information-pop {
    max-width: 100vw;
    max-height: 100vh;
    top: 0%;
    left: 0%;
    transform: none;
    border-radius: 0px;
  }
}
.information-pop::before {
  z-index: 2;
}
.information-pop.is-open {
  scale: 1;
}
.information-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 675px) {
  .information-pop .close {
    top: 20px;
    right: 20px;
  }
}
.information-pop .close path {
  stroke: var(--black) !important;
}
.information-pop .model-body {
  padding: 40px;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body {
    height: 100vh;
    padding: 50px 25px 50px;
  }
}
.information-pop .model-body .flex-box {
  display: flex;
  justify-content: start;
  gap: 30px;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box {
    display: block;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child {
  width: 30%;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child {
    width: 100%;
    margin-bottom: 30px;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child .user-image {
  position: sticky;
  top: 0;
  background: #D2EBFF;
  border-radius: 10px;
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .user-image {
    max-width: 100%;
    margin: auto;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35%;
}
@media only screen and (max-width: 768px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
    top: 5px;
    right: 5px;
  }
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
    top: 20px;
    right: 20px;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child .social-icon img {
  width: 80%;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
    margin-top: 0;
  }
}
.information-pop .model-body .flex-box .flex-box-item:last-child {
  width: 70%;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:last-child {
    width: 100%;
    text-align: center;
  }
}
.information-pop .model-body .flex-box .flex-box-item:last-child .user-name p {
  font-size: 22px;
  color: black;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .degination {
  border-bottom: 1px solid rgba(102, 102, 102, 0.5490196078);
  padding-bottom: 4px;
  margin-bottom: 15px;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .degination p {
  font-size: 14px;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .description-text p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:last-child .description-text p {
    text-align: center;
  }
}

.subscription-pop {
  max-width: 50%;
  background: var(--white);
  transition: 0.7s ease;
  z-index: 9999;
  top: 50%;
  left: 50%;
  bottom: auto;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transform-origin: left center;
  scale: 0;
  max-height: 70vh;
  overflow: auto;
}
.subscription-pop::-webkit-scrollbar {
  width: 4px;
}
.subscription-pop::-webkit-scrollbar-track {
  box-shadow: unset;
  background: #fff;
}
.subscription-pop::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .subscription-pop {
    max-width: 90%;
  }
}
.subscription-pop::before {
  z-index: 2;
}
.subscription-pop.is-open {
  scale: 1;
}
.subscription-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 675px) {
  .subscription-pop .close {
    top: 20px;
    right: 20px;
  }
}
.subscription-pop .close path {
  stroke: var(--black) !important;
}
.subscription-pop .model-body {
  padding: 30px 40px;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 675px) {
  .subscription-pop .model-body {
    padding: 50px 25px;
  }
}
.subscription-pop .model-body .heading h2 {
  font-size: 25px;
  text-align: left;
}
@media only screen and (max-width: 540px) {
  .subscription-pop .model-body .heading h2 {
    font-size: 20px !important;
  }
}
.subscription-pop .model-body .heading p {
  font-size: 14px;
}
.subscription-pop .model-body .form-grid {
  padding: 30px 0 0 0;
  --item: 2;
  --borderafter: var(--primary);
}
@media only screen and (max-width: 540px) {
  .subscription-pop .model-body .form-grid {
    --item: 1;
  }
}
.subscription-pop .model-body .form-grid button {
  opacity: 1;
  border-radius: 5px;
  padding: 8px 15px;
  color: var(--white);
  border: 1px solid var(--primary);
  align-items: center;
  background: var(--primary);
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .subscription-pop .model-body .form-grid button {
    margin: auto;
  }
}
.subscription-pop .model-body .form-grid button:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.Leadership-Team-slider .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: 73%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 540px) {
  .Leadership-Team-slider .swiper-nav.center-full {
    display: none;
  }
}
.Leadership-Team-slider .swiper-prev, .Leadership-Team-slider .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
  flex: 0 1 auto;
  --btn: 44px;
  height: var(--btn);
  width: var(--btn);
  border-radius: 50%;
  border: 1px solid #0A3481;
  transition: 0.5s ease;
  position: relative;
  background: white;
}
.Leadership-Team-slider .swiper-prev svg, .Leadership-Team-slider .swiper-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.Leadership-Team-slider .swiper-prev svg path, .Leadership-Team-slider .swiper-next svg path {
  transition: 0.5s ease;
  fill: #0A3481;
}
.Leadership-Team-slider .swiper-prev svg path:hover, .Leadership-Team-slider .swiper-next svg path:hover {
  fill: transprent;
}
.Leadership-Team-slider .swiper-nav .swiper-prev, .Leadership-Team-slider .swiper-nav .swiper-next {
  border: 1px solid var(--primary);
}
.Leadership-Team-slider .swiper-nav .swiper-prev svg path, .Leadership-Team-slider .swiper-nav .swiper-next svg path {
  fill: var(--primary);
}
.Leadership-Team-slider .swiper-nav .swiper-prev:hover svg path, .Leadership-Team-slider .swiper-nav .swiper-next:hover svg path {
  fill: var(--white);
}
.Leadership-Team-slider .Leadership-slider {
  padding: 50px 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .Leadership-slider {
    padding: 30px 0 0 0;
  }
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-prev {
  opacity: 50%;
  background: #F4F4F4;
  cursor: pointer;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-prev .flex-box {
  mix-blend-mode: Luminosity;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-prev .flex-box .flex-box-item:last-child figure::before {
  content: none;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-prev .flex-box .flex-box-item:last-child figure::after {
  content: none;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-next {
  opacity: 50%;
  background: #F4F4F4;
  cursor: pointer;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-next .flex-box {
  mix-blend-mode: Luminosity;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-next .flex-box .flex-box-item:first-child {
  display: none;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-next .flex-box .flex-box-item:last-child figure::before {
  content: none;
}
.Leadership-Team-slider .Leadership-slider .swiper-wrapper .swiper-slide-next .flex-box .flex-box-item:last-child figure::after {
  content: none;
}
.Leadership-Team-slider .swiper-slide {
  background: #D2EBFF;
  border-radius: 10px;
  overflow: hidden;
}
.Leadership-Team-slider .swiper-slide .flex-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box {
    flex-direction: column-reverse;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child {
  max-width: 65%;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child {
    max-width: 100%;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content {
  padding: 30px 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content {
    padding: 20px;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading {
    text-align: center;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 108%;
  width: 70px;
  height: 5px;
  background: var(--primary);
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading::before {
    content: none;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading p:first-child {
  font-weight: 600;
  color: var(--black);
  font-size: 20px;
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading p:last-child {
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .user-heading p:last-child {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 7px;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .desc {
    display: none;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .icon {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 0 0;
  flex-direction: column-reverse;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .icon {
    margin: 20px 0 0px 0;
    justify-content: center;
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:first-child .user-content .icon a {
  color: #5393C5;
  font-size: 16px;
  font-weight: 500;
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child {
  max-width: 35%;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child {
    max-width: 100%;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure {
  position: relative;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure {
    background: #e3e3e3;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  background: #ADDBFF;
  border-radius: 50%;
  bottom: -42%;
  right: -13%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure::before {
    content: none;
  }
}
.Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 3px solid #5393C5;
  border-radius: 50%;
  bottom: -48%;
  right: -19%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .Leadership-Team-slider .swiper-slide .flex-box .flex-box-item:last-child figure::after {
    content: none;
  }
}

@media only screen and (max-width: 540px) {
  .heading h2 {
    font-size: 34px !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }
}
@media only screen and (max-width: 540px) {
  .heading p {
    font-size: 14px;
    text-align: center;
  }
}

.about-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .about-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .about-banner {
    height: 40vh;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner {
    height: 60vh;
  }
}
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 50.48%, rgba(0, 0, 0, 0.98) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 45.79%, rgba(0, 0, 0, 0.95) 100%);
}
.about-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.about-banner .bg-wrapper {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.about-banner .bg-wrapper h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 18px;
  max-width: 500px;
  line-height: 1.1;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .about-banner .bg-wrapper h1 {
    font-size: 43px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .bg-wrapper h1 {
    font-size: 40px;
    margin-bottom: 7px;
    line-height: 1.1;
  }
}
.about-banner .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .about-banner .bg-wrapper p {
    font-size: 14px;
    margin: auto;
    color: rgba(255, 255, 255, 0.8196078431);
  }
}
.about-banner .scroll-btn {
  position: absolute;
  top: 85%;
  left: 49%;
  animation: scroll 1.5s ease-in-out infinite forwards;
}
.about-banner .scroll-btn p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 5%;
  text-align: center;
  text-transform: uppercase;
}

.banner-strip {
  background: #F2F2F2;
  padding: 25px;
}
.banner-strip .counter-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 991px) {
  .banner-strip .counter-flex {
    align-items: unset;
  }
}
@media only screen and (max-width: 768px) {
  .banner-strip .counter-flex {
    align-items: unset;
    justify-content: center;
    gap: 45px;
  }
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex {
    align-items: unset;
    justify-content: space-around;
    gap: 0;
  }
}
.banner-strip .counter-flex .counter-item {
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item {
    text-align: center;
  }
}
.banner-strip .counter-flex .counter-item h5 {
  font-weight: 500;
  font-size: 20px;
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item h5 {
    margin-bottom: 4px;
  }
}
.banner-strip .counter-flex .counter-item p {
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .banner-strip .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 540px) {
  .banner-strip .counter-flex .counter-item p {
    font-size: 10px;
    line-height: 1.3;
  }
}

.about-secA {
  padding: 100px 0 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-secA {
    padding: 60px 0 90px 0;
  }
}
.about-secA h2 {
  margin: 0 0 30px 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
}
.about-secA h2 span:nth-child(1) {
  color: var(--primary);
}
.about-secA h2 span:nth-child(2) {
  color: #666666;
}
.about-secA h2 span:nth-child(3) {
  color: #03052E;
}
@media only screen and (max-width: 540px) {
  .about-secA h2 {
    font-size: 34px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
  }
}
.about-secA .flex-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box {
    flex-direction: column;
    gap: 0px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box {
    flex-direction: column;
    gap: 0px;
  }
}
.about-secA .flex-box .flex-box-item:first-child {
  width: 47%;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:first-child {
    width: 100%;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul {
  border-left: 1px solid #5393C5;
  padding-left: 46px;
  margin-left: 20px;
  padding-top: 10px;
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:first-child ul {
    padding-left: 35px;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul strong {
  color: var(--text);
}
.about-secA .flex-box .flex-box-item:first-child ul a strong {
  color: var(--text);
}
.about-secA .flex-box .flex-box-item:first-child ul li:last-child {
  padding: 0 0 100px 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:first-child ul li:last-child {
    padding: 0 0 50px 0;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul li {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  text-align: justify;
  position: relative;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 991px) {
  .about-secA .flex-box .flex-box-item:first-child ul li {
    font-size: 14px;
    margin: 0 0 17px 0;
    text-align: left;
  }
}
.about-secA .flex-box .flex-box-item:first-child ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -54px;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:first-child ul li::before {
    left: -44px;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec {
  position: relative;
  position: sticky;
  top: 135px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec {
    margin-bottom: 0;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure {
  width: 500px;
  height: 415px;
  border-top-left-radius: 50px;
  line-height: 0;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure {
    width: 100%;
    height: 100%;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure video {
  transform: translate(-10%, 0%);
  border-top-left-radius: 50px;
}
@media only screen and (max-width: 1024px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure video {
    transform: translate(-4%, 5%);
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure video {
    transform: translate(0%, 0%);
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper {
  position: relative;
  display: inline-block;
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper img {
  transform: translate(-10%, 0%);
  border-top-left-radius: 50px;
}
@media only screen and (max-width: 1024px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper img {
    transform: translate(-4%, 5%);
  }
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper img {
    transform: translate(0%, 0%);
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 14%, rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
  border-top-left-radius: 50px;
}
@media only screen and (max-width: 991px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper::after {
    left: -19px;
    bottom: -14px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec figure .image-wrapper::after {
    left: 0;
    bottom: 0;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec .video-content {
  position: absolute;
  right: 10%;
  bottom: -2%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .video-content {
    bottom: 0;
    right: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .video-content {
    bottom: 0;
    right: 4px;
  }
  .about-secA .flex-box .flex-box-item:last-child .video-sec .video-content .play-btn {
    background: var(--white);
  }
  .about-secA .flex-box .flex-box-item:last-child .video-sec .video-content .play-btn::after {
    border-left: calc(var(--btnsize) / 5.6) solid #1C499B;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec .video-content h6 {
  color: #fff;
  font-size: 16px;
}
.about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
  position: absolute;
  background: #5393C5;
  width: 500px;
  height: 394px;
  top: 10%;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box .flex-box-item:last-child .video-sec .bg {
    width: 100%;
    height: 100%;
  }
}
.about-secA .flex-box .flex-box-item:last-child .video-sec video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 0;
}

.about-secB {
  background: #03052E;
}
.about-secB .bg {
  background-image: url(../../../assets/images/about/vision-mission.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  mix-blend-mode: plus-lighter;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg {
    height: 60vh;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .bg {
    height: 45vh;
  }
}
.about-secB .bg figcaption {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .about-secB .bg figcaption {
    left: 50%;
  }
}
.about-secB .bg .container {
  height: 100%;
  position: relative;
  max-width: 1180px;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container {
    height: 60vh;
  }
}
.about-secB .bg .container .tab-section {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
}
@media only screen and (max-width: 1024px) {
  .about-secB .bg .container .tab-section {
    left: 5%;
  }
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section {
    width: 100%;
    max-width: 90%;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.about-secB .bg .container .tab-section .tab-nav {
  display: flex;
  justify-content: start;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav {
    justify-content: center;
  }
}
.about-secB .bg .container .tab-section .tab-nav li {
  position: relative;
}
.about-secB .bg .container .tab-section .tab-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #5393C5;
}
.about-secB .bg .container .tab-section .tab-nav li a {
  color: var(--white);
  font-weight: 600;
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav li a {
    font-size: 30px;
  }
}
.about-secB .bg .container .tab-section .tab-nav li.active {
  position: relative;
}
.about-secB .bg .container .tab-section .tab-nav li.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #5393C5;
  transition: 0.5s ease;
}
.about-secB .bg .container .tab-section .tab-nav li.active a {
  color: #5393C5;
}
.about-secB .bg .container .tab-section .tab-nav-content {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 20px 0;
    max-width: 60%;
    margin: auto;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .bg .container .tab-section .tab-nav-content {
    padding: 20px 0;
    max-width: 100%;
    margin: auto;
  }
}
.about-secB .bg .container .tab-section .tab-nav-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6980392157);
  opacity: 0;
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .about-secB .bg .container .tab-section .tab-nav-content p {
    font-size: 16px;
    text-align: center;
  }
}
.about-secB .bg .container .tab-section .tab-nav-content .active p {
  opacity: 1;
}

.about-secC {
  height: 80vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center;
  transition: background 0.5s ease-in-out;
  position: relative;
  background-image: url("../../../assets/images/about/core-value/1.jpg");
}
@media only screen and (max-width: 540px) {
  .about-secC {
    height: 100vh;
  }
}
.about-secC: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: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.about-secC .heading {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .about-secC .heading {
    top: 60%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .heading {
    top: 15%;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .heading {
    display: none;
  }
}
.about-secC .heading h2 {
  font-weight: 600;
  font-size: 48px;
  text-align: center;
  color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .about-secC .heading h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secC .heading h2 {
    font-size: 40px;
  }
}
.about-secC .property-column {
  flex: 1 1 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: transform 0.6s ease-in-out, background 0.6s ease-in-out;
  padding: 20px;
  overflow: hidden;
}
.about-secC .property-column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.about-secC .property-column:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.29);
  border-right: 1px solid rgba(255, 255, 255, 0.29);
}
@media only screen and (max-width: 540px) {
  .about-secC .property-column:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.29);
  }
}
@media only screen and (max-width: 768px) {
  .about-secC .property-column {
    flex: 1 1 50%;
    min-height: 250px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secC .property-column {
    flex: 1 1 100%;
    min-height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.29);
  }
}
.about-secC .property-column h3 {
  transform: translateY(65%);
  margin-bottom: 10px;
  z-index: 2;
  transition: transform 0.6s ease, left 0.6s ease;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: var(--white);
}
.about-secC .property-column p {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.about-secC .property-column .property-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  z-index: 2;
  color: white;
  max-width: 400px;
}
.about-secC .property-column img, .about-secC .property-column svg {
  width: 70px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  z-index: 2;
}
.about-secC .property-column:hover::before {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.about-secC .property-column:hover .property-content {
  opacity: 1;
  transform: translateY(0);
  max-width: 400px;
}
.about-secC .property-column:hover img, .about-secC .property-column:hover svg {
  opacity: 1;
  transform: translateY(-20px);
  transition: opacity 1.5s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:hover img, .about-secC .property-column:hover svg {
    transform: translateY(-10px);
    width: 50px;
  }
}
.about-secC .property-column:hover h3 {
  transform: translateY(0%) !important;
}
@media only screen and (max-width: 991px) {
  .about-secC .property-column:hover h3 {
    transform: translateY(50px);
  }
}

.about-secD {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px 0;
}
@media only screen and (max-width: 540px) {
  .about-secD {
    padding: 50px 0;
  }
}
.about-secD .Leadership-Team-slider {
  width: 100%;
}
@media only screen and (max-width: 540px) {
  .about-secD .Leadership-Team-slider {
    margin-bottom: 0px;
    margin-top: 0;
  }
}
.about-secD .Leadership-Team-slider .heading {
  text-align: center;
  position: relative;
}
.about-secD .Leadership-Team-slider .heading h2 {
  font-weight: 300;
  font-size: 48px;
}
.about-secD .Leadership-Team-slider .heading p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
.about-secD .Leadership-Team-slider .heading .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .about-secD .Leadership-Team-slider .heading .swiper-nav {
    display: none;
  }
}
.about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-prev, .about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-next {
  border: 1px solid var(--primary);
}
.about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-prev svg path, .about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-next svg path {
  stroke: var(--primary);
}
.about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-prev:hover svg path, .about-secD .Leadership-Team-slider .heading .swiper-nav .swiper-next:hover svg path {
  stroke: var(--secondary);
}

.about-secE {
  padding: 0 0 20px 0;
}
@media only screen and (max-width: 540px) {
  .about-secE {
    padding: 20px 0 60px 0px;
  }
}
.about-secE .heading {
  text-align: center;
  position: relative;
}
.about-secE .heading h2 {
  font-weight: 300;
  font-size: 48px;
}
.about-secE .heading p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .about-secE .swiper-nav {
    display: none;
  }
}
.about-secE .swiper-nav.center-full {
  max-width: 100%;
}
.about-secE .swiper-nav .swiper-prev, .about-secE .swiper-nav .swiper-next {
  border: 1px solid var(--primary);
}
.about-secE .swiper-nav .swiper-prev svg path, .about-secE .swiper-nav .swiper-next svg path {
  stroke: var(--primary);
}
.about-secE .swiper-nav .swiper-prev:hover svg path, .about-secE .swiper-nav .swiper-next:hover svg path {
  stroke: var(--secondary);
}
.about-secE .swiper-slide a .desc {
  display: none;
}
.about-secE .about-slider1 {
  padding: 50px 0 0px 0;
}
@media only screen and (max-width: 540px) {
  .about-secE .about-slider1 {
    padding: 30px 0 0px 0;
  }
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide {
  background: transparent;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a figure {
  background: #D2EBFF;
  padding: 0;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a figure img {
  transition: 0.5s ease;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a figcaption {
  padding: 10px;
  text-align: center;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a figcaption h5 {
  font-weight: 600;
  font-size: 18px;
  color: black;
  margin-bottom: 4px;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a figcaption p {
  font-weight: 400;
  font-size: 16px;
}
.about-secE .about-slider1 .swiper-wrapper .swiper-slide a:hover figure img {
  transform: scale(1.1);
}

.about-secF {
  padding: 70px 0;
}
@media only screen and (max-width: 540px) {
  .about-secF {
    padding: 0px 0 70px 0px;
  }
}
.about-secF .heading {
  text-align: center;
  position: relative;
}
.about-secF .heading h2 {
  font-weight: 300;
  font-size: 48px;
}
.about-secF .heading p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}
.about-secF .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .about-secF .swiper-nav {
    display: none;
  }
}
.about-secF .swiper-nav .swiper-prev, .about-secF .swiper-nav .swiper-next {
  border: 1px solid var(--primary);
}
.about-secF .swiper-nav .swiper-prev svg path, .about-secF .swiper-nav .swiper-next svg path {
  stroke: var(--primary);
}
.about-secF .swiper-nav .swiper-prev:hover svg path, .about-secF .swiper-nav .swiper-next:hover svg path {
  stroke: var(--secondary);
}
.about-secF .swiper-nav.center-full {
  max-width: 100%;
}
.about-secF .about-slider2 {
  padding: 50px 0 0px 0;
}
@media only screen and (max-width: 540px) {
  .about-secF .about-slider2 {
    padding: 30px 0 0px 0;
  }
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide {
  background: transparent;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a figure {
  background: #F4F4F4;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a figure img {
  transition: 0.5s ease;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a figcaption {
  padding: 10px;
  text-align: center;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a figcaption h5 {
  font-weight: 600;
  font-size: 18px;
  color: black;
  margin-bottom: 4px;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a figcaption p {
  font-weight: 400;
  font-size: 16px;
}
.about-secF .about-slider2 .swiper-wrapper .swiper-slide a:hover figure img {
  transform: scale(1.1);
}
.about-secF .about-slider2 .swiper-wrapper .swiper-nav.center-full {
  max-width: 100%;
}/*# sourceMappingURL=about.css.map */