* {
  position: relative;
  box-sizing: border-box;
}

*:after,
*:before {
  position: relative;
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

:root {
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #eaeaea;
  --grey-200: #dadada;
  --grey-300: #cacaca;
  --grey-400: #bababa;
  --grey-500: #aaaaaa;
  --grey-600: #8a8a8a;
  --grey-700: #6a6a6a;
  --grey-800: #4a4a4a;
  --grey-900: #2a2a2a;
  --black-1000: #1a1a1a;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0;
  line-height: 1;
  background-color: #f8f8f8;
  color: var(--black-1000);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a:active,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

.no_display {
  position: absolute;
  opacity: 0;
  z-index: -2;
  top: 0;
  left: 0;
}

.page_wrapper {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
}

.page_container {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-top: 100px;
}

.page_container.home {
  margin-top: 0;
}

.content_wrapper {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.content_container {
  display: inline-block;
  width: 100%;
  max-width: 1480px;
  padding: 40px;
}

/* header css */
.header_wrapper {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

.header_wrapper.home {
  position: relative;
  top: auto;
  left: auto;
  background-color: inherit;
}

.header_container {
  display: flex;
  width: 100%;
  padding: 0 40px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.header_container .logo {
  display: inline-block;
  vertical-align: middle;
}

.header_container .logo .jobylogo1 {display: inline-block;}
.header_container .logo .jobylogo1:hover {display: none;}
.header_container .logo .jobylogo2 {display: none;}
.header_container .logo .jobylogo2:hover {display: inline-block;}



.header_container.home {
  text-align: left;
  padding-top: 40px;
}

.header_container.home .logo {
  /* margin-top: 40px; */
}

.header_container .left_content,
.header_container .right_content {
  display: inline-block;
  vertical-align: middle;
}

.header_container .right_content .navigation_li {
  margin-right: 0;
}

.header_container .right_content .navigation_li .nav:after {
  display: none;
}

.header_container .right_content .icon_menu {
  display: none;
}

.navigation_ul {
  display: inline-block;
  vertical-align: middle;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: 56px;
}

.navigation_li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 40px;
  cursor: pointer;
  padding: 0 0 39px;
  margin-top: 39px;
}

.navigation_li:hover .branding_navigation_wrapper {
  display: inline-block;
  visibility: visible;
  z-index: 1;
  opacity: 1;
}

.navigation_li.selected .nav p,
.navigation_li:hover .nav p {
  color: #000000;
}

.navigation_li.selected .nav:after,
.navigation_li:hover .nav:after {
  content: url('../j_images/icn_down_arrow_selected.svg');
}

.navigation_li:hover .nav:after {
  transform: rotate(180deg);
}

.nav {
  display: inline-block;
  z-index: 2;
}

.nav:after {
  content: url('../j_images/icn_down_arrow.svg');
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  margin-top: 5px;
}

.nav p {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  font-weight: medium;
  letter-spacing: 1px;
  color: #6A6A6A;
  transition: all 0.4s ease-out;
  text-transform: uppercase;
}

/* footer css */
.footer_wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 80px;
}

.footer_container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
  padding: 40px 40px 134px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.footer_left_content,
.footer_right_content {
  display: inline-block;
  vertical-align: bottom;
  text-align: left;
}

.footer_right_content {
  text-align: right;
}

.footer_left_content .label,
.footer_right_content .label {
  display: block;
  margin: 0 0 8px;
}

.footer_left_content .email {
  display: inline-block;
  text-align: left;
}

.footer_left_content .email a {
  display: inline-block;
  z-index: 2;
}

.footer_left_content .email:before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -3px;
  left: 0;
  background-color: #000000;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}

.footer_left_content .email:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -3px;
  left: 0;
  background-color: #f8f8f8;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s ease-in-out 0.3s;
  z-index: 1;
}

.footer_left_content .email:hover:before,
.footer_left_content .email:hover:after {
  visibility: visible;
  transform: scaleX(1);
}

.footer_right_content .copyright {
  display: block;
  color: var(--grey-700);
  margin-top: 64px;
}

.footer_ul {
  display: block;
  list-style-type: none;
  margin: 50px 0 0;
  padding: 0;
}

.footer_ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  margin-right: 46px;
}

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

.footer_ul li a {
  display: inline-block;
  font-weight: 500;
  color: var(--grey-800);
}
.footer_ul li a:hover {
  color: var(--black-1000);
}

 
.footer_ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -12px;
  left: 0;
  background-color: #000000;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s ease-in-out 0s;
}

