@font-face {
    font-family: Roboto-Black;
    src: url('../fonts/Roboto-Black.ttf');
}
@font-face {
    font-family: RobotoSlab-Bold;
    src: url('../fonts/RobotoSlab-Bold.ttf');
}
@font-face {
    font-family: Roboto-Light;
    src: url('../fonts/Roboto-Light.ttf');
}
@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}
@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}
@font-face {
    font-family: Rockwell;
    src: url('../fonts/Rockwell.ttc');
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: Roboto-Regular,Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5{
    font-family: RobotoSlab-Bold,Helvetica,Arial,sans-serif;
}
p{
    font-family: Roboto-Light,Helvetica,Arial,sans-serif;
}
label, span, ul, li, input{
    font-family: Roboto-Regular,Helvetica,Arial,sans-serif;
}
a{
    text-decoration: none;
    outline: none;
}
a:hover {
    text-decoration: none;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.container-content:before,
.container-content:after {
    content: " ";
    display: table;
}
.wrapper {
    position: relative;
    overflow: hidden;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.cotainer-content:after {
    clear: both;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: Nunito-Regular;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: Nunito-Regular;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: Nunito-Regular;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: Nunito-Regular;
}

.modal-open {
    overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
    position: relative;
    margin: 0 auto;
    width: 405px;
    height: 100vh;
}
.modal-content {
    position: relative;
    background-clip: padding-box;
    outline: 0;
    border-radius: 0;
    top: 51%;
    transform: translate(0, -50%);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.modal-body {
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    padding: 21px 24px;
    border-radius: 11px;
}
.modal-footer {
  text-align: center;
}
.close{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 0;
    outline: none;
    z-index: 9;
    cursor: pointer;
    line-height: normal;
}
#burger-menu {
    width: 28px;
    height: 22px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: left;
    margin-top: 6px;
    display: block;
}
#burger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#burger-menu span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#burger-menu span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#burger-menu span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.nav {
    width: 100%;
    position: fixed;
    height: 130px;
    z-index: 99;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
}
.content-wrapper {
    position: relative;
    padding-top: 130px;
}
.nav ul {
    position: absolute;
    padding: 23px 0;
    width: 1315px;
    left: 51%;
    transform: translate(-50%, 0);
    transition: all 0.2s ease-in-out;
}
.nav li {
    display: inline-block;
    font-family: Roboto-Black;
    text-transform: uppercase;
    padding: 33px 19px;
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.nav li a {
    display: block;
    color: #333132;
    position: relative;
}
.nav li a:before {
    transition: all 0.2s ease-in-out;
    content: '';
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: -7px;
    transform: translate(-50%, 0);
    height: 3px;
    background-color: #E9CD53;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.nav li:hover a:before{
    opacity: 1;
    transition: all 0.2s ease-in-out;
}
.nav li.logo a:before, .nav li.language-option a:before {
    display: none;
}
.nav .logo img {
    width: 76px;
    transition: all 0.2s ease-in-out;
    vertical-align: middle;
}
.nav li.logo {
    padding: 0 113px;
}
.banner-home {
    height: calc(100vh - 130px);
}
.banner-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-home .swiper-slide:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
}
.content-banner {
    position: absolute;
    left: 50%;
    z-index: 999;
    color: #ffffff;
    transform: translate(-50%, 0);
    text-align: center;
    top: 25%;
}
.banner-home .swiper-slide {
    position: relative;
}
.content-banner h2 {
    font-size: 36px;
    font-family: RobotoSlab-Bold;
    letter-spacing: 2px;
    line-height: 44px;
    margin-bottom: 31px;
}
.content-banner hr {
    width: 72px;
    border: 0;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 37px;
}
.content-banner p {
    font-family: Roboto-Light;
    font-size: 18px;
}
.about-home {
    padding: 100px 0;
    background-color: #333132;
    position: relative;
}
.container {
    padding: 0 23.5%;
}
.ui-widget.ui-widget-content {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
.ui-tabs .ui-tabs-nav,
ul.link-about-home {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    float: right;
    text-align: right;
    width: 130px;
}
.about-home img {
    width: calc(100% - 200px);
    margin: 0 auto;
    margin-bottom: 72px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0)!important;
}
.ui-tabs .ui-tabs-nav li,
ul.link-about-home li {
    margin: 0;
    border: 0;
    background-color: transparent;
    border-radius: 0;
    display: block;
    width: 100%;
    line-height: 16px;
    margin-bottom: 12px;
    outline: none;
}
.title-content {
    font-size: 12px;
    position: relative;
    color: #ffffff;
    font-family: Roboto-Black;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding-left: 279px;
    margin-bottom: 35px;
}
.title-content:before {
    content: '';
    position: absolute;
    width: 259px;
    height: 1px;
    background-color: #E9CD53;
    left: 0;
    top: 6px;
}
.about-home .row {
    position: relative;
}
.ui-tabs .ui-tabs-panel,
.text-about-home {
    padding: 0;
    float: left;
    width: calc(100% - 130px);
    padding-right: 65px;
    color: #ffffff;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor,
ul.link-about-home li a,
ul.link-about-home li h3 {
    padding: 0;
    width: 100%;
    float: unset;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    font-family: Roboto-Black;
    letter-spacing: 2px;
    outline: none;
    line-height: 10px;
}
ul.link-about-home li h3 {
    margin-bottom: 41px;
    position: relative;
    line-height: 16px;
}
ul.link-about-home li h3:before {
    content: '';
    width: 35px;
    height: 3px;
    position: absolute;
    background-color: #E9CD53;
    bottom: -22px;
    right: 0;
}
.ui-tabs .ui-tabs-panel h3,
.text-about-home h3 {
    font-family: RobotoSlab-Bold;
    font-size: 24px;
    margin-bottom: 25px;
}
.ui-tabs .ui-tabs-panel p,
.text-about-home p {
    font-family: Roboto-Light;
    font-size: 18px;
    margin-bottom: 20px;
}
.milestone-home {
    padding: 79px 0;
    background-color: #E9CD53;
}
h3.title-content.invert {
    color: #333132;
}
h3.title-content.invert:before {
    background-color: #333132;
}
.milestone-slide {
    margin-top: 34px;
    position: unset;
}
.milestone-grid {
    text-align: center;
    padding: 0 10px;
    position: relative;
}
.milestone-grid img {
    margin-bottom: 21px;
    position: relative;
}
.milestone-grid h3 {
    font-size: 24px;
    font-family: RobotoSlab-Bold;
    margin-bottom: 9px;
    letter-spacing: 1px;
    color: #333132;
}
.milestone-grid p {
    font-family: Roboto-Light;
    font-size: 18px;
    line-height: 26px;
    color: #333132;
}
.milestone-slide:before {
    content:'';
    background-color: #333132;
    width: 80%;
    position: absolute;
    height: 1px;
    top: 85px;
    left: 50%;
    transform: translate(-50%, 0);
}
.milestone-slide .swiper-button-next, .milestone-slide .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-milestone-right.png);
    right: -20px;
    left: auto;
}
.milestone-slide .swiper-button-prev, .milestone-slide .swiper-container-rtl .swiper-button-nextt {
    background-image: url(../img/arrow-milestone-left.png);
    left: -20px;
    right: auto;
}
.career-slide .swiper-button-next, .career-slide .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-milestone-right.png);
    right: -33px;
    left: auto;
}
.career-slide .swiper-button-prev, .career-slide .swiper-container-rtl .swiper-button-next {
    background-image: url(../img/arrow-milestone-left.png);
    left: -33px;
    right: auto;
}
.milestone-slide .swiper-button-next, .milestone-slide .swiper-button-prev,
.career-slide .swiper-button-next, .career-slide .swiper-button-prev {
    width: 12px;
    height: 22px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 12px 22px;
    background-position: center;
    background-repeat: no-repeat;
    top: 73px;
    outline: none;
}
.career-slide .swiper-button-next, .career-slide .swiper-button-prev {
    top:50%;
}
.award-slider .swiper-button-next, .award-slider .swiper-container-rtl .swiper-button-prev,
.news-slider .swiper-button-next, .news-slider .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-award-right.png);
    right: -33px;
    left: auto;
}
.award-slider .swiper-button-prev, .award-slider .swiper-container-rtl .swiper-button-next,
.news-slider .swiper-button-prev, .news-slider .swiper-container-rtl .swiper-button-next {
    background-image: url(../img/arrow-award-left.png);
    left: -33px;
    right: auto;
}
.news-page-slide .swiper-button-next, .news-page-slide .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-award-right.png);
    right: unset;
    left: 38px;
    padding-right: 15px!important;
}
.news-page-slide .swiper-button-prev, .news-page-slide .swiper-container-rtl .swiper-button-next {
    background-image: url(../img/arrow-award-left.png);
    left: -26px;
    right: auto;
}
.news-page-slide .swiper-button-next, .news-page-slide .swiper-button-prev {
    width: 12px;
    height: 22px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 12px 22px;
    background-position: center;
    background-repeat: no-repeat;
    top: unset;
    bottom: -2px;
    background-color: #333132;
    outline: none;
    padding: 0 44px;
}
.award-slider .swiper-button-next, .award-slider .swiper-button-prev,
.news-slider .swiper-button-next, .news-slider .swiper-button-prev {
    width: 12px;
    height: 22px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 12px 22px;
    background-position: center;
    background-repeat: no-repeat;
    top: 67px;
    outline: none;
}
.news-slider .swiper-button-next, .news-slider .swiper-button-prev {
    top: 100px;
}
.award-slider,
.news-slider,
.career-slide{
    position: unset;
}
.row {
    position: relative;
}
.footer-milestone {
    margin-top: 30px;
}
.left {
    float: left;
}
.right {
    float: right;
}
.row.footer-milestone .left {
    width: 74%;
    max-width: 535px;
    position: relative;
}
.row.footer-milestone .left h2 {
    font-family: RobotoSlab-Bold;
    font-size: 24px;
    padding-left: 91px;
    line-height: 31px;
    color: #333132;
}
.row.footer-milestone .left:before {
    content:'';
    width: 75px;
    height: 3px;
    position: absolute;
    background-color: #333132;
    top: 17px;
    left: -1px;
}
.row.footer-milestone .right {
    width: 122px;
    text-align: right;
}
.row.footer-milestone .right span {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #333132;
    text-transform: uppercase;
}
.row.footer-milestone .right span a {
    padding: 7px 9px;
    display: block;
    color: #333132;
}
.award-home {
    padding: 80px 0px;
    background-color: #58595B;
}
.award-home .row {
    margin-top: 77px;
}
.grid-award {
    padding: 0 10px;
    text-align: center;
}
.grid-award img {
    height: 160px;
    object-fit: contain;
    margin-bottom: 41px;
    width: 100%;
}
.grid-award h3 {
    font-size: 24px;
    font-family: RobotoSlab-Bold;
    margin-bottom: 9px;
    letter-spacing: 1px;
    color: #ffffff;
}
.grid-award p {
    font-family: Roboto-Light;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.row.footer-award:before {
    content: '';
    width: calc(100% - 120px);
    height: 3px;
    position: absolute;
    top: 15px;
    background-color: #e9cd53;
}
.row.footer-award span {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}
.row.footer-award span a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
.mining-home {
    padding: 67px 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 780px;
    position: relative;
}
.mining-home .row {
    margin-top: 430px;
    color: #ffff;
    width: 445px;
}
.mining-home .row p {
    line-height: 25px;
    margin-bottom: 32px;
    font-size: 18px;
    font-family: Roboto-Light;
}
.mining-home .row span {
    font-family: Roboto-Bold;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    letter-spacing: 2px;
}
.mining-home .row span a {
    color: #ffffff;
    padding: 5px 10px;
    display: block;
}
.mining-home:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
}
.site-location img {
    width: 100%;
}
.milestone-home.site-location {
    padding: 79px 3%;
}
.milestone-home.site-location h3 {
    margin-left: 21%;
}
.milestone-home.site-location span {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #333132;
    text-transform: uppercase;
    margin-top: 31px;
    margin-left: 22%;
}
.milestone-home.site-location span a {
    padding: 7px 9px;
    display: block;
    color: #333132;
}
.grid-news {
    text-align: center;
    padding: 0 15px;
}
.grid-news img {
    width: 100%;
    margin-bottom: 16px;
}
.grid-news h3 {
    font-size: 20px;
    font-family: RobotoSlab-Bold;
    margin-bottom: 9px;
    letter-spacing: 1px;
    color: #ffffff;
    min-height: 52px!important;
    overflow: hidden;
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.grid-news p {
    font-family: Roboto-Light;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 13px;
}
.grid-news span {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}
.grid-news span a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
.gallery-home {
    padding: 132px 8.3%;
    background-color: #333132;
}
.gallery-home h3 {
    margin-left: 18%;
}
.gallery-home img {
    width: 100%;
}
.gallery-home .footer-milestone {
    width: 64%;
    margin: 0 auto;
    margin-top: 30px;
}
.gallery-home .row.footer-milestone .right span a {
    color: #ffffff;
}
.gallery-home .row.footer-milestone .left h2 {
    color: #ffffff;
}
.gallery-home .row.footer-milestone .right span {
    border-color: #ffffff;
}
.gallery-home .row.footer-milestone .left:before {
    background-color: #E9CD53;
    top: 13px;
}
.annual-report {
    background-color: #58595B;
    padding: 76px 0px;
}
.grid-image-annual {
    float: left;
    width: 215px;
    padding-right: 30px;
}
.grid-image-annual img {
    width: 100%;
}
.grid-content-annual {
    width: calc(100% - 215px);
    float: left;
}
.annual-report .row {
    margin-top: 77px;
    float: left;
    width: calc(50% - 40px);
}
.grid-content-annual h3 {
    font-size: 18px;
    font-family: Roboto-Light;
    color: #ffffff;
    margin-bottom: 32px;
}
.grid-content-annual hr {
    width: 69px;
    border-bottom: 3px solid #E9CD53;
    margin: 0;
    margin-bottom: 38px;
}
.grid-content-annual span {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}
.grid-content-annual span a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
.career-home {
    background-color: #BCBEC0;
    padding: 78px 0;
}
.career-home .title-content {
    color: #58595B;
}
.grid-career {
    width: 100%;
    background-color: #58595B;
    color: #ffffff;
    padding: 22px 20px;
    height: 400px;
    position: relative;
}
.grid-career h3 {
    font-size: 24px;
    font-family: RobotoSlab-Bold;
    line-height: 30px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 11px;
    margin-bottom: 11px;
}
.grid-career p {
    font-family: Roboto-Light;
    line-height: 26px;
}
.grid-career span {
    position: absolute;
    bottom: 20px;
    left: 22px;
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}
.grid-career span a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
.career-home .footer-milestone p {
    font-size: 18px;
    font-family: Roboto-Light;
    clear: both;
    margin-bottom: 55px;
}
.career-home .row.footer-milestone {
    margin-top: 38px;
}
.career-home .row.footer-milestone .left:before {
    background-color: #E9CD53;
    top: 15px;
}
.logo-footer {
    float: left;
    width: 370px;
    padding-right: 235px;
}
.footer {
    padding: 40px 3%;
    padding-bottom: 25px;
}
.menu-footer {
    float: left;
    width: calc(100% - 370px);
}
.menu-footer ul {
    float: left;
    width: 20%;
    padding-right: 40px;
}
.logo-footer img {
    width: 100%;
}
.menu-footer ul li {
    font-family: Roboto-Regular;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
}
.menu-footer ul li.has-dropdown{
    margin-bottom: 0;
}
.menu-footer ul li:hover{
    font-family: Roboto-Bold;
}
.menu-footer ul li h3 {
    font-size: 12px;
    font-family: Roboto-Black;
    text-transform: uppercase;
    color: #58595B;
    letter-spacing: 2px;
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.menu-footer ul li h3:hover {
    border-bottom: 2px solid #e9cd53;
}
.menu-footer ul li a {
    color: #58595B;
    position: relative;
}
.footer .row {
    border-bottom: 3px solid #BCBEC0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.logo-footer ul {
    margin: 0px -11px;
    margin-top: 13px;
}
.logo-footer li {
    float: left;
    width: 25%;
    padding: 6px;
}
.logo-footer li img {
    vertical-align: middle;
}
.footer h2 {
    text-align: center;
    font-size: 9px;
    color: #58595B;
    letter-spacing: 1.8px;
}
.about-arutmin {
    padding: 78px 0;
    background-color: #333132;
    color: #ffffff;
}
.grid-vision-title {
    float: left;
    width: 170px;
}
.grid-vision-content {
    float: left;
    width: calc(100% - 170px);
}
.about-arutmin h3.title-content {
    margin-bottom: 70px;
}
.grid-vision-title h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 5px;
}
.grid-vision-content h4 {
    font-size: 32px;
    font-family: Rockwell;
    font-weight: bold;
    line-height: 40px;
}
.about-arutmin .row:last-child .grid-vision-content h4{
    margin-bottom: 30px;
}
.grid-vision-content ul {
    counter-reset: my-awesome-counter;
}
.grid-vision-content ul li.row {
    counter-increment: my-awesome-counter;
    position: relative;
    margin-bottom: 15px;
}
.grid-vision-content ul li.row:last-child{
    margin-bottom: 0;
}
.grid-vision-content p {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 25px;
}
.about-arutmin .row {
    margin-bottom: 50px;
}
.grid-vision-content ul li:before {
    content: "0" counter(my-awesome-counter);
    float: left;
    position: relative;
    font-size: 18px;
    font-family: Roboto-Black;
    color: #E9CD53;
    width: 45px;
}
.grid-vision-content ul li p {
    float: left;
    width: calc(100% - 45px);
}
.title-content.sub-title span {
    font-size: 12px;
    position: absolute;
    color: #ffffff;
    font-family: Roboto-Black;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    left: 0;
}
.title-content.sub-title.invert span{
    color: #333132;
}
.title-content.sub-title:before {
    width: 188px;
    left: 79px;
}
.management {
    padding: 80px 0;
    background-color: #BCBEC0;
}
.management .title-content {
    margin-bottom: 75px;
    color: #333132;
}
.management .title-content span{
    color: #333132;
}
.grid-image-management {
    width: 280px;
    float: left;
}
.grid-image-management img {
    width: 100%;
}
.grid-content-management {
    float: left;
    width: calc(100% - 280px);
    padding-left: 70px;
}
.grid-content-management p {
    font-size: 18px;
    line-height: 25px;
    color: #333132;
}
.management-name {
    padding: 22px 21px;
    background-color: #E9CD53;
    color: #58595B;
    margin-top: -5px;
}
.management-name h3 {
    font-size: 20px;
    margin-bottom: 5px;
}
.management-name span {
    display: block;
    font-size: 17px;
}
.management .row {
    margin-bottom: 60px;
}
.management .row:last-child {
    margin: 0;
}
.organisation-structure {
    padding: 82px 0;
    background-color: #58595B;
}
.organisation-structure .title-content {
    margin-left: 23.5%;
}
.wrapper-slide.scrollbar-rail {
    overflow: hidden;
}
.wrapper-slide.scrollbar-rail img {
    width: 1600px;
}
.wrapper-slide {
    padding-top: 45px;
    text-align: center;
    margin: 0 35px;
}
.scrollbar-rail > .scroll-element.scroll-x {
    background-color: transparent;
    margin: 0;
}
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: none;
}
.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
    background-color: #E9CD53;
    box-shadow: none;
    border-radius: 0;
}
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
    height: 1px;
    top: 6px;
    background-color: #ffffff!important;
}
.scrollbar-rail > .scroll-element.scroll-x {
    bottom: unset;
    top: 0;
}
.sustainabilty-slider-wrapper {
    padding: 58px 8.3%;
}
.black {
    background-color: #333132;
}
.dark-grey {
    background-color: #58595B;
}
.grey {
    background-color: #BCBEC0;
}
.yellow{
    background-color: #E9CD53;
}
.sustain-slide .swiper-slide h3 {
    color: #333132;
    font-family: Roboto-Light;
    position: absolute;
    bottom: 15px;
    z-index: 9999;
    left: 18.3%;
    margin: 0;
}
.video-slider .sustain-slide .swiper-slide h3 {
    color: #ffffff;
    font-family: Roboto-Light;
    position: absolute;
    bottom: -4px;
    z-index: 9999;
    left: 13.3%;
    margin: 0;
}
.sustain-slide .swiper-slide img {
    width: 100%;
}
.sustain-slide .swiper-slide:before {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 51px;
    background-color: #E9CD53;
    z-index: 9;
}
.sustain-slide {
    margin-bottom: 78px;
}
.container-second {
    padding: 0 18%;
}
.sustainabilty-slider-wrapper .container-second h4 {
    font-size: 24px;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 27px;
}
.sustainabilty-slider-wrapper .container-second h3:before {width: 108px;left: 146px;}
.sustainabilty-slider-wrapper .container-second p {
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
}
.sustainabilty-slider-wrapper.grey .container-second h4,
.sustainabilty-slider-wrapper.grey .container-second p,
.sustainabilty-slider-wrapper.grey .container-second h3,
.sustainabilty-slider-wrapper.grey .container-second h3 span{
    color: #333132
}
.sustain-slide .swiper-button-next, .sustain-slide .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-milestone-right.png);
    left: 70px;
}
.sustain-slide .swiper-button-prev, .sustain-slide .swiper-container-rtl .swiper-button-nextt {
    background-image: url(../img/arrow-milestone-left.png);
    left: 22px;
}
.sustain-slide .swiper-button-next, .sustain-slide .swiper-button-prev {
    width: 15px;
    height: 25px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 15px 25px;
    background-position: center;
    background-repeat: no-repeat;
    top: unset;
    bottom: 12px;
}
.sustain-slide .swiper-pagination.swiper-pagination-fraction {
    width: auto;
    left: unset;
    right: 21px;
    bottom: 15px;
    font-size: 18px;
    color: #333132;
}
.sustain-slide .swiper-pagination.swiper-pagination-fraction span {
    font-family: RobotoSlab-Bold;
    color: #333132;
}
.row.content-sustain h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
}
.row.content-sustain h4 {
    font-size: 24px;
    letter-spacing: 1px;
}
.row.content-sustain ul {
    list-style: disc;
    padding-left: 22px;
}
.row.content-sustain {
    color: #ffffff;
}
img.kebijakan-image {
    width: 70%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
    margin: 35px 0px;
}
.content-sustain .ui-tabs .ui-tabs-nav {
    padding: 0;
    list-style: none;
    float: left;
    text-align: left;
    width: 310px;
    padding-right: 45px;
}
.content-sustain .ui-tabs .ui-tabs-panel {
    padding: 0;
    width: calc(100% - 310px);
}
.content-sustain .ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 20px;
    white-space: unset;
}
.content-sustain .ui-tabs .ui-tabs-nav li.ui-tabs-active:before {
    display: none;
}
.content-sustain .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
    color: #E9CD53;
    font-family: Roboto-Black;
}
.content-sustain .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    font-family: Roboto-Light;
    font-size: 18px;
    width: auto;
    line-height: 23px;
}
.content-sustain .ui-tabs .ui-tabs-nav li {
    white-space: unset;
    margin-bottom: 20px;
}
.content-sustain .ui-widget.ui-widget-content {
    margin-bottom: 55px;
}
.img-responsive{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.img-content{
    margin-bottom:55px;
}
.wrapper-table table {
    width: 100%;
}
.wrapper-table {
    position: relative;
    margin: 45px 0;
}
.wrapper-table table thead tr {
    background-color: #E9CD53;
}
.wrapper-table table thead tr th {
    padding: 20px 15px;
    text-align: center;
    font-size: 16px;
    font-family: RobotoSlab-Bold;
    color: #58595B;
}
.wrapper-table table thead tr th:nth-child(2),
.wrapper-table table tbody tr td:nth-child(2) {
    text-align: left;
}
.wrapper-table tbody td {
    padding: 20px 15px;
    color: #ffffff;
    text-align: center;
    font-family: RobotoSlab-Bold;
}
.wrapper-table tbody tr:last-child {
    border-top: 1px solid #E9CD53;
}
.row.content-sustain .ui-tabs-panel ul {
    padding: 0;
    list-style: none;
    margin-bottom: 35px;
    margin-top: 35px;
}
.row.content-sustain .ui-tabs-panel li.heading-list-content {
    background-color: #E9CD53;
    border-bottom: 0;
}
.row.content-sustain .ui-tabs-panel li p {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px;
    width: calc(100% - 90px);
}
.row.content-sustain .ui-tabs-panel li span {
    font-family: Roboto-Light;
    color: #ffffff;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 26px;
    width: 90px;
    text-align: center;
    padding: 10px;
}
.row.content-sustain .ui-tabs-panel li.heading-list-content span {
    color: #000000;
}
.row.content-sustain .ui-tabs-panel li.heading-list-content p {
    color: #000000;
}
.row.content-sustain .ui-tabs-panel li {
    border-bottom: 1px solid #E9CD53;
}
.news-page-slide .grid-news {
    width: 33.333333333%;
    float: left;
    margin-bottom: 65px;
}
.news-page .title-content {
    margin-left: 18%;
}
.news-page .container .title-content {
    margin-left: 0;
}
.news-page .sustainabilty-slider-wrapper {
    padding: 77px 8.3%;
}
.news-page .title-content:before {
    width: 130px;
    left: 130px;
}
.news-page-slide .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: 0;
    left: unset;
    right: 0;
    width: auto;
    background-color: #333132;
    padding-left: 10px;
}
.news-page-slide .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets span {
    background: unset;
    font-size: 12px;
    font-family: Roboto-Regular;
    width: auto;
    height: auto;
    color: #ffffff;
    opacity: 1;
}
.news-page-slide .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets span.swiper-pagination-bullet-active {
    color: #F7EC13;
}
.news-page-slide hr {
    border: 0;
    border-bottom: 1px solid #F7EC13;
}
.news-page-slide {
    position: unset;
}
.gallery-top {
    background-color: #e9cd53;
}
.gallery-thumbs {
    background-color: #e9cd53;
    padding: 0 65px;
    padding-top: 20px;
}
.gallery-top h3 {
    font-family: Roboto-Light;
    margin-left: 65px;
    padding-top: 15px;
    color: #333132;
}
.gallery-thumbs .swiper-button-next, .gallery-thumbs .swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/arrow-milestone-right.png);
    right: 23px;
    left: auto;
}
.gallery-thumbs .swiper-button-prev, .gallery-thumbs .swiper-container-rtl .swiper-button-next {
    background-image: url(../img/arrow-milestone-left.png);
    left: 23px;
    right: auto;
}
.gallery-thumbs .swiper-button-next, .gallery-thumbs .swiper-button-prev {
    width: 12px;
    height: 22px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    background-size: 12px 22px;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
}
span.date-news{
    display: block;
    margin-bottom: 60px;
    font-size: 18px;
    font-family: Roboto-Light;
    color: #ffffff
}
.wrapper-table.marketing-table tr.border-seperate{
    border-top: 1px solid #E9CD53;
    border-bottom: 1px solid #E9CD53;
}
.wrapper-table.marketing-table td:first-child {
    text-align: left;
}
.wrapper-table.marketing-table td{
    padding:10px;
}
.wrapper-table.marketing-table h3 {
    font-family: Roboto-Regular;
}
.wrapper-table.marketing-table span {
    font-size: 14px;
    font-family: Roboto-Light;
}
.wrapper-table.marketing-table table thead tr th:nth-child(2),
.wrapper-table.marketing-table table tbody tr td:nth-child(2) {
    text-align: center;
}
.wrapper-table.marketing-table tbody tr:last-child {
    border: 0;
}
.subtitle-marketing {
    font-size: 18px;
    text-transform: uppercase;
    margin-left: 18%;
    margin-top: 22px;
    margin-bottom: 20px;
}
.subtitle-marketing.invert{
    color: #ffffff;
}
.container .subtitle-marketing{
    margin-left: 0;
}
.grid-img-export {
    float: left;
    width: calc(100% - 305px);
    margin-top: 55px;
}
.grid-img-export img {
    width: 100%;
}
.grid-content-export {
    float: left;
    width: 305px;
    padding-left: 170px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.grid-content-export h3 {
    font-family: Roboto-Black;
    font-size: 18px;
    margin-bottom: 53px;
    position: relative;
}
.grid-content-export h3:before {
    content: '';
    width: 30px;
    height: 3px;
    position: absolute;
    background-color: #ffffff;
    bottom: -15px;
}
.grid-content-export ol {
    counter-reset: my-counter;
}
.grid-content-export li {
    counter-increment: my-awesome-counter;
    position: relative;
    font-size: 18px;
    font-family: Roboto-Light;
    padding-bottom: 22px;
}
.grid-content-export li:before {
    content: "0" counter(my-awesome-counter);
    float: left;
    position: relative;
    font-size: 18px;
    font-family: Roboto-Black;
    color: #333132;
    width: 33px;
}
.grid-content-export li:last-child {
    padding-bottom: 0;
}
.marketing-graph {
    padding-top: 50px;
    margin-top: 70px;
}
.content-maps-marketing ol {
    counter-reset: maps-counter;
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top: 53px;
}
.content-maps-marketing li {
    counter-increment: maps-awesome-counter;
    position: relative;
    font-size: 18px;
    font-family: Roboto-Light;
    padding-bottom: 22px;
    padding-right: 17px;
}
.content-maps-marketing li:before {
    content: counter(maps-awesome-counter);
    float: left;
    position: relative;
    font-size: 18px;
    font-family: Roboto-Black;
    color: #333132;
    width: 25px;
}
.content-maps-marketing li:last-child {
    padding-bottom: 0;
}
.content-maps-marketing li p {
    float: left;
    width: calc(100% - 25px);
    margin-bottom: 0!important;
}
.grid-image-transhipment{
    margin:60px 0;
}
.wrapper-table.marketing-shipment-table {
    margin: 20px auto;
    width: 85%;
}
.container-second h5 {
    font-size: 18px;
    font-family: Roboto-Black;
    color: #ffffff;
    margin-bottom: 30px;
}
.wrapper-table.marketing-shipment-table th {
    font-size: 18px;
    padding: 10px;
    font-family: Roboto-Bold;
    color: #000000;
}
.wrapper-table.marketing-shipment-table td {
    padding: 10px;
    font-family: Roboto-Light;
    color: #ffffff;
    border-bottom: 1px solid #E9CD53;
}
.wrapper-table.marketing-shipment-table table thead tr th:nth-child(2), .wrapper-table.marketing-shipment-table table tbody tr td:nth-child(2) {
    text-align: center;
}
.wrapper-table.marketing-shipment-table tbody tr:last-child {
    border: 0;
}
.grid-transport-title {
    float: left;
    width: 160px;
}
.row.grid-transport-wrapper {
    width: 81%;
    margin: 0 auto;
    background-color: #757677;
    padding: 14px 23px;
    margin-bottom: 45px;
}
.grid-trasport-content {
    float: left;
    width: calc(100% - 160px);
    padding-left: 102px;
}
.grid-transport-title h3 {
    color: #E9CD53;
    font-size: 26px;
}
.grid-trasport-content ul li {
    color: #ffffff;
    padding-bottom: 18px;
    font-size: 14px;
    font-family: Roboto-Light;
}
.quality-assurance{
    margin-bottom: 50px;
}
.quality-assurance img{
    margin-bottom: 50px;
}
.quality-assurance h3{
    text-transform: uppercase;
    margin-bottom: 30px;
}
.quality-assurance p{
    margin-bottom: 20px;
}
.img-quality-assurance {
    width: 51%;
    float: left;
    position: relative;
}
.img-quality-assurance img {
    width: 100%;
}
.content-quality-assurance {
    float: left;
    width: 49%;
    padding-left: 93px;
    position: relative;
}
.content-quality-assurance h3 {
    font-size: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
.content-quality-assurance p {
    margin-bottom: 22px;
    line-height: 26px;
}
.row.wrapper-quality-assurance {
    margin-bottom: 80px;
}
.row.wrapper-quality-assurance.invert .img-quality-assurance {
    left: 51%;
    width: 49%;
}
.row.wrapper-quality-assurance.invert .content-quality-assurance {
    right: 49%;
    padding-left: 0;
    padding-right: 90px;
    width: 51%;
}
.bussiness-operation-page h3.title-content.sub-title {
    margin-left: 18%;
    margin-bottom: 55px;
}
.bussiness-operation-page h3.title-content.sub-title:before {
    width: 131px;
    left: 138px;
}
.content-operation-overview {
    margin-top: -95px;
}
.content-operation-overview li h3 {
    font-family: Roboto-Black;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content-operation-overview li {
    color: #333132;
    font-size: 18px;
    font-family: Roboto-Bold;
    margin-bottom: 4px;
}
.sustainabilty-slider-wrapper.yellow .container-second p {
    color: #333132;
}
.content-operation-overview ul {
    margin-bottom: 50px;
}
.coal-scheme{
    margin-top: 60px;
}
.production-operation .sustain-slide {
    margin-top: 60px;
    margin-bottom: 60px;
}
.production-operation .ui-tabs .ui-tabs-panel h3 {
    font-size: 20px;
    font-family: Roboto-Bold;
}
.wrapper-table-k3{
    margin:0!important;
}
li.language-option span {
    display: inline-block;
    font-family: Roboto-Black;
    text-transform: uppercase;
    padding: 1px;
}
li.language-option {
    color: #e9cd53;
    padding: 10px;
}
li.language-option span a {
    color: #bcbec0;
}
li.language-option span.active a {
    color: #333132;
}
.banner-home .swiper-pagination-bullet.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    border: 2px solid #e9cd53;
    background-color: transparent;
    margin: 0 5px;
    outline: none;
}
.banner-home .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #e9cd53;
}

.btn-yellow{
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #333132;
    text-transform: uppercase;
}
.btn-yellow a{
    padding: 7px 9px;
    display: block;
    color: #333132;
}
.info-business-maps .grid-content-export {
    padding-left: 70px;
}
.info-business-maps .grid-content-export li:before {
    display: none;
}
.info-business-maps .grid-content-export li h3 {
    margin-bottom: 14px;
}
.info-business-maps .grid-content-export li h3:before {
    display: none;
}
.info-business-maps .grid-content-export li h3 .number {
    font-family: Roboto-Black;
}
.info-business-maps .row {
    margin-bottom: 80px;
}
span.right.number {
    width: 95px;
    position: relative;
    top: 3px;
}
span.country.left {
    width: calc(100% - 100px);
}
rect.highcharts-background {
    fill: transparent;
}
text.highcharts-credits {
    display: none;
}
g.highcharts-legend-item.highcharts-pie-series text {
    fill: #ffffff!important;
    color: #ffffff!important;
}
g.highcharts-legend-item.highcharts-pie-series text tspan {
    font-size: 24px;
    font-family: Roboto-Black;
    letter-spacing: 0.5px;
    margin-bottom: 21px;
    cursor: default;
}
g.highcharts-legend-item.highcharts-pie-series {
    width: 100%;
}
g.highcharts-axis-labels.highcharts-yaxis-labels text {
    font-family: Roboto-Black;
}
g.highcharts-axis-labels.highcharts-xaxis-labels text {
    font-family: Roboto-Black;
}
text.highcharts-axis-title {
    display: none;
}
#linechart g.highcharts-legend,
#linechart-tablet g.highcharts-legend{
    display: none;
}
#linechart,
#linechart-tablet{
    min-width: 3020px;
}
g.highcharts-label.highcharts-data-label tspan {
    font-family: Roboto-Black;
    font-size: 14px;
}
#back-to-top {
    position: fixed;
    right: 35px;
    bottom: 50px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: none;
    z-index: 999999;
}
.milestone-home.site-location .container-second h3 {
    margin: 0;
    margin-bottom: 30px;
    color: #333132;
    font-size: 18px;
}
.milestone-home.site-location .container-second span {
    margin: 0;
}
.about-home .ui-tabs .ui-tabs-panel span,
.text-about-home span {
    float: right;
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 2px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    position: relative;
    right: -195px;
    top: -80px;
}
.about-home .ui-tabs .ui-tabs-panel span a,
.text-about-home span a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
.nav.active .logo img {
    width: 60px;
    transition: all 0.2s ease-in-out;
}
.nav.active li {
    transition: all 0.2s ease-in-out;
    padding: 14px 19px;
}
.nav.active {
    height: 100px;
}
.nav.active ul {
    padding: 18px 0;
    width: 1310px;
    left: 51.5%;
}
.nav.active li.logo {
    padding: 0 109px;
}
.tablet-item,
.tablet-item-scroll{
    display: none;
}
.desktop-item{
    display: block;
}
.mobile-item{
    display: none;
}
.video-js .vjs-tech{
    outline: none;
}
.video-wrapper video {
    width: 100%;
}
button.vjs-big-play-button {
    background-color: transparent!important;
    left: 50%!important;
    top: 50%!important;
    transform: translate(-50%, -50%)!important;
    border: 0!important;
    width: 82px!important;
    height: 82px!important;
    background-image: url(../img/play-button.svg)!important;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
}
button.vjs-big-play-button span:before {
    display: none;
}
.video-title {
    background-color: #58595B;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    top: 0px;
}
.video-title h3 {
    font-family: Roboto-Light;
}
.xmodal{
    z-index: 99999999!important;
}
.coal-scheme img {
    object-fit: contain;
    height: 600px;
    margin-top:30px;
}
.about-home .ui-tabs .ui-tabs-panel span:hover,
.text-about-home span:hover,
.row.footer-award span:hover,
.mining-home .row span:hover,
.grid-news span:hover,
.row.footer-award span:hover,
.gallery-home .row.footer-milestone .right span:hover,
.grid-content-annual span:hover,
.grid-career span:hover,
span.btn-detail-news:hover{
    background-color:#ffffff;
}
.gallery-home .row.footer-milestone .right span:hover a,
.grid-career span:hover a,
span.btn-detail-news:hover a{
    color: #333132;
}
.about-home .ui-tabs .ui-tabs-panel span:hover a,
.text-about-home span:hover a,
.gallery-home .row.footer-milestone .right span:hover a {
    color: #333333!important;
}
.row.footer-milestone .right span:hover,
.milestone-home.site-location span:hover,
.btn-yellow:hover{
    background-color:#333132;
}
.row.footer-milestone .right span:hover a,
.milestone-home.site-location span:hover a,
.btn-yellow:hover a,
ul.link-about-home li:hover a{
    color: #e9cd53;
}
.row.footer-award span:hover a,
.mining-home .row span:hover a,
.grid-news span:hover a,
.row.footer-award span:hover a,
.grid-content-annual span:hover a,
.grid-career span:hover a{
    color:#58595b;
}
.career-home .row.footer-milestone .right span:hover a,
.grey .btn-yellow:hover a{
    color: #bcbec0;
}
.basic-button:hover,
.back-button:hover,
.submit-block:hover{
    background-color:#ffffff!important;
    color: #333132!important;
}
.basic-button,
.back-button,
.submit-block{
    cursor: pointer;
}
.grid-img-news-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.grid-img-news-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 99;
    transition: all 0.5s ease-in-out;
}
.grid-news:hover .grid-img-news-wrapper:before {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.grid-news .grid-img-news-wrapper img {
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
}
.grid-news:hover .grid-img-news-wrapper img {
    transform: scale(1.2)!important;
    transition: all 0.5s ease-in-out;
}
.dropdown {
    position: relative;
    display: block;
    height: 100%;
    margin-bottom: 16px;
}
.menu-footer ul.dropdown-content {
    display: none;
    z-index: 1;
    width: 100%;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    float: unset;
    padding-right: 7px;
}
.dropdown:hover ul.dropdown-content {
    display: block;
}/*
li.has-dropdown a:before {
    content: '+';
    position: absolute;
    right: -15px;
    font-family: Roboto-Regular;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.dropdown:hover li.has-dropdown a:before {
    content: '-';
}*/
.big-input, .modal-input-wrapper input{
    border-radius: 0!important;
}
.nav li.active a:before {
    opacity: 1;
}
.banner-home .swiper-pagination-bullets {
    width: auto;
    left: 50%;
    transform: translate(-50%, 0);
}
.empty-career {
    padding: 65px 20px;
    text-align: center;
    background-color: #58595b;
    width: 63%;
    margin: 0 auto;
}
.empty-career h2 {
    font-size: 26px;
    color: #fff;
}
.id-lang .row.footer-milestone .right{
    width: 195px;
}
label.arrow-next {
    font-family: Roboto-Bold;
    margin-left: 5px;
    position: relative;
    top: -1.5px;
}
span.btn-detail-news {
    font-size: 12px;
    font-family: Roboto-Bold;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    position: relative;
    margin-top: 50px;
}
span.btn-detail-news a {
    padding: 7px 9px;
    display: block;
    color: #ffffff;
}
span.btn-detail-news .arrow-next {
    margin-left: 0;
    margin-right: 5px;
    top: -1px;
}
.about-map iframe {
    width: calc(100% - (80px*2));
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translate(-50%, 10px);
}
.nav .dropdown {
    display: inline-block;
    font-family: Roboto-Black;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
}
.nav .dropdown ul.dropdown-content {
    z-index: 99;
    width: calc(100% - 36px);
    left: 17px;
    transform: unset;
    padding: 6px;
    background-color: #e9cd53;
    top: 55px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.nav .dropdown:hover ul.dropdown-content{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav .dropdown ul.dropdown-content li {
    padding: 0;
    font-size: 13px;
    padding-bottom: 5px;
    font-family: Roboto-Regular;
    display: block;
}
.nav.active .dropdown ul.dropdown-content li{
    font-size: 11px;
}
.nav .dropdown ul.dropdown-content li:hover {
    font-family: Roboto-Bold;
}
.nav .dropdown ul.dropdown-content li:last-child {
    padding-bottom: 0;
}
.nav .dropdown ul.dropdown-content li a:before {
    display: none;
}
.nav.active .dropdown ul.dropdown-content {
    top: 38px;
}
.video-slider .sustain-slide .swiper-slide:before {
    background-color: #58595B;
    bottom: -20px;
}
.video-slider .sustain-slide {
    margin-bottom: 0;
    padding-bottom: 21px;
}
.video-slider .sustain-slide .swiper-button-next, .video-slider .sustain-slide .swiper-button-prev{
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.video-slider .sustain-slide .swiper-pagination.swiper-pagination-fraction,
.video-slider .sustain-slide .swiper-pagination.swiper-pagination-fraction span{
    color: #ffffff
}
.annual-report .row:first-child {
    margin-right: 40px;
}
.annual-report .row:last-child {
    margin-left: 40px;
}
.annual-report .title-content:before {
    width: 185px;
}
.annual-report .title-content {
    padding-left: 205px;
}
@media (max-width: 1330px){
    .nav li {
        padding: 35px 10px;
    }
    .nav ul {
        padding: 21px 0;
        width: 1005px;
        left: 50%;
    }
    .nav .dropdown ul.dropdown-content {
        width: calc(100% - 21px);
        left: 11px;
    }
    .nav li.logo {
        padding: 0 20px;
    }
    .container {
        padding: 0 12.5%;
    }
    .container-second {
        padding: 0 8%;
    }
    .about-home {
        padding: 50px 0;
    }
    .about-home img {
        width: 92%;
        margin: 0 4%;
        left: unset;
        transform: unset!important;
        margin-bottom: 50px;
    }
    .nav.active li {
        padding: 14px 10px;
    }
    .nav.active li.logo {
        padding: 0 15px;
    }
    .nav.active ul {
        padding: 18px 0;
        width: 980px;
        left: 50.5%;
    }
    .logo-footer {
        float: left;
        width: 200px;
        padding-right: 50px;
    }
    .menu-footer {
        float: left;
        width: calc(100% - 200px);
    }
    .sustainabilty-slider-wrapper .container-second p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 25px;
    }
    span.date-news {
        font-size: 14px;
    }
    .subtitle-marketing {
        margin-left: 8%;
    }
}
@media (max-width: 1024px){
    .tablet-item,
    .tablet-item-scroll{
        display: block;
    }
    .scroll-tablet{
        overflow: auto;
    }
    .scroll-tablet::-webkit-scrollbar-track{
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 5px;
        background-color: #58595b;
    }
    .scroll-tablet::-webkit-scrollbar{
        width: 20px;
        border-radius:5px;
        background-color: #E9CD53;
    }
    .scroll-tablet::-webkit-scrollbar-thumb{
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #E9CD53;
    }
    .organisation-structure .scroll-tablet::-webkit-scrollbar-track,
    .coal-scheme.scroll-tablet::-webkit-scrollbar-track{
        background-color: #BCBEC0;
    }
    .organisation-structure {
        padding: 82px 50px;
    }
    .desktop-item{
        display: none;
    }
    .mobile-item{
        display: none;
    }
    .banner-home .swiper-pagination-bullets{
        bottom: 20px;
    }
    .banner-home .swiper-pagination-bullet.swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 5px;
    }
    .sustainabilty-slider-wrapper {
        padding: 58px 35px;
    }
    .nav.active ul{
        width: auto;
        left: 0;
    }
    .nav.active .logo img {
        width: 55px;
        position: relative;
        top: -5px;
    }
    .nav.active ul.row.tablet-item {
        padding: 18px;
    }
    .nav.active{
        height: 85px;
    }
    /* Overlay style */
    .overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #e9cd53;
        z-index: 99;
    }
    /* Effects */
    .overlay-scale {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
        transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    }
    .overlay-scale.open {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);    
        -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
        transition: transform 0.4s, opacity 0.4s;
    }
    body.menu-open{
        position: fixed;
        overflow: hidden;
    }
    .nav ul {
        width: auto;
        position: relative;
        transform: unset;
        left: unset;
    }
    .overlay ul {
        text-align: center;
    }
    ul.row.tablet-item {
        padding: 20px 21px;
        display: block;
    }
    .overlay.overlay-scale.tablet-item{
        display: block;
    }
    .nav li.logo {
         position: absolute;
        left: 49%;
        transform: translate(-50%, 0);
        padding: 0;
    }
    .menu-footer {
        float: left;
        width: calc(100% - 200px);
    }
    .logo-footer {
        float: left;
        width: 200px;
        padding-right: 80px;
    }
    .menu-footer ul {
        float: left;
        width: 25%;
        padding-right: 25px;
    }
    .overlay ul li {
        display: block;
        padding: 20px 10px;
        font-size: 25px;
    }
    .logo-overlay img {
        width: 76px;
        vertical-align: middle;
    }
    .row.header-overlay {
        background-color: #ffffff;
        padding: 23px 15px;
    }
    .dropdown-content {
        width: 100%;
        transition: all 0.2s ease-in-out;
        opacity: 0;
        position: relative;
        margin-top: -70px;
        top: -60px;
        background-color: #e9cd53;
        visibility: hidden;
        padding: 10px;
        padding-top: 3px;
    }
    .dropdown-content a {
        display: block;
        font-family: Roboto-Bold;
        color: #333132;
        padding-bottom: 11px;
        font-size: 15px;
    }
    .dropdown-content a:last-child {
        padding-bottom: 0;
    }
    li.plus-header {
        position: relative;
    }
    li.plus-header a:before {
        content: '+';
        position: absolute;
        right: 5px;
        font-family: Roboto-Bold;
        font-size: 19px;
        top: -2px;
        opacity: 1;
        bottom: unset;
        width: auto;
        left: unset;
        transform: unset;
        transition: unset!important;
    }
    li.plus-header.active a:before {
        content: '-';
        font-size: 29px;
        line-height: 0;
        top: 8px;
        transition: unset;
    }
    li.plus-header a {
        padding: 0 25px;
    }
    .nav .overlay .dropdown {
        overflow: hidden;
        background-color: #e9cd53;
        padding: 0 25px;
    }
    .dropdown-content.show {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        top: 0;
    }
    a.logo-overlay {
        display: block;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .row.header-overlay span.left {
        font-family: Roboto-Black;
        text-transform: uppercase;
        padding: 33px 19px;
        letter-spacing: 2px;
        color: #333132;
    }
    .row.header-overlay .right {
        display: block;
        width: 27px;
        height: 31px;
        position: relative;
        border: 0;
        background-color: transparent;
        top: 28px;
        right: 15px;
        outline: none;
    }
    .subtitle-marketing {
        margin-left: 8%;
        margin-bottom: 50px;
    }
    .bussiness-operation-page h3.title-content.sub-title {
        margin-left: 8%;
    }
    .content-sustain .ui-tabs .ui-tabs-panel {
        width: calc(100% - 220px);
    }
    .content-sustain .ui-tabs .ui-tabs-nav {
        width: 220px;
        padding-right: 20px;
    }
    .x-content-left,
    .y-content-left {
        text-align: center;
        width: 100%!important;
        float: left;
        margin-bottom: 30px;
    }
    .empty-career {
        padding: 65px 0;
        text-align: center;
        background-color: #58595b;
        width: 100%;
        margin: 0 auto;
    }
    .x-content-right,
    .y-content-right {
        width: 100%!important;
        float: left;
        text-align: center;
    }
    .y-content-right {
        text-align: left!important;
    }
    .xmodal-body {
        padding: 100px 0 0 0!important;
    }
    .xcontent-wrapper,
    .ycontent-wrapper{
        width: 90%!important;
        margin: 0 auto!important;
    }
    .row.header-overlay .right span {
        right: 11px;
        background-color: #333132;
        height: 30px;
        width: 2px;
        top: 0;
        display: block;
        transform: rotate(45deg);
        position: absolute;
    }
    .row.header-overlay .right span:last-child {
        transform: rotate(135deg);
        top: 0px;
    }
    .grid-img-export {
        float: left;
        width: 100%;
        margin-top: 55px;
    }
    .info-business-maps .grid-content-export {
        padding-left: 55px;
    }
    .grid-content-export {
        float: left;
        width: 300px;
        padding-left: 170px;
        position: relative;
    }
    .grid-img-export {
        float: left;
        width: 100%;
    }
    .grid-news {
        text-align: center;
        padding: 0 6px;
    }
    .info-business-maps .row {
        margin-bottom: 35px;
    }
    .gallery-home h3,
    .gallery-home .footer-milestone,
    .milestone-home.site-location h3{
        margin-left: 0!important;
    }
    .gallery-home .footer-milestone{
        margin-right: 0;
        width: 100%;
    }
    .contact-col h3{
        height: auto!important;
    }
    .contact-col{
        margin-bottom: 30px;
    }
    .annual-report .row:first-child {
        margin-right: 0;
    }
    .annual-report .row:last-child {
        margin-left: 0;
    }
    .annual-report .row {
        margin-top: 77px;
        float: left;
        width: 100%;
    }
}
@media (max-width: 600px){
    .tablet-item{
        display: none;
    }
    .nav.active li.logo{
        padding:0;
    }
    .mobile-item{
        display: block;
    }
    .grid-news img {
        height: 300px;
        object-fit: cover;
    }
    .coal-scheme img {
        height: 550px;
    }
    .sustainabilty-slider-wrapper {
        padding: 58px 15px;
    }
    .title-content {
        padding-left: 100px;
        margin-left: 0!important;
    }
    .news-page-slide .grid-news{
        width: 100%;
        padding:0;
        margin-bottom: 30px;
    }
    .milestone-slide .swiper-button-next, .milestone-slide .swiper-container-rtl .swiper-button-prev {
        right: -5px;
    }
    .milestone-slide .swiper-button-prev, .milestone-slide .swiper-container-rtl .swiper-button-nextt {
        left: -5px;
    }
    .gallery-thumbs {
        padding: 0 43px;
    }
    .gallery-home .footer-milestone{
        width: 100%;
    }
    .news-page .title-content {
        margin-left: 0;
        padding-left: 170px;
    }
    .gallery-top h3{
        margin-left: 43px;
    }
    .news-page .sustainabilty-slider-wrapper {
        padding: 77px 4.5%;
    }
    .title-content:before {
        width: 80px;
    }
    .ui-tabs .ui-tabs-nav,
    ul.link-about-home {
        float: left;
        text-align: left;
        width: 100%;
    }
    .ui-tabs .ui-tabs-panel,
    .text-about-home {
        padding: 0;
        float: left;
        width: 100%;
        padding-right: 0;
        color: #ffffff;
        margin-top: 50px;
    }
    .container {
        padding: 0px 4.5%;
    }
    .ui-tabs .ui-tabs-nav li.ui-tabs-active:before,
    ul.link-about-home li h3:before{
        right: unset;
        left: 0;
    }
    .row.footer-milestone .left:before {
        width: 30px;
    }
    .row.footer-milestone .right {
        text-align: left;
        float: left;
        margin-top: 40px;
    }
    .row.footer-milestone .left h2 {
        font-size: 18px;
        padding-left: 45px;
        line-height: 24px;
    }
    .row.footer-milestone .left{
        width: 100%;
    }
    .mining-home .row {
        margin-top: 330px;
        width: 100%;
    }
    .content-operation-overview {
        margin-top: 20px;
    }
    .gallery-home {
        padding: 75px 4.5%;
    }
    .grid-content-annual {
        width: calc(100% - 120px);
        float: left;
    }
    .mining-home {
        background-position: -280px 0px;
    }
    .grid-image-annual {
        float: left;
        width: 120px;
        padding-right: 15px;
    }
    .menu-footer {
        float: left;
        width: 100%;
    }
    .menu-footer ul {
        width: 33.333333%;
        padding-right: 5px;
    }
    .menu-footer ul li {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .menu-footer ul li h3 {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .logo-footer {
        float: left;
        width: 150px;
        padding-right: 0;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 50px;
        left: 50%;
        position: relative;
        transform: translate(-50%, 0px);
    }
    .grid-vision-content {
        float: left;
        width: 100%;
    }
    .grid-vision-title {
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }
    .grid-content-management {
        float: left;
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .grid-image-management {
        width: 280px;
        float: left;
        position: relative;
        left: 50%;
        transform: translate(-50%, 0)!important;
    }
    .organisation-structure .title-content {
        margin-left: 4.5%;
    }
    .title-content.sub-title:before {
        width: 30px;
        left: 60px;
    }
    .container-second {
        padding: 0 0%;
    }
    .content-sustain .ui-tabs .ui-tabs-nav{
        width: 100%;
        margin-bottom:50px;
        padding:0;
    }
    .content-sustain .ui-tabs .ui-tabs-panel{
        width: 100%;
    }
    .sustainabilty-slider-wrapper .title-content {
        padding-left: 170px;
    }
    .sustainabilty-slider-wrapper .container-second h3:before {
        width: 30px;
        left: 130px;
    }
    .wrapper-table-k3 table{
        width: 100%;
    }
    .sustain-slide .swiper-slide h3 {
        left: 30.3%;
        margin: 0;
        font-size: 12px;
        width: 180px;
    }
    .bussiness-operation-page h3.title-content.sub-title:before {
        width: 25px;
        left: 135px;
    }
    .subtitle-marketing{
        margin-left: 0;
    }
    .news-page .title-content:before {
        width: 30px;
        left: 125px;
    }
    .xmodal-content {
        width: calc(100% - 25px)!important;
        height: 760px!important;
    }
    .xmodal-body h1, .ymodal-body h1 {
        font-size: 24px!important;
    }
    .overlay ul li {
        padding: 20px 10px;
        font-size: 18px;
    }
    .xclose {
        top: 25px!important;
        right: 25px!important;
    }
    #googleMap,
    .about-map iframe {
        width: 92%!important;
        height: 400px!important;
    }
    .big-input-wrapper {
        width: 100%!important;
        padding:0!important;
    }
    .big-input,
    .big-report {
        font-size: 16px!important;
    }
    .img-quality-assurance {
        width: 100%;
        margin-bottom: 30px;
    }
    .content-quality-assurance {
        width: 100%;
        padding-left: 0;
    }
    .row.wrapper-quality-assurance {
        margin-bottom: 50px;
    }
    .row.wrapper-quality-assurance.invert .content-quality-assurance {
        right: unset;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .row.wrapper-quality-assurance.invert .img-quality-assurance {
        left: unset;
        width: 100%;
    }
    .grid-trasport-content {
        float: left;
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .content-maps-marketing ol {
        grid-template-columns: 2fr 2fr;
    }
    .grid-content-export {
        float: left;
        width: 100%;
        padding-left: 0;
        position: relative;
    }
    .wrapper-table.marketing-table table,
    .wrapper-table.sustain-table table {
        width: 1000px;
    }
    .wrapper-table.marketing-table,
    .wrapper-table.sustain-table {
        padding-top: 30px;
    }
    .wrapper-slide {
        margin: 0 4%;
    }
    .organisation-structure h3.title-content {
        margin-left: 4.5% !important;
    }
    .id-lang h3.title-content.sub-title {
        padding-left: 115px;
    }
    .id-lang .title-content.sub-title:before {
        left: 77px;
    }
    .id-lang .sustainabilty-slider-wrapper h3.title-content.sub-title {
        padding-left: 170px;
    }
    .id-lang .sustainabilty-slider-wrapper .container-second h3:before {
        width: 30px;
        left: 133px;
    }
    .row.footer-milestone .right{
        width: auto;
    }
    .content-banner h2 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 20px;
    }
    .content-banner {
        width: 60%;
    }
    .content-banner p {
        font-size: 15px;
        line-height: 22px;
    }
    .content-banner hr {
        margin-bottom: 20px;
    }
    .award-slider .swiper-button-next, .award-slider .swiper-button-prev, .news-slider .swiper-button-next, .news-slider .swiper-button-prev,
    .milestone-slide .swiper-button-next, .milestone-slide .swiper-button-prev, .career-slide .swiper-button-next, .career-slide .swiper-button-prev {
        width: 15px;
        height: 25px;
        background-size: 15px 25px;
        top: 67px;
    }
    .award-slider, .news-slider, .career-slide {
        margin: 0 20px;
    }
    .award-slider .swiper-button-prev, .award-slider .swiper-container-rtl .swiper-button-next, .news-slider .swiper-button-prev, .news-slider .swiper-container-rtl .swiper-button-next,
    .career-slide .swiper-button-prev, .career-slide .swiper-container-rtl .swiper-button-next {
        left: -5px;
    }
    .award-slider .swiper-button-next, .award-slider .swiper-container-rtl .swiper-button-prev, .news-slider .swiper-button-next, .news-slider .swiper-container-rtl .swiper-button-prev,
    .career-slide .swiper-button-next, .career-slide .swiper-container-rtl .swiper-button-prev {
        right: -5px;
    }
    .about-map .title-content {
        padding-left: 115px;
    }
    .about-map .title-content.sub-title:before {
        width: 25px;
        left: 79px;
    }
}