/* ********* Common css ************ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

button:focus,
input:focus {
  box-shadow: none;
  outline: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-lspacing);
  font-family: var(--fontfutura);
  font-weight: 400;
  color: var(--DarkBlueGrey);
}

html {
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

html,
body {
  scroll-behavior: smooth;
}

.body-fix {
  overflow-y: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

h1,
.heading-h1,
h2,
.heading-h2,
h3,
.heading-h3,
h4,
.heading-h4,
h5,
.heading-h5,
h6,
.heading-h6 {
  font-family: var(--fontcoheadline);
  font-weight: 400;
}

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-lspacing);
  font-family: var(--fontcoheadline);
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-lspacing);
  font-family: var(--fontcoheadline);
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-lspacing);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
}

h6,
.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  letter-spacing: var(--h6-lspacing);
}

.text-sm {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.text-xsm {
  font-size: var(--xsm-font-size);
  line-height: var(--xsm-line-height);
  letter-spacing: var(--xsm-lspacing);
}

/* 
.text-md {
  font-size: var(--md-font-size);
  line-height: var(--md-line-height);
  letter-spacing: var(--md-lspacing);
}
*/

.cust-container-lg {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
}

.cust-container-sm {
  padding-left: 138px;
  padding-right: 138px;
  width: 100%;
  margin: 0 auto;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img,
.img-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* theme-btn */
.theme-btn {
  font-family: var(--fontcoheadline);
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
  font-weight: 700;
  text-align: center;
  padding: 0;
  color: var(--DarkBlueGrey);
  display: inline-block;
  background: var(--Sandstorm);
  border-radius: 60px;
  transition: all 200ms ease-in;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.theme-btn:hover {
  background: var(--white);
  color: var(--DarkBlueGrey);
  transition: all 200ms ease-in;
}

.theme-btn cite {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 20px 79px 20px 39px;
}

.theme-btn i {
  transform: rotate(0deg);
  background-image: url(../images/arrow-right-dark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  display: inline-block;
  transition: all 300ms ease-in;
  border-radius: 50%;
  margin-left: 10px;
  position: absolute;
  right: 10px;
}

.theme-btn:hover i {
  transform: rotate(360deg);
  background-image: url(../images/arrow-right-white.png);
  background-color: var(--RegentGrey);
}

/* theme-outline-btn */
.theme-outline-btn {
  border-color: var(--DarkBlueGrey);
  background: transparent;
  color: var(--DarkBlueGrey);
}

.theme-outline-btn:hover {
  border-color: var(--Sandstorm);
  background: var(--Sandstorm);
  color: var(--DarkBlueGrey);
}

.theme-outline-btn i {
  background-image: url(../images/arrow-right-dark.png);
  background-color: var(--Sandstorm);
}

.theme-outline-btn:hover i {
  background-image: url(../images/arrow-right-dark.png);
  background-color: var(--white);
}

.theme-outline-btn i,
.theme-yellow-btn i {
  width: 40px;
  height: 40px;
}

/* theme-yello-btn */
.theme-yellow-btn {
  border-color: var(--Sandstorm);
  background: var(--Sandstorm);
  color: var(--DarkBlueGrey);
}

.cta-sec .cta-content .theme-btn{ 
    border-color: #1D3748;
    background: #1D3748;
    color: #fff;
}

.theme-yellow-btn:hover,
.cta-sec .cta-content .theme-btn:hover{
  border-color: var(--DarkBlueGrey);
  background: transparent;
  color: var(--DarkBlueGrey);
}

.theme-yellow-btn i,
.cta-sec .cta-content .theme-btn i{
  background-image: url(../images/arrow-right-white.png);
  background-color: var(--RegentGrey);
}

.theme-yellow-btn:hover i,
.cta-sec .cta-content .theme-btn:hover i,
.products-sec.prod-mod-sec.ultrasound-feat .theme-outline-btn i{
  background-image: url(../images/arrow-right-white.png);
  background-color: var(--RegentGrey);
}

 .products-sec.prod-mod-sec.ultrasound-feat .theme-outline-btn i {
    transform: rotate(89deg);
}

 .products-sec.prod-mod-sec.ultrasound-feat .theme-outline-btn:hover i {
    background-image: url(../images/arrow-right-white.png);
    background-color: var(--RegentGrey);
    transform: rotate(0deg); 
 }

.line-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
  margin-top: 13px;
}

.line-shape {
  width: 2px;
  height: 55px;
  background: var(--DarkBlueGrey);
  display: inline-block;
}

.yellow-hightlight {
  color: var(--Sandstorm);
}

/* custom select */
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
  padding-left: 10px;
}

.custom-select-trigger {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.1s ease-in;
  padding-right: 30px;
  font-weight: 500;
}

.custom-select-trigger:hover {
  transition: all 0.1s ease-in;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 16px;
  height: 12px;
  top: 50%;
  right: 0;
  margin-top: 7px;
  background: url(../images/dropdown-blue.png) no-repeat center;
  transform: rotate(0) translateY(-50%);
  transition: all 0.2s ease-in-out;
  transform-origin: 50% 0;
  background-size: 16px;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(180deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  border: 1px solid var(--RichBlue);
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgb(0 0 0 / 7%);
  background: #fff;
  transition: all 0.1s ease-in-out;
  /* margin-left: 0; */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 99;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  position: relative;
  display: block;
  padding: 10px 22px;
  border-bottom: 1px solid #c2c9f44a;
  color: var(--RichBlue);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.3px;
}

.custom-option:hover,
.custom-option.selection {
  color: var(--LightPeriwinkle);
}

.custom-option:last-of-type {
  border-bottom: 0;
}

.form-control::-webkit-input-placeholder {
  color: var(--DarkBlueGrey);
}

.form-control::-moz-placeholder {
  color: var(--DarkBlueGrey);
}

.form-control:-ms-input-placeholder {
  color: var(--DarkBlueGrey);
}

.form-control:-moz-placeholder {
  color: var(--DarkBlueGrey);
}

.form-control:focus {
  outline: none;
}

.cust-form .form-group {
  margin-bottom: 54px;
}

.cust-form .form-group:last-child {
  margin-bottom: 0;
}

.cust-form .custom-file-upload {
  position: relative;
  cursor: pointer;
}

.cust-form .custom-file-upload input {
  position: absolute;
}

.cust-form .custom-file-upload .custom-file-label::after {
  display: none;
}

.cust-form .custom-file-upload label {
  color: var(--DarkBlueGrey);
  margin: 0 0 0 33px;
  text-decoration: underline;
}

.cust-form textarea.form-control {
    min-height: 46px;
    height: 46px;
}

.cust-form .form-label {
  margin-bottom: 0;
  color: var(--DarkBlueGrey);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: 0;
  font-family: var(--fontfutura);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--DarkBlueGrey);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: transparent;
  outline: 0 !important;
  color: var(--DarkBlueGrey) !important;
}

input,
input:focus {
  outline: none;
}

input:focus,
.form-control:focus, input:focus::placeholder {
  box-shadow: none !important;
  color: var(--DarkBlueGrey);
  border-color: var(--DarkBlueGrey);
  outline: 0 !important;
  background: transparent;
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--DarkBlueGrey);
  background-color: transparent;
  border-radius: 0;
  padding: 0px;
  width: 100%;
  padding: 0;
  height: auto;
  color: var(--DarkBlueGrey);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: 0;
  font-family: var(--fontfutura);
  font-weight: 400;
  min-height: auto;
  padding-bottom: 16px;
  outline: 0 !important;
}

/* cust-radio-box */
.cust-radio-box {
  display: block;
  position: relative;
  margin-bottom: 50px;
  cursor: pointer;
  font-size: var(--sm-font-size);
  line-height: 30px;
  letter-spacing: var(--sm-lspacing);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #393734;
  padding-left: 28px;
}

.cust-radio-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.cust-radio-box .checkmark {
  position: absolute;
  top: 7px;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid var(--DarkBlueGrey);
  background-color: transparent;
}

.cust-radio-box:hover input~.checkmark {
  border: 1px solid var(--DarkBlueGrey);
  border-radius: 0;
}

.cust-radio-box .checkmark:after {
  left: 0;
  top: 0px;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: auto;
  display: none;
  padding: 0;
  right: 0;
  background: #1E3748 url("../images/check-blue.png") no-repeat center;
  background-size: 12px;
}

.cust-radio-box input:checked~.checkmark {
  border-color: var(--DarkBlueGrey);
}

.cust-radio-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cust-radio-box input:checked~.checkmark:after {
  display: block;
}

.file-area {
  width: 100%;
  position: relative;
}

.file-area input[type=file]  {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.file-area input:focus,
.file-area .form-control:focus,
.file-area input:focus::placeholder {
  outline: 0;
  border-color: transparent;
}

.file-area .file-dummy,
.cust-drag-drop-box{
  width: 100%;
  padding: 10px;
  background: #F0F3F4;
  border: 1px dashed var(--DarkBlueGrey);
  text-align: center;
  transition: background 0.3s ease-in-out;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.file-area .file-dummy .success {
  display: none;
}

.file-area .default {
  color: var(--RegentGrey);
}

.file-area .default span {
  color: var(--DarkBlueGrey);
  border-bottom: 1px solid var(--DarkBlueGrey);
}

.file-area:hover .file-dummy {
  background: rgba(255, 255, 255, 0.1);
}

.file-area input[type=file]:focus+.file-dummy {
  outline: 0;
}

.file-area input[type=file]:valid+.file-dummy {
  background-color: rgb(255 255 255 / 30%);
}

.file-area input[type=file]:valid+.file-dummy .success {
  display: inline-block;
}

.file-area input[type=file]:valid+.file-dummy .default {
  display: none;
}
.mobile-menu {
  position: absolute;
  z-index: 999;
  display: none;
}

.slide-nav-trigger {
  z-index: 999; 
  width: 30px;
  height: 16px;
  overflow: hidden;
  display: block;
  margin: 0 auto; 
}
 
.slide-nav-trigger span::before,
.slide-nav-trigger span::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 30px;
  background: var(--white);
  transition: all 200ms ease-in;
}

.slide-nav-trigger span {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 200ms ease-in;
}

.slide-nav-trigger span::before,
.slide-nav-trigger span::after {
  content: "";
  transition: background 0.3s, transform 0.3s;
}

.slide-nav-trigger span::before {
  -webkit-transform: rotate(0) translate(0px, 8px);
  transform: rotate(0) translate(0px, 8px);
}

.slide-nav-trigger span::after {
  -webkit-transform: rotate(0) translate(0px, -8px);
  transform: rotate(0) translate(0px, -8px);
}

.slide-nav-open .slide-nav-trigger span {
  background: transparent;
}

.slide-nav-open .slide-nav-trigger span::before,
.slide-nav-open .slide-nav-trigger span::after {
  background: var(--white);
}

.slide-nav-open .slide-nav-trigger span::before {
  -webkit-transform: rotate(-45deg) translate(0px, 0);
  transform: rotate(-45deg) translate(0px, 0);
  top: 0;
}

.slide-nav-open .slide-nav-trigger span::after {
  -webkit-transform: rotate(45deg) translate(0, 0px);
  transform: rotate(45deg) translate(0, 0px);
  bottom: 0;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.cust-nav .menu {
  display: flex;
  align-items: center;
}

.cust-nav .menu li {
  transition: background-color 0.5s ease;
  margin-right: 56px;
}

.cust-nav .menu li:last-child {
  margin-right: 0;
}

.cust-nav .menu a {
  position: relative;
  display: inline-block;
  padding: 0;
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-family: var(--fontfutura);
}

.cust-navbar-cell {
  position: absolute;
  z-index: 1;
  top: 86px;
  right: 0;
  left: 0;
  display: none;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 2px 0 rgb(0 0 0 / 6%);
  padding-top: 40px;
}

.navbar-cell-inner {
  display: flex;
  min-width: 0;
  padding: 20px;
  flex: 1;
  flex-wrap: wrap;
  background-color: var(--DarkBlueGrey);
}

.nav-1level-wrap-box {
  display: none;
  background: var(--white);
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
  /* -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s; */
  box-shadow: 0px 25px 25px #00000041;
  transform: translateY(0);
  transition: transform 200ms ease-in;
}

.nav-1level-inner-box {
  padding: 30px 145px 30px 173px;
  display: flex;
  justify-content: space-between;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-no-submenu .nav-1level-link::before {
  display: none;
}

.nav-1level-li-active .nav-1level-wrap-box {
  display: block;
  float: left;
  width: 1640px;
  left: 50%;
  margin: 0;
  /* transform: translate(-45%, 10px); */
  margin-left: -831px;
  top: 84px;
}

.nav-1level-inner-cell .heading-h5,
.nav-1level-ul .nav-1level-inner-cell>ul {
  transition: all 200ms ease-in;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.nav-1level-li .nav-1level-link {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
  color: var(--white);
  font-weight: 300;
}

.nav-1level-ul {
  display: flex;
  margin-right: -63px;
}

.nav-1level-ul .nav-1level-li {
  margin-right: 55px;
}

.nav-1level-ul .nav-1level-li.active a {
  opacity: 1;
}

.nav-1level-ul .nav-1level-li:last-child {
  margin-right: 0;
}

.nav-1level-ul .nav-1level-link {
  position: relative;
  padding-right: 17px;
  opacity: 1;
  transition: all 200ms ease-in;
}

.nav-1level-ul .nav-1level-link::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: url(../images/plus.png) no-repeat center;
  /* background-size: 11px; */
  right: 0;
  top: 10px;
  transition: all 200ms ease-in;
}

.nav-1level-ul .nav-1level-li-active .nav-1level-link::before {
  background: url(../images/minus.png) no-repeat center;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.nav-1level-ul .nav-1level-inner-cell:first-child {
  flex-grow: 1.41;
}

.nav-1level-ul .nav-1level-inner-cell ul {
  display: flex;
  flex-wrap: wrap;
}

.nav-1level-ul .nav-3level-ul {
  margin-top: 4px;
}

.nav-1level-ul .nav-1level-inner-cell:first-child li .nav-3level-ul li {
  margin-bottom: 0;
}

.nav-1level-ul .nav-1level-inner-cell li {
  position: relative;
  padding-left: 12px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
  width: 50%;
  margin-bottom: 6px;
}

.nav-1level-ul li a {
  transition: color 200ms ease-in;
}

.nav-2level-ul li a:hover,
.nav-3level-ul li a:hover,
.nav-2level-li-active>a {
  color: var(--RegentGrey);
}

/* .nav-1level-ul .nav-1level-inner-cell .nav-2level-li-active::before {
    background: var(--RegentGrey);
  } */

.nav-1level-ul .nav-1level-inner-cell:first-child li {
  flex: 0 0 33.33%;
}

.nav-1level-ul .nav-1level-inner-cell li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: var(--DarkBlueGrey);
  left: 0px;
  top: 16px;
}

.nav-1level-ul .nav-1level-inner-cell {
  flex: 1;
}

.nav-1level-ul .nav-1level-inner-cell:first-child+.nav-1level-inner-cell:last-child {
  margin-left: 112px;
}

.nav-1level-ul .nav-1level-inner-cell .nav-3level-ul {
  display: none;
}

.nav-1level-inner-cell .heading-h5 {
  border-bottom: 1px solid #7e9aab;
  font-weight: 500;
  padding-bottom: 12px;
  margin-bottom: 17px;
  font-family: var(--fontfutura);
}

.nav-1level-li .nav-1level-link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid var(--white);
  top: auto;
  margin: auto;
  left: 43%;
  bottom: -60px;
  opacity: 1;
  transform: translate(0, 0);
  margin: auto;
  transition: transform 200ms ease-in;
  display: none;
}

.nav-1level-li-active .nav-1level-link::after {
  display: block;
  transform: translate(-43%, -1px);
}

.nav-1level-ul .nav-2level-li {
  position: relative;
}

.nav-1level-ul .nav-3level-ul li {
  display: block;
  width: 100%;
}

.nav-2level-li .nav-3level-ul a {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.nav-2level-li .nav-3level-ul li::before {
  top: 19px;
}

.nav-1level-ul .nav-1level-link:hover cite,
.nav-1level-ul .nav-1level-li-active .nav-1level-link cite,
.nav-1level-ul .nav-1level-li .nav-1level-link:hover::before,
.nav-1level-ul .nav-1level-li-active .nav-1level-link::before {
  opacity: 0.5;
}

.nav-1level-ul .nav-1level-li cite {
  position: relative;
}

.nav-1level-ul .nav-1level-li.active cite::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: var(--white);
  bottom: -8px;
}

.nav-1level-li-sm {
  position: relative;
}

.nav-1level-li-sm.nav-1level-li-active .nav-1level-wrap-box {
  width: auto;
  position: absolute;
  left: 50%;
  right: auto;
  margin: auto;
  display: block;
  width: auto;
  transform: translateX(-50%);
}

.nav-1level-li-sm.nav-1level-li-active .nav-1level-wrap-box li {
  width: 100%;
  display: block;
}

.nav-1level-li-sm.nav-1level-li-active .nav-1level-inner-box {
  padding-left: 45px;
  padding-right: 45px;
}

.nav-1level-li-sm.nav-1level-li-active .nav-1level-inner-cell ul {
  display: block;
}

.nav-1level-li-sm.nav-1level-li-active li a {
  white-space: nowrap;
}

/* homepage */
.page__header {
  position: absolute;
  z-index: 99;
  justify-content: center;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
}

.header-right .theme-btn {
  font-size: 14px;
}

.page__header .header-logo {
  width: 260px;
  display: block;
}

.page__header .header-logo img {
  display: block;
  width: 100%;
}

.page__header .cust-navbar {
  position: absolute;
  left: 50.6%;
  margin: auto;
  transform: translateX(-50%);
}

.page__header-inner {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-right {
  display: flex;
  align-items: center;
}

.page__header .theme-btn cite {
  padding: 14px 71px 14px 30px;
}

.header-right .theme-btn:hover i,
.header-right .theme-btn i {
  background-size: 12px;
}

.search-wrapper .search-box {
  position: relative;
}

.search-wrapper .input {
  position: absolute;
  top: 20px;
  right: 0;
  box-sizing: border-box;
  width: 0px;
  height: 50px;
  outline: none;
  font-size: 18px;
  border-radius: 50px;
  color: var(--DarkBlueGrey);
  border: none;
  transition: all 200ms ease-in;
  background: var(--white);
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: var(--fontfutura);
  letter-spacing: 0.6px;
}

.search-wrapper ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--RegentGrey);
}

.search-wrapper ::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--RegentGrey);
}

