:root {
  /* -------------------------------- 
    Typography
    -------------------------------- */
  --font-family: 'Poppins', sans-serif;
  /* set base values */
  --text-base-size: 10px;
  /* type scale */
  --fs-bold: calc(1rem * 4.0);
  --fs-xxxl: calc(1rem * 3.6);
  --fs-xxl: calc(1rem * 2.4);
  --fs-xl: calc(1rem *2.2);
  --fs-md: calc(1rem * 2.0);
  --fs-md-small: calc(1rem * 1.8);
  --fs-body: calc(1rem * 1.6);
  --fs-sm: calc(1rem * 1.4);
  --fs-xs: calc(1rem * 1.2);
  /* font-weight */
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-medium: 500;
  --fw-regular: 400;
  --fw-light: 300;
  /* line-height */
  --lh-xxxl: calc(1rem * 9);
  --lh-xxl: calc(1rem * 5);
  --lh-xl-lg: calc(1rem * 6);
  --lh-md: calc(1rem * 4);
  --lh-body: calc(1rem * 2.4);
  --lh-body-sm: calc(1rem * 2.5);
  /* letter-spacing */
  --ls-body: .54px;
  /* -------------------------------- 
    Color Themes
    -------------------------------- */
  --primary: #065094;
  --secondary: #03060B;
  --tertiary: #AAB8C4;
  --complementary: #89C765;
  --dark-white: #FFFFFF;
  --disabled: #D1D1D1;
  /* -------------------------------- 
    Color shades
    -------------------------------- */
  --primary-surface: #065094;
  --secondary-surface: #EDF3F7;
  --content-surface: #4E637D;
  --label-surface: #8C8E94;
  /* -------------------------------- 
   Status Colors
    -------------------------------- */
  --status-error: #EC4339;
  --status-warning: #F9BC28;
  --status-info: #216CDD;
  --status-success: #49D492;
  /* -------------------------------- 
    Background Colors
    -------------------------------- */
  --info-bg: #E7EEF5;
  --sucess-bg: #E3FFE9;
  --warning-bg: #FFF5DB;
  --danger-bg: #FFE3E3;
}

.recenteUpdates_wrapper {
  background-color: var(--info-bg);
  padding: 1.3rem 0;
}