.footer_ul li:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -16px;
  left: 0;
  background-color: #f8f8f8;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s ease-in-out 0.3s;

}

.footer_ul li:hover:before,
.footer_ul li:hover:after {
  visibility: visible;
  transform: scaleX(1);
  color: var(--black-1000);
}

/* other common css */
.link_button {
  display: inline-flex;
  width: 290px;
  vertical-align: middle;
  padding: 0;
  padding-left: 32px;
  justify-content: flex-start;
  text-align: left;
  height: 80px;
  margin-right: 60px;
  border: solid 2px #000000;
  align-items: center;
}

.link_button.work {
  padding-left: 54px;
  margin-right: 0;
}

.link_button.about-me .the_arrow {
  margin-right: 16px;
}

.link_button .link_div {
  display: inline-block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}

.link_button .link_div span {
  display: inline-block;
  vertical-align: middle;
  font-size: 34px;
  font-weight: 500;
  color: var(--black-1000);
}

.link_button:hover {
  background-color: var(--black-1000);
}

.link_button:hover .link_div span {
  display: none;
}

.the_arrow {
  display: inline-block;
  margin-right: 20px;
  font-size: 0;
  text-align: left;
  vertical-align: middle;
}

.the_arrow::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-color: #000000;
  height: 3px;
  width: 35px;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.the_arrow::after {
  content: url('../j_images/icn_arrow.svg');
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  margin-left: -7px;
}

.arrow_container:hover .the_arrow {
  margin-right: 0;
}

.arrow_container:hover .the_arrow::before {
  background-color: #ffffff;
  width: 175px;
}

.arrow_container:hover .the_arrow::after {
  content: url('../j_images/icn_arrow_hover.svg');
}

.content_title {
  display: inline-block;
  width: 100%;
  font-size: 66px;
  font-weight: 800;
  line-height: 90px;
  text-align: left;
}

.content_sub_title {
  display: inline-block;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 41px;
  text-align: left;
  color: #909090;
  margin-top: 10px;
}

.content_label {
  display: inline-block;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  line-height: 43px;
  text-align: left;
}

.section_separator {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c7c7c7;
  margin: 80px 0 0;
}

.bottom_navigation_wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 80px;
}

.bottom_navigation_wrapper.only_next .bottom_navigation_container {
  justify-content: flex-end;
}

.bottom_navigation_container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.nav_button {
  display: flex;
  max-width: calc((100% - 40px)/2);
  color: var(--grey-800);
  flex-direction: column;
  align-items: flex-start;
}

.nav_button:hover {
  color: var(--black-1000);
}

.nav_button:hover .nav_direction span {
  display: none;
}

.nav_button.next {
  align-items: flex-end;
}

.nav_button .label {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  margin-top: 16px;
}

.nav_direction {
  display: flex;
  width: 172px;
  height: 43px;
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
}

.nav_direction .the_arrow svg {
  fill: var(--grey-800);
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  margin-left: -7px;
}

.nav_direction .the_arrow::before {
  background-color: var(--grey-800);
}

.nav_direction .the_arrow::after {
  display: none !important;
}

.arrow_container:hover .nav_direction.next {
  width: 172px;
}

.arrow_container:hover .nav_direction .the_arrow::before {
  width: 170px;
  background-color: var(--black-1000);
}

.arrow_container:hover .nav_direction .the_arrow svg {
  fill: var(--black-1000);
}

.nav_direction span {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}

.nav_direction .the_arrow {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  margin-left: 0;
}

.nav_direction.next {
  width: 118px;
  justify-content: flex-start;
}

.nav_direction.next span {
  margin-left: 16px;
}