.search-wrapper :-ms-input-placeholder {
  /* IE 10+ */
  color: var(--RegentGrey);
}

.search-wrapper :-moz-placeholder {
  /* Firefox 18- */
  color: var(--RegentGrey);
}

.search-wrapper .search-btn {
  padding: 0;
  width: 30px;
  height: 30px;
  background: none;
  border-radius: 50%;
  right: 0;
  cursor: pointer;
  text-align: center;
  line-height: 80px;
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
}

.search-wrapper .search-ico {
  background: url("../images/search-white.png") no-repeat center;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.search-btn i {
  display: none;
}

.search-btn .search-ico,
.search-active-ico {
  border: none;
  background: transparent;
  outline: 0;
  font-size: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 0;
  background: url("../images/search-white.png") no-repeat center;
}

.search-wrapper .input.active {
  width: 340px;
  padding: 0 70px 0 30px;
}

.search-active-ico {
  display: none;
}

.search-wrapper.search-wrapper-active .search-active-ico {
  display: block;
}

.search-wrapper.search-wrapper-active .search-ico {
  display: none;
}

.search-wrapper .search-btn.animate {
  right: 15px;
  position: relative;
}

.search-wrapper-active .search-ico,
.search-active-ico {
  background: url("../images/search-dark.png") no-repeat center;
}

.search-wrapper {
  margin-left: 30px;
}

/* banner */
.banner-sec {
  background: var(--DarkBlueGrey);
  position: relative;
  color: var(--white);
  padding-top: 283px;
  padding-bottom: 201px;
}

.home-banner {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-banner .banner-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.owl-theme .owl-dots .owl-dot {
  margin: 0 18px 0 0;
}

.owl-theme .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-dots span {
  background: var(--RegentGrey);
  width: 12px;
  height: 12px;
  margin: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
}

.banner-cara {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--DarkBlueGrey);
  width: 100%;
  height: 100%;
}

.bg-img-box {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.home-banner .owl-carousel .owl-stage-outer,
.home-banner .owl-carousel .owl-stage,
.home-banner .owl-carousel .owl-item,
.home-banner .owl-carousel .item {
  height: 100%;
}

.home-banner .bg-img-box {
  min-height: 100vh;
  position: absolute;
  width: 100%;
}

.home-banner .img-box {
  height: 100%;
}

.bg-img-box img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: soft-light;
  left: 0;
  right: 0;
  margin: auto;
}

.banner-sec .banner-content {
  position: relative;
  z-index: 5;
  padding-top: 100px;
  width: 100%;
  padding-bottom: 100px;
}

.home-banner .banner-content .heading-h1 {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.home-banner .banner-content p {
  width: 600px;
  margin-left: 240px;
  margin-top: -98px;
}

.home-banner .banner-content .heading-h1 span {
  width: auto;
  display: inline-block;
  position: relative;
  width: 50%;
}

.home-banner .banner-content .heading-h1 cite {
  position: relative;
  display: inline-block;
  word-break: break-word;
}

.home-banner .banner-content .heading-h1 span:first-child cite::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 680px;
  background: #8399a9;
  bottom: 0;
  margin: auto;
  right: -679px;
  top: 5px;
  display: none !important;
}

.home-banner .heading-h1 span:last-child {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 120px;
}

.home-banner .banner-content .heading-h1 .line-dash {
  position: absolute;
  content: "";
  height: 2px;
  width: 590px;
  background: #8399a9;
  left: 0;
  right: 0;
  margin: auto;
  top: 181px;
  display: none !important;
}

.home-banner .banner-content .heading-h1 span:first-child cite {
  padding-right: 60px;
  width: 100% !important;
  text-align: left;
}

.home-banner .banner-content .heading-h1 span:first-child cite:first-child {
  display: block;
  width: 100%;
}

.home-banner .banner-content .heading-h1 span:first-child cite:last-child {
  width: 100%;
}

.home-banner .banner-content .heading-h1 span:last-child cite:first-child {
  width: 100%;
}

.home-banner .banner-content .heading-h1 span:last-child cite {
  display: block;
  text-align: right;
  width: 100% !important;
}

.home-banner .banner-cara.owl-theme .owl-dots,
.home-banner .owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: auto;
  transform: translate(-50%, -50%);
  margin-top: 0;
  bottom: 55px;
}

.banner-social-icos-wrap {
  position: absolute;
  z-index: 6;
  bottom: 30vh;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}

.home-banner .social-links {
  position: absolute;
}

.home-banner .social-links {
  flex-direction: column;
}

.home-banner .social-links li {
  margin-right: 0;
  margin-bottom: 27px;
  height: 16px;
  width: 25px;
}

.home-banner .social-links li a,
.home-banner .social-links li:hover a {
  background-size: contain;
}

/* product sec */
.products-sec {
  padding-top: 102px;
  padding-bottom: 100px;
  overflow: hidden;
}

.products-row {
  display: flex;
}

.products-row .products-cell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 44.6%;
  border: 1px solid var(--RegentGrey);
  padding: 30px 30px 81px;
  border-left: none;
}

.products-row .products-cell:first-child {
  border-left: 1px solid var(--RegentGrey);
}

.products-row .product-img {
  height: 362px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: center;
  width: 400px;
}


.products-row .product-img img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.products-row .heading-h3 {
  margin-bottom: 10px;
}

.products-row .heading-h3,
.products-row p {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.products-sec .heading-h2 {
  text-align: center;
  margin-bottom: 25px;
}

.products-row p {
  margin-bottom: 24px;
}

.products-sec.product-detail-sec .products-row p {
  font-weight: 500;
}

.guide-detail-sec.products-sec.product-detail-sec .products-row p {
  font-weight: 400;
  margin-bottom: 4px;
}

.two-cell-row-one,
.two-cell-row-two {
  position: relative;
}

.two-cell-row-one .two-cell-content,
.two-cell-row-one .two-cell-img,
.two-cell-row-two .two-cell-content,
.two-cell-row-two .two-cell-img {
  width: 50%;
}

.two-cell-row-one .two-cell-img,
.two-cell-row-two .two-cell-img {
  height: 100%;
  position: absolute;
  width: 50%;
  z-index: 4;
  right: 0;
}

.two-cell-row-two .two-cell-img {
  right: auto;
  left: 0;
}

.two-cell-row-inner {
  display: flex;
}

.two-cell-row-one .two-cell-img .img-box,
.two-cell-row-two .two-cell-img .img-box {
  width: 100%;
  height: 100%;
}

iframe {
  width: 100%;
  height: calc(100vw/1.79);
  object-fit: cover;
}

.iframe-select {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.two-cell-row-one .two-cell-content,
.two-cell-row-two .two-cell-content {
  padding-top: 80px;
  padding-bottom: 138px;
}

.two-cell-row-two .two-cell-row-inner {
  justify-content: flex-end;
  width: 100%;
}

.two-cell-content-inner {
  max-width: 670px;
  text-align: center;
  margin: 0 auto;
}

.two-cell-row-two .two-cell-content {
  display: flex;
  justify-content: flex-end;
}

/*.mission-vision-sec .two-cell-img .img-box::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 413px;*/
/*    top: 0;*/
/*    right: 138px;*/
/*    height: 100%;*/
/*    background: url(../images/shape-right.png) no-repeat center;*/
/*    background-size: 100% 100%;*/
/*    z-index: 4;*/
/*}*/

.mission-two .line-shape {
  background: var(--white);
}

.mission-first {
  background: var(--GreenWhite);
}

.mission-vision-sec .heading-h2,
.mission-vision-sec .heading-h3 {
  margin-bottom: 18px;
}

.mission-vision-sec .cust-container-lg {
  max-width: 100%;
}

.mission-vision-sec p {
  margin-bottom: 30px;
}

.mission-vision-sec .two-cell-row-two {
  background: var(--DarkBlueGrey);
  color: var(--white);
}

.mission-vision-sec .two-cell-row-two .theme-outline-btn {
  color: var(--white);
  border-color: var(--white);
}

.mission-vision-sec .two-cell-row-two .theme-outline-btn:hover {
  border-color: var(--Sandstorm);
  color: var(--DarkBlueGrey);
}

.mission-two .two-cell-content-inner {
  max-width: 650px;
}

/* job sec */
.job-cara-sec {
  padding-top: 110px;
  padding-bottom: 40px;
  background: var(--GreenWhite);
  position: relative;
}

.job-cara-sec .job-cara-head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-cara-sec .job-cara-top .heading-h6 {
  color: var(--RegentGrey);
  display: inline-block;
  font-family: var(--fontfutura);
  margin-right: 50px;
  font-weight: 600;
}

.job-cara-sec .job-cara-cell {
  background: var(--white);
  padding: 58px 60px 67px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.job-cara-sec .job-cara-top {
  margin-bottom: 12px;
}

.job-cara-sec .job-cara-top .heading-h6:last-child {
  margin-right: 0;
}

.job-cara-sec .heading-h3 {
  margin-bottom: 16px;
}

.job-cara-sec p {
  margin-bottom: 30px;
}

.job-cara-sec .owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.owl-dots-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  position: relative;
}

.owl-dots-inner::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--RegentGrey);
}

.owl-dots-inner .owl-dot {
  flex: 1;
  background: transparent;
  border: none;
  height: 5px;
  position: relative;
  top: 3px;
  pointer-events: none;
  transition: all 200ms ease-in;
}

.owl-dots-inner .owl-dot::before {
  position: absolute;
  content: "";
  height: 100%;
  background: transparent;
  top: -3px;
  left: 0;
  right: 0;
  transform: translateX(-100%);
  transition: transform 300ms linear;
}

.owl-dots-inner .owl-dot.active::before {
  background: var(--RegentGrey);
  transform: translateX(0);
}

/* ******************************************* */
.owl-prev,
.owl-next {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 200ms ease-in;
  border: none;
  outline: 0;
}

.owl-prev span {
  background-image: url("../images/left-arrow-short.png");
}

.owl-prev:hover span {
  background-image: url("../images/left-arrow-short-white.png");
}

.owl-next span {
  background-image: url("../images/right-arrow-short.png");
}

.owl-next:hover span {
  background-image: url("../images/right-arrow-short-white.png");
}

.owl-prev span,
.owl-next span {
  font-size: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms ease-in;
}

.owl-prev:hover span,
.owl-next:hover span {
  background-color: var(--DarkBlueGrey);
}

/* ******************************************* */