@media screen and (max-width: 992px) {
  .recenteUpdates_wrapper {
    display: none;
  }
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .left_section {
  display: flex;
  align-items: center;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .left_section p {
  color: var(--content-surface);
  line-height: 2.1rem;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .left_section .triangle {
  display: flex;
  margin: 0 1rem;
  width: 1.8rem;
  height: 1.8rem;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .left_section .triangle>img {
  width: 100%;
  height: 100%;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .left_section span {
  width: 77.5rem;
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .right_section {
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .recenteUpdates_wrapper .recenteUpdates_innerwrapper .right_section {
    margin-top: 1rem;
  }
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .right_section ul li a {
  color: var(--content-surface);
}

.recenteUpdates_wrapper .recenteUpdates_innerwrapper .right_section ul li:not(:last-child)::after {
  content: '';
  width: 0.6rem;
  height: 2.4rem;
  border: 0.1rem solid #A1B5C8;
  margin: 0 2rem;
}

@media screen and (max-width: 1200px) {
  .recenteUpdates_wrapper .recenteUpdates_innerwrapper .right_section ul li:not(:last-child)::after {
    margin: 0 1rem;
  }
}

header.header-bar {
  padding: 2.5rem 1.6rem;
  background-color: #fff;
  transition: .15s ease-in-out;
  -webkit-transition: .15s ease-in-out;
  -moz-transition: .15s ease-in-out;
  -ms-transition: .15s ease-in-out;
  -o-transition: .15s ease-in-out;
}

@media screen and (max-width: 992px) {
  header.header-bar {
    background-color: #F4F5FA;
    padding: 1.8rem 1.6rem;
    margin-bottom: 0.5rem;
  }
}

header.header-bar.scrolledTop {
  padding: 1.5rem 2rem;
}

header.header-bar .header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

header.header-bar .header-inner .nav_wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
}

header.header-bar .header-inner .nav_wrapper .nav_menu {
  display: inline-flex;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1400px) {
  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline {
    margin-right: 0.8rem;
  }
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item {
  padding:1rem 2.5rem;
  display: flex;
  align-items: center;
  color: var(--secondary);
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item:first-child {
  padding-left: 0px;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item:last-child {
  padding-right: 0px;
}

@media (max-width: 1700px) {
  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item {
    padding: 0.5rem 1rem;
  }
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item a {
  font-size: var(--fs-body);
  display: inline-block;
  color: var(--secondary);
  line-height: 2.4rem;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item .nav-link-text {
  font-size: var(--fs-body);
  display: inline-block;
  color: var(--secondary);
  line-height: 2.4rem;
  cursor: pointer;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .nav-link-text {
  color: var(--primary);
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item a.active {
  display: block;
  border-bottom: none;
  position: relative;
  color: var(--primary);
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item .dropdown {
  margin-left: 1.5rem;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item .dropdown .dropdown-toggle::after {
  border: unset;
  background-image: url("../assets/icons/down_arrow.svg");
  width: 1.4rem;
  height: 0.8rem;
  background-repeat: no-repeat;
  vertical-align: unset;
  margin-left: unset;
  background-position: center;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item .nav-link-text .dropdown-toggle {
  display: inline-block;
  margin-left: 0.5rem;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item .nav-link-text .dropdown-toggle::after {
  content: '';
  display: inline-block;
  border: unset;
  background-image: url("../assets/icons/down_arrow.svg");
  width: 1.4rem;
  height: 0.8rem;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center;
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active a {
  color: var(--primary);
}

header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .cmyk--dropdownmenu li a {
  color: var(--secondary);
}

@media (hover: hover) and (pointer: fine) {

  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .cmyk--dropdownmenu li:not([disabled]):hover,
  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .cmyk--dropdownmenu li:focus {
    background-color: var(--primary) !important;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
  }

  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .cmyk--dropdownmenu li:not([disabled]):hover a,
  header.header-bar .header-inner .nav_wrapper .nav_menu ul.menu-inline .nav_item.active .cmyk--dropdownmenu li:focus a {
    color: var(--dark-white) !important;
  }
}

header.header-bar .cmyk--header-mobile .cmyk--menu-box .cmyk--menu-btn:focus,
header.header-bar .cmyk--header-mobile .cmyk--menu-box .cmyk--menu-btn:active,
header.header-bar .cmyk--header-mobile .cmyk--menu-box .cmyk--menu-colse-btn:focus,
header.header-bar .cmyk--header-mobile .cmyk--menu-box .cmyk--menu-colse-btn:active {
  box-shadow: none;
  outline: none;
  border: unset;
}

header.header-bar .cmyk--header-mobile .cmyk--mobile-icon-wrap .cmyk--icon-btn {
  margin-left: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

header.header-bar .cmyk--header-mobile .cmyk--mobile-icon-wrap .cmyk--icon-btn:focus {
  box-shadow: none;
  outline: none;
}

header.header-bar .cmyk--header-mobile .cmyk--mobile-icon-wrap .cmyk--icon-btn img {
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  header.header-bar .cmyk--header-mobile .cmyk--mobile-icon-wrap .cmyk--icon-btn img:not([disabled]):hover {
    box-shadow: none !important;
    outline: none !important;
  }
}

.cmyk--dropdownmenu {
  filter: drop-shadow(0px 3px 11px #E4E8F1);
  border: unset;
  /* padding: 1rem 0; */
  /* padding-top: 2rem; */
  margin-left: -9.5rem !important;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  margin-top: 0;
}

.cmyk--dropdownmenu li .dropdown-item {
  padding: 0.8rem 1.5rem;
  color: var(--content-surface);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  background-color: transparent;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
}

.cmyk--dropdownmenu li .dropdown-item.active {
  background-color: var(--primary);
  color: var(--dark-white) !important;
}

@media (hover: hover) and (pointer: fine) {
  .cmyk--dropdownmenu li:not([disabled]):hover,
  .cmyk--dropdownmenu li:focus {
    background-color: var(--primary) !important;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
  }

  .cmyk--dropdownmenu li:not([disabled]):hover a,
  .cmyk--dropdownmenu li:focus a {
    color: var(--dark-white) !important;
  }
}

.cmyk--mobile-full-menu {
  overflow: auto;
  position: fixed;
  left: 0;
  top: 68px;
  z-index: 10;
  height: 100%;
  width: 100%;
  padding: 3rem 1.6rem 4rem;
  display: none;
  background-color: var(--primary);
  animation-name: entryAnimation;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
}

.hidden {
  display: none;
}

@keyframes entryAnimation {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
    -webkit-transform: translateY(-3rem);
    -moz-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    -o-transform: translateY(-3rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

.cmyk--copy-right-row {
  display: flex;
  margin-left: auto;
  border-top: 0.1rem solid #DAE0E8;
  padding: 2.5rem 0 2rem;
}

.cmyk--copy-right-row .footerinner_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .cmyk--copy-right-row .footerinner_wrapper {
    justify-content: center;
    margin-right: 1rem;
  }
}

.cmyk--copy-right-row .footerinner_wrapper ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
  .cmyk--copy-right-row .footerinner_wrapper ul {
    justify-content: center;
  }
}

.cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny {
  margin-right: 1rem;
}

@media screen and (max-width: 1200px) {
  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny {
    margin-right: 0;
  }
}

.cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li {
  color: var(--content-surface);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 2.1rem;
  display: flex;
  display: -webkit-flex;
}

/* @media screen and (max-width: 768px) {
  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li {
    font-size: var(--fs-xs);
  }
} */

.cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li::after {
  content: '';
  width: 0.1rem;
  height: 2.4rem;
  border: 0.1rem solid #A1B5C8;
  margin: 0 1rem;
}

.cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li:last-child::after {
  border: unset;
}

@media screen and (max-width: 992px) {
  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li:first-child::after {
    border: 0.1rem solid #A1B5C8;
    margin: 0 1rem;
  }

  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li::after {
    border: 0.1rem solid #A1B5C8;
    margin: 0 1rem;
  }
}

@media screen and (max-width: 514px) {
  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li:first-child::after {
    border: 0.1rem solid #A1B5C8;
    margin: 0 0.8rem;
  }

  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li::after {
    border: unset;
    margin: 0px;
  }
}

@media screen and (max-width: 374px) {
  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li:first-child::after {
    border: unset;
    margin: 0;
  }

  .cmyk--copy-right-row .footerinner_wrapper ul.copy_right_conteny li::after {
    border: unset;
    margin: 0px;
  }
}

.cmyk--copy-right-row .footerinner_wrapper ul li a {
  color: var(--content-surface);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 2.1rem;
}
/* 
@media screen and (max-width: 768px) {
  .cmyk--copy-right-row .footerinner_wrapper ul li a {
    font-size: var(--fs-xs);
  }
}

@media screen and (max-width: 768px) {
  .cmyk--copy-right-row .footerinner_wrapper ul li {
    font-size: var(--fs-xs);
  }
} */

.cmyk--mobile-menu-list .menu-mobile-item {
  margin-bottom: 1.5rem;
}

.cmyk--mobile-menu-list .menu-mobile-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.cmyk--mobile-menu-list .menu-mobile-item .menu_header {
  font-size: 18px;
  color: var(--dark-white);
  display: flex;
  font-weight: var(--fw-regular);
  align-items: center;
  line-height: 27px;
}

.cmyk--mobile-menu-list .menu-mobile-item .menu_header.active {
  color: var(--complementary);
  font-weight: var(--fw-bold);
}

.cmyk--mobile-menu-list .menu-mobile-item .menu_header .accordion-button {
  width: unset;
  margin-left: 1rem;
}

.cmyk--mobile-menu-list .menu-mobile-item .menu_header .accordion-button.collapsed {
  rotate: 180deg;
}

.cmyk--mobile-menu-list .menu-mobile-item .mobile_submenu {
  margin-left: 2.4rem;
}

.cmyk--mobile-menu-list .menu-mobile-item .mobile_submenu li {
  margin-top: 1rem;
}

.cmyk--mobile-menu-list .menu-mobile-item .mobile_submenu li .menu-mobile-item {
  font-size: 18px;
  color: var(--dark-white);
  font-weight: var(--fw-regular);
  align-items: center;
  line-height: 27px;
}

.cmyk--mobile-menu-list .menu-mobile-item .mobile_submenu li .menu-mobile-item.active {
  color: var(--complementary);
  font-weight: var(--fw-bold);
}


.footer_wrapper{
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .footer_wrapper {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 576px) {
  .footer_wrapper.mb-0 {
    margin-bottom: 0;
  }
}

.footer_wrapper .footer_list li {
  margin-bottom: 2rem;
}

.footer_wrapper .footer_list li:last-child {
  margin-bottom: 0;
}

.footer_wrapper .footer_list li:first-child {
  margin-top: 2rem;
}

.footer_wrapper .footer_list li.map_icon {
  margin-top: 3.5rem;
}

.footer_wrapper .footer_list li.map_icon>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .footer_wrapper .footer_list li {
    margin-bottom: 1rem;
  }

  .footer_wrapper .footer_list li:last-child {
    margin-bottom: 0;
  }

  .footer_wrapper .footer_list li:first-child {
    margin-top: 2rem;
  }
}

.footer_socialIcon {
  margin-bottom: 2rem;
  padding-left: 0;
}

@media screen and (max-width: 1200px) {
  .footer_socialIcon {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.footer_socialIcon a {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
}

.footer_socialIcon a svg path.social_fill {
  fill: #065094;
}

.footer_socialIcon a:first-child {
  margin-left: 0;
}

.footer_socialIcon a:last-child {
  margin-right: 0;
}

@media (hover: hover) and (pointer: fine) {
  .footer_socialIcon a:not([disabled]):hover {
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
  }

  .footer_socialIcon a:not([disabled]):hover svg path.social_fill {
    fill: #257abf;
  }
}

.slider_img {
  width: 48rem;
  height: 54rem;
  align-items: center;
  justify-content: center;
  border-radius: 7.4rem 7.4rem 14.1rem 14.1rem;
  background: var(--disabled);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.slider_img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .slider_img {
    width: 30rem;
    height: 34rem;
    border-radius: 5rem;
  }
}

.owl-carousel .owl-item img {
  width: unset !important;
}

.ourservicerCard {
  border: 0.1rem solid #DAE0E8;
  padding: 3.8rem 2.5rem;
  border-radius: 1rem;
  transition: .3s all ease-in-out;
  -webkit-transition: .3s all ease-in-out;
  -moz-transition: .3s all ease-in-out;
  -ms-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  margin: auto;
  height: 100%;
  box-shadow: unset;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .ourservicerCard {
    width: unset;
  }
}

.ourservicerCard svg path.svg_fill {
  fill: #4e637d;
}

.ourservicerCard svg path.svg_stroke {
  stroke: #4e637d;
}

.ourservicerCard h4 {
  color: var(--secondary);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1200px) {
  .ourservicerCard h4 {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

.ourservicerCard ul li {
  color: var(--content-surface);
}

@media (hover: hover) and (pointer: fine) {
  .ourservicerCard:not([disabled]):hover {
    box-shadow: 0px 17.79013px 23.12717px 0px rgba(191, 191, 191, 0.5);
    border: transparent;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
  }

  .ourservicerCard:not([disabled]):hover svg path.svg_fill {
    fill: #065094;
  }

  .ourservicerCard:not([disabled]):hover svg path.svg_stroke {
    stroke: #065094;
  }

  .ourservicerCard:not([disabled]):hover h4 {
    color: var(--primary);
  }

  .ourservicerCard:not([disabled]):hover ul li {
    color: var(--content-surface);
  }

  .ourservicerCard:not([disabled]):hover ul li::after {
    background-color: var(--content-surface);
  }
}

.no_effects {
  margin: auto;
  height: 100%;
  line-height: 1.5rem;
}

.blog_wrapper .blog_content {
  margin-bottom: 5rem;
  width: 78.2rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .blog_wrapper .blog_content {
    margin-bottom: 3rem;
    width: unset;
  }
}

.blog_wrapper .row {
  margin-bottom: 4rem;
}

.blog_card {
  border: 0.1rem solid #DAE0E8;
  padding: 1.8rem 1.8rem 4rem ;
  border-radius: 1rem;
  text-align: left;
}

.blog_card .blog_banner {
  width: 100%;
  height: 20.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--disabled);
  overflow: hidden;
}

.blog_card .blog_banner>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog_card>h4 {
  margin-top: 2.6rem;
  margin-bottom: 1.5rem;
}

.blog_card>p {
  margin-bottom: 2rem;
}

.blog_card>span {
  color: #A1B5C8;
}

@media screen and (max-width: 768px) {
  .blog_card {
    padding: 1.8rem 1.8rem 2rem;
  }

  .blog_card>h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}

.about_us_wrapper {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .about_us_wrapper {
    margin-bottom: 0px;
  }
}

.about_us_wrapper .about-us--image {
  width: 60rem;
  height: 37.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--disabled);
  overflow: hidden;
  border-radius: 1.8rem 12.4rem 1.8rem 1.8rem;
}

@media screen and (max-width: 1200px) {
  .about_us_wrapper .about-us--image {
    width: 45rem;
    height: 30rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .about_us_wrapper .about-us--image {
    width: 100%;
    height: 100%;
  }
}

.about_us_wrapper .about-us--image>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about_us_wrapper .dotted_images {
  position: absolute;
  right: 60px;
  bottom: -60px;
  z-index: -1;
}

@media screen and (max-width: 1600px) {
  .about_us_wrapper .dotted_images {
    right: 1rem;
  }
}

@media screen and (max-width: 1400px) {
  .about_us_wrapper .dotted_images {
    right: -20px;
  }
}

@media screen and (max-width: 1200px) {
  .about_us_wrapper .dotted_images {
    display: none;
  }
}

.about-us--content_wrapper>p {
  width: 60rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .about-us--content_wrapper>p {
    width: unset;
    /* -webkit-box-orient: unset;
    -webkit-line-clamp: unset; */
  }
}

.about-us--content_wrapper button {
  margin-top: 3.8rem;
}

/* @media screen and (max-width: 1200px) {
  .about-us--content_wrapper button {
    margin-top: 25px;
  }
} */

.video_wrapper .education_video {
  width: 100%;
  height: 53rem;
  border-radius: 1rem;
  border: 1rem solid #CED6E0;
}

.video_wrapper .education_video>iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_wrapper p {
  margin-top: 2.5rem;
}

.our_partners--col {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 1rem solid #EDF3F7;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--disabled);
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 2;
}

.our_partners--col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmyk--button-text.cmyk--primary-surface img{
  width:auto;
  height:auto;
}

.partners_name {
  margin-top: 2.7rem;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 1200px) {
  .partners_name {
    margin-bottom: 3rem;
  }
}

.our_partner_modal {
  padding: 2rem;
}

.our_partner_modal .modal-content {
  border-radius: 2rem;
}

.our_partner_modal .modal-content .modal-header {
  border: unset;
  justify-content: end;
  padding: 1.3rem 3rem 1.2rem;
  z-index: 5;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .our_partner_modal .modal-content .modal-header {
    padding: 2rem 2rem 0px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.our_partner_modal .modal-content .modal-header .our_partner_modalclose {
  background-color: transparent;
  border: unset;
}

.our_partner_modal .modal-content .modal-body {
  padding: 0 2rem 6rem;
}

@media screen and (max-width: 1200px) {
  .our_partner_modal .modal-content .modal-body {
    padding: 2.5rem 2rem;
  }
}

.our_partner_modal .modal-content .modal-body .our_partners--image {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  border: 1rem solid #EDF3F7;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--disabled);
  overflow: hidden;
  margin: auto;
}

.our_partner_modal .modal-content .modal-body .our_partners--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .our_partner_modal .modal-content .modal-body .our_partners--image {
    width: 30rem;
    height: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .our_partner_modal .modal-content .modal-body .our_partners--image {
    width: 24rem;
    height: 24rem;
  }
}

.our_partner_modal .modal-content .modal-body .modal-title {
  margin-top: 2.7rem;
}

@media screen and (max-width: 1200px) {
  .our_partner_modal .modal-content .modal-body .modal-title {
    margin-top: 2rem;
  }
}

.disclaimer_modal {
  padding: 2rem;
}

.disclaimer_modal .modal-content {
  border-radius: 2rem;
  padding: 3rem 2rem 4rem;
}

@media screen and (max-width: 1200px) {
  .disclaimer_modal .modal-content {
    padding: 2rem;
  }
}

.disclaimer_modal .modal-content .modal-header {
  padding: 0;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #A1B5C8;
}

.disclaimer_modal .modal-content .modal-header .disclaimer_modalclose {
  background-color: transparent;
  border: unset;
}

.disclaimer_modal .modal-content .modal-body {
  padding: 2.5rem 0;
}

@media screen and (max-width: 768px) {
  .disclaimer_modal .modal-content .modal-body {
    overflow-wrap: anywhere;
  }
}

.disclaimer_modal .modal-content .modal-footer {
  justify-content: flex-start;
  border-top: unset;
  padding: 0;
}

/* Hero Banner - Full Width */
.hero-banner {
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
}

.hero-banner-content h1 {
  font-size: 4.8rem;
  font-weight: var(--fw-bold);
  color: var(--dark-white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-content p {
  font-size: 2rem;
  color: var(--dark-white);
  font-weight: var(--fw-medium);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

@media screen and (max-width: 992px) {
  .hero-banner-wrapper {
    height: 50vh;
    min-height: 300px;
  }

  .hero-banner-content h1 {
    font-size: 3.6rem;
  }

  .hero-banner-content p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 576px) {
  .hero-banner-wrapper {
    height: 40vh;
    min-height: 250px;
  }

  .hero-banner-content h1 {
    font-size: 2.8rem;
  }

  .hero-banner-content p {
    font-size: 1.4rem;
  }
}

.banner_owl_carousel .banner_wrapper .banner_right {
  width: 61rem;
  margin-top: -10rem;
}

@media screen and (max-width: 1200px) {
  .banner_owl_carousel .banner_wrapper .banner_right {
    width: unset;
    margin-top: unset;
  }
}



/* @media screen and (max-width: 768px) {
  .banner_owl_carousel .banner_wrapper .banner_right h1 {
    font-size: var(--fs-md);
  }
} */

.banner_owl_carousel .banner_wrapper .banner_right p {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 2.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .banner_owl_carousel .banner_wrapper .banner_right p {
    margin-bottom: 3rem;
    /* -webkit-box-orient: unset;
    -webkit-line-clamp: unset;
    overflow: unset; */
  }
} 

 @media screen and (max-width: 1200px) {
  .banner_owl_carousel .banner_wrapper .banner_right {
    margin-bottom: 3rem;
  }
}

.banner_owl_carousel .banner_wrapper .banner_left {
  justify-content: end;
  display: flex;
  position: relative;
  z-index: 1;
  padding-right: 6.5rem;
}

@media screen and (max-width: 1200px) {
  .banner_owl_carousel .banner_wrapper .banner_left {
    justify-content: center !important;
    padding-right: 0;
  }
}

.banner_owl_carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: 3rem;
}

.banner_owl_carousel .owl-dots .owl-dot span {
  margin-right: 2rem;
  background: #DAE0E8;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0;
}

.banner_owl_carousel .owl-dots .owl-dot.active span {
  background: var(--primary);
}

@media screen and (max-width: 1200px) {
  .banner_owl_carousel .owl-dots {
    position: unset !important;
    margin-top: 3rem !important;
  }
}

@media screen and (max-width: 1200px) {
  .banner_owl_carousel .banner_left {
    justify-content: center;
  }
}

.sticky-icon {
  position: fixed;
  top: 35%;
  right: 0%;
  width: 30rem;
  display: flex;
  flex-direction: column;
  z-index: 6;
}

@media screen and (max-width: 992px) {
  .sticky-icon {
    display: none;
  }
}

.sticky-icon a {
  transform: translate(24rem, 0px);
  -webkit-transform: translate(24rem, 0px);
  -moz-transform: translate(24rem, 0px);
  -ms-transform: translate(24rem, 0px);
  -o-transform: translate(24rem, 0px);
  border-radius: 6rem 0 0 6rem;
  margin: 0.5rem;
  text-decoration: none;
  padding: 0.4rem;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  background-color: var(--primary-surface);
  color: var(--dark-white);
  display: flex;
  align-items: center;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
}

@media (hover: hover) and (pointer: fine) {
  .sticky-icon a:not([disabled]):hover {
    transform: translate(6rem, 0px);
    -webkit-transform: translate(6rem, 0px);
    -moz-transform: translate(6rem, 0px);
    -ms-transform: translate(6rem, 0px);
    -o-transform: translate(6rem, 0px);
    margin-right: 0;
  }
}

.sticky-icon a .social-icon {
  width: 4.2rem;
  height: 4.2rem;
  background-color: #074680;
  border: 1rem solid #074680;
  border-radius: 50%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  margin-right: 1.5rem;
}

.sticky-icon a img {
  width: 100%;
  height: 100%;
}

.circle_dotted_bg {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 1600px) {
  .circle_dotted_bg {
    left: 8%;
  }
}

@media screen and (max-width: 1400px) {
  .circle_dotted_bg {
    left: 2%;
  }
}

@media screen and (max-width: 1200px) {
  .circle_dotted_bg {
    display: none;
  }
}

.dotted_bg {
  position: absolute;
  top: 50%;
  z-index: 6;
  right:3.5%;
}

.aboutus_dotted_bg{
  position: absolute;
  top: 50%;
  z-index: 6;
  right:0;
}


@media screen and (max-width: 1200px) {
  .aboutus_dotted_bg {
    display: none;
  }
}


@media screen and (max-width: 1200px) {
  .dotted_bg {
    display: none;
  }
}

.latest_publication_wrapper {
  background-color: var(--info-bg);
  border-radius: 1rem;
  padding: 0 7rem;
  height: 41.7rem;
  margin-bottom: 18rem;
}

.latest_publication_wrapper .latest_publication_left p {
  margin-bottom: 3rem;
}

.latest_publication_wrapper .latest_publication_right {
  position: relative;
}

.latest_publication_wrapper .latest_publication_right .latest_publication_img {
  position: absolute;
  top: 4.7rem;
  left: 0;
}

.latest_publication_wrapper .latest_publication_right .latest_publication_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .latest_publication_wrapper {
    display: none;
  }
}

.latest_publication_wrappermobile {
  display: none;
}

@media screen and (max-width: 1200px) {
  .latest_publication_wrappermobile {
    display: block;
  }

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

  .latest_publication_wrappermobile .latest_publication_left {
    background-color: var(--info-bg);
    border-radius: 1rem;
    padding: 2rem 4rem;
  }
}

@media screen and (max-width: 1200px) and (max-width: 768px) {
  .latest_publication_wrappermobile .latest_publication_left {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

@media screen and (max-width: 1200px) {
  .latest_publication_wrappermobile .latest_publication_left p {
    margin-bottom: 4rem;
  }
}

.partner_bg {
  position: absolute;
  top: 12%;
  left: 1.5rem;
}

@media screen and (max-width: 1200px) {
  .partner_bg {
    display: none;
  }
}

.blog_bg {
  position: absolute;
  right: 1rem;
  top: 0;
}

@media screen and (max-width: 1200px) {
  .blog_bg {
    display: none;
  }
}

.contact_us_wrapper {
  justify-content: end;
  display: grid;
  margin-top: 7rem;
  margin-bottom: 7rem;
}

@media screen and (max-width: 1400px) {
  .contact_us_wrapper {
    display: grid;
    margin-top: 3rem;
    margin-bottom: 3rem;
    justify-content: unset;
  }
}

@media screen and (max-width: 1200px) {
  .contact_us_wrapper {
    justify-content: center;
    margin-top: 5rem;
  }
}

@media screen and (max-width: 1400px) {
  .contact_us_wrapper .floating-form {
    width: 360px;
  }
}

@media screen and (max-width: 1200px) {
  .contact_us_wrapper .floating-form {
    width: 360px;
    margin-left: unset;
  }
}

@media screen and (max-width: 768px) {
  .contact_us_wrapper .floating-form {
    width: 320px;
  }
}

/* @media screen and (max-width: 576px) {
  .contact_us_wrapper .floating-form {
    width: 100%;
  }
} */

.text_center_mb {
  margin-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .text_center_mb {
    margin-bottom: 3rem;
    width: unset;
  }
}

.contact_us_container {
  border-bottom: 0.1rem solid #DAE0E8;
  margin-bottom: 7rem;
  padding-bottom: 0px;
  overflow-x: hidden;
}

@media screen and (max-width: 576px) {
  .contact_us_container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.contact_us_container .row {
  vertical-align: middle;
}

@media screen and (max-width: 1400px) {
  .contact_us_container .row {
    margin-bottom: 0px;
  }
}

.contact_us_container .row .map_wrapper {
  width: 86rem;
  height: 57.6rem;
}

@media screen and (max-width: 1400px) {
  .contact_us_container .row .map_wrapper {
    width: unset;
  }
}

@media screen and (max-width: 768px) {
  .contact_us_container .row .map_wrapper {
    width: unset;
    height: 25rem;
  }
}

.contact_us_container .row .map_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 576px) {
  .contact_footer ul {
    justify-content: center !important;
  }
}

.contact_footer ul li {
  padding: 0 3rem;
  margin-bottom: 3rem;
}

.contact_footer ul li .social_icon {
  width: 6.3rem;
  height: 6.3rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin: auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .contact_footer ul li .social_icon {
    width: 5rem;
    height: 5rem;
  }

  .contact_footer ul li .social_icon img {
    width: 3rem;
    height: 3rem;
  }
}

.contact_footer ul li .address_list {
  width: 30.3rem;
}

@media screen and (max-width: 768px) {
  .contact_footer ul li {
    width: 30rem;
  }

  .contact_footer ul li .address_list {
    width: unset;
  }
}

.page_section {
  overflow-x: hidden;
}

.page_section .circle_bg {
  position: absolute;
  top: 55%;
  z-index: 6;
  right: -3rem;
}

@media screen and (max-width: 1200px) {
  .page_section .circle_bg {
    display: none;
  }
}

.page_section .about-us--content p {
  overflow: unset;
  -webkit-line-clamp: unset;
}

.conatct_us_left_section {
  width: 100rem;
  min-height: 57.6rem;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 1600px) {
  .conatct_us_left_section {
    width: 82rem;
  }
}

@media screen and (max-width: 1400px) {
  .conatct_us_left_section {
    width: 78rem;
  }
}

@media screen and (max-width: 1200px) {
  .conatct_us_left_section {
    width: 100%;
    height: 30rem;
    min-height: unset;
  }
}

.conatct_us_left_section .conatct_us_innerwrapper {
  position: absolute;
  left: -28%;
  width: 120%;
  height: 100%;
  object-fit: cover;
  right: 0;
}

@media screen and (max-width: 1600px) {
  .conatct_us_left_section .conatct_us_innerwrapper {
    left: -20%;
  }
}

@media screen and (max-width: 1200px) {
  .conatct_us_left_section .conatct_us_innerwrapper {
    position: unset;
    width: 100%;
    height: 100%;
  }
}

.divider_map {
  border-top: 0.1rem solid #DAE0E8;
  border-bottom: 0.1rem solid #DAE0E8;
  margin-bottom: 13rem;
}

@media screen and (max-width: 1200px) {
  .divider_map {
    border-top: unset;
    border-bottom: unset;
    margin-bottom: 3rem;
  }
}

.partners_wrapper {
  margin-bottom: 3rem;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .partners_wrapper {
    margin-bottom: 0px;
  }
}

.career-section-content {
  margin-bottom: 4rem;
}

.popup-open{
  overflow: hidden;
}


.career-section-content p {
  margin-bottom: 1.2rem;
}

.career-section-content:last-child {
  margin-bottom: 0;
}

.carerr_modal {
  padding: 2rem;
  width: 78rem;
}

@media screen and (max-width: 768px) {
  .carerr_modal {
    width: unset;
  }
}

.carerr_modal .modal-content {
  border-radius: 2rem;
  padding: 3rem 2rem 4rem;
}

@media screen and (max-width: 1200px) {
  .carerr_modal .modal-content {
    padding: 2rem;
  }
}

.carerr_modal .modal-content .modal-header {
  padding: 0;
  border-bottom: unset;
  justify-content: end;
  margin-left: auto;
}

.carerr_modal .modal-content .modal-header .carerr_modalclose {
  background-color: transparent;
  border: unset;
}

.carerr_modal .modal-content .modal-body {
  padding: 2.5rem 0;
  width: 43rem;
  margin: auto;
}

@media screen and (max-width: 992px) {
  .carerr_modal .modal-content .modal-body {
    width: 100%;
  }

  .carerr_modal .modal-content .modal-body .floating-form {
    width: 100%;
  }
}

.carerr_modal .modal-content .modal-footer {
  justify-content: flex-start;
  border-top: unset;
  padding: 0;
}

.careerform_wrapper {
  display: grid;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  .careerform_wrapper {
    display: grid;
  }
}

@media screen and (max-width: 1200px) {
  .careerform_wrapper {
    justify-content: unset;
  }
}

.about_us_outerwrapper {
  padding-top: 7rem;
}

@media screen and (max-width: 1200px) {
  .about_us_outerwrapper {
    padding-top: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .about_us_outerwrapper {
    padding-top: 3rem;
  }
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-lg-20 {
  margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {
  .mb-lg-20 {
    margin-bottom: 0px;
  }
}

.our_services_outerwrapper {
  padding-top: 9rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 1200px) {
  .our_services_outerwrapper {
    padding-top: 3rem;
    padding-bottom: 0;
  }
}

.nav_item.dropdown {
  position: relative;
}

.nav_item.dropdown:hover > .cmyk--dropdownmenu {
  display: block;
  margin-left: 0 !important;
  left: 0;
  top: 100%;
  transition:.3s ease-in;
  -webkit-transition:.3s ease-in;
  -moz-transition:.3s ease-in;
  -ms-transition:.3s ease-in;
  -o-transition:.3s ease-in;
}

.dropdown:hover .cmyk--dropdownmenu {
  display: block;
  margin-left: -9.5rem !important;
  transition:.3s ease-in;
  -webkit-transition:.3s ease-in;
  -moz-transition:.3s ease-in;
  -ms-transition:.3s ease-in;
  -o-transition:.3s ease-in;
}
  /* animation: growOut 300ms ease-in-out forwards;
  transform-origin: top center; */

@keyframes growOut {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
  
}

.cmyk--dropdownmenu {
  display: none;
}

.sucess_message {
  white-space: nowrap;
  text-align: center;
}

/* @media screen and (max-width: 1200px) {
  .sucess_message {
    margin-top: 5rem;
  }
} */

@media screen and (max-width: 768px) {
  .sucess_message {
    white-space: unset;
  }
}

.file_upload {
  border: 0.1rem dashed #DAE0E8;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-radius: 0.4rem;
}

.file_upload label.file_btn {
  width: 2.6rem;
  height: 2.6rem;
  background-color: #EDF3F7;
  border-radius: 50%;
  text-align: center;
  justify-content: end;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.file_upload .file_close{
  width: 26px;
  height: 26px;
  background-color: #EDF3F7;
  border-radius: 50%;
  text-align: center;
  justify-content: end;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.file_upload .file_close img {
  width: 14px;
  height: 16px;
}

.file_upload label.file_btn img {
  width: 12px;
  height: 14px;
}

.file_upload #file-chosen {
  /* margin-left: 0.3rem; */
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--label-surface);
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  font-family: var(--font-family);
}


.file_upload input{
  opacity: 0;
  z-index: 1;
    width: 100%;
}

.hint {
  color: var(--label-surface);
  margin-left: 2.5rem;
  margin-bottom: 2rem;
}

/* @media screen and (max-width: 768px) {
  .banner_section {
    padding-bottom: 5px;
  }
} */

@media screen and (max-width: 1400px) {
  .contactus_sucesspoup {
    display: none;
  }
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--primary);
}

.page_section .about-us--content .blog_content {
  width: 60rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body,
html {
  width: 100%;
  font-family: var(--font-family);
  font-size: var(--text-base-size);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-light);
  background: var(--dark-white);
}

@media screen and (max-width: 1600px) {
  body,
  html {
    font-size: 9.5px;
  }
}


@media screen and (max-width: 1400px) {
  body,
  html {
    font-size: 9px;
  }
}


@media screen and (max-width: 1200px) {
  body,
  html {
    font-size: 8.5px;
  }
}


@media screen and (max-width: 992px) {
  body,
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 768px) {
  body,
  html {
    font-size: 7.9px;
  }
}

@media screen and (max-width: 576px) {
  body,
  html {
    font-size: 7.8px;
  }
}

@media screen and (max-width: 420px) {
  body,
  html {
    font-size: 7.6px;
  }
}

@media screen and (max-width: 320px) {
  body,
  html {
    font-size: 7.4px;
  }
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul,
ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: var(--primary-lighter);
  color: var(--dark-black);
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: var(--primary-lighter);
  color: var(--dark-black);
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 0.1rem solid var(--text-light);
  margin: 1rem 0;
  padding: 0;
}

input,
select,
button,
a {
  vertical-align: middle;
  outline: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

code {
  width: 100%;
  padding: 2rem;
  display: block;
  font-size: var(--fs-sm);
  background: var(--primary-lighter);
}

.font-primary {
  font-family: var(--font-primary) !important;
}

.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.underline:after {
  content: "";
  top: 100%;
  left: 0;
  position: absolute;
  width: 6rem;
  height: 0.4rem;
  background-color: #A1B5C8;
}

.underline.footer_underline {
  /* margin-bottom: 2rem; */
  padding-bottom: 0;
}

.underline.footer_underline:after {
  left: 0;
  width: 4rem;
  height: 0.3rem;
  margin-top: 2rem;
}

.underline.textunderline_center:after {
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  width: 6rem;
  height: 0.4rem;
  background-color: #A1B5C8;
}

.cmyk--fw-bold,
b,
strong {
  font-weight: var(--fw-bold) !important;
}

.cmyk--fw-semi-bold {
  font-weight: var(--fw-semi-bold) !important;
}

.cmyk--fw-medium {
  font-weight: var(--fw-medium) !important;
}

.cmyk--fw-regular {
  font-weight: var(--fw-regular) !important;
}

.cmyk--fw-light {
  font-weight: var(--fw-light) !important;
}

a {
  text-decoration: none;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

/* -------------------------------- 
Media Breakpoints
-------------------------------- */
@media screen and (min-width: 1700px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1440px;
  }
}

@media screen and (max-width: 1700px) and (min-width: 1600px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1440px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1280px;
  }
}

@media screen and (max-width: 1400px) and (min-width: 1200px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1150px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(100% - 3rem);
  }
}

/* -------------------------------- 
Text 
-------------------------------- */
.text--fs-xs {
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
}

.text--fs-sm {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: 2.1rem;
}

.text--fs-body {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 2.4rem;
}

h6,
.text--fs-md-small {
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
}

h5,
.text--fs-md {
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
}

h4,
.text--fs-xl {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi-bold);
}

h3,
.text---fs-xxl {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
  line-height: normal;
}

h2,
.text--fs-xxxl {
  font-size: var(--fs-xxxl);
  font-weight: var(--fw-semi-bold);
}

/* @media screen and (max-width: 576px) {

  h2,
  .text--fs-xxxl {
    font-size: 2rem;
  }
} */

h1,
.text--fs-bold {
  font-size: var(--fs-bold);
  font-weight: var(--fw-bold);
}

/* @media screen and (max-width: 1200px) {

  h1,
  .text--fs-bold {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 992px) {

  h1,
  .text--fs-bold {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 768px) {

  h1,
  .text--fs-bold {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 576px) {

  h1,
  .text--fs-bold {
    font-size: 3.0rem;
  }
}

@media screen and (max-width: 320px) {

  h1,
  .text--fs-bold {
    font-size: 3.0rem;
  }
} */

/* -------------------------------- 
Colors
-------------------------------- */
.cmyk--primary {
  color: var(--primary) !important;
}

.cmyk--secondary {
  color: var(--secondary) !important;
}

.cmyk--content-surface {
  color: var(--content-surface);
}

.cmyk--primary-surface {
  color: var(--primary-surface);
}

.cmyk--text-light-bg {
  background-color: var(--text-light);
}

.cmyk--text-dark-bg {
  background-color: var(--text-dark);
}

.cmyk--status-error-bg {
  background-color: var(--status-error);
}

.cmyk--status-error {
  color: var(--status-error);
}

.cmyk--status-warning-bg {
  background-color: var(--status-warning);
}

.cmyk--status-info-bg {
  background-color: var(--status-info);
}

.cmyk--status-success-bg {
  background-color: var(--status-success);
}

.cmyk--dark-black-bg {
  background-color: var(--dark-black);
}

.cmyk--dark-white-bg {
  background-color: var(--dark-white);
}

.cmyk--truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -------------------------------- 
Branding
-------------------------------- */
.cmyk--branding {
  width: 40rem;
  display: block;
}
/* 
@media screen and (max-width: 1400px) {
  .cmyk--branding {
    width: 300px;
  }
} */

/* @media screen and (max-width: 992px) {
  .cmyk--branding {
    width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .cmyk--branding {
    width: 240px;
  }
} */

.cmyk--branding>img {
  width: 100%;
  height: auto;
  display: block;
}

.cmyk--branding.cmyk--branding-w-bg {
  width: 31.5rem;
  padding: 3.3rem 4.1rem;
}

/* -------------------------------- 
Buttons
-------------------------------- */
.cmyk--button {
  display: flex;
  justify-self: flex-start;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 3rem;
  line-height: 2.7rem;
  border: unset;
  border-radius: 18rem;
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  overflow: hidden;
  cursor: pointer;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .cmyk--button {
    padding: 1.2rem 2rem;
  }
}

.cmyk--button.cmyk--button-primary {
  background-color: var(--primary);
  color: var(--dark-white);
}

.cmyk--button.cmyk--button-primary.cmyk--button-primaryicon {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.cmyk--button.cmyk--button-primary.cmyk--button-primaryicon>span {
  pointer-events: none;
  cursor: not-allowed;
  margin-right: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .cmyk--button.cmyk--button-primary:not([disabled]):hover {
    background-color: #1170C8;
  }
}

.cmyk--button.cmyk--button-primary:not([disabled]):focus {
  background-color: #1170C8;
}

.cmyk--button.cmyk--button-primary:disabled,
.cmyk--button.cmyk--button-primary.disabled {
  background: var(--disabled);
  pointer-events: none;
  cursor: not-allowed;
}

.cmyk--button.cmyk--button-primary:not([disabled]):active,
.cmyk--button.cmyk--button-primary:not([disabled]).active {
  color: var(--dark-white);
  background: var(--primary);
}

.cmyk--button.cmyk--button-secondary {
  background-color: var(--dark-black);
  color: var(--primary);
  border: 0.1rem solid var(--primary-surface);
}

.cmyk--button.cmyk--button-secondary.cmyk--button-secondaryicon {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.cmyk--button.cmyk--button-secondary.cmyk--button-secondaryicon>span {
  pointer-events: none;
  cursor: not-allowed;
  margin-right: 0.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .cmyk--button.cmyk--button-secondary:not([disabled]):hover {
    border: 0.1rem solid #1170C8;
  }
}

.cmyk--button.cmyk--button-secondary:not([disabled]):focus {
  border: 0.1rem solid #1170C8;
}

.cmyk--button.cmyk--button-secondary:disabled,
.cmyk--button.cmyk--button-secondary.disabled {
  color: var(--disabled);
  pointer-events: none;
  cursor: not-allowed;
  border: 0.1rem solid var(--disabled);
}

.cmyk--button.cmyk--button-secondary:not([disabled]):active,
.cmyk--button.cmyk--button-secondary:not([disabled]).active {
  border: 0.1rem solid #1170C8;
}

.cmyk--button-text {
  background-color: transparent;
  border: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cmyk--button-text>span {
  font-size: var(--fs-md-small);
  font-weight: var(--fw-regular);
  line-height: 2.7rem;
  margin-right: 1.1rem;
}

.line_clamp_3 {
  width: 17.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

section {
  padding: 3.5rem 0;
}


/* @media screen and (max-width: 1200px) {
  section {
    padding: 2.5rem 0;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 2rem 0;
  }
} */

/* Width */
/* Webkit Browsers */
::-webkit-scrollbar {
  width: 5px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}

/* Track */
/* Webkit Browsers */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
/* Webkit Browsers */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* Firefox */
* {
  scrollbar-color: var(--primary) #f1f1f1;
}

/* Handle on hover */
/* Webkit Browsers */
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Firefox */
* {
  scrollbar-color: var(--primary) #f1f1f1;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 0.5rem 0.5rem 0px rgba(17, 17, 17, 0.05);
  z-index: 999;
  transition: .15s ease-in-out;
  -webkit-transition: .15s ease-in-out;
  -moz-transition: .15s ease-in-out;
  -ms-transition: .15s ease-in-out;
  -o-transition: .15s ease-in-out;
  padding: 1.8rem 1.6rem !important;
}

.cmyk--liststyled li {
  position: relative;
  margin-left: 3rem;
}

.cmyk--liststyled li::first-letter {
  text-transform: capitalize;
}

.cmyk--liststyled li::after {
  content: '';
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  top: 1rem;
  transform: translateY(-50%);
  left: -3rem;
  background-color: rgba(6, 80, 148, 0.15);
}

.cmyk--liststyled.small_bullet li::after {
  top: 50%;
  transform: translateY(-50%);
}

.floating-form {
  width: 43rem;
  margin-bottom: 25px;
  position: relative;
}

 @media screen and (max-width: 768px) {
  .floating-form {
    margin-bottom: 30px;
  }
} 


.careerform_wrapper .floating-form{
  margin-bottom: 35px;
}

/* @media screen and (max-width: 768px) {
  .floating-form {
    width: 320px;
  }
} */

.floating-form .floating-label {
  position: relative;
}

.floating-form .floating-label .floating-input,
.floating-form .floating-label .floating-select {
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  padding: 0.8rem 1.5rem;
  display: block;
  width: 100%;
  height: 4rem;
  background-color: transparent;
  border-radius: 0.4rem;
  border: 0.1rem solid #DAE0E8;
  color: var(--content-surface);
}

.floating-form .floating-label .floating-input:focus,
.floating-form .floating-label .floating-select:focus {
  outline: none;
  border: 0.1rem solid var(--primary);
}

.floating-form .floating-label .floating-input:focus~label,
.floating-form .floating-label .floating-input:not(:placeholder-shown)~label,
.floating-form .floating-label .floating-select:focus~label,
.floating-form .floating-label .floating-select:not(:placeholder-shown)~label {
  top: -12px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--label-surface);
  background: #FFFF;
  padding: 0 0.3rem;
}

.floating-form .floating-label .floating-input::placeholder,
.floating-form .floating-label .floating-select::placeholder {
  color: red;
}

.floating-form .floating-label label {
  color: var(--label-surface);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 1.5rem;
  top: 8px;
  transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -ms-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
}

.floating-form .floating-label.error_input .floating-input {
  border: 0.1rem solid var(--status-error);
  border-radius: 4px;
}

.floating-form .floating-label.error_input .floating-input:focus {
  border: 0.1rem solid var(--status-error);
}

.floating-form .floating-label.error_input .floating-input label {
  color: var(--status-error);
}

.floating-form .floating-label.error_input .floating-input:focus~label {
  color: var(--status-error);
}

.floating-form .floating-label:disabled,
.floating-form .floating-label.disabled {
  border-color: var(--input-disabled);
  background-color: rgba(220, 220, 220, 0.21);
  pointer-events: none;
  cursor: not-allowed;
}

.floating-form .floating-label:disabled>span,
.floating-form .floating-label:disabled>input,
.floating-form .floating-label:disabled>select,
.floating-form .floating-label:disabled>textarea,
.floating-form .floating-label.disabled>span,
.floating-form .floating-label.disabled>input,
.floating-form .floating-label.disabled>select,
.floating-form .floating-label.disabled>textarea {
  color: var(--input-disabled);
}

.floating-form .cmyk--status-error {
  position: absolute;
  bottom: -25px;
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
  top: -18px;
  font-size: 14px;
  color: #5264AE;
}

/* active state */
.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
  width: 50%;
}

.floating-textarea {
  min-height: 100px;
  max-height: 260px;
  overflow: hidden;
  overflow-x: hidden;
}

/* animation */
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

.cursor-none {
  cursor: none;
}

.cmyk--pagination__plain {
  display: flex;
  align-items: center;
}

.cmyk--pagination__plain>button {
  padding: 0;
  border: unset;
  background: unset;
}

.cmyk--pagination__plain>ul {
  display: flex;
  margin: 0 .9rem;
}

.cmyk--pagination__plain>ul li {
  display: block;
  margin: 0 0.1rem;
  border-radius: .8rem;
  transition: .5s;
}

.cmyk--pagination__plain>ul li>a {
  width: 4.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):hover {
    background: var(--primary);
  }

  .cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):hover>a {
    color: var(--dark-white);
  }
}

.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):focus,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):focus-within,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):active,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]).active {
  background: var(--primary);
}

.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):focus>a,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):focus-within>a,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]):active>a,
.cmyk--pagination__plain>ul li:not(:last-child):not([disabled]).active>a {
  color: var(--dark-white);
}

.cmyk--pagination__plain>ul li:disabled,
.cmyk--pagination__plain>ul li.disabled {
  opacity: .5;
  pointer-events: none;
}

.cmyk--pagination__plain>ul li:disabled>a,
.cmyk--pagination__plain>ul li.disabled>a {
  cursor: not-allowed;
}

.career_pagination .pagination {
  justify-content: end;
}

.career_pagination .pagination li .page-link {
  width: 3.1rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--dark-black);
  border: 0.1rem solid #DAE0E8;
  margin: 0.2rem;
  border-radius: 0.5rem;
}

.career_pagination .pagination li .page-link svg path.pagination_arrow {
  fill: #065094;
}

@media (hover: hover) and (pointer: fine) {
  .career_pagination .pagination li .page-link:not([disabled]):hover {
    background-color: var(--primary);
    color: var(--dark-white);
    border: unset;
  }

  .career_pagination .pagination li .page-link:not([disabled]):hover svg path.pagination_arrow {
    fill: var(--dark-white);
  }
}

.career_pagination .pagination li .page-link:focus {
  background-color: transparent;
  box-shadow: unset;
  outline: unset;
}

.career_pagination .pagination li .page-link.rotate {
  transform: rotate(180deg);
}

footer {
  margin-top: 2rem;
}

.modal-open {
  overflow: hidden !important;
  position: relative;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  .contactus_sucesspoup {
    display: none;
  }
}

.about-us--content .blog_content {
  width: 60rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .about-us--content .blog_content {
    margin-bottom: 3rem;
    width: unset;
  }
}

.back_page {
  margin-bottom: 2rem;
}


.banner_bg {
  position: absolute;
  bottom: 8%;
  right: 0;
}

@media screen and (max-width: 1200px) {
  .banner_bg {
    display: none;
  }
}



.error_wrapper {
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin: auto;
  vertical-align: middle;
  height: 100vh;
}

.error_wrapper img {
  width: 100%;
  height: 100%;
}
.dropdown-menu.show{
  top: 0px !important;
  margin-top: 1rem !important;
}

.dropdown-menu .cmyk--dropdownmenu.show{
  top: 0px !important;
}

.dropdown:hover .cmyk--dropdownmenu {
  transition: .3s all ease;
}

.career_content .floating-form .cmyk--status-error{
  bottom: -20px;
}
.career_content{
  position: relative;
  z-index: 5;
}

header.header-bar .cmyk--header-mobile .cmyk--menu-box .cmyk--menu-btn img{
  width:100%;
  height:100%;
}
