/* --------------------------------

Primary style

-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  color: #030d18;
  background-color: #f0eee1;
}

a {
  color: #f5484a;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.has-top-margin {
  /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}
@media only screen and (min-width: 1170px) {
  .has-top-margin {
    -webkit-animation: animate-margin-top 0.3s;
    -moz-animation: animate-margin-top 0.3s;
    animation: animate-margin-top 0.3s;
    margin-top: 70px;
  }
}

@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
/* --------------------------------

Navigation

-------------------------------- */
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #030d18;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
    box-shadow: none;
  }
}

#cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 23px 0 0 5%;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-logo.is-hidden {
    /* assign a position fixed and move outside the viewport (on the left) */
    opacity: 0;
    position: fixed;
    left: -20%;
    margin-left: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -moz-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
  }
  #cd-logo.is-hidden.slide-in {
    /* slide in when the secondary navigation gets fixed */
    left: 5%;
    opacity: 1;
  }
}

.cd-primary-nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
}
.cd-primary-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-primary-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #000101;
  border-top: 1px solid #051426;
  color: #f0eee1;
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-primary-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-primary-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-primary-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #030d18;
  }
}

/* --------------------------------

Intro

-------------------------------- */
#cd-intro {
  position: relative;
  height: 300px;
  background: url(../img/intro-background.jpg) no-repeat center center;
  background-size: cover;
  z-index: 2;
}
#cd-intro #cd-intro-tagline {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}
#cd-intro h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #030d18;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) {
  #cd-intro {
    height: 400px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 160px;
  }
  #cd-intro h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-intro {
    height: 600px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 250px;
  }
}

