button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1.6rem;
}
#myCarousel3left {
    position: absolute;
    top: 50%;
    bottom: 0;
    left: -4%;
    width: 15%;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgb(0 0 0 / 60%);
    background-color: rgba(0,0,0,0);
    filter: alpha(opacity=50);
    font-size: 30px;
}
#myCarousel3right {
    position: absolute;
    top: 50%;
    bottom: 0;
    right: -4%;
    width: 15%;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgb(0 0 0 / 60%);
    background-color: rgba(0,0,0,0);
    filter: alpha(opacity=50);
    font-size: 30px;
}
.inactive {
    cursor: pointer;
    background: #3C3735;
    color: white;
    font-size: 17px;
    padding: 0px !important;
    text-align: center;
    border-left: 0px !important;
}
article#articlehome2 {
    background: #E0E0E0;
    padding: 35px;
}
.footermenu li a:hover{
    text-decoration: none !important;
}
.ourinduh2{
    text-align: center;
    margin-bottom: 3%;
    font-weight: bold;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background: #FE0606 !important;
}
.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #FE0606 !important;
    border-radius: 10px;
}
/* -------------------------------- 

Images block

-------------------------------- */
.cd-image-block {
  position: relative;
}
.cd-image-block::before {
  /* this is the layer used to cover the .cd-image-block when the content block becomes visible - mobile only */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(52, 54, 66, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-image-block.content-block-is-visible::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 600px) {
  .cd-image-block::before {
    display: none;
  }
}

.cd-images-list::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-content-block ul li {
    list-style-type: none;
}
.cd-content-block h2 {
    font-size: 22px;
    margin: 0;
    padding: 40px 40px 20px 40px;
}
ul.cd-images-list li {
    list-style-type: none;
    border-right: 2px solid #E1E4EA;
}
.cd-images-list > li {
 background: #fff url(../images/PIC-1.jpg) no-repeat center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.cd-images-list > li:nth-of-type(2) {
 background: #fff url(../images/PIC-11.jpg) no-repeat center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.cd-images-list > li:nth-of-type(3) {
background: #fff url(../images/PIC-101.jpg) no-repeat center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.cd-images-list > li:nth-of-type(4) {
 background: #fff url(../images/Pic-1011.png) no-repeat center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.cd-images-list > li:nth-of-type(5) {
background: #fff url(../images/Pic-01.jpg) no-repeat center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.cd-images-list > li > a {
  /* used to vertically align the h2 child -  mobile version only */
  display: table;
  height: 100%;
  width: 100%;
}
.cd-images-list h2 {
  /* used to vertically align h2 -  mobile version only */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 600px) {
  .cd-images-list::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-images-list > li > a {
    display: block;
    padding: 0 15px;
    cursor: default;
    pointer-events: none;
  }
  .cd-images-list h2 {
    font-size: 3.5rem;
    text-align: left;
    margin-top: 3%;
    display: block;
  }
}

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

Content block

-------------------------------- */
.cd-content-block {
  /* move the block outside the viewport (to the right) - mobile only */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-content-block.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-content-block > ul > li {
  position: absolute;
  height: 100%;
  padding: 2em;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
}
.cd-content-block > ul > li.is-selected {
  /* this is the selected content */
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}
.cd-content-block h2 {
  line-height: 1.2;
  font-weight: 700;
 margin-bottom: 1em;
}
.cd-content-block p {
  line-height: 1.6;
  padding: 0px 40px 20px 40px;
}
a.allatagcss.homeseconda {
    padding: 2px 16px;
    margin: 9px auto;
    display: inline-block;
}
.cd-content-block .cd-close {
  /* 'X' icon to close the content block -  mobile only */
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.cd-content-block .cd-close::after, .cd-content-block .cd-close::before {
  /* these are the 2 lines of the 'X' icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 24px;
  background-color: #343642;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-content-block .cd-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cd-content-block .cd-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.cd-content-block .cd-close.is-scaled-up {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch .cd-content-block .cd-close.is-scaled-up:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media only screen and (min-width: 600px) {
  .cd-content-block {
    /* reset style */
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-content-block > ul > li {
    /* reset style */
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .cd-content-block > ul > li.overflow-hidden {
    /* this class is used during the animation (slider change) to hide the scrolling bar */
    overflow: hidden;
  }
  .cd-content-block .cd-close {
    display: none;
  }
}

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

Desktop slider - both image and content blocks

---------------------------------------------- */
@media only screen and (min-width: 600px) {
  .cd-image-block,
  .cd-content-block {
    /* slider style - desktop version only */

    height: 40vh;
    overflow: hidden;
  }
 
  .cd-image-block > ul > li,
  .cd-content-block > ul > li {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    /* by default, the items are moved to the right - relative to their parent elements */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  .cd-image-block > ul > li.is-selected,
  .cd-content-block > ul > li.is-selected {
    /* this is the visible item */
    position: absolute;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-image-block > ul > li.move-left,
  .cd-content-block > ul > li.move-left {
    /* this is the item hidden on the left */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.cd-content-block {
    width: 65%;
    float: left;
}
.cd-image-block {
    width: 35%;
    float: left;
}
/* -------------------------------- 

Slider navigation

-------------------------------- */
.block-navigation {
  /* this is the slider navigation - desktop version only */
  display: none;
}
@media only screen and (min-width: 600px) {
  .block-navigation {
      display: block;
   bottom: -2%;
    left: 0.1%;
    width: 35%;
    position: relative;
    padding: 0;
    list-style-type: none;

  }
  .block-navigation::after {
    clear: both;
    content: "";
    display: table;
  }
  .block-navigation li {
    width: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
  }
  .block-navigationli1 {
    background-color: rgba(0, 0, 0, 70) !important;
  }
  .block-navigation li:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .block-navigation li:first-of-type {
    float: left;
  }
  .block-navigation li:last-of-type {
    float: right;
  }
  .block-navigation button {
    display: block;
    height: 100%;
    width: 100%;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .block-navigation button.inactive {
    opacity: .3;
    cursor: not-allowed;
  }
}

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

Javascript disabled

-------------------------------- */
@media only screen and (min-width: 768px) {
  .no-js .cd-content-block {
    display: none;
  }

  .no-js .cd-image-block {
    width: 100%;
    overflow: visible;
  }

  .no-js .cd-images-list::after {
    clear: both;
    content: "";
    display: table;
  }

  .no-js .cd-images-list > li {
    position: static;
    width: 50%;
    float: left;
    height: 400px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .no-js .cd-images-list > li.is-selected {
    position: static;
  }

  .no-js .cd-images-list > li > a {
    cursor: pointer;
    pointer-events: auto;
  }

  .no-js .block-navigation {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1365px)  {

.cd-content-block p {
    font-size: 12px;
}
.cd-content-block h2 {
    padding: 16px 40px 20px 40px;
    font-weight: 700;
    margin-bottom: 0em;
	font-size: 18px;
}
.allatagcss.homeseconda {
    font-size: 16px;
}
}
@media (min-width: 600px) and (max-width: 767px)  {
 .block-navigation {
      display: block;
  bottom: -2%;
left: 0;
width: 100%;
 
  }
  .cd-content-block h2 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0em;
    font-size: 15px;
}
.cd-content-block p {
    line-height: 1.6;
    padding: 0px 40px 20px 40px;
    font-size: 11px;
}
}
@media (min-width: 411px) and (max-width: 599px)  {
  .cd-content-block {
    height: 39vh;
    overflow: hidden;
}
 .cd-image-block{
    height: 25vh;
    overflow: hidden;
  }
}
@media (min-width: 384px) and (max-width: 410px)  {
  .cd-content-block {
    height: 53vh;
    overflow: hidden;
}
 .cd-image-block{
    height: 25vh;
    overflow: hidden;
  }
}
@media (min-width: 375px) and (max-width: 383px)  {
  .cd-content-block {
    height: 50vh;
    overflow: hidden;
}
 .cd-image-block{
    height: 25vh;
    overflow: hidden;
  }
}
@media (min-width: 360px) and (max-width: 374px)  {
  .cd-content-block {
    height: 55vh;
    overflow: hidden;
}
 .cd-image-block{
    height: 25vh;
    overflow: hidden;
  }
}
@media (min-width: 320px) and (max-width: 359px)  {
 .cd-content-block {
    height: 80vh;
    overflow: hidden;
}
 .cd-image-block{
    height: 25vh;
    overflow: hidden;
  }
}
@media (min-width: 240px) and (max-width: 599px)  {
 .cd-image-block {
    width: 100%;
    float: none;
}

.carousel-control .fa-arrow-right {
    font-size: 13px;
    padding: 7px;
}
.carousel-control .fa-arrow-left {
    font-size: 13px;
    padding: 7px;
}
article#articlehome2 {
    padding: 12px;
}
.cd-content-block {
    width: 100%;
    float: left;
}
  .cd-image-block > ul > li,
  .cd-content-block > ul > li {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    /* by default, the items are moved to the right - relative to their parent elements */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  .cd-image-block > ul > li.is-selected,
  .cd-content-block > ul > li.is-selected {
    /* this is the visible item */
    position: absolute;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-image-block > ul > li.move-left,
  .cd-content-block > ul > li.move-left {
    /* this is the item hidden on the left */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-content-block {
    /* reset style */
    position: static;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-content-block > ul > li {
    /* reset style */
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  .cd-content-block > ul > li.overflow-hidden {
    /* this class is used during the animation (slider change) to hide the scrolling bar */
    overflow: hidden;
  }
  .cd-content-block .cd-close {
    display: none;
  }
  .cd-images-list::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .cd-images-list > li > a {
    display: block;
    padding: 0 15px;
    cursor: default;
    pointer-events: none;
  }
  .cd-images-list h2 {
    font-size: 3.5rem;
    text-align: left;
    margin-top: 3%;
    display: block;
  }
  .cd-image-block::before {
    display: none;
  }
  .block-navigation {
      display: block;
    bottom: -2%;
  left: 0;
width: 100%;
    position: relative;
    padding: 0;
    list-style-type: none;

  }
  .block-navigation::after {
    clear: both;
    content: "";
    display: table;
  }
  .block-navigation li {
    width: 50%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
  }
  .block-navigationli1 {
    background-color: rgba(0, 0, 0, 70) !important;
  }
  .block-navigation li:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .block-navigation li:first-of-type {
    float: left;
  }
  .block-navigation li:last-of-type {
    float: right;
  }
  .block-navigation button {
    display: block;
    height: 100%;
    width: 100%;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .block-navigation button.inactive {
    opacity: .3;
    cursor: not-allowed;
  }
  
  .cd-content-block h2 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0em;
    font-size: 15px;
}
.cd-content-block p {
    line-height: 1.6;
    padding: 0px 40px 20px 40px;
    font-size: 11px;
}
}