.nav_direction.prev span {
  margin-right: 16px;
}

.nav_direction.prev .the_arrow {
  transform: rotate(180deg);
}

.scroll_progress_wrapper {
  display: inline-block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: left;
}

.scroll_progress_container {
  display: inline-block;
  width: 100%;
  height: 6px;
  background: transparent;
}

.scroll_progress_bar {
  display: inline-block;
  height: 100%;
  background-color: #0346fc;
  width: 0%;
}

.main_banner_wrapper {
  display: inline-block;
  width: 100%;
  height: 900px;
}

.main_banner_wrapper.margin_bottom_40 {
  margin-bottom: 40px;
}

.main_banner_container {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1480px;
  padding: 0 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-repeat: no-repeat;
}

.main_banner_container.gift_shop {
  background-image: url('../j_images/brand1_img1.png');
  background-position: right center;
  justify-content: flex-start;
}

.main_banner_container.currys {
  background-image: url('../j_images/brand3_img1.png');
  background-position: right center;
  justify-content: flex-start;
}

.main_banner_container.birds {
  background-image: url('../j_images/illustration1_img1.png');
  background-position: right top;
  justify-content: flex-start;
}

.main_banner_container.onboarding {
  background-image: url('../j_images/illustration3_img1.png');
  background-position: -200px center;
  justify-content: flex-end;
}

.main_banner_container.features {
  background-image: url('../j_images/illustration2_img1.png');
  background-position: left center;
  justify-content: flex-end;
}

.under_construction {
  display: inline-block;
  font-size: 90px;
  color: #000000;
  font-weight: 500;
  padding: 160px 60px 100px;
}