.cd-btn {
  display: inline-block;
  padding: 1em 1.8em;
  background-color: rgba(245, 72, 74, 0.9);
  margin-top: 1em;
  border-radius: 20em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
.no-touch .cd-btn:hover {
  background-color: #f5484a;
}
@media only screen and (min-width: 1170px) {
  .cd-btn.is-hidden {
    /* assign a position fixed and move outside the viewport (on the right) */
    opacity: 0;
    position: fixed;
    right: -20%;
    top: 0;
    padding: .8em 1.2em;
    margin: 14px 0 0;
    -webkit-transition: right 0.3s, opacity 0.3s;
    -moz-transition: right 0.3s, opacity 0.3s;
    transition: right 0.3s, opacity 0.3s;
  }
  .cd-btn.is-hidden.slide-in {
    /* slide in when the secondary nav gets fixed */
    right: 5%;
    opacity: 1;
  }
}

/* --------------------------------

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  /*bottom: 0px;*/
  top: 43px;
  border-radius: 0.25em;
  /*background: rgba(3, 13, 24, 0.96);*/
  background-color: #fff;
  visibility: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
.cd-secondary-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
.cd-secondary-nav li a {
  display: block;
  padding: 1.1em;
  border-bottom: 1px solid #092645;
  color: #000;
}
.cd-secondary-nav li:last-child a {
  border-bottom: none;
}
.cd-secondary-nav li a span {
    float: left;
    padding-right: 10px;
}
.cd-secondary-nav li {
    list-style: none !important;
}

/* Start media queries for logo */

@media only screen and (min-width: 1170px) {
  .cd-secondary-nav {
    z-index: 1;
    height: 100px;
    background-color: #ffffff;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
  }
  .cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
    height: 100%;
  }
  .cd-secondary-nav ul {
    /* reset navigation values */
    position: static;
    width: auto;
    max-width: 100%;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    text-align: center;
    background-color: transparent;
    float: right;
  }
  .cd-secondary-nav li {
    display: inline-block;
    margin-left: -15px;
  }
  .cd-secondary-nav li a {
    position: relative;
    text-align: center;
    display: block;
    padding: 58px 31px 0 31px;
    border-bottom: none;
    -webkit-transition: padding 0.2s;
    -moz-transition: padding 0.2s;
    transition: padding 0.2s;
  }
  .cd-secondary-nav li a b {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 1.2rem;
    font-weight: 700;
    /*color: rgba(240, 238, 225, 0.3);*/
    color: #000;
  }
  .cd-secondary-nav li a span {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 18px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/cd-nav-icons.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
    color: #d40d16;
  }

  .cd-secondary-nav li a:hover span, .cd-secondary-nav li a.active span {
    color: #d40d16;
  }
  .cd-secondary-nav li:nth-child(1) a span {
    background-position: 0 0;
  }
  .cd-secondary-nav li:nth-child(2) a span {
    background-position: -40px 0;
  }
  .cd-secondary-nav li:nth-child(3) a span {
    background-position: -80px 0;
  }
  .cd-secondary-nav li:nth-child(4) a span {
    background-position: -120px 0;
  }
  .cd-secondary-nav li:nth-child(5) a span {
    background-position: -160px 0;
  }
  .cd-secondary-nav.is-fixed {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
  }
  .cd-secondary-nav.animate-children {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  .cd-secondary-nav.animate-children li a {
    padding: 26px 30px 0 30px;
  }
  .cd-secondary-nav.animate-children li a span {
    opacity: 0;
  }
}

@media only screen and (max-width: 1168px) and (min-width: 500px) {
  .cd-secondary-nav {
    z-index: 1;
    height: 100px;
    background-color: #ffffff;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
    /* top:23px */
  }

}

@media only screen and (min-width:1170px) {

    .cd-secondary-nav-trigger {
      position: fixed;
      top:22px;
      /*bottom: 20px;*/
      right: 5%;
      width: 44px;
      height: 44px;
      background: rgba(3, 13, 24, 0.96);
      border-radius: 0.25em;
      /* image replacement */
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap;
      z-index: 2;
    }

}

@media only screen and (max-width: 1168px) and (min-width: 300px) {

    .cd-secondary-nav-trigger {
      position: fixed;
      top:50px;
      /*bottom: 20px;*/
      right: 5%;
      width: 44px;
      height: 44px;
      background: rgba(3, 13, 24, 0.96);
      border-radius: 0.25em;
      /* image replacement */
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap;
      z-index: 2;
    }

}

/* End media queries for logo */

.cd-secondary-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f0eee1;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
  content: '';
  position: absolute;
  background: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.cd-secondary-nav-trigger span::before {
  right: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-secondary-nav-trigger span::after {
  left: -10px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-secondary-nav-trigger.menu-is-open {
  /* background: transparent; */
  background:#000000;
}
.cd-secondary-nav-trigger.menu-is-open span {
  background: rgba(240, 238, 225, 0);
  width: 20px;
  height: 2px;
}
.cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
  background: #f0eee1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
}
.cd-secondary-nav-trigger.menu-is-open span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-secondary-nav-trigger.menu-is-open span::after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 1170px) {
  .cd-secondary-nav-trigger {
    display: none;
  }
}

/* --------------------------------

Placeholder Sections

-------------------------------- */
.cd-section {
  margin: 0 auto;
  padding: 2em 0;
}
.cd-section h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .6em;
  font-weight: 700;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-section {
    margin: 0 auto;
    padding: 4em 0;
  }
  .cd-section h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* on hover image for about us page */


/* accordion in page investor relations */

.accordion_investor_relations {
  width: 100%;
  /* max-width: 75rem; */
  max-width:100%;
  margin: 0 auto;
  padding: 1rem 0;
  margin-left: -11px;
}
.accordion-item_investor {
    position: relative;
    /* padding: 5px 15px; */
    padding:5px 0;
    margin-top: -7px;
}
.accordion-item_investor.active .heading_investor {
  color: #d41d15;
}
.accordion-item_investor.active .icon {
  background: #ffffff;
}
.accordion-item_investor.active .icon:before {
  background: #d41d15;
}
.accordion-item_investor.active .icon:after {
  width: 0;
}
.accordion-item_investor .heading_investor {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: #717d58;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  transition: 0.3s ease-in-out;
  background:#ffffff;
}
@media (min-width: 40rem) {
  .accordion-item_investor .heading_investor {
    font-size: 1.2rem;
  }
}
.accordion-item_investor .heading_investor:hover {
  color: #b0bd98;
}
.accordion-item_investor .heading_investor:hover .icon:before, .accordion-item_investor .heading_investor:hover .icon:after {
  background: #b0bd98;
}
.accordion-item_investor .icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 3rem;
  height: 3rem;
  border: 2px solid #d41d15;
  border-radius: 3px;
  transform: translateY(-50%);
}
.accordion-item_investor .icon:before, .accordion-item_investor .icon:after {
  content: '';
  width: 1.25rem;
  height: 0.25rem;
  background: #d41d15;
  position: absolute;
  border-radius: 3px;
  left: 50%;
  top: 50%;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
}
.accordion-item_investor .icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: -1;
}
.accordion-item_investor .content_investor {
  display: none;
}
.accordion-item_investor .content_investor p {
    margin-top: 0;
     background: #8b8989;
     color: #fff;
     padding: 10px;
}
@media (min-width: 40rem) {
  .accordion-item_investor .content_investor {
    line-height: 1.75;
  }
}

.title {
    color:#000;
    font-size:18px;
    padding:0 13px;
}

.section-title {
    position: relative;
    text-align: left;
    color: #fff;
}

.section-title> div {
    color:#ffffff;
}

/* marquee for share price */

