@import url("https://use.typekit.net/nkq8fly.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");
@font-face {
  font-family: "tungstenw05-medium";
  src: url("/content/dam/infosys-web/en/fonts/tungstenw05-medium.woff2")
      format("woff2"),
    url("/content/dam/infosys-web/en/fonts/tungstenw05-medium.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*@font-face {
  font-family: "Myriadpro";
  src: url(" ../fonts/MyriadPro-Regular.eot");
  src: url("../fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"), url(" ../fonts/MyriadPro-Regular.woff2") format("woff2"), url("../fonts/MyriadPro-Regular.woff") format("woff"), url("../fonts/MyriadPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Myriadpro Bold";
  src: url(" ../fonts/MyriadPro-Bold.eot");
  src: url(" ../fonts/MyriadPro-Bold.eot?#iefix") format("embedded-opentype"), url(" ../fonts/MyriadPro-Bold.woff2") format("woff2"), url(" ../fonts/MyriadPro-Bold.woff") format("woff"), url(" ../fonts/MyriadPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Myriadpro SemiBold";
  src: url(" ../fonts/MyriadPro-Semibold.eot");
  src: url(" ../fonts/MyriadPro-Semibold.eot?#iefix") format("embedded-opentype"), url(" ../fonts/MyriadPro-Semibold.woff2") format("woff2"), url(" ../fonts/MyriadPro-Semibold.woff") format("woff"), url(" ../fonts/MyriadPro-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Myriadpro Light";
  src: url(" ../fonts/MyriadPro-Light.eot");
  src: url(" ../fonts/MyriadPro-Light.eat?#iefix") format("embedded-opentype"), url(" ../fonts/MyriadPro-Light.woff2") format("woff2"), url(" ../fonts/MyriadPro-Light.woff") format("woff"), url(" ../fonts/MyriadPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Tungsten Bold";
  src: url(" ../fonts/Tungsten-Bold.eot");
  src: url(" ../fonts/Tungsten-Bold.eot?#iefix") format("embedded-opentype"), url(" ../fonts/Tungsten-Bold.woff2") format("woff2"), url(" ../fonts/Tungsten-Bold.woff") format("woff"), url(" ../fonts/Tungsten-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Tungsten SemiBold";
  src: url(" ../fonts/Tungsten-Semibold.eot");
  src: url(" ../fonts/Tungsten-Semibold.eot?#iefix") format("embedded-opentype"), url(" ../fonts/Tungsten-Semibold.woff2") format("woff2"), url(" ../fonts/Tungsten-Semibold.woff") format("woff"), url(" ../fonts/Tungsten-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "tungstenw05-medium";
  src: url("../fonts/tungstenw05-medium.woff2") format("woff2"), url("../fonts/tungstenw05-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}*/
/* Transition */
input[type="checkbox"] {
  height: 0;
  width: 0;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input[type="checkbox"]:focus + label span {
  outline: 2px solid #000;
}
input[type="checkbox"] + label {
  font-family: "myriad-pro", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  display: flex;
  margin: 12px 0;
  align-items: start;
  color: #333640;
  transition: color 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
input[type="checkbox"] + label > ins {
  position: absolute;
  display: block;
  bottom: 0;
  left: 3.4rem;
  height: 0;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  transition: height 300ms cubic-bezier(0.4, 0, 0.23, 1);
}
input[type="checkbox"] + label > ins > i {
  position: absolute;
  bottom: 0;
  font-style: normal;
  color: #2c3d8e;
}
input[type="checkbox"] + label > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
input[type="checkbox"] + label:hover,
input[type="checkbox"]:focus + label {
  color: #333640;
}
input[type="checkbox"] + label:hover > span,
input[type="checkbox"]:focus + label > span {
  background: #fff;
}
input[type="checkbox"]:checked + label > ins {
  height: 100%;
}
input[type="checkbox"]:checked + label > span {
  border: 12px solid #3f3f3f;
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
input[type="checkbox"]:checked + label > span:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  animation: checkbox-check 100ms 250ms cubic-bezier(0.4, 0, 0.23, 1) forwards;
  font-size: 24px;
}
@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #fff;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
.custom_btn {
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #273e93;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 2.5rem 3.5rem;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-family: "myriad-pro", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: left;
  -webkit-box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
  -moz-box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
  box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
}
.custom_btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
  z-index: -1;
}
.custom_btn:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: #ffffff;
}
.custom_btn:hover:before {
  width: 100%;
}
@media (min-width: 768px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 400;
  }
  .custom_btn {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .banner .banner_container {
    flex-direction: row;
    align-items: self-start;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  input[type="checkbox"] + label {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .custom_btn {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.btn {
  background-color: transparent;
  padding: 1.4rem 2.4rem 1.4rem 3rem;
  font-size: 2rem;
  line-height: 2.8rem;
  border-radius: 0;
  text-transform: uppercase;
  color: #000000;
  border-color: #000000;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn:focus {
  box-shadow: none;
}
.btn:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #000000;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn:hover,
.btn:active,
.btn:focus {
  color: #3f3f3f;
  border-color: #000000;
  background-color: #ffffff;
}
.btn:hover:before,
.btn:active:before,
.btn:focus:before {
  width: 100%;
}
.btn-primary {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-primary:before {
  background-color: #ffffff;
}
.btn-primary {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-primary:before {
  background-color: #ffffff;
}
.rounded {
  border-radius: 50px !important;
  border: 2px solid #3f3f3f;
  color: #000000;
  padding: 15px 50px;
  text-transform: none;
  font-family: "myriad-pro", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 2rem;
  width: auto;
}
.rounded .default-dn-ico {
  margin-right: 7px;
  width: 15px;
  height: 17px;
  position: relative;
  top: 3px;
}
.rounded:hover {
  background-color: #3f3f3f;
  color: white;
  border-color: #3f3f3f;
}
.rounded:hover .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-web/en/iki/life-science-journal/images/icon-download-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.rounded .default-dn-ico {
  display: inline-block;
  background-image: url("/content/dam/infosys-web/en/iki/life-science-journal/images/icon-download-normal.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center, 50%, 50%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.rounded:focus,
.rounded .focus {
  outline: 5px auto #000;
  outline-offset: -2px;
}
.btn-xxl-download {
  -webkit-box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
  -moz-box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
  box-shadow: 0px 5px 20px rgba(170, 169, 169, 0.2) !important;
  background-color: #fff;
  color: #273e93;
  margin-bottom: 6rem;
  display: block;
  max-width: 310px;
  min-height: 130px;
  font-family: "myriad-pro", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: left;
  padding-left: 12.5rem;
  padding-top: 1.3rem;
  position: relative;
}
footer {
  background-color: #343434;
  /* text-align: center; */
  color: #f5f6f7;
  font-size: 18px;
  font-family: "myriad-pro", Arial, sans-serif !important;
  font-weight: 300;
  padding: 15px 0;
}
footer p {
  margin-bottom: 0;
}
#accordion_sec .fa-angle-right:before {
  content: none;
}

#accordion_sec .fa-angle-down:before {
  content: none;
}
a {
  text-decoration: none !important;
}
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  padding: 20px 0;
}
#header::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff !important;
  position: absolute;
  left: 0;
  bottom: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1607843137);
}
#header .main-menu .level-0 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  float: left;
}
#header .main-menu .level-0:not(.icon):not(.button) > a {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #231f20;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 10px 0;
  letter-spacing: 1px;
  font-family: myriad-pro;
  text-decoration: none;
}
#header .main-menu .level-0:not(.icon):not(.button) > a::before {
  content: " ";
  display: block;
  width: 0;
  height: 3px;
  background: rgb(223, 153, 38);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .main-menu .level-0:not(.icon):not(.button) > a:hover {
  font-weight: 700;
}
#header .main-menu .level-0:not(.icon):not(.button) > a:hover::before {
  width: 100%;
}
#header .main-menu .level-0 + .level-0 {
  margin: 0 0 0 10px;
}
#header .main-menu .button a {
  display: inline-block;
  vertical-align: middle;
  background: #231f20;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: 12px 40px 13px 10px;
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
#header .main-menu .button a::after {
  content: " ";
  display: inline-block;
  width: 100%;
  max-width: 22px;
  height: 10px;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/btn-arrow.svg")
    100% no-repeat;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  margin-left: 10px;
  vertical-align: middle;
}
#header .main-menu .button a:hover {
  background: #df9926;
}
#header .main-menu .button a:hover::after {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}
#header .hamburger {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 0;
  float: right;
  background: #df9926;
  order: 4;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  border: 0;
}
#header .hamburger .hamburger-box {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
#header .hamburger .hamburger-inner {
  display: block;
  top: -8px;
  margin: 13px 0 0;
  position: relative;
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
#header .hamburger .hamburger-inner::after,
#header .hamburger .hamburger-inner::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
#header .hamburger .hamburger-inner::after {
  bottom: -8px;
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#header .hamburger .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
#header .hamburger--spin.opened .hamburger-inner {
  top: -5px;
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header .hamburger--spin.opened .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header .site-logo {
  height: 23px;
  width: 60px;
  z-index: 99;
}
.fixed #header:before {
  bottom: 0;
}
#mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background: #fff;
  text-align: center;
  padding: 140px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#mobile-menu #mobile-menu-wrap {
  line-height: calc(100vh - 64px);
  height: calc(100vh - 64px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#mobile-menu #mobile-menu-wrap > ul:first-child {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 64px 0;
  margin: -64px 0 0;
}
#mobile-menu .level-0 {
  padding: 20px;
  margin: 0 !important;
  position: relative;
  top: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.2s ease, top 0.3s 0.2s ease;
  transition: opacity 0.3s 0.2s ease, top 0.3s 0.2s ease;
}
#mobile-menu.opened {
  opacity: 1;
  pointer-events: auto;
}
#mobile-menu.opened .level-0 {
  opacity: 1;
  top: 0;
}
#mobile-menu .level-0:not(.icon):not(.button) > a {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
}
#mobile-menu .level-0:not(.icon):not(.button) > a:hover {
  color: #386b3a;
}
#mobile-menu .level-0:not(.menu-item-has-children) {
  padding: 0;
}
#mobile-menu .button a {
  display: inline-block;
  vertical-align: middle;
  background: #231f20;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: 12px 40px 13px 10px;
  line-height: 26px;
  font-size: 2rem;
  padding: 12px 90px 14px 30px;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 30px;
}
#mobile-menu .button a::after {
  content: " ";
  display: inline-block;
  max-width: 45px;
  height: 14px;
  margin-left: 15px;
  width: 100%;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/btn-arrow.svg")
    100% no-repeat;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  margin-left: 15px;
  vertical-align: middle;
}
#mobile-menu .button a:hover {
  background: #df9926;
}
#mobile-menu .button a:hover::after {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}
@media (min-width: 576px) {
  #header .main-menu .level-0 + .level-0 {
    margin: 0 0 0 20px;
  }
}
@media (min-width: 768px) {
  #header .main-menu .level-0 + .level-0 {
    margin: 0 0 0 40px;
  }
}
@media (min-width: 992px) {
  #header .main-menu .level-0 + .level-0 {
    margin: 0 0 0 30px;
  }
  #header .main-menu .button a {
    line-height: 26px;
    font-size: 2rem;
    padding: 12px 70px 12px 30px;
  }
  #header .main-menu .button a::after {
    max-width: 45px;
    height: 14px;
    margin-left: 15px;
  }
  #header .site-logo {
    height: 35px;
    width: 90px;
  }
  /* .banner .hero-cover {
    width: auto;
    order: 2;
  } */
}
@media (min-width: 1200px) {
  #header .main-menu .level-0 + .level-0 {
    margin: 0 0 0 50px;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}