.job-cara-bottom .owl-nav-box {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-cara-bottom .owl-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-cara-bottom {
  position: relative;
  padding-top: 100px;
  padding-bottom: 97px;
}

.job-cara-bottom .owl-prev {
  margin-right: 10px;
}

/* cta sec */
.cta-sec {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: stretch;
}

.bag-img-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.bag-img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cta-sec .cust-container-lg {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-sec .cust-container-lg::before {
  position: absolute;
  content: "";
  width: 413px;
  top: 0;
  right: 0;
  height: 100%;
  background: url("../images/shape-right.png") no-repeat center;
  background-size: 100% 100%;
}

.cta-sec .cta-content {
  max-width: 1130px;
  text-align: right;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  padding-right: 138px;
}

.cta-sec .cta-content .heading-h1 {
  margin-bottom: 57px;
}

.cta-sec .cta-content .theme-btn {
  display: inline-block;
}

.cta-sec .cta-content .heading-h2 {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links li {
  height: 30px;
  width: 30px;
  transition: all 200ms ease-in;
  margin-right: 27px;
}

.social-links li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 200ms ease-in;
}

.social-links .linkedin-ico a {
  background: url("../images/linkedin.png") no-repeat center;
}

.social-links .linkedin-ico:hover a {
  background: url("../images/linkedin-grey.png") no-repeat center;
}

.social-links .facebook-ico a {
  background: url("../images/facebook.png") no-repeat center;
}

.social-links .facebook-ico:hover a {
  background: url("../images/facebook-grey.png") no-repeat center;
}

.social-links .twitter-ico a {
  background: url("../images/twitter.png") no-repeat center;
}

.social-links .twitter-ico:hover a {
  background: url("../images/twitter-grey.png") no-repeat center;
}

.social-links .youtube-ico a {
  background: url("../images/youtube.png") no-repeat center;
}

.social-links .youtube-ico:hover a {
  background: url("../images/youtube-grey.png") no-repeat center;
}

/* .social-links-dark */
.social-links-dark.social-links .linkedin-ico a {
  background: url("../images/linkedin-dark.png") no-repeat center;
}

.social-links-dark.social-links .linkedin-ico:hover a {
  background: url("../images/linkedin-grey.png") no-repeat center;
}

.social-links-dark.social-links .facebook-ico a {
  background: url("../images/facebook-dark.png") no-repeat center;
}

.social-links-dark.social-links .facebook-ico:hover a {
  background: url("../images/facebook-grey.png") no-repeat center;
}

.social-links-dark.social-links .twitter-ico a {
  background: url("../images/twitter-dark.png") no-repeat center;
}

.social-links-dark.social-links .twitter-ico:hover a {
  background: url("../images/twitter-grey.png") no-repeat center;
}

.social-links-dark.social-links li:last-child {
  margin-right: 0;
}

.page__footer .copyright-right span:last-child {
  margin-top: -8px;
}

.page__footer .page__footer-inner {
  display: flex;
  justify-content: space-between;
}

.page__footer .page__footer-cell {
  width: 50%;
}

.page__footer .page-links-row {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-right: 36px;
}

.page__footer {
  background: var(--DarkBlueGrey);
  color: var(--white);
  padding-top: 125px;
  padding-bottom: 129px;
}

.page__footer .page-links-row,
.page__footer .page__footer-cell {
  width: 41.1%;
}

.page__footer .footer-logo {
  width: 260px;
  margin-bottom: 26px;
  display: inline-block;
}

.page__footer .footer-logo img {
  display: block;
  width: 100%;
}

.page__footer .page__footer-cell p {
  color: var(--RegentGrey);
  margin-bottom: 44px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height2);
  letter-spacing: var(--sm-lspacing);
}

.page__footer .footer-cell-contact {
  margin-bottom: 40px;
}

.page__footer .footer-cell-contact a {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.page__footer .footer-cell-contact a:last-child {
  margin-bottom: 0;
}

.page__footer .page-links-inner span {
  font-weight: 500;
  display: block;
  margin-bottom: 23px;
}

.page__footer .page-links-inner a {
  font-weight: 400;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.page__footer a {
  transition: all 200ms ease-in;
}

.page__footer a:hover {
  color: var(--RegentGrey);
}

.page__footer .page-links-inner li {
  margin-bottom: 8px;
}

.page__footer .page-links-inner li:last-child {
  margin-bottom: 0;
}

.page__footer .copyright-box {
  display: flex;
  padding-top: 69px;
}

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

.page__footer .copyright-box li {
  margin-right: 63px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
  font-weight: 400;
}

.page__footer .copyright-box li:last-child {
  margin-right: 0;
}

.page__footer .page__footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page__footer .copyright-right span {
  display: block;
  color: var(--RegentGrey);
  font-size: var(--xsm-font-size);
  line-height: var(--xsm-line-height);
  letter-spacing: var(--xsm-lspacing);
  font-weight: 400;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.to-show-mobile,
.to-show-mobile.products-row-cara {
  display: none;
}

.to-show-mobile-sm {
  display: none;
}

/* about */
.about-banner {
  position: relative;
  min-height: auto;
  padding-top: 200px;
  padding-bottom: 27px;
}

.full-bg-img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.full-bg-img .img-box {
  width: 100%;
  height: 100%;
}

.line-horz {
  border-bottom: 2px solid var(--RegentGrey2);
}

.about-banner .banner-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about-banner .banner-content .heading-h1 {
  width: 358px;
}

.about-banner .banner-content .para-box {
  width: 407px;
  margin-top: 152px;
}

.about-banner .banner-content .line-horz {
  display: inline-block;
  width: auto;
  position: absolute;
  left: 264px;
  right: 470px;
  top: 293px;
}

/* story-sec */
.story-sec {
  padding-bottom: 89px;
}

.story-sec .two-cell-row-one .two-cell-content {
  padding-top: 111px;
  padding-bottom: 90px;
}

.story-sec .heading-h2 {
  margin-bottom: 8px;
}

.story-sec .para-box p {
  margin-bottom: 36px;
}

.story-sec .para-box p:last-child {
  margin-bottom: 0;
}

.story-sec .para-box {
  margin-bottom: 50px;
}

.story-sec .heading-h4 {
  font-family: var(--fontfutura);
  font-weight: 400;
}

.story-sec .two-cell-content-inner {
  margin: 0;
  text-align: left;
  max-width: 730px;
}

/* timeline-sec */
.timeline-item-inner {
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 46px;
  position: relative;
}

.timeline-cara {
  position: relative;
}

.timeline-cara::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  /* background: url(../images/line-shape.svg) no-repeat top center; */
  background-size: 100%;
  top: 12px;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 6px dotted #243746;
}

.timeline-item-inner::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/shape-round-ico.png") no-repeat center;
  background-size: 30px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.timeline-item-inner .heading-h3 {
  display: block;
  color: var(--RegentGrey);
  font-family: var(--fontcoheadline);
  font-weight: 400;
  margin-bottom: 8px;
}

.timeline-sec {
  padding-bottom: 110px;
}

/* values-sec */
.values-sec {
  padding-top: 113px;
  padding-bottom: 113px;
  text-align: center;
  background: var(--GreenWhite);
}

.values-row {
  display: flex;
  margin-left: -70px;
  margin-right: -70px;
}

.values-cell {
  border-right: 1px solid var(--RegentGrey);
  padding-left: 70px;
  padding-right: 70px;
  width: 33.33%;
}

.values-cell:last-child {
  border-right: 0;
}

.values-sec .heading-h2 {
  margin-bottom: 76px;
}

.values-sec .heading-h3 {
  color: var(--RegentGrey);
  position: relative;
  z-index: 4;
}

.values-sec .values-heading span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: var(--ArylideYellow);
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-lspacing);
  font-family: var(--fontcoheadline);
  position: absolute;
  top: -38px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
}

.values-sec .values-heading {
  position: relative;
  margin-bottom: 23px;
}

/* vision-sec */
.vision-sec {
  background: var(--DarkBlueGrey);
  color: var(--white);
}

.vision-sec .heading-h2 {
  color: var(--Sandstorm);
  margin-bottom: 18px;
}

.vision-sec .line-box {
  margin-bottom: 20px;
}

.vision-sec i {
  background: var(--ArylideYellow);
}

.vision-sec .heading-h3 {
  color: var(--RegentGrey);
  margin-bottom: 33px;
}

.vision-sec .name-designation span {
  display: block;
  font-weight: 500;
  margin-bottom: -1px;
}

.vision-sec .name-designation cite {
  display: block;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.27px;
}

.vision-sec .two-cell-content-inner {
  max-width: 448px;
  margin: 0 100px auto;
}

.vision-sec .two-cell-row-two .two-cell-content {
  padding-top: 126px;
  padding-bottom: 125px;
  justify-content: center;
}

/* trio mission */
.multi-items-sec {
  padding-top: 110px;
  padding-bottom: 123px;
  background: var(--GreenWhite);
}

.multi-items-sec .trio-top-content {
  text-align: center;
  max-width: 882px;
  margin: 0 auto 60px;
}

.multi-items-sec .multi-items-row {
  display: flex;
  text-align: center;
  margin-left: -65px;
  margin-right: -65px;
}

.multi-items-sec .multi-items-cell {
  padding-left: 65px;
  padding-right: 65px;
  width: 33.33%;
}

.multi-items-sec .heading-h5 {
  font-family: var(--fontfutura);
  font-weight: 500;
}

.trio-ico {
  text-align: center;
  margin-bottom: 12px;
}

.trio-ico img {
  height: 110px;
  display: inline-block;
  border-radius: 50%;
  max-width: 100%;
}

.multi-items-row .heading-h3 {
  margin-bottom: 12px;
}

.multi-items-sec .heading-h2 {
  margin-bottom: 14px;
}

.play-btn {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.play-btn::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  border-radius: 50%;
  top: 0;
  right: 0;
  left: -50px;
  bottom: 0;
  border: 4px solid #243746;
  margin: auto;
}

.play-btn {
  width: 150px;
  height: 150px;
  background: rgb(30, 55, 72, 0.85);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 200ms ease-in;
}

.play-btn:hover {
  background: rgb(30, 55, 72, 1);
}

.play-btn .play-ico {
  width: 56px;
  height: 49px;
  display: inline-block;
  background: url("../images/play.png") no-repeat center;
  transition: all 200ms ease-in;
}

.play-btn.play-btn-white .play-ico {
  background: url("../images/play-blue.png") no-repeat center;
}

.play-btn .play-ico,
.play-btn.play-btn-white .play-ico {
  background-size: 100% 100%;
  margin-right: -9px;
}

.play-btn.play-btn-white {
  background: rgb(255, 255, 255, 0.85);
}

.play-btn.play-btn-white:hover {
  background: rgb(255, 255, 255, 1);
}

.play-btn.play-btn-white::before {
  border-color: rgb(255, 255, 255, 255);
}

/* .play-btn .pause-ico {
    width: 6px;
    height: 15px;
    display: inline-block;
    background: url("../images/pause.png") no-repeat center;
    transition: all 200ms ease-in;
  }
  
  .play-btn:hover .pause-ico {
    background: url("../images/pause-light.png") no-repeat center;
  } */

/* techno page */
.techno-work-sec {
  background: #F5CA45;
}

.techno-work-sec .two-cell-row-one .two-cell-content {
  padding-top: 178px;
  padding-bottom: 217px;
}

.twopart-intro-sec {
  padding-top: 125px;
  padding-bottom: 115px;
}

.twopart-intro-sec .two-cont-row {
  display: flex;
  justify-content: space-between;
}

.twopart-intro-sec .two-cell-left,
.twopart-intro-sec .two-cell-right {
  width: 44.5%;
}

.multi-items-sec.techno-serv-sec .trio-content {
  text-align: center;
}

.twopart-intro-sec .two-cont-row .heading-h3 {
  margin-bottom: 7px;
}

.twopart-intro-sec .two-cell-right {
  padding-top: 65px;
}

.twopart-intro-sec .heading-h4 {
  font-family: var(--fontfutura);
}

.techno-serv-sec {
  background: var(--RegentGrey);
  color: var(--white);
}

.techno-serv-sec img {
  border-radius: 0;
  height: 94px;
}

.techno-serv-sec.multi-items-sec .trio-top-content {
  max-width: 1152px;
}

.techno-serv-sec .line-shape {
  background: var(--white);
}

.multi-items-sec.techno-serv-sec .multi-items-row {
  margin-left: -40px;
  margin-right: -40px;
}

.multi-items-sec.techno-serv-sec .multi-items-cell {
  width: 25%;
  padding-left: 40px;
  padding-right: 40px;
}

.techno-serv-sec .heading-h4 {
  font-family: var(--fontfutura);
  margin-bottom: 20px;
}

.techno-work-sec .heading-h2 {
  margin-bottom: 19px;
}

/* testimonial-sec */
.testimonial-sec .cust-container-md {
  position: relative;
}

.testimonial-sec .testimonial-cara-top {
  margin-bottom: 38px;
  text-align: center;
}

.testimonial-sec {
  background: var(--DarkBlueGrey);
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 103px;
  color: var(--white);
}

.testimonial-sec .line-shape {
  background: var(--white);
}

.testimonial-sec .owl-dots {
  margin-top: 36px;
}

.testimonial-cara .blockquote-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  margin-bottom: 30px;
  display: block;
}

.testimonial-cara .media-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}

.testimonial-cara .media-box .user-img-name {
  width: 90px;
  height: 90px;
  margin-right: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--RegentGrey);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.testimonial-cara .media-content {
  display: flex;
  flex-direction: column;
  padding-top: 11px;
}

.testimonial-cara .media-content span {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
  font-weight: 500;
  margin-bottom: -3px;
}

.banner-sec.techno-banner {
  padding-top: 100px;
  padding-bottom: 0;
}

.techno-banner .banner-content {
  text-align: center;
  padding-top: 103px;
  padding-bottom: 92px;
}

.banner-sec.techno-banner .banner-content .heading-h2 {
  margin-bottom: 18px;
}

.banner-sec.techno-banner .banner-content .heading-h4 {
  margin-bottom: 20px;
  font-family: var(--fontfutura);
}

.banner-sec.techno-banner .line-box {
  margin-bottom: 0;
}

.banner-sec.techno-banner .line-shape {
  background: var(--ArylideYellow);
}

/* product */
.product-detail-banner .cust-container-lg {
  position: relative;
}

.product-detail-banner .banner-feat-img {
  position: absolute;
  width: 859px;
  height: 612px;
  z-index: 12;
  right: 0;
  top: auto;
  bottom: -149px;
}

.product-detail-banner .banner-feat-img img {
  object-fit: contain;
  object-position: bottom;
  left: auto;
  right: 0;
  max-width: 100%;
  width: auto;
  height: 100%;
  top: auto;
}

.product-detail-banner .banner-feat-img .img-box {
  width: 100%;
  height: 100%;
}

.banner-sec.product-detail-banner {
  padding-bottom: 51px;
  padding-top: 193px;

}

.banner-sec.product-detail-banner .banner-content {
  max-width: 939px;
  padding-top: 70px;
  padding-bottom: 34px;
}

.banner-sec.product-detail-banner .heading-h1 {
  margin-bottom: 40px;
}

.banner-sec.mod-prod-banner .banner-content {
  padding-top: 135px;
  padding-bottom: 79px;
}

.banner-sec.mod-prod-banner .banner-feat-img {
  height: 682px;
}

.mod-prod-banner.banner-sec .heading-h1 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 26px;
}

.banner-sec.product-detail-banner .para-box {
  position: relative;
  padding-left: 140px;
  max-width: 764px;
}

.banner-sec.product-detail-banner .para-box::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: var(--ArylideYellow);
  left: 0;
  top: 16px;
}

.back-link {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
  padding-left: 27px;
  background: url("../images/arrow-left-white.png") no-repeat left 6px;
  transition: all 200ms ease-in;
}

.back-link:hover {
  color: var(--Sandstorm);
}

.product-intro-sec {
  padding-top: 100px;
  padding-bottom: 94px;
}

.product-intro-sec .heading-h4 {
  font-family: var(--fontfutura);
  margin-bottom: 17px;
}

.integration-row {
  display: flex;
  margin-left: -25px;
  margin-right: -25px;
  align-items: stretch;
  position: relative;
}

.integration-row .integration-cell {
  padding-left: 25px;
  padding-right: 25px;
  width: 25%;
  position: relative;
  padding-bottom: 76px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.integration-row .integration-ico .img-box {
  width: 100%;
  height: 100%;
}

.integration-row .integration-ico {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--DarkBlueGrey);
  margin: 0 auto 28px;
  overflow: hidden;
}

.integration-row .integration-inner {
  background: var(--GreenWhite);
  padding: 57px 20px 44px 20px;
  text-align: center;
  width: 100%;
}

.integration-row .integration-inner .heading-h5 {
  font-weight: 500;
  font-family: var(--fontfutura);
  margin-bottom: 5px;
}

.integration-sec .heading-h2 {
  text-align: center;
  margin-bottom: 36px;
}

.integration-row .number {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid var(--RegentGrey);
  width: 47px;
  height: 47px;
  bottom: 0;
  border-radius: 50px;
  text-align: center;
  bottom: 0;
  background: var(--white);
  line-height: 38px;
}