.image_container {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.image_container img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.image_container.margin_top_20 {
  margin-top: 20px;
}

.image_container.margin_top_30 {
  margin-top: 30px;
}

.image_container.margin_top_40 {
  margin-top: 40px;
}

.image_container.margin_top_80 {
  margin-top: 80px;
}

.image_container.margin_top_120 {
  margin-top: 120px;
}

.image_container.margin_top_160 {
  margin-top: 160px;
}

.image_container.margin_bottom_20 {
  margin-bottom: 20px;
}

.image_container.margin_bottom_30 {
  margin-bottom: 30px;
}

.image_container.margin_bottom_40 {
  margin-bottom: 40px;
}

.image_container.margin_bottom_80 {
  margin-bottom: 80px;
}

.image_container.margin_bottom_120 {
  margin-bottom: 120px;
}

.image_container.margin_bottom_160 {
  margin-bottom: 160px;
}

.image_container img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.m_navigation_wraper {
  display: none;
}

/* responsive */
@media screen and (max-width:1260px) {
  .content_container {
    padding: 24px;
  }

  .content_title {
    font-size: 34px;
    line-height: 46px;
    letter-spacing: -1.02px;
  }

  .content_sub_title {
    font-size: 14px;
    line-height: 20px;
  }

  .content_label {
    font-size: 16px;
    line-height: 24px;
  }

  .navigation_ul {
    display: none;
  }

  .header_container {
    padding: 25px 24px;
  }

  .header_container .right_content .icon_menu {
    display: inline-block;
    width: 24px;
    cursor: pointer;
  }

  .header_container .right_content .icon_menu span {
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    margin: 4px 0;
  }

  .header_container .logo img {
    width: 48px;
  }

  .m_navigation_wraper {
    display: none;
    position: fixed;
    width: 100%;
    background-color: #ffffff;
    left: 0;
    top: 0;
    padding: 24px 16px;
    max-height: 100vh;
    font-size: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .m_navigation_container {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding-top: 8px;
  }

  .m_navigation_container .icon_close {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 14px;
    width: 21px;
    height: 21px;
    background-image: url('../j_images/icn_close.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
  }

  .m_navigation_container .navigation_ul {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 40px 0 0;
  }

  .m_navigation_container .navigation_li {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
  }

  .m_navigation_container .navigation_li:last-child {
    margin-bottom: 0;
  }

  .m_navigation_container .navigation_li .nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
  }

  .m_navigation_container .navigation_li .nav:after {
    display: none !important;
  }

  .m_navigation_container .navigation_li .nav p {
    font-size: 18px;
    color: var(--grey-800) !important;
    line-height: 27px;
    font-weight: 500;
  }

  .m_navigation_container .navigation_li .nav svg {
    stroke: var(--grey-500);
    margin-right: 8px;
  }

  .m_navigation_container .navigation_li .nav.expanded p {
    color: var(--black-1000) !important;
  }

  .m_navigation_container .navigation_li .nav.expanded svg {
    stroke: var(--black-1000);
  }

  .m_nav_header {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 0 8px;
  }

  .m_nav_about_continer {
    display: inline-block;
    width: 100%;
    padding: 0 8px;
    margin-top: 32px;
  }

  .m_nav_about {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #dadada;
    padding-top: 16px;
    font-size: 18px;
    color: var(--grey-800);
    line-height: 27px;
    font-weight: 500;
  }

  .m_nav_about.selected {
    color: var(--black-1000);
  }

  .work_list_container {
    display: none;
    width: 100%;
    margin-top: 8px;
  }

  .work_list {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .work_list_item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    color: var(--grey-800);
    padding: 0 8px;
  }

  .work_list_item:hover {
    background-color: var(--grey-100);
  }

  .work_list_item svg {
    display: inline-block;
    vertical-align: middle;
    fill: var(--grey-700);
    margin-right: 16px;
  }

  .work_list_item p {
    display: inline-block;
    vertical-align: middle;
  }

  .work_list_item.selected {
    color: var(--black-1000);
  }

  .work_list_item.selected svg {
    fill: var(--black-1000);
  }

  .bottom_navigation_wrapper {
    margin-top: 12px;
  }
}

@media screen and (max-width:970px) {
  .link_button {
    margin-right: 40px;
  }

  .footer_left_content {
    width: 100%;
    text-align: center;
  }

  .footer_left_content .label {
    margin-bottom: 2px;
  }

  .footer_ul {
    margin-top: 20px;
  }

  .footer_ul li {
    margin-right: 18px;
  }

  .footer_right_content {
    width: 100%;
    text-align: center;
    margin-top: 48px;
  }

  .footer_right_content .copyright {
    margin-top: 4px;
  }
}

@media screen and (max-width: 768px) {
  .main_banner_wrapper.gift_shop {
    height: 430px;
  }

  .main_banner_container.gift_shop {
    background-image: url('../j_images/brand1_img1_mobile.png');
    background-position: center;
  }

  .main_banner_wrapper.currys {
    height: 462px;
  }

  .main_banner_container.currys {
    background-image: url('../j_images/brand3_img1_mobile.png');
    background-position: left;
  }

  .main_banner_wrapper.airpe {
    height: 300px;
    background-image: url('../j_images/brand2_img2_mobile.jpg') !important;
  }

  .link_button {
    margin-right: 20px;
    width: calc((100% - 20px)/2);
    max-width: 290px;
    padding-left: 20px;
    height: 52px;
  }

  .link_button.about-me .the_arrow,
  .link_button.work .the_arrow {
    margin-right: 12px;
  }

  .link_button.about-me .the_arrow::before,
  .link_button.work .the_arrow::before {
    width: 20px;
  }

  .link_button.work {
    padding-left: 20px;
  }

  .link_button .link_div span {
    font-size: 18px;
  }

  .footer_wrapper {
    margin-top: 20px;
  }

  .footer_container {
    padding: 0 24px 36px;
  }

  .footer_right_content img {
    width: 40px;
  }

  .footer_ul li a {
    font-size: 18px !important;
    line-height: 27px !important;
  }

  .bottom_navigation_container {
    flex-direction: column;
    align-items: center;
  }

  .nav_button {
    width: 100%;
    max-width: 500px;
    background-color: var(--black-1000);
    color: #ffffff !important;
    padding: 16px;
  }

  .nav_button:nth-child(2) {
    margin-top: 24px;
  }

  .nav_button .label {
    margin-top: 12px;
  }

  .nav_button .nav_direction span {
    display: block !important;
  }

  .nav_button .nav_direction .the_arrow {
    display: none !important;
  }

  .nav_button .nav_direction {
    width: auto !important;
    height: auto !important;
  }
}

@media screen and (max-width:640px) {
  .m_navigation_wraper {
    height: 100vh;
  }
}

/* Shoul always be in last */
/* Typography start */

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

.header-epic {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 104px;
}
.header-epic1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 115px;
}

.header-h1 {
  font-weight: 800;
  font-size: 96px;
  line-height: 104px;
}

.header-h2 {
  font-weight: 400;
  font-size: 66px;
  line-height: 74px;
}

.header-h3 {
  font-weight: 400;
  font-size: 38px;
  line-height: 66px;
}

.header-h4 {
  font-weight: 400;
  font-size: 34px;
  line-height: 51px;
}

.header-h5 {
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
}

.header-h5new {
  font-weight: 400;
  font-size: 28px;
  line-height: 48px;
}

.header-h6 {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
}

.body-b1 {
  font-weight: 400;
  font-size: 24px;
  line-height: 43px;
}

.body-b1new {
  font-weight: 400;
  font-size: 24px;
  line-height: 43px;
}

.body-b2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.kicker-k1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}