body {
  font-family: myriad-pro;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #414141;
}
/* * Basic styles  */
a {
  text-decoration: none;
  color: #000000;
}
.pa-b-50 {
  padding-bottom: 5rem;
}
.pa-t-50 {
  padding-top: 5rem;
}
.ma-b-18 {
  margin-bottom: 1.8rem;
}
.ma-b-20 {
  margin-bottom: 2rem;
}
.ma-b-24 {
  margin-bottom: 2.4rem;
}
.ma-b-35 {
  margin-bottom: 3.5rem;
}
.ma-b-40 {
  margin-bottom: 4rem;
}
.ma-b-60 {
  margin-bottom: 6rem;
}
.ma-t-18 {
  margin-bottom: 1.8rem;
}
.ma-t-20 {
  margin-top: 2rem;
}
.ma-t-24 {
  margin-top: 2.4rem;
}
.ma-t-35 {
  margin-top: 3.5rem;
}
.ma-t-40 {
  margin-top: 4rem;
}
.ma-t-60 {
  margin-top: 6rem;
}
.pa-r-100 {
  padding-right: 12rem;
}
.position-initial {
  position: initial;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.no-border-bottom {
  border-bottom: 0px !important;
}
.banner {
  padding: 122px 0 0;
  position: relative;
  margin-bottom: 60px;
}
.banner::after {
  content: " ";
  display: block;
  width: 60%;
  height: calc(100% - 120px);
  background: #d8e7da;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.banner .hero-cover {
  width: 100%;
  order: 2;
}
.banner .hero-cover .book-cover {
  max-width: 302px;
  height: 400px;
  width: 100%;
  margin: 0 auto;
}

.banner .hero-content {
  position: relative;
  width: 100%;
  margin-top: 50px;
}
.banner .hero-content h1 {
  font-size: 7rem;
  line-height: 7rem;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  position: relative;
  text-align: left;
  display: inline-block;
  text-transform: uppercase;
}
.banner .hero-content h1 .cover_name {
  color: #00866a !important;
  position: relative;
}
.banner .hero-content h1 .cover_name:before {
  content: " ";
  display: block;
  width: 100%;
  height: 6px;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/banner-arrow.svg")
    100% 100% no-repeat;
  background-size: contain;
  position: absolute;
  max-width: 80px;
  left: -20px;
  top: 0;
}
/* .banner .banner_container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */
.intro_section {
  position: relative;
  margin-bottom: 60px;
}
.intro_section::before {
  content: " ";
  display: none;
}
.intro_section h2 {
  color: #231f20;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 7rem;
  line-height: 7rem;
  display: inline-block;
  margin-bottom: 30px;
  display: block;
  text-align: center;
}
.intro_section .content_sec {
  background: #231f20;
  padding: 30px;
}
.intro_section .content_sec p {
  font-size: 2rem;
  color: #fff;
  background-color: #231f20;
}
.intro_section .content_sec a.arrow {
  color: #ffffff;
  font-size: 1.6rem;
  position: relative;
  font-weight: 600;
  background-color: #231f20;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.intro_section .content_sec a.arrow::after {
  content: " ";
  display: inline-block;
  width: 100%;
  max-width: 45px;
  height: 10px;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/more-arrow.svg")
    100% no-repeat;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  margin-left: 10px;
  vertical-align: middle;
}
.intro_section .content_sec a.arrow:hover::after {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}
.intro_section .designation {
  margin-top: 30px;
}
.intro_section .designation p.name {
  color: #231f20;
  font-size: 3rem;
  font-weight: 800;
}
.intro_section .designation p.desig {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}
.intro_section .content-container {
  flex-direction: column;
  background: #efefef;
  padding-top: 30px;
}
.intro_section .image_sec {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.seven_trends {
  background: #fafafa;
  padding: 30px 0;
  margin-bottom: 60px;
}
.seven_trends h2 {
  font-size: 7rem;
  line-height: 7rem;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: inline-block;
}
.seven_trends h2:after {
  content: " ";
  height: 2px;
  background: #00b28f;
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.seven_trends #accordion_sec .accordion-item {
  border: none;
  border-bottom: 1px solid #333;
  background: transparent;
  margin: 30px 0;
}
.seven_trends #accordion_sec .accordion-item .btn-link {
  width: 100%;
  text-align: left;
  text-transform: none;
  padding: 26px 10px;
  text-decoration: none;
  background: transparent !important;
  -webkit-appearance: initial !important;
  appearance: initial !important;
  -moz-appearance: initial !important;
  color: #1c1c1c !important;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
}
.seven_trends #accordion_sec .accordion-item .btn-link:focus,
.seven_trends #accordion_sec .accordion-item .btn-link:hover,
.seven_trends #accordion_sec .accordion-item .btn-link:active,
.seven_trends #accordion_sec .accordion-item .btn-link:focus {
  outline: 0 !important;
  box-shadow: none;
  text-decoration: none;
  background: transparent !important;
  color: #1c1c1c !important;
}
.seven_trends #accordion_sec .accordion-item .btn-link.collapsed {
  border: none !important;
}
.seven_trends #accordion_sec .accordion-item .btn-link span {
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  font-size: 2.8rem;
  line-height: 3.2rem;
  cursor: pointer;
  padding-right: 20px;
  color: #1c1c1c;
}
.seven_trends #accordion_sec .accordion-item .btn-link.expanded {
  border: 2px solid #00b28f;
}
.seven_trends #accordion_sec .accordion-item p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
  font-family: myriad-pro;
  margin-top: 20px;
}
.seven_trends #accordion_sec .accordion-item .fa {
  margin-right: 1.5rem;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  float: left;
  margin-bottom: 50px;
  top: 5px;
}
.seven_trends #accordion_sec .accordion-item .fa.fa-angle-down {
  background: url(/content/dam/infosys-web/en/iki/life-science-journal/images/collapse.png)
    no-repeat left center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: relative;
}
.seven_trends #accordion_sec .accordion-item .fa.fa-angle-right {
  background: url(/content/dam/infosys-web/en/iki/life-science-journal/images/expand.png)
    no-repeat left center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: relative;
}
.seven_trends #accordion_sec .accordion-item .fa .large-content {
  margin-bottom: 80px;
}
.seven_trends #accordion_sec .accordion-item .read_furthur {
  color: #09321d;
  font-size: 1.8rem;
  position: relative;
  font-weight: 800;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 170px;
  margin-bottom: 0px;
  margin-top: 0px;
  /* margin-left: 35px; */
  font-family: myriad-pro;
}
.seven_trends #accordion_sec .accordion-item .read_furthur::after {
  content: " ";
  display: inline-block;
  width: 100%;
  max-width: 45px;
  height: 10px;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/more-arrow-dark.svg")
    100% no-repeat;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  margin-left: 10px;
  vertical-align: middle;
}
.seven_trends #accordion_sec .accordion-item .read_furthur:hover::after {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}
.subscribe_section {
  padding-bottom: 60px;
}
.subscribe_section h2 {
  font-size: 7rem;
  line-height: 7rem;
  font-family: "tungstenw05-medium", "Oswald", sans-serif;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
  text-align: center;
}
.subscribe_section h2:after {
  content: " ";
  height: 2px;
  background: #00b28f;
  width: 20%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.subscribe_section .input-group {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.subscribe_section .input-group .form-control {
  padding-left: 25px;
  font-size: 20px;
  color: #565656;
  border-right: 0;
  border-color: #dadada;
  height: auto;
}
.subscribe_section .input-group .form-control ::placeholder {
  color: #565656;
}
.subscribe_section .input-group .form-control ::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #565656;
}
.input-group input::-webkit-input-placeholder {
  color: #565656;
}
.input-group input::-moz-placeholder {
  color: #565656;
}
.input-group input:-ms-input-placeholder {
  color: #565656;
}
.input-group input:-moz-placeholder {
  color: #565656;
}
.subscribe_section .input-group .input-group-text {
  padding: 15px 22px;
  background: #fff;
  border-left: 0;
}
.subscribe_section .btn_sec {
  margin-top: 50px;
}
.btn_custom {
  padding: 15px 30px;
  font-size: 2rem;
  line-height: 2.6rem;
  background: #231f20;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.btn_custom:hover {
  background: #df9926;
  color: #fff;
}
.btn_custom.arrow {
  padding-right: 30px;
  letter-spacing: 1px;
  font-weight: 500;
}
.btn_custom.arrow::after {
  content: " ";
  display: inline-block;
  width: 100%;
  max-width: 22px;
  height: 10px;
  background: url("/content/dam/infosys-web/en/iki/life-science-journal/images/btn-arrow.svg")
    100% no-repeat;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  margin-left: 10px;
  vertical-align: middle;
}
.btn_custom.arrow:hover {
  background: #df9926;
}
.btn_custom.arrow:hover::after {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}
@media (min-width: 320px) {
  .seven_trends #accordion_sec .accordion-item .fa.large-content {
    margin-bottom: 80px;
  }
  .seven_trends #accordion_sec .accordion-item .fa.medium-content {
    margin-bottom: 45px;
  }
  .read-href {
    display: flex;
    flex-direction: column;
  }
  .podcast-tabs-wrapper {
    margin-bottom: 30px;
  }
  .seven_trends #accordion_sec .accordion-item p {
    margin-bottom: 20px;
  }
  .seven_trends #accordion_sec .accordion-item .btn-link span {
    color: #1c1c1c;
  }
  .intro_section .content_sec p {
    margin-bottom: 20px;
  }
}
@media (min-width: 576px) {
  .seven_trends #accordion_sec .accordion-item .fa {
    margin-bottom: 40px;
  }
  .seven_trends #accordion_sec .accordion-item .fa.large-content {
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .seven_trends #accordion_sec .accordion-item .btn-link {
    flex-direction: row;
    /* justify-content: space-between; */
    /* align-items: flex-start; */
  }
  .seven_trends #accordion_sec .accordion-item .fa {
    margin-right: 1.5rem;
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    float: left;
    margin-bottom: 20px;
    top: 0;
  }
  .seven_trends #accordion_sec .accordion-item .fa.fa-angle-down {
    background: url(/content/dam/infosys-web/en/iki/life-science-journal/images/collapse.png)
      no-repeat left center;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    position: relative;
  }
  .seven_trends #accordion_sec .accordion-item .fa.fa-angle-right {
    background: url(/content/dam/infosys-web/en/iki/life-science-journal/images/expand.png)
      no-repeat left center;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
    position: relative;
  }
  .seven_trends #accordion_sec .accordion-item .fa.large-content {
    margin-bottom: 45px;
  }
  .read-href {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .podcast-tabs-wrapper {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .banner {
    padding: 160px 0 0;
    position: relative;
    margin-bottom: 80px;
  }
  .banner::after {
    height: calc(100% - 147px);
  }
  .banner .hero-cover {
    width: auto;
    order: 2;
  }
  .banner .hero-cover .book-cover {
    max-width: 530px;
    height: 688px;
    width: 100%;
    margin: 0 auto;
  }
  .banner .hero-content {
    position: relative;
    width: auto;
  }
  .banner .hero-content h1 {
    font-size: 9rem;
    line-height: 9rem;
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    margin-top: 120px;
  }
  .banner .hero-content h1 .cover_name {
    color: #00b28f;
    position: relative;
  }
  .banner .hero-content h1 .cover_name:before {
    content: " ";
    display: block;
    max-width: 90px;
    width: 100%;
    height: 6px;
    background-size: contain;
    position: absolute;
    left: -40px;
    top: 0;
  }

  .intro_section {
    position: relative;
    margin-bottom: 30px;
  }
  .intro_section::before {
    content: " ";
    display: block;
    width: 80%;
    height: 100%;
    max-height: 270px;
    background: #efefef;
    position: absolute;
    left: 0;
    top: -20px;
    pointer-events: none;
    z-index: -1;
  }
  .intro_section::after {
    content: " ";
    display: block;
    width: 80%;
    height: 350px;
    background: #231f20;
    position: absolute;
    right: 0;
    top: 142px;
    pointer-events: none;
    z-index: -1;
  }
  .intro_section h2 {
    color: #231f20;
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
    font-size: 9rem;
    line-height: 9rem;
    display: block;
    margin-bottom: 30px;
    text-align: left;
  }
  .intro_section .content_sec {
    background: none;
    padding: 40px 0 30px 40px;
  }
  .intro_section .content_sec p {
    font-size: 2.2rem;
    line-height: 2.8rem;
    color: #ffffff;
    margin-bottom: 30px;
  }
  .intro_section .content_sec a.arrow {
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    font-weight: 600;
  }
  .intro_section .designation {
    margin-top: 30px;
  }
  .intro_section .designation p.name {
    color: #231f20;
    font-size: 3rem;
    font-weight: 800;
  }
  .intro_section .designation p.desig {
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 3rem;
  }
  .intro_section .content-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: none;
  }
  .intro_section .image_sec {
    min-width: 350px;
    height: 360px;
    width: 100%;
  }
  .seven_trends {
    padding: 60px 0;
    margin-bottom: 60px;
  }
  .seven_trends h2 {
    font-size: 9rem;
    line-height: 9rem;
    position: relative;
  }
  .seven_trends h2:after {
    content: " ";
    height: 2px;
    background: #00b28f;
    width: 40%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .seven_trends #accordion_sec .accordion-item .fa {
    top: 5px;
  }
  .seven_trends #accordion_sec .accordion-item .btn-link {
    width: 100%;
    text-align: left;
    text-transform: none;
    padding: 26px 10px;
    text-decoration: none;
    margin-bottom: 10px;
  }
  .seven_trends #accordion_sec .accordion-item .btn-link.collapsed {
    border: none !important;
  }
  .seven_trends #accordion_sec .accordion-item .btn-link span {
    font-family: "tungstenw05-medium", "Oswald", sans-serif;
    font-size: 4.6rem;
    line-height: 4.2rem;
  }
  .seven_trends #accordion_sec .accordion-item p {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 3.6rem;
    margin-bottom: 20px;
  }
  .seven_trends #accordion_sec .accordion-item .read_furthur {
    font-size: 2.2rem;
    font-weight: 700;
  }
  .subscribe_section h2 {
    font-size: 9rem;
    line-height: 9rem;
    position: relative;
  }
  .btn_custom.arrow::after {
    max-width: 45px;
    height: 14px;
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  .intro_section .content_sec p {
    font-size: 2.5rem;
    line-height: 3.6rem;
  }
  .intro_section::before {
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .intro_section::before {
    width: 60%;
  }
} /*# sourceMappingURL=style.css.map */