.integration-row::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: auto;
  margin: auto;
  height: 4px;
  background: var(--RegentGrey);
  bottom: 21px;
  left: 168px;
  right: 168px;
}

.integration-sec {
  padding-bottom: 126px;
}

/* product-video-sec */
.product-video-sec {
  background: var(--DarkBlueGrey);
  color: var(--white);
}

.product-video-sec .two-cell-content-inner {
  margin: 0;
  text-align: left;
  max-width: 510px;
}

.product-video-sec ul,
.product-video-sec ol {
  list-style-type: decimal;
  padding-left: 30px;
}

.testi-video-sec {
  background: #F5CA45;
}

.testi-video-sec .two-cell-content-inner {
  max-width: 750px;
  margin: 0 auto;
}

.product-video-sec ol li,
.product-video-sec ul li {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  font-family: var(--fontfutura);
  margin-bottom: 13px;
}

.product-video-sec ol li:last-child,
.product-video-sec ul li:last-child {
  margin-bottom: 0;
}

.product-video-sec .heading-h3 {
  margin-bottom: 32px;
}

.testi-video-sec .two-cell-content-inner span {
  display: block;
}

.product-video-sec .two-cell-row-one .two-cell-content {
  padding-top: 112px;
  padding-bottom: 118px;
}

.testi-video-sec .two-cell-row-two .two-cell-content {
  padding-top: 140px;
  padding-bottom: 187px;
  justify-content: center;
}

.testi-video-sec .heading-h4 {
  font-family: var(--fontfutura);
}

.testi-video-sec .heading-h2 {
  margin-bottom: 23px;
}

.testi-video-sec .heading-h3 {
  margin-bottom: 9px;
}

.products-sec.product-detail-sec .products-cell {
  width: 50%;
  padding-bottom: 43px;
}

.product-detail-sec .products-row {
  padding-bottom: 50px;
}


/* blog banner */
.blog-banner .banner-content,
.blog-detail-content .blog-detail-inner {
  max-width: 984px;
  margin: 0 auto;
}

.banner-sec.blog-banner .banner-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -66px;
}

.banner-sec.blog-banner {
  padding-bottom: 0px;
  padding-top: 204px;
}

.blog-detail-content .img-box {
  height: 558px;
  margin-bottom: 77px;
  padding-bottom: 0;
}

.blog-detail-content {
  position: relative;
}

.blog-detail-content::before {
  position: absolute;
  content: "";
  height: 330px;
  top: 0;
  background: var(--DarkBlueGrey);
  left: 0;
  right: 0;
  margin: auto;
}

.blog-detail-content .cust-container-lg {
  position: relative;
  z-index: 5;
}

.blog-detail-content .social-share-box {
  display: flex;
}

.blog-detail-content-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  padding-top: 17px;
}

.blog-detail-content-box span {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.blog-detail-content-box .social-share-box {
  display: flex;
  align-items: center;
  margin-right: -14px;
}

.social-share-box span {
  margin-right: 20px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.banner-sec.blog-banner .heading-h2 {
  margin-bottom: 0;
}

.blog-detail-content .heading-h5 {
  font-family: var(--fontfutura);
  margin-bottom: 60px;
  font-weight: 500;
}

.blog-detail-content p {
  margin-bottom: 40px;
}

.blog-detail-content blockquote {
  color: var(--RegentGrey);
  position: relative;
  padding-left: 33px;
  border-left: 3px solid var(--Sandstorm);
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  font-family: var(--fontfutura);
  margin-left: 109px;
  margin-bottom: 64px;
  max-width: 764px;
}

.blog-detail-content .heading-h4 {
  font-family: var(--fontfutura);
  margin-bottom: 14px;
  padding-top: 10px;
}

.blog-detail-content p+blockquote {
  margin-top: -15px;
}

.blog-detail-content p+a {
  margin-top: -40px;
  display: block;
}

.blog-detail-content a {
  transition: all 200ms ease-in;
}

.blog-detail-content a:hover {
  color: var(--RegentGrey);
}

.blog-detail-content .heading-h3 {
  margin-bottom: 4px;
}

.blog-detail-content .blog-cell-content {
  padding-bottom: 58px;
}

.blog-detail-bottom {
  padding-top: 35px;
  border-top: 1px solid var(--GreenWhite);
  border-bottom: 1px solid var(--GreenWhite);
  padding-bottom: 31px;
}

.blog-detail-content .blog-detail-inner {
  padding-bottom: 80px;
}

.common-blog-detail-desc strong {
  font-weight: 600;
}

.info-card-cell span {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.info-card-row {
  display: flex;
  margin-left: -23px;
  margin-right: -23px;
  flex-wrap: wrap;
}

.info-card-row .info-card-cell {
  padding-left: 22px;
  padding-right: 22px;
  width: 33.33%;
}

.info-card-row .info-card-cell .img-box {
  height: 300px;
  width: 100%;
  margin-bottom: 24px;
}

.info-card-row .info-card-cell span {
  color: var(--RegentGrey);
  display: block;
  margin-bottom: 10px;
}

.info-card-row .info-card-cell .heading-h4 {
  font-family: var(--fontfutura);
}

.related-articles-sec .heading-h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}

.related-articles-sec {
  padding-top: 119px;
  padding-bottom: 112px;
  position: relative;
}

.related-articles-sec::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  height: 350px;
  background: var(--GreenWhite);
  left: 0;
  right: 0;
  margin: auto;
}

.related-articles-sec .cust-container-lg {
  position: relative;
}

.blog-detail-content-box .sub-heading {
  width: calc(100% - 220px);
}

/* overview */
.blog-banner.overview-banner .banner-content {
  max-width: 100%;
}

.blog-banner.overview-banner .banner-content .info-card-cell {
  width: 50%;
}

.overview-banner {
  position: relative;
}

.overview-banner::after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  height: auto;
  background: var(--GreenWhite);
  left: 0;
  right: 0;
  margin: auto;
  top: 679px;
}

.overview-articles-sec {
  padding-top: 90px;
  padding-bottom: 90px;
}

.banner-sec.blog-banner.overview-banner {
  padding-bottom: 57px;
  padding-top: 230px;
}

.overview-banner .info-card-row .info-card-cell .heading-h4 {
  color: var(--DarkBlueGrey);
}

.overview-banner .info-card-row .img-box {
  height: 430px;
  margin-bottom: 36px;
}

.overview-banner .info-card-row {
  margin-left: -50px;
  margin-right: -50px;
}

.overview-banner .info-card-row .info-card-cell {
  padding-left: 50px;
  padding-right: 50px;
}

.overview-banner .info-card-row .info-card-cell .heading-h4 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-lspacing);
  font-family: var(--fontcoheadline);
}

.overview-articles-sec .info-card-row .info-card-cell {
  margin-bottom: 80px;
}

.overview-banner .blog-detail-content-box {
  padding-top: 23px;
}

.career-testi-sec .owl-theme .owl-nav.disabled+.owl-dots,
.career-testi-sec .owl-theme .owl-dots {
  position: absolute;
  bottom: -136px;
  margin: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.career-testi-sec .two-cell-content {
  position: relative;
}

.career-testi-sec .owl-theme .owl-dots .owl-dot.active span,
.career-testi-sec .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--DarkBlueGrey);
}

.common-accordian .active-acc-head .accordion-button::after {
  transform: rotate(136deg);
}

.job-faq-sec .common-accordian .active-acc-head .accordion-button::after {
  transform: rotate(180deg);
}

.common-accordian .accordion-button:not(.collapsed) {
  color: var(--black);
  box-shadow: none;
}

.common-accordian .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.common-accordian .accordion-button {
  font-size: var(--xl-font-size);
  line-height: var(--xl-line-height);
  letter-spacing: var(--xl-lspacing);
  font-weight: 500;
  padding: 32px 60px 32px 0;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  transition: all 200ms ease-in;
  background-color: transparent;
  box-shadow: none;
  outline: 0;
  -webkit-appearance: initial;
  appearance: initial;
}

.common-accordian .accordion-button:hover,
.common-accordian .accordion-button:focus {
  background: transparent;
  box-shadow: none;
  outline: 0;
  color: var(--black);
}

.accordion-header.active-acc-head .accordion-button {
  padding-bottom: 10px;
  transition: all 200ms ease-in;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type .accordion-collapse,
.accordion-item:last-of-type {
  border-radius: 0;
}

.common-accordian .accordion-button cite {
  margin-right: 18px;
  width: 31px;
}

.common-accordian .accordion-item {
  border: none;
  border-bottom: 1px solid var(--RegentGrey);
  background: transparent;
}

.common-accordian .accordion-item:first-child,
.common-accordian .accordion-item:last-of-type {
  border-top: none;
  border-radius: 0;
}

.common-accordian .accordion-item:first-child {
  border-top: 1px solid var(--RegentGrey);
}

.common-accordian .accordion-body {
  max-width: inherit;
  transition: all 200ms ease-in;
}

.common-accordian .accordion-button span,
.common-accordian .accordion-button p,
.common-accordian .accordion-button .heading-h3 {
  width: Calc(100% - 38px);
}

.common-accordian .accordion-button::after {
  background: #7e9aab url("../images/plus-ico.png") no-repeat center;
}

.common-accordian .accordion-button::after,
.common-accordian .active-acc-head .accordion-button::after {
  width: 40px;
  height: 40px;
  background-size: 16px;
  right: 0;
  position: absolute;
  content: "";
  top: 31px;
  border-radius: 50%;
  transform: rotate(0);
}

.common-accordian .active-acc-head .accordion-button::after {
  transform: rotate(-134deg);
}

.common-accordian .heading-h3 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  font-weight: 500;
}

.job-cat-sec .accordion-body {
  padding: 36px 0 102px 0;
}

.job-cat-sec {
  padding-top: 120px;
  padding-bottom: 120px;
}

.job-cat-head {
  text-align: center;
  margin-bottom: 28px;
}

.job-cat-sec .accordion-header .accordion-button {
  display: flex;
}

.job-cat-sec .accordion-button .heading-h3 {
  width: 980px;
  padding-right: 20px;
  font-family: var(--fontfutura);
}

.job-cat-sec .accordion-button span {
  width: 180px;
  padding-right: 20px;
  color: var(--RegentGrey);
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  letter-spacing: var(--h6-lspacing);
  font-weight: 600;
}

.job-cat-sec .accordion-body .heading-h4 {
  margin-bottom: 15px;
  font-family: var(--fontfutura);
  font-weight: 500;
}

.job-cat-sec .cat-descp-box .heading-h4 {
  margin-bottom: 6px;
}

.job-cat-sec .cat-required-cell .heading-h4 {
  margin-bottom: 9px;
}

.job-cat-sec .cat-descp-box p {
  margin-bottom: 36px;
}

.cat-activity-cell {
  background: var(--GreenWhite);
  padding: 32px 40px 44px;
  margin-bottom: 60px;
}

.cat-activity-cell .heading-h4 {
  margin-bottom: 20px;
  font-family: var(--fontfutura);
  font-weight: 500;
}

.cat-activity-cell .heading-h5 {
  margin-bottom: 10px;
  font-family: var(--fontfutura);
  font-weight: 500;
}

.cat-activity-row,
.cat-required-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -38px;
  margin-left: -35px;
  margin-right: -35px;
}

.cat-required-row {
  justify-content: space-between;
}

.cat-activity-row .cat-activity-inner-cell,
.cat-required-row .cat-required-cell-inner {
  width: 50%;
  margin-bottom: 35px;
  padding-left: 35px;
  padding-right: 35px;
}

.cat-required-row .cat-required-cell-inner:last-child {
  width: 47%;
  padding-top: 51px;
}

.cat-activity-row .cat-activity-inner-cell li {
  position: relative;
  padding-left: 15px;
}

.cat-activity-row .cat-activity-inner-cell li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--DarkBlueGrey);
  left: 0;
  top: 18px;
}

.cat-required-cell {
  padding-bottom: 60px;
}

.cat-required-row {
  display: flex;
}

.cat-required-row .oblique-content {
  color: var(--RegentGrey);
  font-style: italic;
  padding-top: 15px;
}

.cat-required-inner-row {
  display: flex;
  align-items: flex-start;
}

.cat-required-inner-row cite {
  display: inline-block;
  min-width: 186px;
  font-weight: 500;
  padding-right: 32px;
}

.cat-required-inner-row span {
  display: inline-block;
  width: Calc(100% - 190px);
}

.job-cat-sec .to-apply-sec .heading-h4 {
  margin-bottom: 7px;
}

.to-apply-sec p {
  margin-bottom: 25px;
}

.contact-form-sec {
  background: var(--GreenWhite);
  padding-top: 77px;
  padding-bottom: 75px;
}

.contact-form-head {
  text-align: center;
  margin-bottom: 49px;
}

.theme-btn input {
  border: none;
  outline: 0;
  box-shadow: none;
  background: transparent;
  text-transform: uppercase;
  font-weight: 700;
}

.cust-select-box .form-label {
  width: 337px;
}

.cust-select-box .custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
  width: Calc(100% - 360px);
}

.cust-file-upload-box .form-label {
  margin-bottom: 15px;
}

.w-33 {
  width: 33.33%;
}

.w-66 {
  width: 66.33%;
}

.w-100 {
  width: 66.33%;
}

.cust-form-row {
  margin-left: -24px;
  margin-right: -24px;
  display: flex;
  flex-wrap: wrap;
}

.cust-form .form-group {
  padding-left: 24px;
  padding-right: 24px;
}

.contact-form-sec .cust-form-submit.form-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  margin-top: -8px;
}

.contact-form-sec .cust-form-submit-left {
  width: 853px;
}

.contact-form-sec .cust-radio-box {
  margin-bottom: 50px;
}

.cust-radio-box a {
  border-bottom: 1px solid var(--DarkBlueGrey);
  transition: all 200ms ease-in;
}

.cust-radio-box a:hover {
  border-bottom-color: transparent;
}

.cust-select-box {
  display: flex;
}

.banner-sec.work-banner .heading-h1 cite {
  display: block;
}

.banner-sec.work-banner .heading-h1 {
  width: 584px;
  padding-right: 20px;
}

.banner-sec.work-banner .line-horz {
  display: block;
  width: Calc(100% - 638px);
  margin-bottom: 66px;
}

.banner-sec.work-banner .banner-content {
  display: flex;
}

.heading-h1 sup {
  display: inline-block;
  top: -36px;
  position: relative;
  font-size: 72px;
  line-height: 72px;
}

.banner-sec.work-banner {
  padding-bottom: 0;
}

.twopart-intro-sec.career-intro-sec .two-cell-right {
  padding-top: 5px;
}

.career-intro-sec .two-cell-right {
  width: 45%;
}

.twopart-intro-sec.career-intro-sec .two-cell-right p {
  margin-bottom: 27px;
}

.twopart-intro-sec.career-intro-sec .two-cell-right p:last-child {
  margin-bottom: 0;
}

.twopart-intro-sec.career-intro-sec {
  padding-top: 101px;
}

.career-testi-sec .two-cell-row-two .two-cell-content {
  padding-top: 106px;
  padding-bottom: 132px;
  align-items: flex-start;
  min-height: 600px;
}

.job-cat-sec .heading-h2 {
  margin-top: -4px;
}

.mission-first .two-cell-content-inner {
  max-width: 629px;
}

.mission-two .two-cell-content-inner {
  max-width: 670px;
}

.mission-three .two-cell-content-inner {
  max-width: 640px;
}