*.f__extra-bold {
  font-weight: 800;
}

*.f__bold {
  font-weight: 700;
}

*.f__semi-bold {
  font-weight: 600;
}

*.f__medium {
  font-weight: 500;
}

/* Typography end */

/* Color Palette start */

.c__white {
  color: #ffffff;
}

.c__grey-50 {
  color: #fafafa;
}

.c__grey-100 {
  color: #eaeaea;
}

.c__grey-200 {
  color: #dadada;
}

.c__grey-300 {
  color: #cacaca;
}

.c__grey-400 {
  color: #bababa;
}

.c__grey-500 {
  color: #aaaaaa;
}

.c__grey-600 {
  color: #8a8a8a;
}

.c__grey-700 {
  color: #6a6a6a;
}

.c__grey-800 {
  color: #4a4a4a;
}

.c__grey-900 {
  color: #2a2a2a;
}

.c__black-1000 {
  color: #1a1a1a;
}

/* Color Palette end */


/*margin*/

.mar-top-24 {
  margin-top: 24px;
}

.mar-bottom-16 {
  margin-bottom: 16px;
  display: inline-block;
}

.mar-bottom-80 {
  margin-bottom: 80px;
}

.mar-bottom-160 {
  margin-bottom: 160px;
}

.mar-bottom-60 {
  margin-bottom: 60px;
}

.mar-top-80 {
  margin-top: 80px;
}

.mar-bottom-40 {
  margin-bottom: 40px;
}


/* Tablet & mobile starts here */
@media screen and (max-width:768px) {
  /* Typography responsive start */

  .header-epic {
    font-size: 48px;
    line-height: 64px;
  }
  .header-epic1 {
    font-size: 48px;
    line-height: 64px;
  }

  .header-h1 {
    font-size: 36px;
    line-height: 54px;
  }

  .header-h2 {
    font-size: 30px;
    line-height: 45px;
  }

  .header-h3 {
    font-size: 28px;
    line-height: 42px;
  }

  .header-h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .header-h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .header-h5new {
    font-size: 20px;
    line-height: 38px;
  }

  .header-h6 {
    font-size: 18px;
    line-height: 27px;
  }

  .body-b1 {
    font-size: 16px;
    line-height: 28px;
  }

  .body-b1new {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
  }

  .body-b2 {
    font-size: 14px;
    line-height: 22px;
  }

  .kicker-k1 {
    font-size: 14px;
    line-height: 30px;
  }

  .mar-bottom-80 {
    margin-bottom: 40px;
  }


  .mar-bottom-160 {
    margin-bottom: 80px;
  }

  .mar-bottom-60 {
    margin-bottom: 30px;
  }

  .mar-top-80 {
    margin-top: 40px;
  }

  /* Typography responsive end */
}