* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  background-color: #fff;
  color: #37474F; }
  body.active {
    overflow: hidden; }

img {
  width: 100%; }

.uppercase {
  text-transform: uppercase; }

.red {
  color: #E31B1B; }

.bg-white {
  background: #fff; }

.m0 {
  margin: 0; }

.mt60 {
  margin-top: 60px !important; }

.mt80 {
  margin-top: 80px; }

.mr0 {
  margin-right: 0; }

.mr20 {
  margin-right: 20px; }

.mr50 {
  margin-right: 50px; }

.mb10 {
  margin-bottom: 10px; }

.mb20 {
  margin-bottom: 20px; }

.mb30 {
  margin-bottom: 30px; }

.mb40 {
  margin-bottom: 40px; }

.mb80 {
  margin-bottom: 80px; }

.ml20 {
  margin-left: 20px; }

.p10 {
  padding: 10px; }

.pt15 {
  padding-top: 15px; }

.pt50 {
  padding-top: 50px; }

.pb50 {
  padding-bottom: 50px; }

.w4 {
  width: 4%; }

.w50 {
  width: 50%; }

.w100 {
  width: 100%; }

.h-470px {
  height: 470px; }

.h-515px {
  height: 515px !important; }

.height-auto {
  height: auto !important; }

.font-weight-400 {
  font-weight: 400; }

.font-weight-700 {
  font-weight: 700; }

.display-flex-wrap {
  flex-wrap: wrap; }

.text-underline-none {
  text-decoration: none; }

.inline-block {
  display: inline-block; }

.mt-30 {
  margin-top: 50px !important;
  margin-bottom: 50px !important; }

.ch-correction {
  font-family: "Raleway", sans-serif;
  color: #fff !important;
  height: 66px;
  width: 261.08px;
  padding: 20px 30px !important;
  border: none;
  text-decoration: unset !important; }

.scene {
  width: 200px;
  height: 260px;
  border: 1px solid #CCC;
  margin: 40px 0;
  perspective: 600px; }

.card {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 1s; }

.card.is-flipped {
  transform: translateX(0%) rotateY(-180deg); }

.card__face {
  position: absolute;
  backface-visibility: hidden; }

.card__face--back h3, .card__face--back p {
  color: #fff !important; }

.card__face--back .designation {
  margin-top: -5px;
  border-bottom: 1px solid;
  padding-bottom: 10px; }

.card__face--back {
  background: red;
  transform: rotateY(180deg);
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  color: #fff; }

.card__face.card__face--front {
  position: relative;
  height: 100%; }

.card-content {
  overflow: auto;
  max-height: 360px; }

.card-content::-webkit-scrollbar {
  width: 10px; }

/* Track */
.card-content::-webkit-scrollbar-track {
  background: #C51C1C; }

/* Handle */
.card-content::-webkit-scrollbar-thumb {
  background: #FF8181; }

.card__face {
  position: absolute;
  backface-visibility: hidden; }

.header {
  position: fixed;
  top: 0;
  z-index: 9999;
  /* max-width: 1980px;*/
  height: 110px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  padding: 0 93px;
  transition: all 0.3s ease; }
  @media only screen and (max-width: 1024px) {
    .header {
      padding: 0 16px; } }
  @media only screen and (max-width: 768px) {
    .header {
      height: 65px; } }
  .header.fixHeader {
    background-color: #fff; }
  .header_logo {
    width: 226px;
    height: 71px; }
    @media only screen and (max-width: 1024px) {
      .header_logo {
        width: 148px;
        height: 46px;
        z-index: 9; } }
    .header_logo--link {
      position: relative;
      width: 100%;
      height: 100%;
      display: inline-block; }
      .header_logo--link_img {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.3s linear; }
        .header_logo--link_img--white {
          opacity: 1; }
          .header_logo--link_img--white.active {
            opacity: 0; }
      .header_logo--link_img--color {
        opacity: 0; }
        .header_logo--link_img--color.active {
          opacity: 1; }
  .header #search-button {
    display: flex;
    margin-top: -7px; }
    @media only screen and (max-width: 768px) {
      .header #search-button {
        margin-top: 0px;
        z-index: 9; } }
    .header #search-button:focus {
      box-shadow: none; }
    .header #search-button .search-button-svg.active path {
      fill: #E31B1B;
      stroke: #E31B1B; }
  .header .search-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s ease; }
    .header .search-bar.hdn {
      top: -100%; }
      @media only screen and (max-width: 768px) {
        .header .search-bar.hdn {
          z-index: 9; } }
    .header .search-bar .search-form-container {
      width: 100%;
      padding: 0 6.61%;
      height: 60px; }
      .header .search-bar .search-form-container .search-input-styling {
        background-color: #f5f5f5;
        border-radius: 0;
        border: 0; }
        .header .search-bar .search-form-container .search-input-styling.search-input-icon {
          padding-left: 20px;
          padding-right: 18px; }
        .header .search-bar .search-form-container .search-input-styling.search-input-close-icon {
          padding-right: 25px;
          cursor: pointer; }
    .header .search-bar .search-input {
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      font-size: 18px;
      line-height: 27px;
      color: #BDBDBD; }
      .header .search-bar .search-input:focus {
        box-shadow: none; }
  .header_nav {
    height: 100%;
    width: 100%;
    display: flex; }
    @media only screen and (max-width: 768px) {
      .header_nav {
        position: fixed;
        width: 100%;
        height: 100vh;
        left: 0;
        padding-left: 0;
        top: -101vh;
        background-color: #E31B1B;
        transition: top 0.5s ease;
        -webkit-transition: top 0.5s ease; } }
    .header_nav.active {
      top: 65px; }
      @media only screen and (max-width: 768px) {
        .header_nav.active .header_nav--list {
          padding-left: 0;
          padding-top: 46px; } }
    .header_nav * {
      font-family: 'Raleway', sans-serif;
      font-size: 17px;
      line-height: 30px;
      font-weight: 700;
      color: #fff; }
      @media only screen and (max-width: 1024px) {
        .header_nav * {
          font-weight: bold;
          font-size: 15px; } }
      @media only screen and (max-width: 768px) {
        .header_nav * {
          font-weight: bold;
          font-size: 16px;
          line-height: 57px; } }
    .header_nav--menu {
      width: calc(100% - 226px);
      height: 100%;
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 1024px) {
        .header_nav--menu {
          width: calc(100% - 180px); } }
      @media only screen and (max-width: 768px) {
        .header_nav--menu {
          justify-content: flex-end; } }
    .header_nav--list {
      list-style-type: none;
      padding: 0;
      padding-left: 7.84%;
      margin-bottom: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-around; }
      .header_nav--list.active {
        top: 100px; }
      @media only screen and (max-width: 1024px) {
        .header_nav--list {
          padding-left: 0; } }
      @media only screen and (max-width: 768px) {
        .header_nav--list {
          flex-direction: column;
          justify-content: flex-start; } }
      .header_nav--list_item {
        color: #fff;
        height: 100%;
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 768px) {
          .header_nav--list_item {
            width: 100%;
            height: auto;
            font-weight: bold;
            font-size: 16px;
            line-height: 57px; } }
        .header_nav--list_item_link {
          text-decoration: none;
          height: 100%;
          display: flex;
          align-items: center;
          padding: 0 5px;
          border-bottom: 5px solid transparent;
          transition: border 0.3s linear; }
          @media only screen and (max-width: 768px) {
            .header_nav--list_item_link {
              width: 100%;
              justify-content: center;
              border-bottom: 0px solid transparent; }
              .header_nav--list_item_link:hover {
                border-bottom: 0px solid transparent; } }
          .header_nav--list_item_link:hover {
            border-bottom: 5px solid #fff;
            color: #fff; }
          .header_nav--list_item_link.active {
            color: #37474F; }
            .header_nav--list_item_link.active:hover {
              border-bottom: 5px solid #E31B1B; }

.hamburger-menu {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  padding: 0;
  height: 100%;
  background-color: #E31B1B;
  margin-left: 24px;
  padding: 0 10px; }
  @media only screen and (max-width: 768px) {
    .hamburger-menu {
      display: flex;
      z-index: 9; } }

.line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1); }

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6; }

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6; }

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6; }

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6; }

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6; }

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6; }