.twopart-intro-sec.technology-intro-sec .two-cont-row {
  flex-direction: column;
}

.twopart-intro-sec.technology-intro-sec .two-cell-right,
.twopart-intro-sec.technology-intro-sec .two-cell-left {
  width: 100%;
}

.twopart-intro-sec.technology-intro-sec .two-cell-right {
  padding-top: 17px;
}


.wpcf7-not-valid-tip,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  font-size: var(--sm-font-size) !important;
  line-height: var(--sm-line-height) !important;
  letter-spacing: var(--sm-lspacing) !important;
  font-family: var(--fontfutura) !important;
  font-weight: 500;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--DarkBlueGrey) !important;
  color: var(--DarkBlueGrey) !important;
  width: 100%;
  text-align: center;
  margin: 0 auto !important;
  display: block;
  padding: 7px 20px !important;
}

.cust-form .wpcf7 form.invalid .wpcf7-response-output,
.cust-form .wpcf7 form.sent .wpcf7-response-output,
.cust-form .wpcf7 form.unaccepted .wpcf7-response-output,
.cust-form .wpcf7 form.payment-required .wpcf7-response-output,
.cust-form .wpcf7 form .wpcf7-response-output {
  width: 100%;
}

.wpcf7 form.invalid .wpcf7-response-output .wpcf7-not-valid-tip {
  color: #dc3232 !important;
}

.cust-form-submit {
  position: relative;
}

.cust-form-submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: -40px;
  top: 17px;
}

.contact-form-sec .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-sec .wpcf7 form .wpcf7-response-output,
.contact-form-sec .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-sec .wpcf7 form .wpcf7-response-output,
.contact-form-sec .wpcf7 form.payment-required .wpcf7-response-output {
  margin-bottom: 50px !important;
}

.cust-select-box .custom-select-wrapper .custom-select-wrapper {
  width: 100%;
}

.cust-drag-drop-box input {
  position: relative;
  width: 136px;
}

.cust-drag-drop-box input::file-selector-button {
  display: none;
}

/*.cust-drag-drop-box input::before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    display: inline-block;*/
/*    background: #F0F3F4;*/
/*    outline: none;*/
/*    white-space: nowrap;*/
/*    -webkit-user-select: none;*/
/*    cursor: pointer;*/
/*    width: 130px;*/
/*    height: 100%;*/
/*}*/
.cust-drag-drop-box input:hover::before {
  border-color: black;
}

.cust-drag-drop-box .wpcf7-form-control-wrap {
  display: block;
  width: auto;
  height: auto;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.file-area span.wpcf7-form-control-wrap {
  width: 100%;
  position: absolute;
  height: 100%;
}

.file-area input {
  z-index: 8;
}


/*custom checkbox*/
.contact-form-sec .cust-form-submit-left .wpcf7-list-item {
  margin-left: 0;
}

.contact-form-sec .cust-form-submit-left .wpcf7-list-item-label {
  display: block;
  position: relative;
  margin-bottom: 50px;
  cursor: pointer;
  font-size: var(--sm-font-size);
  line-height: 30px;
  letter-spacing: var(--sm-lspacing);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #393734;
  padding-left: 35px;
}

.contact-form-sec .cust-form-submit-left [type=checkbox] {
  width: 14px;
  height: 14px;
  color: #393734;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  background-color: #e5ebee;
  transition: background 300ms;
  cursor: pointer;
  position: absolute;
  top: -20px;
}

.contact-form-sec .cust-form-submit-left [type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #393734;
}

.contact-form-sec .cust-form-submit-left [type=checkbox]:checked {
  background-color: currentcolor;
}

.contact-form-sec .cust-form-submit-left [type=checkbox]:checked::before {
  box-shadow: none;
  background: url(../images/check-blue.png) no-repeat center;
  background-size: 12px;

}

.contact-form-sec .cust-form-submit-left [type=checkbox]:disabled {
  background-color: #393734;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */
.contact-form-sec .cust-form-submit-left [type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

.contact-form-sec .cust-form-submit-left [type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background: #393734 url(../images/check-blue.png) no-repeat center;
  background-size: 12px;
}

.cust-file-upload-box .wpcf7-not-valid-tip {
  text-align: center;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
}

.contact-form-sec .cust-form-submit-left .wpcf7-list-item-label a {
  border-bottom: 1px solid var(--DarkBlueGrey);
  transition: all 200ms ease-in;
}

.contact-form-sec .cust-form-submit-left .wpcf7-list-item-label a:hover {
  border-bottom-color: transparent;
}

.social-share-box div.heateor_sss_follow_ul,
.social-share-box div.heateor_sss_sharing_ul {
  display: flex;
}

.social-links li:last-child {
  margin-right: 0;
}

.social-share-box .heateor_sss_sharing_ul a:last-child span {
  margin-right: 0;
}

.common-layout-content.banner-sec::after {
  display: none;
}

.common-layout-content.banner-sec {
  padding-bottom: 130px;
  padding-top: 230px;
}

.banner-sec.serch-banner.common-layout-content {
  padding-bottom: 50px;
  padding-top: 170px;
}

.common-layout-content.banner-sec .entry-content h2,
.common-layout-content.banner-sec .entry h2 {
  margin-bottom: 20px;
  margin-top: 50px;
}

.common-layout-content.banner-sec .entry-content p {
  margin-bottom: 10px;
}

.common-layout-content.banner-sec .banner-content {
  margin-top: 0;
}

.common-layout-content.banner-sec .type-page {
  padding-top: 0;
}

.common-layout-content.banner-sec .type-page a,
.common-layout-content.banner-sec .entry-content p a {
  display: inline-block;
  border-bottom: 2px solid #fff;
  transition: all 200ms ease-in;
}

.common-layout-content.banner-sec .type-page a:hover,
.common-layout-content.banner-sec .entry-content p a:hover {
  border-bottom-color: transparent;
}

.banner-sec.common-layout-content.privacy-terms-banner h1 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-lspacing);
}

.banner-sec.serch-banner.common-layout-content h2 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-lspacing);
}

.banner-sec.common-layout-content ul li {
  list-style-type: circle;
}

.banner-sec.common-layout-content ol li {
  list-style-type: decimal;
}

.banner-sec.common-layout-content ul,
.banner-sec.common-layout-content ol {
  padding-left: 23px;
}

.banner-sec.common-layout-content ul li,
.banner-sec.common-layout-content ol li {
  padding-left: 5px;
}

.common-layout-content.banner-sec .entry a img {
  height: 340px !important;
  display: block;
  width: 340px !important;
  object-fit: contain;
}

.blog-load-button {
  text-align: center;
}

.techno-serv-sec .heading-h2 cite {
  margin-left: 10px;
}

.job-cara-sec .owl-item {
  display: flex;
}

.job-cara-sec .item {
  display: flex;
  align-items: stretch;
}

div.heateor_sss_follow_ul a,
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  width: 42px;
  height: 38px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto !important;
  margin-right: 9px !important;
}

.blog-detail-content-box .social-share-box span {
  margin-right: 10px;
}

div.heateor_sss_follow_ul a:last-child,
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a:last-child {
  margin-right: 0 !important;
}

div.heateor_sss_follow_ul a span,
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a span {
  margin: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.blog-load-button a {
  font-weight: 500;
  padding: 0;
  border-bottom: 2px solid transparent;
  transition: all 200ms ease-in;
  border-radius: 0;
}

.blog-load-button a:hover {
  border-bottom-color: var(--DarkBlueGrey);
}

sup {
  top: -0.5em;
  position: relative;
  font-size: .75em;
  line-height: 0;
  vertical-align: baseline;
}

.common-blog-detail-sec .banner-content {
  text-align: center;
}

.common-blog-detail-sec .blog-detail-content-box .sub-heading {
  width: 100%;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-lspacing);
  margin-bottom: 30px;
  font-weight: 400;
  font-family: var(--fontfutura);
  display: block;
}

.common-blog-detail-sec .banner-content a,
.common-blog-detail-desc p a {
  color: var(--RegentGrey) !important;
  border-bottom: 2px solid var(--RegentGrey);
}

.common-blog-detail-sec .banner-content a:hover,
.common-blog-detail-desc p a:hover {
  color: var(--DarkBlueGrey) !important;
  border-bottom-color: var(--DarkBlueGrey);
}

.common-blog-detail-desc .btn-box.right-btn-box a:hover {
  color: var(--DarkBlueGrey);
}


.common-blog-detail-desc p a:hover {
  color: var(--DarkBlueGrey);
  border-bottom-color: var(--DarkBlueGrey);
}

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

.common-blog-detail-desc .btn-box.right-btn-box {
  text-align: center;
}

.common-blog-detail-desc .btn-box.right-btn-box {
  margin-bottom: 57px;
}

.common-blog-detail-desc ul li {
  position: relative;
  padding-left: 50px;
}

.common-blog-detail-desc ol li,
.common-blog-detail-desc ul li {
  margin-bottom: 40px;
  font-style: italic;
}

.common-blog-detail-desc ol li {
  padding-left: 10px;
}

.common-blog-detail-desc ul li::before {
  position: absolute;
  content: "";
  width: 31px;
  height: 26px;
  background: url(../images/yellow-checkmark.png) no-repeat center;
  left: 0;
  top: 7px;
  background-size: 29px;
}

.common-blog-detail-desc ol {
  padding-left: 20px;
}

.common-blog-detail-desc ol li {
  list-style-type: decimal;
}

.blog-detail-content.common-blog-detail-desc .blog-cell-content {
  padding-bottom: 0;
}

.common-blog-detail-desc .image-with-credit>p {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 0;
  text-align: center;
  padding-top: 19px;
  font-style: italic;
}

.common-blog-detail-desc .img-box,
.common-blog-detail-sec .img-box {
  margin-bottom: 0;
}

.common-blog-detail-sec .image-with-credit,
.common-blog-detail-desc .image-with-credit {
  margin-bottom: 60px;
}

.common-blog-detail-desc .blog-list-row {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}

.common-blog-detail-desc .blog-list-cell {
  width: 33.33%;
  padding-left: 20px;
  padding-right: 20px;
}

.common-blog-detail-desc .blog-list-cell .img-box {
  height: 278px;
  margin-bottom: 0;
}

.common-blog-detail-desc .blog-list-cell p {
  margin-bottom: 0;
  margin-top: 0;
}

.patent-banner .blog-detail-content-box {
  flex-direction: column;
}

.patent-banner .image-with-credit {
  height: 516px;
  width: 100%;
  margin-bottom: 0;
  margin-top: 14px;
}

.patent-banner.common-blog-detail-sec .img-box {
  width: 100%;
  height: 100%;
}

.blog-detail-content.common-blog-detail-desc::before {
  display: none;
}

.common-blog-detail-sec {
  background: var(--white);
}

.patent-banner.common-blog-detail-sec::after {
  position: absolute;
  content: "";
  background: var(--DarkBlueGrey);
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 583px;
}

.patent-banner.common-blog-detail-sec .sub-heading {
  color: var(--DarkBlueGrey);
  text-align: left;
  margin-top: 30px;
}

.common-blog-detail-desc .blog-list-cell .image-with-credit {
  margin-bottom: 0;
}

.common-blog-detail-sec .back-link {
  position: relative;
  z-index: 6;
}

.blog-list-cell.full-blog-list-cell {
  width: 100%;
}

.blog-list-cell.full-blog-list-cell .img-box {
  max-width: 270px;
  margin: 0 auto;
}

.blog-detail-content .img-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-video-sec.career-testi-sec.career-testi-sec-hide {
  display: none;
}

.career-nav-container .owl-prev,
.career-nav-container .owl-next {
  position: absolute;
  z-index: 13;
  top: 0;
  bottom: 0;
  margin: auto;
}

.career-nav-container .owl-next {
  right: 0;
}

.two-cell-img .img-box {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*inner pages*/
.cust-intro-sec {
  text-align: center;
  padding-bottom: 119px;
}

.cust-intro-sec .heading-h2,
.cust-list-sec.product-intro-sec .heading-h2 {
  margin-bottom: 23px;
}

.trinity-ser-sec {
  background: var(--RegentGrey);
}

.multi-items-sec.trinity-ser-sec .multi-items-row {
  margin-left: -59px;
  margin-right: -59px;
}

.multi-items-sec.trinity-ser-sec .multi-items-cell {
  padding-left: 59px;
  padding-right: 59px;
}

.multi-items-sec.trinity-ser-sec .trio-ico {
  width: 150px;
  height: 150px;
  margin: 0 auto 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-items-sec.trinity-ser-sec .trio-ico img {
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  object-fit: contain;
}

.multi-items-sec.trinity-ser-sec .heading-h4 {
  font-family: var(--fontfutura);
  color: var(--Sandstorm);
  margin-bottom: 17px;
  font-weight: 600;
}

.multi-items-sec.trinity-ser-sec p {
  color: var(--white);
}

.cust-list-sec.product-intro-sec .product-intro-inner {
  text-align: center;
  padding-bottom: 55px;
}

.cust-list-sec {
  padding-top: 111px;
  padding-bottom: 99px;
}

.cust-list-cell {
  display: flex;
  margin-bottom: 38px;
}

.cust-list-cell .cust-list-img {
  width: 400px;
}

.cust-list-cell .cust-list-img img {
  display: block;
  width: 100%;
}

.cust-list-cell .cust-list-content {
  width: Calc(100% - 399px);
  padding-top: 74px;
}

.cust-list-even .cust-list-content {
  padding-left: 151px;
}

.cust-list-cell.cust-list-odd {
  text-align: right;
}

.cust-list-odd .cust-list-content {
  padding-right: 151px;
}

.cust-list-cell .cust-list-head {
  margin-bottom: 16px;
  position: relative;
}

.cust-list-cell .cust-list-head span {
  width: 55px;
  height: 2px;
  background: var(--DarkBlueGrey2);
  display: inline-block;
}

.cust-list-cell .dash {
  position: absolute;
  top: 25px;
}

.cust-list-odd .dash {
  right: -71px;
}

.cust-list-even .dash {
  left: -71px;
}

.multi-items-row.to-show-mobile {
  display: none;
}

.prod-mod-sec.products-sec .product-img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.color--yellow {
  color: var(--Sandstorm);
}

.prod-mod-sec.products-sec .products-row .products-cell {
  width: 25%;
}

.prod-mod-sec.products-sec .heading-h5 {
  max-width: 323px;
  margin: 0 auto 20px;
  font-family: var(--fontfutura);
  font-weight: 500;
  text-align: center;
}

.product-detail-banner .heading-h2 {
  margin-bottom: 24px;
}

.ultra-probe-sec {
  display: flex;
  justify-content: space-between;
  padding-top: 56px;
  padding-bottom: 86px;
}

.ultrasound-tabs-sec {
  padding-top: 40px;
}

.ultra-probe-sec .ultra-probe-cell {
  width: 45.5%;
}

.ultra-probe-sec .ultra-probe-cell-img {
  width: 46.4%;
}

.ultra-probe-sec .ultra-probe-cell-img img {
  display: block;
  width: 100%;
}

.cust-probe-tabs .nav-tabs {
  border-bottom: 1px solid var(--RegentGrey);
}

.cust-probe-tabs .nav-tabs .nav-link {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  color: var(--RegentGrey);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 25px 0;
  margin-right: 60px;
}

.cust-probe-tabs .nav-tabs .nav-link:last-child {
  margin-right: 0;
}

.cust-probe-tabs .nav-tabs .nav-link:hover,
.cust-probe-tabs .nav-tabs .nav-link.active {
  color: #243746;
  border-bottom-color: #243746;
}

.ultra-content-btm a {
  border-bottom: 1px solid var(--DarkBlueGrey);
}

.ultra-content-btm a:hover {
  border-bottom-color: transparent;
}

.ultra-content-top .heading-h2 {
  margin-bottom: 21px;
}

.ultra-content-top .heading-h4 {
  font-family: var(--fontfutura);
  font-weight: 400;
  margin-bottom: 30px;
}

.ultra-content-top {
  padding-bottom: 39px;
}

.ultra-content-btm .heading-h6 {
  font-family: var(--fontfutura);
  color: var(--RegentGrey);
  font-weight: 600;
  margin-bottom: 3px;
}

.ultra-content-btm {
  margin-bottom: 50px;
}

.ultra-content-btm li {
  position: relative;
  padding-left: 14px;
}

.ultra-content-btm li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--DarkBlueGrey);
  border-radius: 50%;
  left: 0;
  top: 16px;
}