/* div.marquee {
	width: 100%;
	background: rgba(0, 0, 0, 1);
	position: relative;
	overflow: hidden;
	z-index: 100;
	height: 32px;
	position:fixed;
	top:0;
} */

@media only screen and (min-width: 1170px) {

    div.marquee {
    	width: 100%;
    	background: rgba(0, 0, 0, 1);
    	position: relative;
    	overflow: hidden;
    	z-index: 100;
    	height: 32px;
    	position:relative;
    	top:0;
    	/*-moz-box-shadow:    1px 1px 1px #434343;*/
    	/*-webkit-box-shadow: 1px 1px 1px #434343;*/
    	/*box-shadow:         1px 1px 1px #434343;*/
    }

}


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

    div.marquee {
        width: 100%;
        background: rgba(0, 0, 0, 1);
        position: relative;
        overflow: hidden;
        z-index: 100;
        height: 32px;
        position:absolute;
        top:0;
        /*-moz-box-shadow:    1px 1px 1px #434343;*/
        /*-webkit-box-shadow: 1px 1px 1px #434343;*/
        /*box-shadow:         1px 1px 1px #434343;*/
    }

}

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

    div.marquee {
        width: 100%;
        background: rgba(0, 0, 0, 1);
        position: relative;
        overflow: hidden;
        z-index: 100;
        height: 32px;
        position:absolute;
        top:0;
        /*-moz-box-shadow:    1px 1px 1px #434343;*/
        /*-webkit-box-shadow: 1px 1px 1px #434343;*/
        /*box-shadow:         1px 1px 1px #434343;*/
    }

}

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

    div.marquee {
        width: 100%;
        background: rgba(0, 0, 0, 1);
        position: relative;
        overflow: hidden;
        z-index: 100;
        height: 32px;
        position:absolute;
        top:0;
        /*-moz-box-shadow:    1px 1px 1px #434343;*/
        /*-webkit-box-shadow: 1px 1px 1px #434343;*/
        /*box-shadow:         1px 1px 1px #434343;*/
    }

}



span.marquee-message {
	color: #ffffff;
	font-family: 'Telex';
	white-space: nowrap;
	margin: 0;
	display: inline-block;

}

/*div.fade-left {*/
/*	background: -moz-linear-gradient( left, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
/*	background: -webkit-gradient( linear, left top, right top, color-stop(12%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0)) );*/
/*	background: -webkit-linear-gradient( left, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
/*	background: -o-linear-gradient( left, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
/*	background: -ms-linear-gradient( left, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
/*	background: linear-gradient( to right, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
/*	position: absolute;*/
/*	left: 0;*/
/*	height: 40px;*/
/*	width: 10%;*/
/*}*/

div.fade-right {
	/*background: -moz-linear-gradient( right, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
	/*background: -webkit-gradient( linear, right top, right top, color-stop(12%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0)) );*/
	/*background: -webkit-linear-gradient( right, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
	/*background: -o-linear-gradient( right, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
	/*background: -ms-linear-gradient( right, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
	/*background: linear-gradient( to left, rgba(0,0,0,1) 12%, rgba(0,0,0,0) 100% );*/
	position: absolute;
	right: 0;
	height: 40px;
	width: 10%;
}


/* accordion inside */

button.accordion_inside {
    width: 100%;
    text-align: left;
    /* padding: 20px; */
    cursor: pointer;
    border: none;
    font-size: 14px;
    font-weight: 700;
    background: #D41D16;
    color: #fff;
    transition: 0.5s;
    margin-bottom: 5px;
    margin-top: 6px;
    text-align: center;
}
.accordion_inside.active {
    background: #000;
    color: #ffffff;
    border: none;
    margin: 10px 0;
}
.panel {
    background: #9E9E9E;
    color: #000;
    font-size: 22px;
    padding: 20px;
    display: none;
    overflow: hidden;
}
.accordion_inside:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: left;
  margin-left: -10px;
}

.accordion_inside.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Policies */

.policies h3 {
    color: #fff;
    font-size: 25px;
}

/* background content_investor */

.content_investor {
    margin-top: 0;
    background: #8b8989;
    color: #fff;
    padding: 10px;
}


/* Annual Report */

.a_report h3 {
    font-size: 25px;
}

/* Start Data Privacy Clause */

.prclause {
    display: flex;
    width: 100%;
    margin-bottom: 13px;
    margin-top: 13px;
    padding: 0 5px;
}

input.check {
    margin: 9px 8px;
    position: relative !important;
    left: 0 !important;
}

.prclause div {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    justify-content: center;
    padding: 0 15px 0 5px;
    font-weight: 400;
    color: rgb(255 255 255);
}

.dttext p {
    text-align: justify;
    color: #ffffff;
    font-size: 14px;
}

/* End Data Privacy Clause */