.footer {
  position: relative;
  overflow: hidden; }
  .footer_q--big {
    position: absolute;
    right: 0;
    bottom: 0px;
    height: 100%; }
    @media only screen and (max-width: 480px) {
      .footer_q--big {
        display: none; } }
  .footer_q--small {
    position: absolute;
    left: 0;
    bottom: 45px;
    width: 229px; }
    @media only screen and (max-width: 480px) {
      .footer_q--small {
        left: auto;
        right: 0;
        bottom: 88px;
        width: 229px; } }
  .footer_menu {
    display: flex;
    justify-content: space-between;
    background-color: #263238;
    padding: 47px 93px 122px; }
    @media only screen and (max-width: 1024px) {
      .footer_menu {
        padding: 47px 25px 100px; } }
    @media only screen and (max-width: 768px) {
      .footer_menu {
        padding: 42px 25px 30px;
        flex-direction: column; } }
    @media only screen and (max-width: 480px) {
      .footer_menu {
        padding: 42px 16px 10px; } }
  .footer_logo_section {
    width: 350px; }
    @media only screen and (max-width: 1024px) {
      .footer_logo_section {
        width: 300px; } }
    @media only screen and (max-width: 768px) {
      .footer_logo_section {
        width: 350px;
        margin: 0 auto; } }
    .footer_logo_section--group a {
      display: block; }
    .footer_logo_section--group_img {
      width: 243.61px;
      height: 75.23px; }
      @media only screen and (max-width: 480px) {
        .footer_logo_section--group_img {
          width: 181px;
          height: 56px;
          position: relative;
          margin: auto; } }
    .footer_logo_section--group_content {
      margin-top: 22.14px;
      color: #B0BEC5;
      font-weight: 500;
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      line-height: 21px; }
      @media only screen and (max-width: 480px) {
        .footer_logo_section--group_content {
          text-align: center; } }
  .footer_quicklinks {
    width: 450px; }
    @media only screen and (max-width: 1024px) {
      .footer_quicklinks {
        width: 350px; } }
    @media only screen and (max-width: 480px) {
      .footer_quicklinks {
        width: 100%; } }
    .footer_quicklinks--title {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 30px;
      text-transform: uppercase;
      color: #fff;
      margin: 20px 0px 30px; }
      @media only screen and (max-width: 480px) {
        .footer_quicklinks--title {
          font-size: 15px; } }
    .footer_quicklinks--group {
      display: flex;
      justify-content: space-between; }
    .footer_quicklinks--list {
      list-style: none;
      padding-left: 0; }
      .footer_quicklinks--list_item {
        padding-left: 25px;
        position: relative;
        margin-bottom: 10px; }
        .footer_quicklinks--list_item::before {
          content: '';
          position: absolute;
          top: 36%;
          left: 0;
          background-color: #E31B1B;
          width: 7px;
          height: 7px; }
        .footer_quicklinks--list_item_link {
          font-family: 'Raleway', sans-serif;
          color: #B0BEC5;
          font-weight: 500;
          font-size: 16px;
          line-height: 30px;
          text-decoration: none; }
          @media only screen and (max-width: 1024px) {
            .footer_quicklinks--list_item_link {
              font-size: 13px; } }
          .footer_quicklinks--list_item_link:hover {
            text-decoration: underline;
            color: #B0BEC5; }
  .footer_contact {
    width: 270px; }
    @media only screen and (max-width: 1024px) {
      .footer_contact {
        width: 250px; } }
    @media only screen and (max-width: 768px) {
      .footer_contact {
        width: 100%; } }
    .footer_contact--title {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 30px;
      text-transform: uppercase;
      color: #fff;
      margin: 20px 0px 30px; }
      @media only screen and (max-width: 480px) {
        .footer_contact--title {
          font-size: 15px; } }
    .footer_contact--group {
      display: flex;
      justify-content: space-between; }
    .footer_contact--list {
      list-style: none;
      padding-left: 0; }
      .footer_contact--list_item {
        position: relative;
        margin-bottom: 10px; }
        .footer_contact--list_item_link {
          font-family: 'Raleway', sans-serif;
          color: #B0BEC5;
          font-weight: 500;
          font-size: 16px;
          line-height: 30px;
          text-decoration: none; }
          @media only screen and (max-width: 1024px) {
            .footer_contact--list_item_link {
              font-size: 13px;
              line-height: 20px; } }
          .footer_contact--list_item_link:hover {
            text-decoration: underline;
            color: #B0BEC5; }
        .footer_contact--list_item--svg {
          fill: #E31B1B;
          margin-right: 15px;
          width: 30px; }
  .footer_copyrights {
    height: 54px;
    padding: 0 93px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E31B1B;
    font-family: 'Raleway', sans-serif; }
    @media only screen and (max-width: 768px) {
      .footer_copyrights {
        height: 88px;
        padding: 0 16px; } }
    .footer_copyrights--text {
      margin-bottom: 0;
      font-weight: 600;
      font-size: 14px;
      line-height: 20px;
      color: #fff; }
      @media only screen and (max-width: 768px) {
        .footer_copyrights--text {
          width: 40%; } }
      @media only screen and (max-width: 480px) {
        .footer_copyrights--text {
          font-size: 10px;
          line-height: 15px;
          width: 45%; } }
    .footer_copyrights--menu {
      display: flex;
      flex-direction: row;
      padding-left: 0;
      margin-bottom: 0;
      list-style: none; }
      @media only screen and (max-width: 768px) {
        .footer_copyrights--menu {
          flex-direction: column; } }
      .footer_copyrights--menu_list.footer_copyrights--menu_list1, .footer_copyrights--menu_list.footer_copyrights--menu_list2 {
        margin-right: 31.87px; }
        @media only screen and (max-width: 768px) {
          .footer_copyrights--menu_list.footer_copyrights--menu_list1, .footer_copyrights--menu_list.footer_copyrights--menu_list2 {
            margin-right: 0; } }
      @media only screen and (max-width: 768px) {
        .footer_copyrights--menu_list.footer_copyrights--menu_list3 {
          display: none; } }
      .footer_copyrights--menu_list_link {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        line-height: 30px;
        font-family: 'Raleway', sans-serif; }
        @media only screen and (max-width: 480px) {
          .footer_copyrights--menu_list_link {
            font-size: 10px;
            line-height: 20px; } }
        .footer_copyrights--menu_list_link:hover {
          color: #fff; }
    .footer_copyrights .footer_mobile_linkedIn {
      display: none; }
      @media only screen and (max-width: 768px) {
        .footer_copyrights .footer_mobile_linkedIn {
          display: block; } }

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 400px, 0); }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 400px, 0); }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
.animated {
  animation-duration: 3s;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: both; }

.animatedFadeInUp {
  opacity: 0; }

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp; }

.owl-dots {
  display: none; }

.item {
  justify-content: center;
  align-items: center;
  position: relative; }

.caption {
  position: absolute;
  width: 100%;
  height: 100%;
  color: white;
  color: #f1f1f1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5); }
  .caption .title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    line-height: 7.25rem;
    font-weight: 600;
    letter-spacing: 9.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px; }
    @media only screen and (max-width: 768px) {
      .caption .title {
        font-size: 50px;
        line-height: 65px; } }
    @media only screen and (max-width: 480px) {
      .caption .title {
        font-size: 46px;
        line-height: 60px;
        letter-spacing: 5px;
        margin-bottom: 15px; } }
  .caption .para {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    line-height: 2rem; }
    @media only screen and (max-width: 768px) {
      .caption .para {
        font-size: 16px;
        line-height: 27px; } }
    @media only screen and (max-width: 480px) {
      .caption .para {
        font-size: 14px;
        line-height: 27px; } }