.banner-sec.ultra-banner .banner-feat-img {
  height: 693px;
  bottom: -160px;
}

.banner-sec.ultra-banner .banner-content {
  padding-bottom: 182px;
}

.ultrasound-feat {
  padding-top: 99px;
}

.ultrasound-feat .products-row .product-img {
  height: 252px;
  width: 95%;
  margin-bottom: 33px;
}

.ultrasound-feat .products-row .products-cell {
  padding-bottom: 51px;
}

.ultrasound-feat .products-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ultrasound-feat .products-row.to-show-mobile {
  display: none;
}

.guides-products-sec .heading-h2 {
  margin-bottom: 23px;
}

.guides-products-sec .heading-h4 {
  max-width: 1088px;
  margin: 0 auto 57px;
  text-align: center;
  font-family: var(--fontfutura);
  font-weight: 400;
}

.extra-prod-detail {
  display: flex;
  align-items: center;
  padding-top: 23px;
}

.extra-prod-detail .extra-prod-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--DarkBlueGrey);
  margin-right: 30px;
}

.extra-prod-detail .extra-prod-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 11px;
}

.guides-banner .para-box p:not(:last-child) {
  margin-bottom: 30px;
}

.product-detail-banner.guides-banner .banner-feat-img img {
  width: auto;
  margin: 0;
  right: 0;
  left: auto;
}

.banner-sec.guides-banner .banner-feat-img {
  height: 592px;
}

.guides-products-sec {
  padding-top: 91px;
}

.guides-products-sec .products-row .heading-h3 {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  min-height: 105px;
}

.guides-products-sec .products-row .products-cell {
  padding-top: 50px;
  padding-bottom: 71px;
}

.guides-products-sec .products-row .product-img {
  height: 282px;
  margin-bottom: 39px;
}

.guide-detail-sec .products-row .product-img {
  margin-left: auto;
  margin-right: auto;
  height: 332px;
  width: 100%;
}

.guide-detail-sec .center-top-content .heading-h4 {
  font-family: var(--fontfutura);
  font-weight: 400;
  max-width: 1088px;
  margin: 0 auto 60px;
  text-align: center;
}

.trio-check-list .center-top-content {
  text-align: center;
  margin-bottom: 56px;
}

.trio-check-row {
  display: flex;
  justify-content: center;
  margin-left: -40px;
  margin-right: -40px;
}

.trio-check-cell {
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.trio-check-cell:last-child {
  width: 42%;
}

.trio-check-cell:nth-child(2),
.trio-check-cell:first-child {
  width: 29%;
}

.trio-check-cell i {
  width: 70px;
  height: 70px;
  background-color: var(--DarkBlueGrey);
  border-radius: 50%;
  background-image: url("../images/yellow-check.png");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 20px;
}

.trio-check-cell .heading-h4 {
  width: Calc(100% - 100px);
  font-family: var(--fontfutura);
}

.rotation-box {
  display: flex;
  justify-content: center;
  padding-top: 27px;
}

.rotation-box .heading-h5 {
  display: block;
  font-family: var(--fontfutura);
  font-weight: 500;
  margin-right: 17px;
}

.study-pro-detail-sec .center-top-content {
  text-align: center;
  margin-bottom: 47px;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.study-pro-detail-sec .center-top-content .heading-h4 {
  font-weight: 400;
  font-family: var(--fontfutura);
  margin-bottom: 20px;
}

.study-pro-detail-sec .study-feat-img {
  max-width: 984px;
  height: 520px;
  margin: 0 auto;
}

.study-pro-detail-sec .img-box {
  height: 100%;
  width: 100%;
}

.products-sec.study-pro-detail-sec .heading-h2 {
  margin-bottom: 24px;
}

.guide-detail-sec.study-pro-sec {
  padding-top: 20px;
}

.products-sec.product-detail-sec.guide-detail-sec.study-pro-sec .heading-h2 {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.guide-detail-sec.study-pro-sec .center-top-content .heading-h5 {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.banner-sec.techno-banner.locator-banner .banner-content {
  max-width: 1068px;
  margin: 0 auto;
  padding-bottom: 79px;
}

.locator-form-sec .cust-form {
  background: var(--GreenWhite);
  padding: 58px 136px;
}

.locator-form-sec .cust-select-box .form-label {
  width: auto;
  min-width: 70px;
  margin-right: 12px;
}

.locator-form-sec .custom-select-trigger {
  padding-left: 20px;
}

.locator-form-sec .cust-select-box {
  display: flex;
  width: 100%;
}

.locator-form-sec .form-group:first-child {
  width: 428px;
}

.locator-form-sec .form-group {
  margin-bottom: 0;
}

.locator-form-sec .form-group:nth-child(2) {
  width: 430px;
}

.locator-form-sec .form-group:nth-child(3) {
  width: 280px;
}

.locator-form-sec .form-group:last-child {
  width: 100%;
  text-align: right;
  padding-top: 30px;
}

/*.locator-form-sec .form-control::-webkit-input-placeholder {*/
/*  color: var(--RegentGrey);*/
/*}*/

/*.locator-form-sec .form-control::-moz-placeholder {*/
/*  color: var(--RegentGrey);*/
/*}*/

/*.locator-form-sec .form-control:-ms-input-placeholder {*/
/*  color: var(--RegentGrey);*/
/*}*/

/*.locator-form-sec .form-control:-moz-placeholder {*/
/*  color: var(--RegentGrey);*/
/*}*/

/*.locator-form-sec .custom-select-trigger {*/
/*      color: var(--RegentGrey);*/
/*}*/

.locator-form-sec .cust-select-box .custom-select-wrapper {
  width: Calc(100% - 81px);
}

.locator-form-sec {
  position: relative;
}

.locator-form-sec::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 50%;
  left: 0;
  right: 0;
  background: var(--DarkBlueGrey);
}

.locator-form-sec .cust-container-lg {
  position: relative;
  z-index: 4;
}

.locator-map-sec .locator-map-row {
  display: flex;
  justify-content: space-between;
}

.locator-head .line-box {
  justify-content: flex-start;
  margin-bottom: 25px;
}

.locator-map-sec {
  padding-top: 86px;
  padding-bottom: 140px;
}

.locator-map-cell {
  width: 43.9%;
  padding-right: 70px;
}

.locator-map-img {
  width: 50%;
  height: 720px;
}

.locator-map-img .img-box {
  height: 100%;
  width: 100%;
}

.locator-map-cell {
  width: 44%;
}

.locator-head .heading-h3 {
  margin-bottom: 30px;
}

.locator-cont-cell {
  position: relative;
  margin-bottom: 35px;

}

.locator-map-cell {
  max-height: 723px;
  overflow-y: auto;
}

.locator-map-cell::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.locator-map-cell::-webkit-scrollbar-track {
  width: 4px;
  height: 4px;
  box-shadow: none;
  background: var(--GreenWhite);
}

.locator-map-cell::-webkit-scrollbar-thumb {
  outline: none;
  background: var(--DarkBlueGrey);
}

.locator-cont-cell address {
  position: relative;
}

.locator-cont-cell .km {
  color: var(--RegentGrey);
  position: absolute;
  right: 0;
  top: 5px;
}

.locator-cont-cell .heading-h4 {
  font-weight: 400;
  font-family: var(--fontfutura);
  padding-right: 130px;
  margin-bottom: 14px;
}

.locator-cont-cell span {
  display: block;
  margin-bottom: 7px;
}

.locator-cont-cell a {
  display: inline-block;
  margin-top: 17px;
  border-bottom: 1px solid var(--RegentGrey);
}

.locator-cont-cell a:hover {
  border-bottom-color: transparent;
}

.locator-cont-inner {
  padding-bottom: 51px;
  border-bottom: 1px solid var(--RegentGrey2);
}

.banner-sec.techno-banner.locator-banner .banner-content .heading-h2 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 25px;
}

.banner-sec.techno-banner.locator-banner .banner-content {
  padding-top: 117px;
}

.banner-sec.techno-banner.locator-banner .banner-content p a {
  display: inline-block;
  border-bottom: 1px solid var(--white);
}

.banner-sec.techno-banner.locator-banner .banner-content p a:hover {
  border-bottom-color: transparent;
}

.banner-sec.product-detail-banner.mod-prod-banner.ultra-banner p {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
}

/** popup video css start **/
div#videoModal .modal-dialog,
div#youtubeModal .modal-dialog {
  max-width: 1100px;
  width: 100%;
  height: 450px;
  max-height: 90%;
  position: relative;
}

div#videoModal .modal-header,
div#youtubeModal .modal-header {
  padding: 0px;
  border: 0;
}

div#videoModal .modal-header .btn-close,
div#youtubeModal .modal-header .btn-close {
  position: absolute;
  top: 0;
  cursor: pointer;
  left: -50px;
  margin: auto 0;
  transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  background-image: none;
  z-index: 9;
  opacity: 1;
}

div#videoModal .modal-body video,
div#youtubeModal .modal-body iframe {
  width: 100%;
}

div#videoModal .modal-header .btn-close img,
div#youtubeModal .modal-header .btn-close img {
  width: 30px;
}

div#videoModal .modal-body,
div#youtubeModal .modal-body {
  padding: 5px;
}

.modal-backdrop.show {
  opacity: .8;
}

div#videoModal .modal-header .btn-close:focus,
#youtubeModal .modal-header .btn-close:focus {
  box-shadow: none;
}

div#youtubeModal .modal-body iframe {
  height: 569px;
}

.locator-form-sec .cust-form .custom-select.form-control,
.locator-form-sec .cust-form .form-control::placeholder {
  color: #7E9AAB;
}

.locator-form-sec .cust-form .custom-select-trigger {
  font-weight: 400;
}

#loading {
  margin: 40px auto 0;
}

#loading #loading-image {
  display: block;
  margin: 0 auto;
  width: 50px;
}

.call-to-act {
  text-align: center;
  margin-bottom: 40px;
}

.call-to-act .theme-btn:hover {
  color: var(--DarkBlueGrey);
}

.testi-video-sec.career-testi-sec.mod-career-testi-sec .item .img-box {
  display: none;
}

/* new edits */
.mod-integration-sec {
  padding-top: 120px;
}

.mod-two-row {
  display: flex;
  margin-left: -50px;
  margin-right: -50px;
  padding-top: 40px;
}

.mod-two-row .mod-two-cell {
  width: 50%;
  padding-left: 50px;
  padding-right: 50px;
}

.mod-two-row .mod-two-cell .img-box {
  height: 550px;
}

.mod-two-list-sec .trio-top-content {
  text-align: center;
}

.values-sec.mod-product-value-sec {
  background: var(--RegentGrey);
}

.values-sec.mod-product-value-sec .heading-h2 {
  margin-bottom: 20px;
}

.values-sec.mod-product-value-sec .values-sec-top .heading-h4 {
  color: var(--white);
}

.values-sec.mod-product-value-sec .heading-h4 {
  color: var(--Sandstorm);
}

.values-sec.mod-product-value-sec .values-row {
  padding-top: 70px;
  color: var(--white);
}


.values-sec.mod-product-value-sec .values-cell {
  border-color: var(--Sandstorm);
  border-width: 2px;
}

.mod-two-list-sec {
  padding-top: 120px;
  padding-bottom: 120px;
}

.values-sec.mod-product-value-sec .mod-two-row {
  padding-top: 100px;
}

.mod-two-list-sec .heading-h4 {
  text-align: center;
  margin-top: 15px;
}

.multi-items-sec.about-mission-sec.mod-muli-sec .heading-h2 {
  margin-bottom: 34px;
}

.multi-items-sec.about-mission-sec.mod-muli-sec {
  padding-bottom: 73px;
}

.multi-items-sec.about-mission-sec.mod-muli-sec .trio-top-content {
  max-width: 100%;
}

.multi-items-sec.about-mission-sec.mod-muli-sec .heading-h5 {
  margin-bottom: 50px;
}

.testi-video-sec .two-cell-content-inner ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 28px;
  padding-top: 10px;
}

.testi-video-sec .two-cell-content-inner ul li {
  list-style-type: disc;
  margin-bottom: 11px;
}

.products-sec.product-detail-sec.hide-space-tdm {
  padding-top: 10px;
}

/** our innovation section css start **/
.innovation-top-header h3,
.main-techno-sctn h3 {
  text-align: center;
  margin-bottom: 40px;
}

.innovation-two .img-box img {
  object-fit: contain;
}

.innovation-sctn .two-cell-row-two .two-cell-content {
  background: #1d3748;
  width: 56%;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 35px;
}

.innovation-sctn .two-cell-row-two .two-cell-img {
  width: 44%;
}

.innovation-two .line-shape {
  background: #fff;
}

.innovation-sctn .two-cell-row-two .two-cell-content p {
  text-align: center;
  font-size: 24px;
  margin-bottom: 60px;
}

.two-cell-row-two.innovation-two .theme-btn {
  color: var(--white);
  border-color: var(--white);
  font-size: var(--sm-font-size);
  font-weight: 400;
}

.two-cell-row-two.innovation-two h3 {
  margin-bottom: 30px;
}

/** our innovation section css end **/
/** techno section**/
.main-techno-sctn .heading-h6 {
  text-align: center;
  margin-bottom: 20px;
}

.main-techno-sctn .products-row .product-img {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.products-sec.main-techno-sctn,
.innovation-sctn {
  padding-top: 15px;
}

.main-techno-sctn .products-row .product-img img {
  object-position: bottom;
}

.cust-container-mdm {
  max-width: 76%;
  margin: 0px auto;
}

.innovation-top-header h3,
.main-techno-sctn h3.heading-h4 {
  font-weight: 600;
}

.main-techno-sctn .products-content-top h3 {
  font-weight: 400;
}

/** techno section**/

.products-sec.product-detail-sec .btn-box {
  text-align: center;
  margin-top: 15px;
}

/** promap-focal-therapy**/


.banner-sec.koelis-trinity {
  padding-top: 193px;
}

.banner-sec.koelis-trinity .banner-feat-img img {
  top: 30px;
}

.banner-sec.koelis-trinity .para-box::before {
  display: none;
}

.banner-sec.koelis-trinity .para-box {
  padding-left: 0px;
}

.banner-sec.koelis-trinity .banner-content {
  padding-top: 0px;
}

.banner-sec.koelis-trinity .banner-content .heading-h3 {
  padding-bottom: 60px;
  padding-left: 20px;
}

.multi-items-sec.trinity-ser-sec .multi-item-top {
  text-align: center;
  padding-bottom: 50px;
}

.multi-items-sec.trinity-ser-sec .multi-item-top .heading-h3 {
  padding-bottom: 30px;
  color: #fff;
}

.multi-items-sec.trinity-ser-sec .multi-item-top p {
  color: #fff;
}

.multi-items-sec.trinity-ser-sec .trio-ico {
  border: none;
  border-radius: 0;
}

.multi-items-sec.trinity-ser-sec .heading-h4 {
  min-height: 100px;
}

.product-intro-sec.cust-list-sec.mri-sec .cust-list-img {
  width: 100%;
}

.product-intro-sec.cust-list-sec.mri-sec .heading-2 {
  text-align: left;
}

.product-intro-sec.cust-list-sec.mri-sec p {
  font-family: var(--fontfutura);
  text-align: left;
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  color: var(--RegentGrey);
}

.product-intro-sec.cust-list-sec.mri-sec .cust-list-cell .dash {
  position: absolute;
  top: 80px;
}

.product-intro-sec.cust-list-sec.mri-sec .heading-h3 {
  color: var(--RegentGrey);
}

.brochure-button {
  width: 100%;
  height: auto;
  padding: 50px 0px;
}

.brochure-button .btn-box {
  text-align: center;
}

.brochure-button .theme-btn i {
  top: 10px;
}

.brochure-button .theme-yellow-btn {
  margin-bottom: 20px;
}

.brochure-button .theme-btn cite {
  display: block;
}

.accuracy-mm-sec {
  width: 100%;
  height: auto;
  padding-top: 100px;
}

.accuracy-mm-sec .accuracy-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  align-items: center;
}

.accuracy-mm-sec .accuracy-bottom ul li {
  position: relative;
}

.accuracy-mm-sec .accuracy-bottom p {
  font-size: 15px;
  line-height: 25px;
}

.accuracy-mm-sec .accuracy-bottom ul li ul li::before {
  position: absolute;
  content: "";
  width: 37px;
  height: 50px;
  background: url(../images/yellow-checkmark.png) no-repeat center;
  background-size: auto;
  left: 0;
  top: 7px;
  background-size: 29px;
}

.accuracy-mm-sec .accuracy-top .img-sec {
  width: 46%;

}

.accuracy-mm-sec .accuracy-top .heading-h2 {
  text-align: center;
}

.accuracy-mm-sec .accuracy-top .heading-h2 sup {
  font-size: 16px;
}

.accuracy-mm-sec .accuracy-top .img-sec img {
  width: 100%;
}

.accuracy-mm-sec .accuracy-top .cont-sec {
  width: 46%;
}

.accuracy-mm-sec p {
  font-family: var(--fontfutura);
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  padding-bottom: 60px;
  margin-bottom: 0px;
}

.accuracy-mm-sec p.heading-4 {
  display: none;
}

.accuracy-mm-sec p:last-child {
  padding-bottom: 0px;
}

.banner-sec.focal-therapy-banner {
  padding-top: 240px;
}

.multi-items-sec.trinity-ser-sec.modality .multi-items-cell {
  padding-left: 59px;
  padding-right: 59px;
  border-right: 3px solid var(--Sandstorm);
}

.multi-items-sec.trinity-ser-sec.modality .multi-items-cell:last-child {
  border-right: none;
}

.product-intro-sec.cust-intro-sec.koels-intro .heading-h3 {
  font-family: var(--fontfutura);
}

.multi-items-sec.trinity-ser-sec.modality .heading-h2 span {
  color: var(--Sandstorm);
}

.accuracy-mm-sec ul li {
  position: relative;
  padding-left: 50px;
}

.accuracy-mm-sec ul li::before {
  position: absolute;
  content: "";
  width: 31px;
  height: 26px;
  background: url(../images/yellow-checkmark.png) no-repeat center;
  left: 0;
  top: 40%;
  background-size: 29px;
}

.product-intro-sec.cust-list-sec.mri-sec .heading-h3 {
  font-family: var(--fontfutura);
}

.product-intro-sec.cust-list-sec.mri-sec .heading-h2 {
  text-align: left;
}

.product-intro-sec .heading-h3 {
  font-family: var(--fontfutura);
  text-align: left;
}

.testimonial-sec .owl-dots {
  display: none;
}

.product-intro-sec.cust-list-sec.mri-sec .cust-list-img {
  width: 77%;
}

.product-intro-sec.cust-list-sec.mri-sec .cust-list-cell .cust-list-head span {
  top: 50% !important;
}



/** 06/02/23 **/
.testimonial-sec.user-testimonial .testimonial-wrap-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}



.testimonial-sec.user-testimonial .testimonial-wrap-row .item {
  width: 33.33%;
  padding: 0 20px;
}

.testimonial-wrap-row .item .blockquote-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
  margin-bottom: 30px;
  display: block;
}

.testimonial-sec.user-testimonial .testimonial-wrap-row .media-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}

.testimonial-sec.user-testimonial .testimonial-wrap-row .user-img-name {
  width: 90px;
  height: 90px;
  margin-right: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--RegentGrey);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.testimonial-sec.user-testimonial .testimonial-wrap-row .media-content {
  display: flex;
  flex-direction: column;
  padding-top: 11px;
}

.testimonial-sec.user-testimonial .testimonial-wrap-row .media-content span {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
  font-weight: 500;
  margin-bottom: -3px;
}

.product-intro-sec.cust-list-sec.mri-sec {
  padding-top: 111px;
  padding-bottom: 30px !important;
}

/**Newsletter-section start here**/

.common-newsletter {
  width: 100%;
  height: auto;
  padding: 43px 0px;
  background: #7E9AAB;
}

.common-newsletter .newsletter-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 665px;
}

.common-newsletter .newsletter-inner .newsletter-top {
  text-align: center;
}

.common-newsletter .newsletter-inner .newsletter-top h4 {
  font-size: 36px;
  line-height: 52px;
  color: #FFFFFF;
  font-weight: 400;
}

.common-newsletter .newsletter-inner .newsletter-top p {
  color: #fff;
}

.common-newsletter .newsletter-inner .form-bottom {
  position: relative;
  padding-top: 25px;
}

.common-newsletter .newsletter-inner .form-bottom .form-control {
  width: 67%;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  line-height: 36px;
  color: #fff;
  opacity: 1;
  font-weight: 400;
  margin-bottom: 25px;
}

.common-newsletter .newsletter-inner .form-bottom .form-control::placeholder {
  color: #fff;
  opacity: .4;
}

.common-newsletter .newsletter-inner .form-bottom .theme-outline-btn {
  position: absolute;
  width: 32%;
  right: 0;
  top: 20px;
  border-color: #fff;
  color: #fff;
  padding: 20px 79px 20px 39px;
  background-image: url(../images/form-arrow.png);
  background-position: center right 10px;
  background-repeat: no-repeat;

}

.common-newsletter .newsletter-inner .form-bottom .theme-outline-btn:hover {
  border-color: #F6CB45;
  background-color: #F6CB45;
  background-image: url(../images/button-arrow-hover.png);
}

.common-newsletter .newsletter-inner .form-bottom .theme-outline-btn i {
  background-color: #1E3748;
  background-image: url(../images/arrow-right-white);
}

.common-newsletter .newsletter-inner .form-bottom label {
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  padding-left: 70px;
}

.common-newsletter .newsletter-inner .form-bottom label a {
  text-decoration: underline;
}

.common-newsletter .newsletter-inner .form-bottom label a:hover {
  text-decoration: none;
}

.checkbox {
  width: 18px;
  height: 18px;
  background: #7E9AAB;
  border: 1px solid #fff;
}

.checkbox:hover {
  border: none;
  outline: none;
}

.common-newsletter .newsletter-inner .form-bottom .mobile-btn {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1E3748;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 20px;
  display: none;
  cursor: pointer;
}

/* NEWS-NEW-PAGE-START-HERE */

.news-outer-wrapper {
  width: 100%;
  height: auto;
}

.news-outer-wrapper .news-gray-section {
  width: 100%;
  height: auto;
  padding: 25px 0px 35px 0px;
  background: var(--GreenWhite);
}

.news-outer-wrapper .news-gray-section .news-gray-link {
  width: max-content;
  position: relative;
  display: block;
}

.news-outer-wrapper .news-gray-section .news-gray-link::after {
  position: absolute;
  content: '';
  width: 98%;
  height: 1px;
  left: 0;
  bottom: -9px;
  background: #8399A9;

}

.news-outer-wrapper .news-gray-section .news-gray-link ul {
  display: flex;
  gap: 60px;
}

.news-outer-wrapper .news-gray-section .news-gray-link ul li a {
  font-size: 24px;
  line-height: 42px;
  color: #7E9AAB;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.news-outer-wrapper .news-gray-section .news-gray-link ul li a:hover {
  border-bottom: 2px solid #243746;
  color: var(--DarkBlueGrey2);
  padding-bottom: 13px;
}

.news-outer-wrapper .news-gray-section .news-gray-link ul li.active a {
  border-bottom: 2px solid #243746;
  color: var(--DarkBlueGrey2);
  padding-bottom: 13px;
}