.MainBanner {
  width: 100%;
  height: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /*margin-bottom: 20px;*/
  /* Style the video: 100% width and height to cover the entire window */
  /* Add some content at the bottom of the video/page */ }
  @media only screen and (max-width: 1024px) {
    .MainBanner {
      height: 100vh; } }
  .MainBanner #myVideo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .MainBanner #myVideo1 {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .MainBanner .Main_iFrame--mr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto; }
  .MainBanner_content {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .MainBanner_content--title {
      font-family: 'Oswald', sans-serif;
      font-size: 6rem;
      line-height: 7.25rem;
      font-weight: 600;
      letter-spacing: 9.5px;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 25px; }
      @media only screen and (max-width: 768px) {
        .MainBanner_content--title {
          font-size: 50px;
          line-height: 65px; } }
      @media only screen and (max-width: 480px) {
        .MainBanner_content--title {
          font-size: 46px;
          line-height: 60px;
          letter-spacing: 5px;
          margin-bottom: 15px; } }
    .MainBanner_content--para {
      font-family: 'Roboto', sans-serif;
      font-size: 1.3rem;
      line-height: 1.6rem;
      text-transform: capitalize; }
      @media only screen and (max-width: 768px) {
        .MainBanner_content--para {
          font-size: 16px;
          line-height: 27px; } }
      @media only screen and (max-width: 480px) {
        .MainBanner_content--para {
          font-size: 14px;
          line-height: 27px; } }

.Main_iFrame {
  width: 100%;
  height: 702.75px; }

.reachData {
  width: 100%;
  flex-direction: row;
  margin-bottom: 30px; }
  @media only screen and (max-width: 768px) {
    .reachData {
      flex-wrap: wrap;
      margin-bottom: 15px; } }
  .reachData--Box {
    width: 33.33%;
    padding: 63px 60px 55px;
    display: flex;
    justify-content: center;
    align-items: fend; }
    @media only screen and (max-width: 768px) {
      .reachData--Box {
        width: 50%; } }
    @media only screen and (max-width: 480px) {
      .reachData--Box {
        padding: 22px 0px 23px; } }
    .reachData--Box.or_inner_reachData--Box {
      width: 33.33%; }
    .reachData--Box.reachData--Box1 {
      background-color: #E31B1B; }
    .reachData--Box.reachData--Box2 {
      background-color: #D60D12; }
    .reachData--Box.reachData--Box3 {
      background-color: #CC1216; }
    .reachData--Box_content {
      font-family: 'Raleway', sans-serif;
      text-align: center;
      color: #fff; }
      .reachData--Box_content hr {
        width: 150px;
        margin: 1.5rem auto 1rem; }
        @media only screen and (max-width: 480px) {
          .reachData--Box_content hr {
            margin: 0px auto 9px; } }
      @media only screen and (max-width: 480px) {
        .reachData--Box_content svg {
          width: 34px;
          height: 34px; } }
      .reachData--Box_content--title {
        font-size: 2.4rem;
        line-height: 1.9rem;
        font-weight: 800;
        margin: 20px 0; }
        @media only screen and (max-width: 480px) {
          .reachData--Box_content--title {
            font-size: 24px;
            line-height: 30px;
            margin: 10px 0; } }
      .reachData--Box_content--para {
        font-size: 1.1rem;
        line-height: 1.9rem;
        font-weight: 600;
        margin-bottom: 0; }
        @media only screen and (max-width: 480px) {
          .reachData--Box_content--para {
            font-size: 10px;
            line-height: 30px;
            font-weight: 800; } }

.imgContent {
  margin-bottom: 40px;
  padding: 0 93px; }
  .imgContent.cr_imgContent, .imgContent.or_imgContent {
    margin-bottom: 65px; }
    @media only screen and (max-width: 768px) {
      .imgContent.cr_imgContent, .imgContent.or_imgContent {
        margin-bottom: 20px; } }
  @media only screen and (max-width: 1024px) {
    .imgContent {
      padding: 0 15px; } }
  @media only screen and (max-width: 768px) {
    .imgContent {
      margin-bottom: 20px; } }
  .imgContent_big_group, .imgContent_small_group {
    height: auto; }
    @media only screen and (max-width: 768px) {
      .imgContent_big_group, .imgContent_small_group {
        height: auto;
        flex-wrap: wrap; } }
  .imgContent_big_group {
    margin-bottom: 15px; }
    .imgContent_big_group.imgContent_big_group--cr {
      margin-bottom: 25px; }
      @media only screen and (max-width: 768px) {
        .imgContent_big_group.imgContent_big_group--cr {
          margin-bottom: 0px; } }
    @media only screen and (max-width: 768px) {
      .imgContent_big_group {
        margin-bottom: 13px; } }
  .imgContent_small_group.imgContent_small_group--cr {
    margin-bottom: 25px; }
    @media only screen and (max-width: 768px) {
      .imgContent_small_group.imgContent_small_group--cr {
        margin-bottom: 0px; } }
  .imgContent_big {
    width: 50%;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .imgContent_big {
        width: 100%;
        height: 450px; } }
    .imgContent_big.imgContent_1 {
      padding-right: 15px; }
      .imgContent_big.imgContent_1.cr_imgContent_1 {
        width: 100%;
        padding-right: 0;
        height: 515px; }
        .imgContent_big.imgContent_1.cr_imgContent_1 a .imgContent_1--img {
          background: url("./../images/cr_imgContent_1.jpg") no-repeat center center;
          background-size: cover; }
      @media only screen and (max-width: 768px) {
        .imgContent_big.imgContent_1 {
          padding-right: 0px;
          margin-bottom: 13px; } }
      .imgContent_big.imgContent_1 a .imgContent_1--img {
        background: url("./../images/imgContent_1.jpg") no-repeat center center;
        background-size: cover; }
    .imgContent_big.imgContent_2 a .imgContent_2--img {
      background: url("./../images/imgContent_2.jpg") no-repeat center center;
      background-size: cover; }
    .imgContent_big .imgContent_text_section {
      position: absolute;
      bottom: 30px;
      left: 0;
      background-color: #fff;
      padding: 0px 42.56px 0px 37px;
      width: 314px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 202px; }
      @media only screen and (max-width: 480px) {
        .imgContent_big .imgContent_text_section {
          padding: 0px 30px 0px 20px;
          width: 285px;
          min-height: 190px; } }
      .imgContent_big .imgContent_text_section--title {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 22px;
        line-height: 30px;
        color: #37474F;
        margin-bottom: 13px;
        text-transform: uppercase; }
        @media only screen and (max-width: 480px) {
          .imgContent_big .imgContent_text_section--title {
            font-size: 18px;
            line-height: 25px; } }
      .imgContent_big .imgContent_text_section--para {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 11px;
        line-height: 15px;
        color: #607D8B;
        margin-bottom: 19px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .imgContent_big .imgContent_text_section--cta {
        display: flex; }
        .imgContent_big .imgContent_text_section--cta_title {
          font-family: 'Roboto', sans-serif;
          font-weight: bold;
          font-size: 10px;
          line-height: 15px;
          color: #37474F;
          margin-bottom: 0;
          text-transform: uppercase; }
        .imgContent_big .imgContent_text_section--cta svg {
          margin-left: 6.9px;
          margin-top: 2.5px; }
      .imgContent_big .imgContent_text_section:hover {
        background: #263238; }
        .imgContent_big .imgContent_text_section:hover .imgContent_text_section--title, .imgContent_big .imgContent_text_section:hover .imgContent_text_section--para, .imgContent_big .imgContent_text_section:hover .imgContent_text_section--cta_title {
          color: #fff; }
        .imgContent_big .imgContent_text_section:hover path {
          fill: #fff; }
  .imgContent_small {
    width: 32%;
    position: relative;
    height: 515px; }
    .imgContent_small.cr_imgContent_small {
      width: 50%; }
      @media only screen and (max-width: 768px) {
        .imgContent_small.cr_imgContent_small {
          width: 100%;
          margin-bottom: 13px; } }
    @media only screen and (max-width: 768px) {
      .imgContent_small {
        width: 100%;
        height: 450px; } }
    .imgContent_small.imgContent_1 {
      margin-right: 15px; }
      .imgContent_small.imgContent_1.cr_imgContent_1 {
        margin-right: 25px; }
        @media only screen and (max-width: 768px) {
          .imgContent_small.imgContent_1.cr_imgContent_1 {
            margin-right: 0px;
            margin-bottom: 13px; } }
      @media only screen and (max-width: 768px) {
        .imgContent_small.imgContent_1 {
          margin-right: 0px;
          margin-bottom: 13px; } }
      .imgContent_small.imgContent_1 a .imgContent_1--img {
        background: url("./../images/imgContent_3.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_1 a .or_imgContent_1--img {
        background: url("./../images/origination/origination_1.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_1 a .mr_imgContent_1--img {
        background: url("./../images/markets_1.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_1 a .or_inner_imgContent_1--img {
        background: url("./../images/origination/or_inner_imgContent_1.jpg") no-repeat center center;
        background-size: cover; }
    .imgContent_small.imgContent_2 {
      margin-right: 15px; }
      .imgContent_small.imgContent_2.cr_imgContent_2 {
        margin-right: 0px; }
      @media only screen and (max-width: 768px) {
        .imgContent_small.imgContent_2 {
          margin-right: 0px;
          margin-bottom: 13px; } }
      .imgContent_small.imgContent_2 a .imgContent_2--img {
        background: url("./../images/imgContent_4.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_2 a .or_imgContent_2--img {
        background: url("./../images/origination/origination_2.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_2 a .mr_imgContent_2--img {
        background: url("./../images/markets_2.jpg") no-repeat center center;
        background-size: cover; }
      .imgContent_small.imgContent_2 a .or_inner_imgContent_2--img {
        background: url("./../images/origination/or_inner_imgContent_2.jpg") no-repeat center center;
        background-size: cover; }
    .imgContent_small.imgContent_3 a .imgContent_3--img {
      background: url("./../images/imgContent_5.jpg") no-repeat center center;
      background-size: cover; }
    .imgContent_small.imgContent_3 a .or_imgContent_3--img {
      background: url("./../images/origination/origination_3.jpg") no-repeat center center;
      background-size: cover; }
    .imgContent_small.imgContent_3 a .mr_imgContent_3--img {
      background: url("./../images/markets_3.jpg") no-repeat center center;
      background-size: cover; }
    .imgContent_small .imgContent_text_section {
      position: absolute;
      bottom: 30px;
      left: 0;
      background-color: #fff;
      padding: 0px 42.56px 0px 37px;
      width: 314px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      min-height: 202px; }
      @media only screen and (max-width: 480px) {
        .imgContent_small .imgContent_text_section {
          padding: 0px 30px 0px 20px;
          width: 285px;
          min-height: 190px; } }
      .imgContent_small .imgContent_text_section--title {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 22px;
        line-height: 30px;
        color: #37474F;
        margin-bottom: 13px;
        text-transform: uppercase; }
        @media only screen and (max-width: 480px) {
          .imgContent_small .imgContent_text_section--title {
            font-size: 18px;
            line-height: 25px; } }
      .imgContent_small .imgContent_text_section--para {
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 11px;
        line-height: 15px;
        color: #607D8B;
        margin-bottom: 19px; }
      .imgContent_small .imgContent_text_section--cta {
        display: flex; }
        .imgContent_small .imgContent_text_section--cta_title {
          font-family: 'Roboto', sans-serif;
          font-weight: bold;
          font-size: 10px;
          line-height: 15px;
          color: #37474F;
          margin-bottom: 0;
          text-transform: uppercase; }
        .imgContent_small .imgContent_text_section--cta svg {
          margin-left: 6.9px;
          margin-top: 2.5px; }
      .imgContent_small .imgContent_text_section:hover {
        background: #263238; }
        .imgContent_small .imgContent_text_section:hover .imgContent_text_section--title, .imgContent_small .imgContent_text_section:hover .imgContent_text_section--para, .imgContent_small .imgContent_text_section:hover .imgContent_text_section--cta_title {
          color: #fff; }
        .imgContent_small .imgContent_text_section:hover path {
          fill: #fff; }

.item {
  height: 100vh;
  position: relative; }
  @media only screen and (max-width: 480px) {
    .item {
      display: block; } }

@media only screen and (max-width: 480px) {
  .video_file {
    width: auto;
    height: 100% !important; } }

@media only screen and (max-width: 480px) {
  .video_link {
    width: auto;
    height: 100% !important; } }

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

.item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center; }

.item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden; }

.item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%); }

.item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff; }

.item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
  line-height: 68px; }
  @media only screen and (max-width: 480px) {
    .item .cover .header-content h1 {
      font-size: 36px;
      line-height: 46px; } }

.item .cover .header-content .banner-description {
  font-size: 34px;
  font-weight: 600;
  margin: 5px 0 20px;
  text-transform: uppercase;
  color: #fff;
  line-height: 46px;
  text-align: center; }
  @media only screen and (max-width: 480px) {
    .item .cover .header-content .banner-description {
      font-size: 24px;
      line-height: 36px; } }

.banner-description p {
  display: inline-block; }

.owl-item.active .banner-description p:nth-child(1) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp !important;
  animation-delay: 0.8s !important; }

.owl-item.active .banner-description p:nth-child(2) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp !important;
  animation-delay: 0.10s !important; }

.owl-item.active .banner-description p:nth-child(3) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp !important;
  animation-delay: 0.12s !important; }

.owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
  text-align: center;
  font-weight: 600;
  font-size: 34px;
  line-height: 42px; }

.owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 34px;
  line-height: 42px; }
  @media only screen and (max-width: 480px) {
    .owl-item.active p {
      font-size: 20px;
      line-height: 26px; } }

.owl-item.active .tagline {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.7s;
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px; }
  @media only screen and (max-width: 480px) {
    .owl-item.active .tagline {
      font-size: 16px; } }

.owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s; }

.owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  display: block;
  z-index: 1000;
  border-radius: 0; }

.owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff; }

.owl-nav .owl-prev:focus {
  outline: 0; }

.owl-nav .owl-prev:hover {
  background: #000 !important; }

.owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  display: block;
  z-index: 1000;
  border-radius: 0; }

.owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff; }

.owl-nav .owl-next:focus {
  outline: 0; }

.owl-nav .owl-next:hover {
  background: #000 !important; }

.item .cover .header-content h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

/* about us scss */
.third-child {
  margin-right: 0 !important; }
  @media only screen and (min-width: 1440px) {
    .third-child {
      margin-right: 0 !important; } }
  @media only screen and (min-width: 1600px) {
    .third-child {
      margin-right: 35px !important; } }

@media only screen and (min-width: 1600px) {
  .fourth-child {
    margin-right: 0 !important; } }

/* dropdown mega menu */
.dropdown {
  position: relative;
  display: inline-block; }
  .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    padding: 40px;
    z-index: 1;
    width: 940px;
    height: 222px;
    border-bottom: 9px solid #E31B1B;
    left: -250px;
    top: 105px; }
    @media only screen and (max-width: 768px) {
      .dropdown .dropdown-content {
        width: 100%;
        height: auto;
        left: 0;
        top: 75px; } }
    .dropdown .dropdown-content:before {
      content: "";
      position: absolute;
      left: 280px;
      top: -10px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 10px 10px 10px;
      border-color: transparent transparent #fff transparent;
      z-index: 9999; }
      @media only screen and (max-width: 768px) {
        .dropdown .dropdown-content:before {
          display: none; } }
    .dropdown .dropdown-content.cr-arrow:before {
      left: 350px !important; }
    .dropdown .dropdown-content.market-dropdown {
      width: 762px; }
    .dropdown .dropdown-content.orgination-dropdown {
      left: -350px; }
      .dropdown .dropdown-content.orgination-dropdown:before {
        left: 390px !important; }
    .dropdown .dropdown-content .row .flex-width {
      width: 25%; }
      @media only screen and (max-width: 768px) {
        .dropdown .dropdown-content .row .flex-width {
          width: 100%; } }
    .dropdown .dropdown-content .row .width-40 {
      width: 40%; }
      @media only screen and (max-width: 768px) {
        .dropdown .dropdown-content .row .width-40 {
          width: 100%; } }
    .dropdown .dropdown-content .row .width-50 {
      width: 50%; }
      @media only screen and (max-width: 768px) {
        .dropdown .dropdown-content .row .width-50 {
          width: 100%; } }
    .dropdown .dropdown-content .row .width-60 {
      width: 60%;
      padding-right: 41px; }
      @media only screen and (max-width: 768px) {
        .dropdown .dropdown-content .row .width-60 {
          width: 100%; } }
    .dropdown .dropdown-content .row h5 {
      font-family: 'Raleway', sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 20px;
      line-height: 100%;
      text-transform: uppercase;
      color: #37474F;
      margin-bottom: 20px; }
    .dropdown .dropdown-content .row p {
      font-family: 'Raleway', sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      line-height: 159.5%;
      color: #455A64;
      padding: 0 25px 0 0; }
    .dropdown .dropdown-content .row .mega-links {
      margin-left: -40px;
      border-left: 1px solid #EDEDED; }
      .dropdown .dropdown-content .row .mega-links li {
        padding: 0 20px; }
        .dropdown .dropdown-content .row .mega-links li a {
          font-family: 'Raleway', sans-serif;
          font-style: normal;
          font-weight: bold;
          font-size: 15px;
          line-height: 315%;
          text-transform: uppercase;
          color: #37474F;
          display: block;
          text-decoration: none; }
    .dropdown .dropdown-content .row .second-half {
      border-left: 1px solid transparent !important; }
  .dropdown:hover .dropdown-content {
    display: flex;
    justify-content: space-between; }

.box-icon-center {
  align-items: center;
  height: 110px !important; }
  @media only screen and (max-width: 1365px) {
    .box-icon-center {
      height: auto !important; } }

.box-center, .shareholders .shareholders-box, .memberships .membership-box {
  display: flex;
  justify-content: center;
  align-items: center; }

.aboutUs-banner {
  background: url("./../images/about-us/about-us-banner.jpg") no-repeat center center;
  background-size: cover; }

.aboutUs_imgContent--title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 30px;
  margin-top: 74px;
  margin-bottom: 55px;
  text-align: center; }

.aboutUs_content {
  padding: 10% 7%; }
  @media only screen and (max-width: 1024px) {
    .aboutUs_content {
      padding: 0 15px; } }
  .aboutUs_content.history {
    margin: 0 0 20px; }
  .aboutUs_content--group {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .aboutUs_content--group {
        flex-direction: column; } }
  .aboutUs_content--img {
    width: 45%;
    height: 716px;
    background: url("./../images/about-us/about-us-1.jpg") no-repeat center center;
    background-size: cover;
    /* @include MQ(L) { margin-right: 25px; }
    @include MQ(M) { width: 100%; margin-right: 0; }*/ }
    @media only screen and (max-width: 768px) {
      .aboutUs_content--img {
        width: 100%;
        margin-top: 40px; } }
  .aboutUs_content.history-img {
    width: 45%;
    height: 716px;
    background: url("./../images/about-us/about-us-2.jpg") no-repeat center center;
    background-size: cover;
    margin-right: 50px; }
    @media only screen and (max-width: 1024px) {
      .aboutUs_content.history-img {
        margin-right: 25px; } }
    @media only screen and (max-width: 768px) {
      .aboutUs_content.history-img {
        width: 100%;
        margin-right: 0; } }
  .aboutUs_content.history-content {
    width: 55%;
    padding: 40px 0; }
    @media only screen and (max-width: 768px) {
      .aboutUs_content.history-content {
        width: 100%;
        padding: 0 !important;
        margin: 0; } }
    @media only screen and (max-width: 1365px) {
      .aboutUs_content.history-content .history-para {
        font-size: 15px;
        line-height: 25px; } }
    @media only screen and (max-width: 1024px) {
      .aboutUs_content.history-content .history-para {
        margin-bottom: 30px; } }
  .aboutUs_content--who {
    width: 55%;
    margin-right: 50px;
    /*  @include MQ(M) { width: 100%; margin-top: 40px; }*/ }
    @media only screen and (max-width: 1024px) {
      .aboutUs_content--who {
        margin-right: 25px; } }
    @media only screen and (max-width: 768px) {
      .aboutUs_content--who {
        width: 100%;
        margin-right: 0; } }
    .aboutUs_content--who_title {
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 42px;
      line-height: 45px;
      margin-bottom: 40px; }
    .aboutUs_content--who_para {
      font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-weight: normal;
      font-size: 18px;
      line-height: 29px;
      color: #607D8B;
      margin-bottom: 50px; }
    .aboutUs_content--who_button {
      font-family: "Raleway", sans-serif;
      font-weight: 800;
      font-size: 18px;
      line-height: 30px;
      background-color: #E31B1B;
      color: #fff;
      height: 66px;
      width: 261.08px;
      padding: 10px;
      border: none; }

.aboutUs {
  /* Quadra commodities box */ }
  .aboutUs.quadra-commodities {
    background: #F7F8FA;
    padding: 10% 7%; }
    @media only screen and (max-width: 1365px) {
      .aboutUs.quadra-commodities {
        padding: 60px 93px 40px; } }
    @media only screen and (max-width: 1024px) {
      .aboutUs.quadra-commodities {
        padding: 60px 15px 40px !important; } }
    @media only screen and (max-width: 768px) {
      .aboutUs.quadra-commodities {
        padding: 40px 15px !important; } }
    .aboutUs.quadra-commodities .title {
      line-height: 52px;
      margin-bottom: 60px; }
      @media only screen and (max-width: 1365px) {
        .aboutUs.quadra-commodities .title {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 768px) {
        .aboutUs.quadra-commodities .title {
          line-height: 40px;
          font-size: 30px;
          margin-bottom: 40px; } }
    .aboutUs.quadra-commodities .imgContent_small {
      width: 31%; }
      @media only screen and (max-width: 1365px) {
        .aboutUs.quadra-commodities .imgContent_small {
          width: 31.33% !important; } }
      @media only screen and (max-width: 1024px) {
        .aboutUs.quadra-commodities .imgContent_small {
          width: 100% !important; } }
    .aboutUs.quadra-commodities .imgContent_small_group {
      height: auto; }
    .aboutUs.quadra-commodities .commodities-box, .aboutUs.quadra-commodities .shareholders-box {
      background: #fff;
      height: 150px;
      padding: 20px;
      margin-bottom: 50px; }
      @media only screen and (max-width: 1365px) {
        .aboutUs.quadra-commodities .commodities-box, .aboutUs.quadra-commodities .shareholders-box {
          padding: 0; } }
      .aboutUs.quadra-commodities .commodities-box .icon, .aboutUs.quadra-commodities .shareholders-box .icon {
        padding: 25px; }
        @media only screen and (max-width: 1365px) {
          .aboutUs.quadra-commodities .commodities-box .icon, .aboutUs.quadra-commodities .shareholders-box .icon {
            padding: 45px 10px; } }
        @media only screen and (max-width: 768px) {
          .aboutUs.quadra-commodities .commodities-box .icon, .aboutUs.quadra-commodities .shareholders-box .icon {
            padding: 45px 13px !important; } }
      @media only screen and (max-width: 1365px) {
        .aboutUs.quadra-commodities .commodities-box .icon-content, .aboutUs.quadra-commodities .shareholders-box .icon-content {
          padding: 17px 10px; } }
      @media only screen and (max-width: 1024px) {
        .aboutUs.quadra-commodities .commodities-box .icon-content, .aboutUs.quadra-commodities .shareholders-box .icon-content {
          padding: 30px 10px; } }
      @media only screen and (max-width: 768px) {
        .aboutUs.quadra-commodities .commodities-box .icon-content, .aboutUs.quadra-commodities .shareholders-box .icon-content {
          padding: 40px 10px; } }
      @media only screen and (max-width: 480px) {
        .aboutUs.quadra-commodities .commodities-box .icon-content, .aboutUs.quadra-commodities .shareholders-box .icon-content {
          width: 65%; } }
      .aboutUs.quadra-commodities .commodities-box .icon-content .icon-title, .aboutUs.quadra-commodities .shareholders-box .icon-content .icon-title {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 38px;
        line-height: 30px;
        margin-bottom: 20px; }
        @media only screen and (max-width: 1365px) {
          .aboutUs.quadra-commodities .commodities-box .icon-content .icon-title, .aboutUs.quadra-commodities .shareholders-box .icon-content .icon-title {
            font-size: 33px; } }
        @media only screen and (max-width: 1024px) {
          .aboutUs.quadra-commodities .commodities-box .icon-content .icon-title, .aboutUs.quadra-commodities .shareholders-box .icon-content .icon-title {
            font-size: 27px; } }
        @media only screen and (max-width: 768px) {
          .aboutUs.quadra-commodities .commodities-box .icon-content .icon-title, .aboutUs.quadra-commodities .shareholders-box .icon-content .icon-title {
            font-size: 32px; } }
      .aboutUs.quadra-commodities .commodities-box .icon-content .content, .aboutUs.quadra-commodities .shareholders-box .icon-content .content {
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 15px;
        line-height: 23px; }
        @media only screen and (max-width: 1365px) {
          .aboutUs.quadra-commodities .commodities-box .icon-content .content, .aboutUs.quadra-commodities .shareholders-box .icon-content .content {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden; } }
        @media only screen and (max-width: 1024px) {
          .aboutUs.quadra-commodities .commodities-box .icon-content .content, .aboutUs.quadra-commodities .shareholders-box .icon-content .content {
            display: -webkit-box;
            -webkit-line-clamp: 2 !important;
            -webkit-box-orient: vertical;
            overflow: hidden; } }

/* Leadership scss */
.leadership .imgContent_small {
  width: 32.33%;
  height: 515px; }
  @media only screen and (min-width: 1600px) {
    .leadership .imgContent_small {
      width: 23%; } }
  @media only screen and (max-width: 1365px) {
    .leadership .imgContent_small {
      width: 31.33% !important; } }
  @media only screen and (max-width: 1024px) {
    .leadership .imgContent_small {
      width: 100% !important; } }
.leadership .imgContent_small_group {
  height: auto; }
  @media only screen and (max-width: 1365px) {
    .leadership .imgContent_small_group .imgContent_small .imgContent_text_section {
      width: 270px; } }
  @media only screen and (max-width: 1024px) {
    .leadership .imgContent_small_group .imgContent_small .imgContent_text_section {
      width: 237px; } }
  @media only screen and (max-width: 768px) {
    .leadership .imgContent_small_group {
      height: auto !important; }
      .leadership .imgContent_small_group .imgContent_small .imgContent_text_section {
        width: 314px; } }

/* Shareholders scss */
.shareholders {
  background: #fff !important; }
  .shareholders .shareholders-box {
    background: #263238 !important;
    height: 210px !important; }
    @media only screen and (max-width: 1365px) {
      .shareholders .shareholders-box {
        padding: 20px !important; } }
    @media only screen and (max-width: 1365px) {
      .shareholders .shareholders-box.third-child {
        margin-right: 0; } }
  .shareholders .shareholders-para {
    font-size: 18px !important;
    padding: 0 93px;
    margin-bottom: 0 !important; }
    @media only screen and (max-width: 1024px) {
      .shareholders .shareholders-para {
        padding: 0; } }

/* Memberships scss */
.memberships .title {
  margin-bottom: 20px !important; }
.memberships .membership-subtitle {
  width: 55%;
  margin: 0 auto 50px; }
  @media only screen and (max-width: 1024px) {
    .memberships .membership-subtitle {
      width: 100%; } }
.memberships .membership-box {
  height: 210px !important;
  background: #fff;
  margin-bottom: 50px;
  padding: 20px; }
  .memberships .membership-box .img-opacity {
    mix-blend-mode: luminosity;
    opacity: 0.6; }

/* References scss */
.references {
  position: relative;
  margin-bottom: 200px; }
  @media only screen and (max-width: 1365px) {
    .references {
      height: 550px; } }
  @media only screen and (max-width: 768px) {
    .references {
      height: 580px; } }
  @media only screen and (max-width: 480px) {
    .references {
      height: 520px; } }
  .references .references-box {
    width: 741.48px;
    height: 508.53px;
    background: #fff;
    padding: 50px;
    border-bottom: 8px solid #E31B1B;
    position: absolute;
    bottom: 20px;
    left: 60px;
    top: 80px;
    margin-top: 80px; }
    @media only screen and (min-width: 1440px) {
      .references .references-box {
        top: 30%; } }
    @media only screen and (min-width: 1850px) {
      .references .references-box {
        top: 45%; } }
    @media only screen and (min-width: 2350px) {
      .references .references-box {
        top: 55%; } }
    @media only screen and (min-width: 2900px) {
      .references .references-box {
        top: 65%; } }
    @media only screen and (max-width: 1024px) {
      .references .references-box {
        left: 15px; } }
    @media only screen and (max-width: 768px) {
      .references .references-box {
        width: 100%;
        height: 550px;
        left: 0; } }
    @media only screen and (max-width: 480px) {
      .references .references-box {
        padding: 15px;
        height: 500px; } }
    .references .references-box .reference-title {
      margin-bottom: 20px !important; }
      @media only screen and (max-width: 480px) {
        .references .references-box .reference-title {
          width: 100%;
          font-size: 30px; } }
    .references .references-box .reference-subtitle {
      margin-bottom: 20px !important; }
      @media only screen and (max-width: 480px) {
        .references .references-box .reference-subtitle {
          font-size: 14px;
          line-height: 25px; } }
    .references .references-box .grey-box, .references .references-box .market.ocean-freight .white-box, .market.ocean-freight .references .references-box .white-box, .references .references-box .market.commodity-trading .white-box, .market.commodity-trading .references .references-box .white-box {
      background: #F7F8FA;
      width: 527.45px;
      height: 89.39px;
      padding: 10px;
      margin-bottom: 40px; }
      @media only screen and (max-width: 768px) {
        .references .references-box .grey-box, .references .references-box .market.ocean-freight .white-box, .market.ocean-freight .references .references-box .white-box, .references .references-box .market.commodity-trading .white-box, .market.commodity-trading .references .references-box .white-box {
          width: 100%; } }
      @media only screen and (max-width: 480px) {
        .references .references-box .grey-box, .references .references-box .market.ocean-freight .white-box, .market.ocean-freight .references .references-box .white-box, .references .references-box .market.commodity-trading .white-box, .market.commodity-trading .references .references-box .white-box {
          margin-bottom: 20px; } }
      .references .references-box .grey-box .grey-box-content, .references .references-box .market.ocean-freight .white-box .grey-box-content, .market.ocean-freight .references .references-box .white-box .grey-box-content, .references .references-box .market.commodity-trading .white-box .grey-box-content, .market.commodity-trading .references .references-box .white-box .grey-box-content {
        font-weight: 700;
        color: #37474F !important;
        margin-top: 7px;
        padding-right: 10px; }
        @media only screen and (max-width: 768px) {
          .references .references-box .grey-box .grey-box-content, .references .references-box .market.ocean-freight .white-box .grey-box-content, .market.ocean-freight .references .references-box .white-box .grey-box-content, .references .references-box .market.commodity-trading .white-box .grey-box-content, .market.commodity-trading .references .references-box .white-box .grey-box-content {
            font-size: 15px;
            line-height: 21px; } }
        @media only screen and (max-width: 480px) {
          .references .references-box .grey-box .grey-box-content, .references .references-box .market.ocean-freight .white-box .grey-box-content, .market.ocean-freight .references .references-box .white-box .grey-box-content, .references .references-box .market.commodity-trading .white-box .grey-box-content, .market.commodity-trading .references .references-box .white-box .grey-box-content {
            font-size: 13px;
            line-height: 20px; } }
  .references .icon-list {
    color: #E31B1B;
    font-size: 10px;
    padding: 7px 10px 0 0; }
    @media only screen and (max-width: 768px) {
      .references .icon-list {
        padding: 2px 10px 0 0; } }

.memberships .membership-box .img-opacity:hover {
  mix-blend-mode: unset;
  opacity: 1; }

/* leadership scss */
.leadership-home {
  padding: 50px 93px 20px; }
  .leadership-home .mr-15 {
    margin-right: 15px !important; }
  @media only screen and (max-width: 1024px) {
    .leadership-home {
      padding: 10px 15px; } }
  .leadership-home .imgContent_small_group {
    height: auto; }
    .leadership-home .imgContent_small_group .imgContent_small {
      width: 31%;
      height: 515px; }
      @media only screen and (min-width: 1600px) {
        .leadership-home .imgContent_small_group .imgContent_small {
          width: 23%; } }
      @media only screen and (max-width: 1024px) {
        .leadership-home .imgContent_small_group .imgContent_small {
          width: 100% !important; } }
      .leadership-home .imgContent_small_group .imgContent_small.imgContent_1, .leadership-home .imgContent_small_group .imgContent_small.imgContent_2, .leadership-home .imgContent_small_group .imgContent_small.imgContent_3 {
        margin-right: 35px; }
        @media only screen and (max-width: 768px) {
          .leadership-home .imgContent_small_group .imgContent_small.imgContent_1, .leadership-home .imgContent_small_group .imgContent_small.imgContent_2, .leadership-home .imgContent_small_group .imgContent_small.imgContent_3 {
            margin-right: 0; } }
        @media only screen and (max-width: 1365px) {
          .leadership-home .imgContent_small_group .imgContent_small.imgContent_1, .leadership-home .imgContent_small_group .imgContent_small.imgContent_2, .leadership-home .imgContent_small_group .imgContent_small.imgContent_3 {
            margin-right: 15px; } }
      .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section {
        min-height: 150px;
        padding: 0px 14px 0px 37px; }
        @media only screen and (max-width: 1365px) {
          .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section {
            width: 270px; } }
        @media only screen and (max-width: 1024px) {
          .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section {
            width: 237px; } }
        .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section .designation {
          font-size: 14px;
          line-height: 18px; }
        .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section .introduction {
          font-size: 11.5px; }
          @media only screen and (max-width: 1024px) {
            .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section .introduction {
              display: -webkit-box;
              -webkit-line-clamp: 1;
              -webkit-box-orient: vertical;
              overflow: hidden; } }
          @media only screen and (max-width: 1365px) {
            .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section .introduction {
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical;
              overflow: hidden; } }
        .leadership-home .imgContent_small_group .imgContent_small .imgContent_text_section .linked-in-img {
          height: 25px;
          width: 26px; }

.founder-center {
  justify-content: center !important; }

.crBanner {
  background: url("./../images/imgContent_2.jpg") no-repeat center center;
  background-size: cover; }

.cr-para {
  width: 60%;
  position: relative;
  color: #607D8B;
  font-size: 18px;
  line-height: 29px;
  font-family: 'Roboto', sans-serif;
  margin: 45px auto;
  padding: 0 15px; }
  @media only screen and (max-width: 768px) {
    .cr-para {
      font-size: 16px;
      line-height: 27px;
      width: 100%;
      margin: 25px auto; } }

.box-content-center, .cr-inner.mission-vision .sustainbility-box, .cr-inner.company-values .values-box {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
  display: table-cell;
  vertical-align: middle; }

.imgContent_small.cr_imgContent_small {
  width: 48%; }
  @media only screen and (max-width: 1024px) {
    .imgContent_small.cr_imgContent_small {
      width: 100% !important; } }

.cr-inner {
  padding: 0 93px !important; }
  @media only screen and (max-width: 1024px) {
    .cr-inner {
      padding: 0 15px !important; } }
  @media only screen and (max-width: 480px) {
    .cr-inner .banner-title {
      font-size: 35px; } }
  .cr-inner .heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 45px;
    margin-bottom: 40px; }
    @media only screen and (max-width: 1365px) {
      .cr-inner .heading {
        font-size: 25px;
        line-height: 35px; } }
    @media only screen and (max-width: 1024px) {
      .cr-inner .heading {
        font-size: 20px;
        line-height: 32px; } }
  @media only screen and (max-width: 1365px) {
    .cr-inner .aboutUs_content--who_para {
      font-size: 15px;
      line-height: 25px;
      margin-bottom: 25px; } }
  .cr-inner.blocks {
    padding: 50px 93px 10px !important; }
    @media only screen and (max-width: 1024px) {
      .cr-inner.blocks {
        padding: 50px 15px 10px !important; } }
    .cr-inner.blocks .imgContent_big.imgContent_1 {
      padding-right: 35px; }
      @media only screen and (max-width: 1024px) {
        .cr-inner.blocks .imgContent_big.imgContent_1 {
          padding-right: 15px; } }
      @media only screen and (max-width: 768px) {
        .cr-inner.blocks .imgContent_big.imgContent_1 {
          padding-right: 0; } }
    .cr-inner.blocks .sustainbility-box {
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.01);
      background: white;
      padding: 50px; }
      @media only screen and (max-width: 768px) {
        .cr-inner.blocks .sustainbility-box {
          height: 450px;
          padding: 40px; } }
      .cr-inner.blocks .sustainbility-box .box-header {
        font-size: 30px;
        line-height: 45px;
        text-transform: capitalize; }
        @media only screen and (max-width: 1365px) {
          .cr-inner.blocks .sustainbility-box .box-header {
            font-size: 23px;
            line-height: 30px; } }
        @media only screen and (max-width: 480px) {
          .cr-inner.blocks .sustainbility-box .box-header {
            font-size: 25px;
            line-height: 33px; } }
      .cr-inner.blocks .sustainbility-box .icon-size, .cr-inner.blocks .sustainbility-box .icon-1-size, .cr-inner.blocks .sustainbility-box .icon-2-size {
        max-height: 77px;
        margin-bottom: 40px; }
      .cr-inner.blocks .sustainbility-box .icon-1-size {
        max-width: 76px; }
      .cr-inner.blocks .sustainbility-box .icon-2-size {
        max-width: 59px; }
      @media only screen and (max-width: 1365px) {
        .cr-inner.blocks .sustainbility-box .box-content {
          font-size: 15px;
          line-height: 25px; } }
      @media only screen and (max-width: 480px) {
        .cr-inner.blocks .sustainbility-box .box-content {
          font-size: 14px;
          line-height: 20px; } }
      .cr-inner.blocks .sustainbility-box:hover {
        border-bottom: 7px solid #E31B1B; }
  .cr-inner.mission-vision .imgContent_big_group {
    height: 450px; }
    @media only screen and (max-width: 1024px) {
      .cr-inner.mission-vision .imgContent_big_group {
        height: auto; } }
    @media only screen and (max-width: 1365px) {
      .cr-inner.mission-vision .imgContent_big_group .last-child {
        padding-right: 0; } }
  .cr-inner.mission-vision .sustainbility-box {
    height: 419px;
    border-bottom: 6px solid #E31B1B;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04); }
    .cr-inner.mission-vision .sustainbility-box .mv-title {
      font-size: 26px; }
    .cr-inner.mission-vision .sustainbility-box .box-content {
      margin-bottom: 0; }
  .cr-inner.image-section {
    margin-bottom: 60px !important; }
  .cr-inner.aboutUs_content {
    margin: 0; }
  .cr-inner.or_inner_content {
    margin: 0 0 40px 0; }
  @media only screen and (max-width: 1365px) {
    .cr-inner.company-values {
      overflow-x: auto;
      padding: 0 15px !important; } }
  .cr-inner.company-values .imgContent_big_group, .cr-inner.company-values .imgContent_small_group {
    height: auto; }
  .cr-inner.company-values .values-box {
    width: 230px;
    height: 314.23px;
    padding: 45px 30px; }
    @media only screen and (min-width: 1440px) {
      .cr-inner.company-values .values-box {
        width: 100%; } }
    @media only screen and (max-width: 1365px) {
      .cr-inner.company-values .values-box {
        min-width: 255px; } }
    @media only screen and (max-width: 1024px) {
      .cr-inner.company-values .values-box {
        min-width: 230px; } }
    @media only screen and (max-width: 768px) {
      .cr-inner.company-values .values-box {
        width: 100%; } }
    .cr-inner.company-values .values-box:hover {
      background: #E31B1B;
      color: #fff; }
      .cr-inner.company-values .values-box:hover line {
        stroke: #fff;
        stroke-width: 2; }
      .cr-inner.company-values .values-box:hover path {
        fill: #fff; }
    .cr-inner.company-values .values-box .icon-height {
      height: 125px; }
    .cr-inner.company-values .values-box .values-icon {
      margin: 20px 0; }
    .cr-inner.company-values .values-box .values {
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 45px; }

.governance {
  padding: 50px 93px;
  position: relative; }
  @media only screen and (max-width: 1024px) {
    .governance {
      padding: 15px; } }
  @media only screen and (max-width: 768px) {
    .governance {
      height: 380px; } }
  .governance .img-size {
    width: 936px;
    height: 614px; }
    @media only screen and (min-width: 1600px) {
      .governance .img-size {
        width: 80%;
        height: 100%; } }
    @media only screen and (max-width: 1365px) {
      .governance .img-size {
        width: 90%;
        height: auto; } }
    @media only screen and (max-width: 768px) {
      .governance .img-size {
        width: 100%;
        height: auto; } }
  .governance .bod-box {
    width: 575px;
    height: 526px;
    background: #fff;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
    padding: 50px !important;
    position: absolute;
    right: 95px;
    top: 100px;
    margin-top: 120px; }
    @media only screen and (min-width: 1600px) {
      .governance .bod-box {
        top: 32%; } }
    @media only screen and (min-width: 1920px) {
      .governance .bod-box {
        top: 43%; } }
    @media only screen and (min-width: 2160px) {
      .governance .bod-box {
        top: 51%; } }
    @media only screen and (max-width: 1365px) {
      .governance .bod-box {
        height: 450px; } }
    @media only screen and (max-width: 1024px) {
      .governance .bod-box {
        height: 400px;
        right: 30px;
        padding: 40px !important;
        top: 30%; } }
    @media only screen and (max-width: 768px) {
      .governance .bod-box {
        width: 100%;
        height: 320px;
        right: 0;
        padding: 20px !important;
        margin-top: 125px; } }
    @media only screen and (max-width: 480px) {
      .governance .bod-box .heading {
        font-size: 16px;
        line-height: 29px;
        margin-bottom: 20px; } }
    .governance .bod-box .content-bod {
      padding: 0 35px 0 0 !important;
      margin: 0;
      width: 100%; }
      @media only screen and (max-width: 480px) {
        .governance .bod-box .content-bod {
          font-size: 13px;
          line-height: 24px;
          padding: 0 !important; } }

@media only screen and (max-width: 1024px) {
  .responsive-margin {
    margin-top: 150px; } }
@media only screen and (max-width: 768px) {
  .responsive-margin {
    margin-top: 240px; } }

.originationBanner {
  background: url("./../images/origination/origination_banner.jpg") no-repeat center center;
  background-size: cover; }

.or_innerBanner {
  background: url("./../images/origination/origination_inner_banner.jpg") no-repeat center center;
  background-size: cover; }

.or_inner_imgContent--title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 30px;
  text-transform: uppercase;
  color: #37474F;
  margin-top: 74px;
  margin-bottom: 55px;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .or_inner_imgContent--title {
      line-height: 45px; } }
  @media only screen and (max-width: 480px) {
    .or_inner_imgContent--title {
      font-size: 35px;
      line-height: 40px;
      margin-bottom: 35px;
      margin-top: 40px; } }

.or_inner_content {
  margin: 51px 0px 55px;
  padding: 0 93px; }
  @media only screen and (max-width: 1024px) {
    .or_inner_content {
      padding: 0 15px; } }
  @media only screen and (max-width: 480px) {
    .or_inner_content {
      margin: 180px 0px 55px; } }
  .or_inner_content--group {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 768px) {
      .or_inner_content--group {
        flex-direction: column; } }
  .or_inner_content--img {
    width: 45%;
    height: 716px;
    margin-right: 50px;
    background: url("./../images/origination/or_inner_imgContent_3.jpg") no-repeat center center;
    background-size: cover; }
    @media only screen and (max-width: 1024px) {
      .or_inner_content--img {
        margin-right: 25px; } }
    @media only screen and (max-width: 768px) {
      .or_inner_content--img {
        width: 100%;
        margin-right: 0; } }
  .or_inner_content--commitment {
    width: 55%; }
    @media only screen and (max-width: 768px) {
      .or_inner_content--commitment {
        width: 100%;
        margin-top: 40px; } }
    .or_inner_content--commitment_title {
      font-family: 'Raleway', sans-serif;
      font-weight: 900;
      font-size: 42px;
      line-height: 45px;
      color: #37474F;
      margin-bottom: 40px; }
      @media only screen and (max-width: 1024px) {
        .or_inner_content--commitment_title {
          margin-bottom: 30px; } }
      .or_inner_content--commitment_title.sub-title {
        font-size: 28px;
        line-height: 42px; }
        @media only screen and (max-width: 1365px) {
          .or_inner_content--commitment_title.sub-title {
            font-size: 25px;
            line-height: 35px; } }
        @media only screen and (max-width: 1024px) {
          .or_inner_content--commitment_title.sub-title {
            font-size: 20px;
            line-height: 30px; } }
    .or_inner_content--commitment_para {
      font-family: 'Roboto', sans-serif;
      font-weight: 900;
      font-weight: normal;
      font-size: 18px;
      line-height: 29px;
      color: #607D8B;
      margin-bottom: 40px; }
      @media only screen and (max-width: 1365px) {
        .or_inner_content--commitment_para {
          font-size: 15px;
          line-height: 25px; } }
      @media only screen and (max-width: 1024px) {
        .or_inner_content--commitment_para {
          font-size: 14px;
          margin-bottom: 30px; } }
    .or_inner_content--commitment_fact {
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: 22px;
      line-height: 30px;
      text-transform: uppercase;
      color: #37474F;
      margin-bottom: 18px; }
    .or_inner_content--commitment_counter {
      background-color: #E31B1B;
      display: flex;
      align-items: center;
      padding: 29px 43px;
      width: fit-content;
      min-width: 500px; }
      @media only screen and (max-width: 1024px) {
        .or_inner_content--commitment_counter {
          min-width: auto; } }
      @media only screen and (max-width: 768px) {
        .or_inner_content--commitment_counter {
          min-width: 500px; } }
      @media only screen and (max-width: 480px) {
        .or_inner_content--commitment_counter {
          min-width: 100%;
          width: 100%;
          padding: 20px 30px; } }
      .or_inner_content--commitment_counter_number {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 64px;
        line-height: 25px;
        text-transform: uppercase;
        color: #fff;
        margin-right: 30px;
        width: 50%; }
      .or_inner_content--commitment_counter_para {
        font-family: 'Raleway', sans-serif;
        font-weight: 800;
        font-size: 24px;
        line-height: 32px;
        text-transform: capitalize;
        color: #fff;
        margin-bottom: 0;
        width: 50%; }
    .or_inner_content--commitment_process {
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
      font-size: 18px;
      line-height: 29px;
      color: #37474F;
      margin-top: 24px;
      margin-bottom: 0; }
  .or_inner_content .title {
    margin-bottom: 30px; }
  @media only screen and (max-width: 1365px) {
    .or_inner_content .testimonial-icon {
      width: 7%; } }
  @media only screen and (max-width: 768px) {
    .or_inner_content .testimonial-icon {
      width: 15%; } }
  .or_inner_content .testimonial {
    font-weight: 600;
    text-transform: inherit;
    line-height: 41px; }
    @media only screen and (max-width: 480px) {
      .or_inner_content .testimonial {
        font-size: 15px;
        line-height: 30px; } }
    .or_inner_content .testimonial.testimonial-name {
      margin-bottom: 0; }
    .or_inner_content .testimonial.testimonial-location {
      font-size: 17px; }
  .or_inner_content .title-2 {
    font-weight: 700;
    margin-bottom: 30px; }
  .or_inner_content .list {
    font-weight: 400;
    margin-bottom: 30px; }
  @media only screen and (max-width: 768px) {
    .or_inner_content .icon-list {
      padding: 7px 10px 0 0; } }
  .or_inner_content .references {
    margin-bottom: 0; }
    @media only screen and (max-width: 1024px) {
      .or_inner_content .references {
        margin-bottom: 200px; } }
    @media only screen and (max-width: 480px) {
      .or_inner_content .references {
        height: 730px; } }

.or_inner.imgContent {
  background: #F7F8FA;
  padding: 1px 93px 60px;
  margin-bottom: 0; }
  @media only screen and (max-width: 1024px) {
    .or_inner.imgContent {
      padding: 1px 15px; } }
.or_inner .sales {
  font-weight: 500;
  color: #37474F; }
.or_inner .pdf-img {
  width: 31px;
  margin-right: 20px; }

.market {
  margin: 90px 0px 55px; }
  @media only screen and (max-width: 768px) {
    .market {
      margin: 40px 0px 55px; } }
  .market.video {
    margin: 20px 0 0; }
  .market.ocean-freight, .market.commodity-trading {
    margin-bottom: 80px; }
    @media only screen and (max-width: 768px) {
      .market.ocean-freight, .market.commodity-trading {
        height: 720px; } }
    .market.ocean-freight .imgContent_big_group, .market.ocean-freight .imgContent_small_group, .market.commodity-trading .imgContent_big_group, .market.commodity-trading .imgContent_small_group {
      height: auto; }
      @media only screen and (max-width: 768px) {
        .market.ocean-freight .imgContent_big_group, .market.ocean-freight .imgContent_small_group, .market.commodity-trading .imgContent_big_group, .market.commodity-trading .imgContent_small_group {
          height: 100px; } }
    @media only screen and (max-width: 768px) {
      .market.ocean-freight .imgContent_big, .market.commodity-trading .imgContent_big {
        height: 330px; } }
    .market.ocean-freight .grey-box, .market.ocean-freight .white-box, .market.commodity-trading .grey-box, .market.commodity-trading .white-box {
      background: #F7F8FA;
      width: 565px;
      height: 100px;
      margin-bottom: 20px;
      position: relative; }
      @media only screen and (min-width: 1440px) {
        .market.ocean-freight .grey-box, .market.ocean-freight .white-box, .market.commodity-trading .grey-box, .market.commodity-trading .white-box {
          width: 100%; } }
      @media only screen and (max-width: 1365px) {
        .market.ocean-freight .grey-box, .market.ocean-freight .white-box, .market.commodity-trading .grey-box, .market.commodity-trading .white-box {
          width: 100%; } }
      .market.ocean-freight .grey-box .content-position, .market.ocean-freight .white-box .content-position, .market.commodity-trading .grey-box .content-position, .market.commodity-trading .white-box .content-position {
        position: absolute;
        top: 50%;
        transform: translate(0, -55%); }
      .market.ocean-freight .grey-box .grey-box-content, .market.ocean-freight .white-box .grey-box-content, .market.commodity-trading .grey-box .grey-box-content, .market.commodity-trading .white-box .grey-box-content {
        font-weight: 500;
        color: #37474F !important;
        font-size: 20px;
        line-height: 28px;
        margin-top: 7px;
        padding-right: 10px;
        margin-bottom: 0; }
        @media only screen and (max-width: 1365px) {
          .market.ocean-freight .grey-box .grey-box-content, .market.ocean-freight .white-box .grey-box-content, .market.commodity-trading .grey-box .grey-box-content, .market.commodity-trading .white-box .grey-box-content {
            font-size: 18px; } }
        @media only screen and (max-width: 1024px) {
          .market.ocean-freight .grey-box .grey-box-content, .market.ocean-freight .white-box .grey-box-content, .market.commodity-trading .grey-box .grey-box-content, .market.commodity-trading .white-box .grey-box-content {
            line-height: 24px; } }
        @media only screen and (max-width: 768px) {
          .market.ocean-freight .grey-box .grey-box-content, .market.ocean-freight .white-box .grey-box-content, .market.commodity-trading .grey-box .grey-box-content, .market.commodity-trading .white-box .grey-box-content {
            font-size: 15px;
            line-height: 22px; } }
    .market.ocean-freight .white-box, .market.commodity-trading .white-box {
      background: white;
      padding: 20px; }
  .market .icon-list {
    color: #E31B1B;
    font-size: 10px;
    padding: 7px 10px 0 0; }
    @media only screen and (max-width: 768px) {
      .market .icon-list {
        padding: 5px 10px 0 0; } }
  .market .heading {
    font-size: 42px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 480px) {
      .market .heading {
        font-size: 25px;
        line-height: 29px;
        margin-bottom: 20px; } }
  .market.grains {
    height: 800px;
    margin: 0; }
    .market.grains .img-size {
      float: right; }
    .market.grains .grains-box {
      width: 575px;
      height: 562px;
      background: #fff;
      box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
      padding: 30px !important;
      position: absolute;
      left: 95px;
      top: 100px;
      margin-top: 120px; }
      @media only screen and (min-width: 1600px) {
        .market.grains .grains-box {
          top: 25%; } }
      @media only screen and (min-width: 1920px) {
        .market.grains .grains-box {
          top: 20%; } }
      @media only screen and (min-width: 2160px) {
        .market.grains .grains-box {
          top: 30%; } }
      @media only screen and (max-width: 1365px) {
        .market.grains .grains-box {
          height: 520px; } }
      @media only screen and (max-width: 1024px) {
        .market.grains .grains-box {
          height: 550px;
          left: 30px;
          padding: 40px !important;
          top: 10%; } }
      @media only screen and (max-width: 768px) {
        .market.grains .grains-box {
          width: 100%;
          height: 320px;
          left: 0;
          padding: 20px !important;
          margin-top: 52%; } }
      @media only screen and (max-width: 480px) {
        .market.grains .grains-box {
          margin-top: 45%; } }
      .market.grains .grains-box .content-bod {
        padding: 0 35px 0 0 !important;
        margin: 30px 0;
        width: 100%; }
        @media only screen and (max-width: 480px) {
          .market.grains .grains-box .content-bod {
            font-size: 13px;
            line-height: 24px;
            padding: 0 !important; } }
    .market.grains.governance {
      height: 800px; }
      @media only screen and (min-width: 1600px) {
        .market.grains.governance {
          margin-bottom: 10%; } }
      @media only screen and (min-width: 1440px) {
        .market.grains.governance {
          height: 730px; } }
      @media only screen and (max-width: 1365px) {
        .market.grains.governance {
          height: 650px; } }
      @media only screen and (max-width: 1024px) {
        .market.grains.governance {
          height: 680px; } }
      @media only screen and (max-width: 768px) {
        .market.grains.governance {
          height: 800px; } }
      @media only screen and (max-width: 480px) {
        .market.grains.governance {
          height: 680px; } }
      .market.grains.governance .bod-box {
        height: 562px; }
        @media only screen and (max-width: 768px) {
          .market.grains.governance .bod-box {
            margin-top: 0; } }
    .market.grains.sugar {
      height: 920px; }
      @media only screen and (min-width: 1600px) {
        .market.grains.sugar {
          margin-bottom: 10%; } }
      @media only screen and (max-width: 480px) {
        .market.grains.sugar {
          height: 700px; } }
      .market.grains.sugar .sugar-box {
        height: 640px;
        padding: 40px !important; }
        @media only screen and (max-width: 480px) {
          .market.grains.sugar .sugar-box {
            padding: 20px !important; } }
        .market.grains.sugar .sugar-box .list {
          margin-bottom: 10px; }
  @media only screen and (max-width: 1024px) {
    .market.governance {
      height: 650px; } }
  @media only screen and (max-width: 768px) {
    .market.governance {
      height: 575px; } }
  @media only screen and (max-width: 480px) {
    .market.governance {
      height: 480px; } }
  @media only screen and (max-width: 768px) {
    .market.governance .bod-box {
      margin-top: 26%; } }
  @media only screen and (max-width: 480px) {
    .market.governance .bod-box {
      margin-top: 20%; } }
  @media only screen and (max-width: 480px) and (max-width: 480px) {
    .market.governance .bod-box .heading {
      font-size: 25px;
      line-height: 29px;
      margin-bottom: 20px; } }

  .market.governance .content-bod {
    margin: 30px 0; }
  .market.commodity-trading {
    margin-top: 0;
    background-color: #F7F8FA;
    padding: 40px 93px;
    margin-bottom: 0; }
    @media only screen and (max-width: 1024px) {
      .market.commodity-trading {
        padding: 0 15px;
        height: 100%; } }
    .market.commodity-trading .heading {
      font-family: Raleway;
      font-style: normal;
      font-weight: 900;
      font-size: 42px;
      line-height: 45px; }

.contactBanner {
  background: url("./../images/contact_banner.jpg") no-repeat center center;
  background-size: cover; }

.flag-img {
  width: 38px;
  height: 24px; }

.imgContent_small.imgContent_1:last-child {
  margin-right: 0; }

.contact_find--title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 30px;
  text-transform: uppercase;
  color: #37474F;
  margin-top: 10px;
  margin-bottom: 0; }

.contact_find--sub-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #37474F; }

.contact_find--para {
  font-size: 18px;
  line-height: 29px;
  margin-top: 20px;
  width: 40%; }
  @media only screen and (max-width: 1024px) {
    .contact_find--para {
      width: 70%; } }
  @media only screen and (max-width: 480px) {
    .contact_find--para {
      width: 100%; } }

.contact-us .contact_find--details {
  font-size: 18px;
  line-height: 32px;
  margin-top: 20px;
  text-transform: capitalize; }
.contact-us .location-icon {
  width: 21px;
  height: 24px;
  margin-top: 4px; }
.contact-us .contact-icon {
  width: 21px;
  height: 21px;
  margin-top: 4px; }
.contact-us .contact-details {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 29px;
  color: #37474F; }
.contact-us .map-img {
  position: relative;
  max-height: 200px;
  width: auto; }
.contact-us .square-img {
  position: absolute;
  top: 80%;
  left: 18%;
  height: 8px;
  width: 8px; }
.contact-us .email-icon {
  height: 22px;
  width: 28px;
  vertical-align: inherit;
  position: relative;
  top: 2px;
  margin-right: 10px; }
.contact-us .email-details .imgContent_small.imgContent_1 {
  margin-right: 20px; }
.contact-us .email-details .email-box {
  width: 23.5% !important;
  height: 119.96px !important;
  background: #fff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.03);
  padding: 30px;
  margin-top: 30px; }
.contact-us .email-details .email-content-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #37474F;
  margin-bottom: 5px; }
.contact-us .email-details .email-content-sub-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  text-transform: lowercase;
  color: #E31B1B; }
.contact-us .imgContent_small.imgContent_1 {
  margin-right: 35px; }
.contact-us .imgContent_small_group {
  height: auto; }
  .contact-us .imgContent_small_group .imgContent_small {
    width: 30%;
    height: 589px; }
    @media only screen and (min-width: 1600px) {
      .contact-us .imgContent_small_group .imgContent_small {
        width: 31%; } }
    @media only screen and (max-width: 1024px) {
      .contact-us .imgContent_small_group .imgContent_small {
        width: 100% !important; } }
.contact-us .contact-content {
  height: 505px; }
.contact-us .contact-us.cr-inner.mission-vision .sustainbility-box {
  height: 530px;
  display: block; }
.imgContentCustom_med{
	width: 50%;
}

/*# sourceMappingURL=style.css.map */