.news-outer-wrapper .news-bottom-section {
  padding-top: 60px;
  padding-bottom: 180px;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-image {
  width: 50%;
  height: 450px;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content {
  width: 45.73%;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content em {
  color: #7E9AAB;
  margin-bottom: 10px;
  display: block;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content ul {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content ul li {
  padding-right: 10px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  color: #7E9AAB;
  font-weight: 500;
  position: relative;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content ul li:last-child::after {
  display: none;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content ul li::after {
  position: relative;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7E9AAB;
  right: -5px;
  display: inline-block;
  vertical-align: middle;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content h3 {
  padding: 15px 0;
}

.news-outer-wrapper .news-bottom-section .news-koelis-wrapper .news-koelis-content h5 {
  padding-top: 18px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);


}

.news-outer-wrapper .news-bottom-section .theme-outline-btn {
  border-color: var(--DarkBlueGrey2);
  margin-top: 30px;
}

.news-outer-wrapper .news-bottom-section .theme-outline-btn:hover {
  border-color: var(--Sandstorm);
}

.news-outer-wrapper .news-bottom-section .theme-outline-btn i {
  background-image: url(../images/button-arrow-hover.png);
  background-color: var(--Sandstorm);
}

.news-outer-wrapper .news-bottom-section .theme-outline-btn:hover i {
  background-image: url(../images/arrow-right-dark.png);
  background-color: var(--white);
}

.news-outer-wrapper .news-bottom-section .news-three-column {
  padding-top: 82px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;

}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column {
  width: 33.3%;
  padding: 25px;
  position: relative;
  min-height: 710px;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #E5EBEE;
  z-index: -1;
  opacity: 0;
  transition: all .2s ease-in-out;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .img-sec {
  width: 100%;
  height: 300px;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .img-sec img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec {
  margin-top: 26px;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec ul {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec ul li {
  padding-right: 0px;
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  color: #7E9AAB;
  font-weight: 500;
  position: relative;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec ul li:last-child::after {
  display: none;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec ul li::after {
  position: relative;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7E9AAB;
  right: -5px;
  display: inline-block;
  vertical-align: middle;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec h6 {
  font-size: 18px;
  margin-top: 3px;
  font-weight: 400;
  margin-bottom: 90px;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec h4 {
  min-height: 50px;
  padding-top: 14px;
  font-size: 32px;
  line-height: 42px;
  font-family: var(--fontfutura);
  font-weight: 500;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec em {
  color: #7E9AAB;
  margin-bottom: 10px;
  display: block;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column .cont-sec .theme-outline-btn {
  opacity: 0;
  margin-top: 15px;
  width: 280px;
  position: absolute;
  bottom: 30px;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column:hover::before {
  opacity: 1;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column:hover .theme-outline-btn {
  opacity: 1;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec {
  padding: 80px 100px 0px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul {
  display: flex;
  gap: 5px;
  justify-content: center;

}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #7E9AAB;
  font-size: 24px;
  color: #1E3748;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  font-family: var(--fontfutura);
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a.dot {
  border: none;
  border-radius: 0;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a.dot:hover {
  background: transparent;
  color: #1E3748;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a:hover {
  background: #1E3748;
  color: #fff;
  border-color: #1E3748;

}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a.current {
  background: #1E3748;
  color: #fff;
  border-color: #1E3748;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li a:hover img {
  filter: invert(1);
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec ul li.active a {
  background: #1E3748;
  color: #fff;
  border-color: #1E3748;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .prev-arrow {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #E5EBEE;
  border-radius: 50%;
  margin-right: 100px;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .prev-arrow a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .prev-arrow:hover {
  background: #1E3748;


}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .prev-arrow:hover img {
  filter: invert(1)
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .next-arrow {
  width: 80px;
  height: 80px;
  line-height: 60px;
  background: #E5EBEE;
  border-radius: 50%;
  margin-left: 100px;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .next-arrow.active img {
  filter: invert(1)
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .next-arrow a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .next-arrow:hover {
  background: #1E3748;


}

.news-outer-wrapper .news-bottom-section .news-pagination-sec .next-arrow:hover img {
  filter: invert(1)
}

/* .news-pagination-sec .inactive {
    opacity: .5;
}
.news-pagination-sec .active{
	opacity:1;
} */
.news-banner-outer .about-banner .banner-content .heading-h1 {
  margin-left: -9px;
}

.short-h4 {
  font-size: 20px !important;
  line-height: 32px !important;
}

.koelis-tags {
  padding: 0px 20px !important;
  border-radius: 55px;
  background: var(--GreenWhite);
  text-align: center;
  font-size: 18px !important;
}

.koelis-tags::after {
  display: none !important;
}

.news-outer-wrapper .news-bottom-section .news-three-column .news-column:hover .koelis-tags {
  background: white;
}

wordtune-read-extension {
  display: none !important;
}

.press-material-dp {
  margin: 120px 0 172px;
}

.press-material-dp ul li {
  border-bottom: 1px solid var(--RegentGrey);
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
  padding: 28px 0;
}

.press-material-dp ul li:first-child {
  border-top: 1px solid var(--RegentGrey);
}

.press-material-dp ul li h5 {
  font-family: var(--fontfutura);
}

.press-material-dp ul li a {
  color: var(--RegentGrey);
  text-decoration: underline;
  font-weight: 600;
  display: block;
  margin-left: 30px;
}

.press-material-dp ul li a {
  color: var(--RegentGrey);
}

.press-material-dp ul li a:hover {
  color: var(--DarkBlueGrey);
}

.press-material-dp .heading-h3 {
  line-height: 1;
  margin-bottom: 0px;
}

/*****************Language dropdown**********************/
.dropdown-language-outer {
  position: relative;
  padding-left: 25px;
}

.dropdown-language-outer .language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-toggle {
  height: 26px;
  display: block;
}

.dropdown-language {
  background: #fff none repeat scroll 0 0;
  display: none;
  list-style: none;
  padding: 16px 12px 18px;
  position: absolute;
  right: 0px;
  top: 100%;
  width: auto;
  min-width: 142px;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.16);
  margin-top: 20px;
}

.open-language .dropdown-language {
  display: block;
}

.dropdown-language::before {
  content: "";
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  top: -6px;
  right: 25px;
}

.language-toggle span {
  position: relative;
  min-width: 9px;
  display: block;
  margin-left: 8px;
}

.language-toggle span::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #fff;
  width: 100%;
}

.language-toggle span::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #fff;
  width: 100%;
  transform: rotate(90deg);
}

.open-language .language-toggle span::after {
  display: none;
}

.dropdown-language ul {
  display: grid;
  gap: 15px;
  width: 100%;
}

.dropdown-language li a {
  font-size: 18px;
  line-height: 1;
  color: #1E3748;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-language li.active a,
.dropdown-language li:hover a {
  color: #7E9AAB;
}

.dropdown-language li a img {
  width: 18px;
  height: 18px;
  border-radius: 50px;
  object-fit: cover;
  object-position: left center;
}

img.language-globe-img {
  width: 26px;
  height: 26px;
}

#location-selector #dialog-main-content #dialog-frame ul {
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 10px;
}

#location-selector #dialog-main-content #dialog-frame ul li {
  margin: 0 5px;
}

#location-selector #dialog-main-content #dialog-frame ul li {
  width: 120px;
  height: 120px;
  display: block;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px;
  margin: 0px;
}

#location-selector #dialog-main-content #dialog-frame ul li a,
#location-selector #dialog-main-content #dialog-frame ul li .lang-popup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

#location-selector #dialog-main-content #dialog-frame span {
  width: 100%;
  color: var(--DarkBlueGrey);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

#location-selector #dialog-main-content #dialog-frame .dialog-icon {
  margin-bottom: 15px !important;
}

#location-selector #dialog-main-content #dialog-frame .dialog-icon img {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  object-fit: cover;
  object-position: left center;
}

.about-banner .banner-content .heading-h1 {
  width: 71%;
}

.about-banner .banner-content .heading-h1 span {
  display: block;
  position: relative;
}

.about-banner .banner-content .heading-h1 span.last-word {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
}

.about-banner .banner-content .heading-h1 span.last-word:after {
  content: "";
  height: 2px;
  background: #8399a9;
  position: relative;
  bottom: 50px;
  display: block;
  right: 0;
  z-index: -1;
  width: 100%;
}

/* new style for video modal section */
.play-video-v1 {
  position: relative;
}

.play-video-v1 .two-cell-img .play-btn-v1 {
  width: -webkit-fill-available;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-video-v1 .theme-btn {
  cursor: pointer;
}

.custom-video-v1 .modal-header {
  position: absolute;
  right: 25px;
  top: 35px;
  z-index: 99;
  border: 0;
  padding: 5px;
}

.custom-video-v1 .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: text;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}

.custom-video-v1 .btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}

.custom-video-v1 .video-vs1 {
  width: 100%;
  height: -webkit-fill-available;
}

.custom-video-v1.you-v1 .modal-header .btn-close {
  padding: .5rem .5rem;
  margin: -7px;
}

.custom-video-v1.you-v1 .modal-content {
  height: 680px;
}

.custom-video-v1.you-v1 .modal-header {
  right: 25px;
  top: 35px;
  z-index: 999;
  padding: 5px;
  background: #fff;
}

.play-video-v1 .play-btn.play-btn-white {
  background: rgb(245 202 69 / 83%);
}

.play-video-v1 .play-btn.play-btn-white:hover {
  background: #fff;
}

.play-video-v1 .play-btn.play-btn-white::before {
  border-color: rgb(245 202 69 / 83%);
}

.play-video-v1 .play-btn.play-btn-white:hover::before {
  border-color: #fff;
}

/**/

/*.custom-video-v1 .video-container {*/
/*   position: relative;*/
/*   width: 640px; */
/*   height: 360px;*/
/*   margin: 0 auto;*/
/* }*/

.custom-video-v1 .video-vs1 {
  width: 100%;
  height: 100%;
}

.custom-video-v1 .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(255 255 255);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  /* Initially hidden */
}

.custom-video-v1 .play-button:before {
  content: '';
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--DarkBlueGrey);
}

.discover-career-apply {
  text-align: center;
  margin: 45px 0 0;
}



.overview-articles-sec.home_article .headrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

/*new sources section footer css*/
.sources_sec p.sources_headline {
  font-size: 20px;
  margin-bottom: 10px;
}

.home_article h3.heading-h2 {
  font-size: 54px;
}

section.overview-articles-sec.home_article {
  background: #E5EBEE;
  padding-bottom: 104px;
}

section.overview-articles-sec.home_article .info-card-row .info-card-cell {
  margin-bottom: 0;
}

.sources_sec {
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #4081ab4d;
}

/*.sources_sec ul li a:after {*/
/*    content: "";*/
/*    background: var(--RegentGrey);*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 95%;*/
/*    height: 1px;*/
/*}*/
.sources_sec ul li:before {
  content: "";
  background: var(--RegentGrey);
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.sources_sec ul li {
  line-height: 22px;
  position: relative;
  padding-left: 15px;
}

.sources_sec ul li a {
  font-size: 16px;
  color: var(--RegentGrey);
  display: block;
  position: relative;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.sources_sec ul li a:hover {
  color: #fff;
}

.sources_sec ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 93px;
  row-gap: 15px;
}

section.overview-articles-sec.home_article .info-card-row .info-card-cell .img-box {
  margin-bottom: 30px;
}

section.overview-articles-sec.home_article span.date {
  padding-left: 24px;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}

section.overview-articles-sec.home_article span.date:before {
  content: "";
  background: var(--RegentGrey);
  position: absolute;
  left: 8px;
  top: 53%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.news-banner-outer.scientific-library h1 {
  color: #7E9AAB;
}

.news-banner-outer.scientific-library p {
  color: #7E9AAB;
}

.about-banner.scientific-banner .banner-content .para-box {
  margin-top: 175px;
}

/* MARKED-SECTION-START-HERE */
.marked_section {
  display: flex;
  gap: 90px;
  align-items: center;
}

.marked_section .marked_image {
  width: 50%;
  height: 802px;

}

.marked_section .marked_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marked_section .marked_content {
  width: 40%;
}

.marked_section .marked_content h2 {
  padding-bottom: 7px;
}

.marked_section .marked_content p {
  padding-bottom: 27px;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.marked_section .marked_content p:last-child {
  padding-bottom: 0px;
}

/* MARKED-SECTION-END-HERE */

/* new 19/06/025  */
.about-banner.flex-dev .heading-h1 {
  font-size: 80px;
  line-height: 98px;
}

.about-banner.flex-dev .banner-content .heading-h1 span.last-word {
  position: relative;
  display: grid;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  grid-template-columns: auto 1fr;
}

.about-banner.flex-dev .banner-content .para-box {
  width: 407px;
  margin-top: 125px;
}

.consetetur-min .cons-row {
  display: grid;
  grid-template-columns: 730px 730px;
  justify-content: space-between;
  align-items: center;
}

.consetetur-min {
  padding: 50px 0;
}

.consetetur-min.mt-50 {
  margin-top: 50px;
}

.consetetur-min .cons-row .cotent-text {
  position: relative;
  width: 100%;
}

.consetetur-min .cons-row .cotent-text .cont-title {
  margin-bottom: 15px;
}

.consetetur-min .cons-row .cotent-text .text {
  margin-bottom: 20px;
}

.consetetur-min .cons-row .cotent-text .text p {
  margin-bottom: 20px;
}

.consetetur-min .cons-row .cons-image {
  position: relative;
  width: 730px;
  height: 494px;
  overflow: hidden;
}

.consetetur-min .cons-row .cons-image video {
    height: 100%;
    width: 100%;
}

.consetetur-min .cons-row .cons-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amet-main-v2 .image-video .cons-image video {
    height: fit-content;
    width: 100%;
}

.consetetur-min .cons-row .cons-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.amet-main {
  position: relative;
  padding: 50px 0;
}

.amet-main .amet-title {
    margin-bottom: 18px;
}

.amet-main .amet-row {
  display: grid;
  grid-template-columns: 730px 730px;
  justify-content: space-between;
  align-items: center;
}

.amet-main-v2 .amet-image.img-box {
  position: relative;
  width: 100%;
  height: 910px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.amet-main-v3 .amet-foote {
  max-width: 65.9%;
  margin: 0 auto;
}

.amet-main-v3 .amet-foote .amet-cta {
  margin-top: 20px;
}

.image-video-icon {
  position: relative;
}

.image-video-icon .play-video-v1 .two-cell-img .play-btn-v1 {
  width: -webkit-fill-available;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-video-icon .play-btn.play-btn-white {
  background: rgb(255, 255, 255, 0.85);
}

.image-video-icon .play-btn::before {
  border-color: rgb(245 202 69 / 83%);
  position: absolute;
  content: "";
  width: 250px;
  height: 250px;
  border-radius: 50%;
  top: 0;
  right: 0;
  left: -50px;
  bottom: 0;
  border: 4px solid #243746;
  margin: auto;
}

.image-video-icon .play-btn .play-ico,
.image-video-icon .play-btn.play-btn-white .play-ico {
  background: url(../images/play-blue.png) no-repeat center;
  /* background: url(https://koelis.com/wp-content/themes/koelis/assets/images/play-blue.png) no-repeat center; */
  background-size: 100% 100%;
  margin-right: -9px;
}

.timeline-main .scroll-wrapper {
  overflow: hidden;
  cursor: grab;
}

.timeline-main .scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding: 20px;
  padding-left: 140px;
}

.timeline-main .scroll-container::-webkit-scrollbar {
  display: none;
}

.timeline-main .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 400px;
}

.timeline-main {
  position: relative;
  padding: 50px 0;
}

.timeline-main .integration-cell {
  width: 100%;
  position: relative;
}

.timeline-main .integration-cell::after {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: transparent;
  content: "";
}

.timeline-main .integration-inner {
  background: var(--GreenWhite);
  padding: 57px 20px 55px 20px;
  text-align: center;
  width: 100%;
}

.timeline-main .integration-ico {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--DarkBlueGrey);
  margin: 0 auto 28px;
  overflow: hidden;
  padding: 10px;
}

.timeline-main .integration-inner .heading-h5 {
  font-weight: 500;
  font-family: var(--fontfutura);
  margin-bottom: 5px;
}

.timeline-main .integration-ico .img-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.timeline-main .top-title .title {
  text-align: center;
  margin-bottom: 10px;
}

.timeline-main .cust-number ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1352px;
  margin: 0 auto;
}

.timeline-main .cust-number ul::after {
  position: absolute;
  left: 0;
  top: 23px;
  content: "";
  height: 5px;
  width: 100%;
  background: #7E9AAB;
  z-index: -1;
}

.timeline-main .cust-number ul .number {
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #7E9AAB;
  text-align: center;
  line-height: 40px;
}

.technologies-main {
  position: relative;
  padding: 50px 0 100px;
}

.timeline-main .cust-number {
  position: relative;
  margin-top: 25px;
}

.technologies-main .tech-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: center;
}

.technologies-main .tech-card {
  padding: 42px 50px;
  border: 1px solid #8399A9;
  border-right: 0;
  text-align: center;
}

.technologies-main .tech-card:last-child {
  border-right: 1px solid #8399A9;
}

.technologies-main .tech-card .tech-image {
  width: 100%;
  height: 290px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.technologies-main .tech-card .tech-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.technologies-main .tech-card .title {
  max-width: 82%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.technologies-main .tech-card .cta {
  margin-top: 20px;
}

.technologies-main .detail {
  max-width: 52%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
}

.about-banner.flex-dev {
  padding-top: 230px !important;
  padding-bottom: 19px !important;
}

.amet-main-v3 .amet-foote .amet-footer-text p:first-child {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
  margin-bottom: 21px;
  font-weight: 500;
}

.amet-main-v3 {
  padding-bottom: 40px;
}

.consetetur-min .play-btn {
  width: 96px;
  height: 96px;
}

.consetetur-min .play-btn::before {
  border-color: #fff;
  width: 160px;
  height: 160px;
  left: -31px;
}

.consetetur-min .play-btn .play-ico {
  width: 36px;
  height: 32px;
}

.amet-main-v3 .amet-foote .amet-cta .theme-outline-btn i {
  background-color: var(--Sandstorm);
  background-image: url(../images/button-arrow-hover.png);
}

/* end */



/* koelis-locator-new */
.locator-form-sec.newlocform {
    position: relative;
    margin-bottom: 50px;
}

.locator-form-sec.newlocform .cust-form-row {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: center;
    align-items: center;
}

.locator-form-sec.newlocform .cust-form-row .form-label {
    width: auto;
    min-width: max-content;
    margin-right: 20px;
}

.locator-form-sec.newlocform .cust-form-row .form-group:first-child {
    width: 100%;
}

.locator-form-sec.newlocform .form-group:last-child {
    width: 100%;
    text-align: right;
    padding-top: 0 !important;
}

/* new locator result finder */

.hospital_map_detail_v25 {
    position: relative;
    margin: 0px 0 150px;
}

.hospital_map_detail_v25 .h_map_row {
    position: relative;
    display: grid;
    grid-template-columns: 34.5% 62%;
    gap: 3%;
    justify-content: space-between;
    align-items: self-start;
}

.hospital_map_detail_v25 .hospital_content {
    position: relative;
    display: grid;
    grid-template-columns: 75% 22%;
    gap: 3%;
    justify-content: space-between;
    align-items: self-start;
}

.hospital_map_detail_v25 .hospital_detail_main {
    border-bottom: 1px solid #1e3748;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.hospital_map_detail_v25 .hospital_detail_main:last-child {
    border-bottom: 0;
}

.hospital_map_detail_v25 .hospital_content .hospital_name {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.hospital_map_detail_v25 .hospital_content .hospital_address {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 5px;
}

.hospital_map_detail_v25 .hospital_content .hospital_direction {
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
}

.hospital_map_detail_v25 .hospital_content .hospital_phone {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.hospital_map_detail_v25 .hospital_content .hospital_distance {
    font-size: 19px;
    font-weight: 400;
    color: #7E9AAB;
    text-align: right;
}

.hospital_map_detail_v25 .hospital_content .hospital_direction a {
    font-size: 21px;
    text-decoration: underline;
}

.hospital_map_detail_v25 .h_m_result #location_maps {
    width: 100%;
    height: 718px !important;
    margin: 175px 0 0 0;
}

.hospital_map_detail_v25 .hospital_logo_result {
    position: relative;
    margin-bottom: 20px;
}

.hospital_map_detail_v25 .hospital_logo_result img.img-fluid {
    max-height: 100px;
}

.hospital_map_detail_v25 #locatorResults {
    height: 720px !important;
    overflow: auto !important;
    padding-right: 20px;
}


.hospital_map_detail_v25 #locatorResults::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.hospital_map_detail_v25 #locatorResults::-webkit-scrollbar-track {
  width: 4px;
  height: 4px;
  box-shadow: none;
  background: var(--GreenWhite);
}

.hospital_map_detail_v25 #locatorResults::-webkit-scrollbar-thumb {
  outline: none;
  background: var(--DarkBlueGrey);
}

.map-info-window {
    position: relative;
    background: #1e3748;
    color: #fff;
    padding: 20px;
}

.map-info-window .hospital_name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: capitalize;
    color: #f6cb45;
}

.map-info-window img.img-fluid {
    max-width: 80px;
    margin-bottom: 10px;
}

.map-info-window .hospital_address p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}

.map-info-window .hospital_phone p {
    font-size: 15px;
    margin-bottom: 4px;
}

.map-info-window .hospital_direction a {
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
}