@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@keyframes move-bottom-top {
  0% {
    margin-top: 100%;
    opacity: 0;
  }
  50% {
    opacity: 0.2;
    margin-top: 50%;
  }
  100% {
    margin-top: 0%;
  }
}
@keyframes move-top-bottom {
  0% {
    margin-top: -100%;
    opacity: 0;
  }
  50% {
    opacity: 0.2;
    margin-top: -50%;
  }
  100% {
    margin-top: 0%;
  }
}
/* CSS Document */
html {
  width: 100%;
  height: 100%;
}



form {
  width: 100%;
  height: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a, a img {
  text-decoration: none;
  outline: none;
  border: none;
}

.clr {
  clear: both;
  height: 0;
}

::-webkit-input-placeholder {
  color: #979a9b;
}

:-moz-placeholder {
  color: #979a9b;
}

::-moz-placeholder {
  color: #979a9b;
}

:-ms-input-placeholder {
  color: #979a9b;
}

::selection {
  background: #009933;
  color: white;
}

::-moz-selection {
  background: #009933;
  color: white;
}

body, input, textarea, select, option {
  font-family: "";
}

*, *:after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

.ico {
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.ico:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #009933;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 100%;
  z-index: -1;
  left: 0px;
}
.ico:hover:before {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0px;
}
.ico.white {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.ico.white:hover {
  border: 1px solid #009933;
}
.ico.blue {
  border: 1px solid #8FB7E1;
  color: #009933;
}
.ico.blue:before {
  background-color: #8FB7E1;
}
.ico.blue:hover {
  border: 1px solid #8FB7E1;
  color: white;
}

.content {
  width: 100%;
  padding: 0 120px;
}

header {
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0px;
  left: 0px;
  background-color: #F2F4F6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(44, 48, 117, 0.1) !important;
}
header .content {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

header .content nav ul {
  display: flex;
  flex-wrap: wrap;
}
header .content nav ul li {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
header .content nav ul li a {
  color: rgba(80, 80, 80, 0.7);
  font-size: 16px;
  font-weight: 700;
  padding: 50px 30px;
  display: block;
  position: relative;
}
header .content nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #505050;
  left: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .content nav ul li a:hover {
  color: #009933;
}
header .content nav ul li a:hover:after {
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .content .subMenu {
  position: absolute;
  top: 150%;
  width: 250px;
  left: -20px;
  background-color: #F2F4F6;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header .content .subMenu ul li {
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
header .content .subMenu ul li:last-child {
  border-bottom: none;
}
header .content .subMenu ul li a {
  color: #505050;
  padding: 20px;
  font-size: 14px;
}
header .content .subMenu ul li:hover {
  background-color: white;
}
header .content .subMenu ul li:hover a {
  color: #009933;
}
header .content .subMenuAlt {
  position: absolute;
  width: 250px;
  left: 100%;
  background-color: #F2F4F6;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0px;
}
header .content .subMenuAltInner {
  position: absolute;
  width: 250px;
  left: 100%;
  background-color: #F2F4F6;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  top: 0px;
}
header .content .hasSub:hover .subMenu {
  top: 100%;
  pointer-events: all;
  opacity: 1;
}
header .content .hasSubAlt:hover .subMenuAlt {
  pointer-events: all;
  opacity: 1;
}
header .content .hasSubAltInner:hover .subMenuAltInner {
  pointer-events: all;
  opacity: 1;
}
header .content .right {
  display: flex;
}
header .content .right a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #505050;
  padding-left: 30px;
  line-height: 50px;
  margin-left: 20px;
}
header .content .right a.offerBtn {
  background: url(../images/icons/offerBtn-blue.svg) no-repeat center left;
}
header .content .right a.langBtn {
  background: url(../images/icons/langBtn-blue.svg) no-repeat left center;
}
header .content .mobileTools {
  display: none;
}
header.home {
  background-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

header.home .content nav ul {
  display: flex;
  flex-wrap: wrap;
}
header.home .content nav ul li {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
header.home .content nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
  padding: 50px 30px;
  display: block;
  position: relative;
}
header.home .content nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: white;
  left: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.home .content nav ul li a:hover {
  color: white;
}
header.home .content nav ul li a:hover:after {
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.home .content .subMenu {
  background: rgba(255, 255, 255, 0.6);
}
header.home .content .subMenu ul li a {
  color: #505050;
  padding: 20px;
  font-size: 14px;
}
header.home .content .subMenu ul li:hover {
  background-color: white;
}
header.home .content .subMenu ul li:hover a {
  color: #009933;
}
header.home .content .right a {
  color: white;
}
header.home .content .right a.offerBtn {
  background: url(../images/icons/offerBtn.svg) no-repeat center left;
}
header.home .content .right a.langBtn {
  background: url(../images/icons/langBtn.svg) no-repeat left center;
}


.boxArea {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  padding-bottom: 90px;
}
.boxArea .item {
  width: 30%;
  position: relative;
}
.boxArea .item img {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.boxArea .item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  bottom: 100%;
  z-index: 0;
}
.boxArea .item:hover:before {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  bottom: 0;
}
.boxArea .item:hover .title {
  bottom: 25%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  pointer-events: all;
}
.boxArea .item .title {
  position: absolute;
  font-size: 25px;
  font-weight: 700;
  color: #009933;
  background-color: white;
  width: 80%;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  text-align: center;
  padding: 25px 0px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.row {
  display: flex;
  margin-right: 0px;
  margin-left: 0px;
}
.row .col {
  width: 100%;
  flex-basis: auto;
  padding-right: 0px;
  padding-left: 0px;
}
.row .col.col50 {
  width: 50%;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl120 {
  padding-left: 120px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.textRight {
  text-align: right;
}

.textArea p {
  font-size: 18px;
  font-weight: 400;
  color: #505050;
  line-height: 1.5;
  margin-bottom: 25px;
  display: block;
}
.textArea p .titleBold {
  font-size: 19px;
  color: #009933;
  display: block;
  font-weight: 700;
}
.textArea p strong {
  font-weight: 700;
}
.textArea .list {
  margin-bottom: 30px;
}
.textArea .list li {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #505050;
  margin-bottom: 10px;
}
.textArea .list li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #505050;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.formArea .row {
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
  width: 100%;
}
.formArea .row .col.col50 {
  width: 48%;
}
.formArea .row .col.col33 {
  width: 32%;
}
.formArea input, .formArea textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-style: italic;
  padding: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}
.formArea input::placeholder, .formArea textarea::placeholder {
  color: #A7A7A7;
}
.formArea input:focus, .formArea textarea:focus {
  background: #F2F4F6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #505050;
}
.formArea input:focus::placeholder, .formArea textarea:focus::placeholder {
  color: #505050;
}
.formArea textarea {
  height: 200px;
  resize: none;
}
.formArea input[type=checkbox] {
  display: none;
  appearance: none;
}
.formArea input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-size: 13px;
  color: white;
  font-weight: 400;
  padding-right: 20px;
  line-height: 1.3;
  float: right;
  font-style: italic;
}
.formArea input[type=checkbox] + label a {
  color: white;
}
.formArea input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid white;
  position: absolute;
  top: 50%;
  left: 0px;
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.formArea input[type=checkbox] + label:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.formArea input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.formArea button {
  background-color: white;
  cursor: pointer;
  border-radius: 0;
  color: #009933;
  font-size: 24px;
  font-weight: 600;
  border: none;
  padding: 15px 30px;
  margin-right: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formArea button:hover {
  background-color: #F2F4F6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.formArea .title {
  font-size: 24px;
  font-weight: bold;
}

.documentArea {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.documentArea .left {
  background-color: #fff;
  width: 90%;
  padding: 20px;
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.documentArea .left span {
  background: url(../assets/images/pdf-icon-white.svg) no-repeat left center;
  display: block;
  color: #009933;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px 10px 60px;
}
.documentArea .right {
  width: 10%;
  background-color: white;
  border: 1px solid rgba(44, 48, 117, 0.1);
  display: table;
  border-left: 0px;
}
    .documentArea .right a {
        background: url(../assets/images/download-blue.svg) no-repeat center center;
        display: table-cell;
    }
.documentArea .right a:hover {
  background: #8FB7E1 url(../assets/images/download-white.svg) no-repeat center center;
}
.documentArea:last-child {
  margin-bottom: 0px;
}
.documentArea.gallery .left {
  width: 85% !important;
}
.documentArea.gallery .left span {
  background: none;
  padding-left: 0px;
}
.documentArea.gallery .right {
  width: 15% !important;
}
.documentArea.gallery .right a {
  background-color: #009933;
  background-image: none;
  color: white;
  line-height: 20px;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.documentArea.gallery .right a:hover {
  background-color: #8FB7E1 !important;
  background-image: none;
}

.pagination {
  margin-top: 25px;
}
.pagination ul {
  display: flex !important;
  justify-content: center;
}
.pagination ul li {
  margin: 0px;
  padding: 15px;
}
.pagination ul li a {
  font-size: 16px;
  color: #009933;
  font-weight: 700;
  display: inline;
}
.pagination ul li a.prev {
  font-weight: 700;
}
.pagination ul li a.next {
  font-weight: 700;
}
.pagination ul li.active span {
  background-color: #009933;
  font-size: 16px;
  color: white;
  font-weight: 700;
  padding: 15px;
}


.pageContent .pageBanner {
  width: 100%;
  background-attachment: fixed !important;
  position: relative;
  min-height: 400px;
  background-position: center 116px !important;
}
.pageContent .pageBanner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0px;
  left: 0px;
}
.pageContent .pageBanner .caption {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: move-top-bottom 4s;
  animation-delay: -2.5s;
  text-align: center;
}
.pageContent .pageBanner .caption h1 {
  font-size: 35px;
  font-weight: 700;
  color: white;
  border: 1px solid white;
  border-left: 0px;
  border-right: 0px;
  padding: 15px 0px;
  margin-bottom: 15px;
  display: inline-block;
}
.pageContent .pageBanner .caption .breadCrumb {
  text-align: center;
}
.pageContent .pageBanner .caption .breadCrumb a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  position: relative;
  padding-left: 10px;
}
.pageContent .pageBanner .caption .breadCrumb a:last-child {
  color: white;
}
.pageContent .pageBanner .caption .breadCrumb a:last-child:before {
  background-color: white;
}
.pageContent .pageBanner .caption .breadCrumb a:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.pageContent .contentArea {
  display: flex;
}
.pageContent .contentArea .sidebar {
  width: 26%;
  background-color: white;
}
.pageContent .contentArea .sidebar.sticky {
  position: sticky;
  top: 116px;
  height: 750px;
  z-index: 0;
}
.pageContent .contentArea .sidebar ul li {
  width: 100%;
}
.pageContent .contentArea .sidebar ul li a {
  font-size: 20px;
  font-weight: 600;
  color: #505050;
  display: block;
  padding: 30px 0px 30px 120px;
  position: relative;
  z-index: 0;
}
.pageContent .contentArea .sidebar ul li a.active {
  background-color: #009933;
  color: white;
}
.pageContent .contentArea .sidebar ul li a.active:before {
  content: "";
  right: -10px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #009933;
  position: absolute;
}
.pageContent .contentArea .sidebar ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #009933;
  left: 0px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
  top: 0;
  left: 0px;
}
.pageContent .contentArea .sidebar ul li a:hover {
  color: white;
}
.pageContent .contentArea .sidebar ul li a:hover:after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}
.pageContent .contentArea .pageInner {
  width: 74%;
  border-left: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea .pageInner .galleryArea {
  display: flex;
  flex-wrap: wrap;
}
.pageContent .contentArea .pageInner .galleryArea .item {
  width: 25%;
  margin-bottom: 7px;
}
.pageContent .contentArea .pageInner .galleryArea .item a {
  display: block;
}
.pageContent .contentArea.productArea {
  display: inherit;
}
.pageContent .contentArea.productArea .row img {
  width: 100%;
  display: block;
}
.pageContent .contentArea.productArea .row .title {
  font-size: 50px;
  font-weight: 800;
  color: #009933;
  display: block;
  margin-bottom: 35px;
}
.pageContent .contentArea.contactArea {
  display: inherit;
}
.pageContent .contentArea.contactArea .row img {
  width: 100%;
  display: block;
}
.pageContent .contentArea.contactArea .row .title {
  color: white;
  display: block;
  margin-bottom: 35px;
}
.pageContent .contentArea.contactArea .row .right {
  background-color: #009933;
}
.pageContent .contentArea.complaintsPolicy {
  display: inherit;
}
.pageContent .contentArea.complaintsPolicy .row img {
  width: 100%;
  display: block;
}
.pageContent .contentArea.complaintsPolicy .row .title {
  color: white;
  display: block;
  margin-bottom: 35px;
}
.pageContent .contentArea.complaintsPolicy .row .right {
  background-color: #009933;
}
.pageContent .contentArea.productCategory {
  display: inherit;
}
.pageContent .contentArea.productCategory .itemArea .item {
  width: 33.3%;
  float: left;
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea.productCategory .itemArea .item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.pageContent .contentArea.productCategory .itemArea .item a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.pageContent .contentArea.productCategory .itemArea .item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  bottom: 100%;
  z-index: 0;
  left: 0px;
}
.pageContent .contentArea.productCategory .itemArea .item a img {
  width: 100%;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.pageContent .contentArea.productCategory .itemArea .item a h2 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 600;
  color: white;
  /*border:1px solid white;*/
  border-left: 0px;
  border-right: 0px;
  padding: 5px 0px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}
.pageContent .contentArea.productCategory .itemArea .item a:hover img {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  transform: scale(1.2);
}
.pageContent .contentArea.productCategory .itemArea .item a:hover h2 {
  letter-spacing: 5px;
}
.pageContent .contentArea.productCategory .itemArea .item a:hover:after {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  bottom: 0;
}
.pageContent .contentArea.productCategory .itemArea:after {
  content: "";
  clear: both;
  display: block;
}
.pageContent .contentArea.productList {
  display: inherit;
}
.pageContent .contentArea.productList .listHead {
  display: flex;
  height: 60px;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: center;
}
.pageContent .contentArea.productList .listHead .searchArea {
  width: 49%;
  height: 100%;
  position: relative;
}
.pageContent .contentArea.productList .listHead .searchArea input {
  width: 100%;
  line-height: 60px;
  border: 1px solid #C5C5C5;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: italic;
  padding-left: 80px;
  padding-right: 10px;
}
    .pageContent .contentArea.productList .listHead .searchArea button {
        position: absolute;
        background: url(../assets/images/search.svg) no-repeat center;
        top: 15px;
        left: 20px;
        width: 35px;
        height: 35px;
        border: none;
        cursor: pointer;
    }
    .pageContent .contentArea.productList .listHead .productListDown {
        line-height: 60px;
        height: 100%;
        background-color: #009933;
        display: block;
        border: 1px solid #009933;
        width: 49%;
        color: white;
        display: block;
        margin-right: 6px;
        font-size: 18px;
        font-weight: 600;
        padding-left: 20px;
        position: relative;
    }
        .pageContent .contentArea.productList .listHead .productListDown:after {
            content: "";
            right: 15px;
            width: 30px;
            height: 30px;
            background: url(../assets/images/download-white.svg) no-repeat center;
            position: absolute;
            top: 15px;
        }
.pageContent .contentArea.productList .listHead .productListDown:before {
  content: "";
  right: 60px;
  width: 1px;
  height: 100%;
  background-color: white;
  top: 0px;
  position: absolute;
}
.pageContent .contentArea.productList .itemArea .item {
  width: 16.6%;
  float: left;
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea.productList .itemArea .item a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  min-height: 160px;
}
.pageContent .contentArea.productList .itemArea .item a span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(80, 80, 80, 0.9);
}
.pageContent .contentArea.productList .itemArea .item a span.title {
  font-size: 22px;
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
.pageContent .contentArea.productList .itemArea .item a small {
  opacity: 0;
  position: absolute;
  color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-size: 24px;
  font-weight: 700;
  width: 100%;
}
.pageContent .contentArea.productList .itemArea .item a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #009933;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  bottom: 100%;
  z-index: 0;
  left: 0px;
}
.pageContent .contentArea.productList .itemArea .item a:hover small {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.pageContent .contentArea.productList .itemArea .item a:hover:after {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  bottom: 0;
}
.pageContent .contentArea.productList .itemArea:after {
  content: "";
  clear: both;
  display: block;
}
.pageContent .contentArea.certificatesArea {
  display: inherit;
}
.pageContent .contentArea.certificatesArea .listHead {
  display: flex;
  height: 60px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}
.pageContent .contentArea.certificatesArea .listHead .searchArea {
  width: 60%;
  height: 100%;
  position: relative;
}
.pageContent .contentArea.certificatesArea .listHead .searchArea input {
  width: 100%;
  line-height: 60px;
  border: 1px solid #C5C5C5;
  background: transparent;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: italic;
  padding-left: 80px;
  padding-right: 10px;
}
.pageContent .contentArea.certificatesArea .listHead .searchArea button {
  position: absolute;
  background: url(../assets/images/search.svg) no-repeat center;
  top: 15px;
  left: 20px;
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
}
.pageContent .contentArea.certificatesArea .itemArea .item {
  width: 25%;
  float: left;
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea.certificatesArea .itemArea .item a {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: white;
  display: flex;
  min-height: 100px;
  z-index: 0;
  padding-left: 15px;
  align-items: center;
}
.pageContent .contentArea.certificatesArea .itemArea .item a span {
  font-size: 22px;
  font-weight: 400;
  color: #009933;
  display: block;
  padding-right: 70px;
}
.pageContent .contentArea.certificatesArea .itemArea .item a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background-color: #8FB7E1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  bottom: 100%;
  z-index: -1;
  left: 0px;
}
.pageContent .contentArea.certificatesArea .itemArea .item a:after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  background: url(../assets/images/pdf-icon.svg) no-repeat center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  top: 50%;
  z-index: -1;
  right: 15px;
  transform: translateY(-50%);
}
.pageContent .contentArea.certificatesArea .itemArea .item a:hover span {
  color: white;
}
.pageContent .contentArea.certificatesArea .itemArea .item a:hover:before {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  bottom: 0;
}
.pageContent .contentArea.certificatesArea .itemArea:after {
  content: "";
  clear: both;
  display: block;
}
.pageContent .contentArea.investorRelationsArea h3 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #009933;
  margin-bottom: 20px;
}
.pageContent .contentArea.investorRelationsArea h3.toggle {
  line-height: 50px;
  background-color: #fff;
  padding: 10px 30px;
  color: rgba(44, 48, 117, 0.5);
  cursor: pointer;
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea.investorRelationsArea h3.toggle:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 20px;
  background: url(../images/icons/downArrow.svg) no-repeat center;
  right: 25px;
  top: 25px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pageContent .contentArea.investorRelationsArea h3.toggle.active {
  color: #009933;
}
.pageContent .contentArea.investorRelationsArea h3.toggle.active:after {
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.pageContent .contentArea.investorRelationsArea .toggleContent {
  display: none;
  padding: 10px 30px;
  margin-bottom: 20px;
}
.pageContent .contentArea.investorRelationsArea .row.head {
  font-weight: 700;
  background-color: #009933;
  color: white !important;
}
.pageContent .contentArea.investorRelationsArea .row.head .col {
  border: none !important;
}
.pageContent .contentArea.investorRelationsArea .row.partnershipStructure {
  display: flex;
  font-size: 18px;
  color: #505050;
  font-weight: 600;
}
.pageContent .contentArea.investorRelationsArea .row.partnershipStructure .col {
  padding: 20px;
  border: 1px solid rgba(44, 48, 117, 0.1);
  border-top: 0px;
}
.pageContent .contentArea.investorRelationsArea .row.partnershipStructure .col:nth-child(1) {
  width: 40%;
}
.pageContent .contentArea.investorRelationsArea .row.partnershipStructure .col:nth-child(2) {
  width: 40%;
  border-left: 0px;
  border-right: 0px;
}
.pageContent .contentArea.investorRelationsArea .row.partnershipStructure .col:nth-child(3) {
  width: 20%;
}
.pageContent .contentArea.offerArea {
  display: inherit;
}
.pageContent .contentArea.offerArea .title {
  color: #009933;
  display: block;
  margin-bottom: 35px;
  text-align: center;
}
.pageContent .contentArea.offerArea .row .col {
  border: 1px solid rgba(44, 48, 117, 0.1);
}
.pageContent .contentArea.offerArea .row button {
  background-color: #009933;
  color: white;
}
.pageContent .contentArea.offerArea .row input[type=checkbox] + label:before {
  border: 1px solid #505050;
}
.pageContent .contentArea.offerArea .row input[type=checkbox] + label:after {
  background-color: #505050;
}
.pageContent .contentArea.offerArea .row input[type=checkbox] + label a {
  color: #505050;
  font-size: 16px;
}
.pageContent .contentArea.offerArea .row:nth-child(5) {
  justify-content: flex-start;
}
.pageContent .contentArea.productDetail .left {
  width: 30%;
}
.pageContent .contentArea.productDetail .left .imgArea {
  text-align: center;
  border: 1px solid rgba(44, 48, 117, 0.1);
  margin-bottom: 55px;
}
.pageContent .contentArea.productDetail .left .imgArea.productImage img {
  width: 100%;
}
.pageContent .contentArea.productDetail .left .textArea {
  margin-bottom: 55px;
}
.pageContent .contentArea.productDetail .left .documentArea .left {
  width: 80%;
}
.pageContent .contentArea.productDetail .left .documentArea .right {
  width: 20%;
}
.pageContent .contentArea.productDetail .right {
  width: 70%;
}
.pageContent .contentArea.productDetail .right .row {
  border: 1px solid rgba(44, 48, 117, 0.1);
  border-bottom: 0px;
}
.pageContent .contentArea.productDetail .right .row:last-child {
  border-bottom: 1px solid #D4D4D4;
}
.pageContent .contentArea.productDetail .right .row .col {
  font-size: 20px;
  font-weight: 600;
  padding: 34px;
}
.pageContent .contentArea.productDetail .right .row .col:nth-child(1) {
  background-color: #009933;
  color: white;
  width: 30%;
}
.pageContent .contentArea.productDetail .right .row .col:nth-child(2) {
  color: #545454;
  width: 70%;
}
.pageContent .contentArea.productDetail .right .productTable {
  margin-top: 50px;
  margin-bottom: 50px;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col {
  color: #545454;
  border-right: 1px solid #D4D4D4;
  font-size: 15px;
  padding: 20px;
  line-height: 22px;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col:nth-child(1) {
  width: 20%;
  background-color: transparent;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col:nth-child(2) {
  width: 15%;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col:nth-child(3) {
  width: 15%;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col:nth-child(4) {
  width: 30%;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol .col:nth-child(5) {
  width: 20%;
  border-right: 0px;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol.head {
  background-color: #009933;
}
.pageContent .contentArea.productDetail .right .productTable .fiveCol.head .col {
  color: white;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol .col {
  color: #545454;
  border-right: 1px solid #D4D4D4;
  font-size: 15px;
  padding: 20px;
  line-height: 22px;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol .col:nth-child(1) {
  width: 30%;
  background-color: transparent;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol .col:nth-child(2) {
  width: 30%;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol .col:nth-child(3) {
  width: 20%;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol .col:nth-child(4) {
  width: 20%;
  border-right: 0px;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol.head {
  background-color: #009933;
}
.pageContent .contentArea.productDetail .right .productTable .fourCol.head .col {
  color: white;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol .col {
  color: #545454;
  border-right: 1px solid #D4D4D4;
  font-size: 15px;
  padding: 20px;
  line-height: 22px;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol .col:nth-child(1) {
  width: 30%;
  background-color: transparent;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol .col:nth-child(2) {
  width: 40%;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol .col:nth-child(3) {
  width: 30%;
  border-right: 0px;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol.head {
  background-color: #009933;
}
.pageContent .contentArea.productDetail .right .productTable .threeCol.head .col {
  color: white;
}
.pageContent .contentArea.productDetail .right .productTable .twoCol .col {
  color: #545454;
  border-right: 1px solid #D4D4D4;
  font-size: 15px;
  padding: 20px;
  line-height: 22px;
}
.pageContent .contentArea.productDetail .right .productTable .twoCol .col:nth-child(1) {
  width: 50%;
  background-color: transparent;
}
.pageContent .contentArea.productDetail .right .productTable .twoCol .col:nth-child(2) {
  width: 50%;
  border-right: 0px;
}
.pageContent .contentArea.productDetail .right .productTable .twoCol.head {
  background-color: #009933;
}
.pageContent .contentArea.productDetail .right .productTable .twoCol.head .col {
  color: white;
}

.wpMobile {
  display: none;
}

.wpDesktop .whatsappBtn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background: #25d366 url(../images/icons/whatsapp.svg) no-repeat center left 10px;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  padding: 20px 30px 20px 70px;
  z-index: 100;
  transition: 0.3s;
}
.wpDesktop .whatsAppArea {
  display: none;
  position: fixed;
  bottom: 120px;
  left: 40px;
  width: 300px;
  transition: 0.3s;
  min-height: 250px;
  background: #25d366;
  z-index: 100;
  padding: 20px;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
}
.wpDesktop .whatsAppArea .top {
  min-height: 130px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 15px;
}
.wpDesktop .whatsAppArea .top p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}
.wpDesktop .whatsAppArea .top p a {
  color: #009933;
}
.wpDesktop .whatsAppArea .bottom {
  display: flex;
  min-height: 120px;
  align-items: center;
  padding: 0 20px;
}
.wpDesktop .whatsAppArea .bottom i {
  width: 100%;
}
.wpDesktop .whatsAppArea .bottom i img {
  width: 80%;
}
.wpDesktop .whatsAppArea .bottom span {
  font-size: 16px;
  color: #fff;
}
.wpDesktop .whatsAppArea .bottom span small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 7px;
}
.wpDesktop .closeBtn {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  background-color: #25d366;
  padding: 10px 15px 25px 15px;
}

@media screen and (max-width: 1700px) {
  .content {
    padding-left: 50px;
    padding-right: 50px;
  }

  .pl120 {
    padding-left: 50px;
  }

  .pr120 {
    padding-right: 50px;
  }

  .textArea p {
    font-size: 16px;
  }

  .documentArea .left {
    padding: 15px 20px;
  }
  .documentArea .left span {
    font-size: 20px;
  }

  .formArea input, .formArea textarea {
    font-size: 18px;
    padding: 15px;
  }
  .formArea textarea {
    height: 100px;
  }
  .formArea button {
    font-size: 20px;
    padding: 15px 30px;
  }
  .formArea .title {
    font-size: 20px;
    font-weight: bold;
  }

  header .content a.logo {
    background-size: 70%;
  }
  header .content nav ul li a {
    font-size: 15px;
    padding: 32px 15px;
  }
  header.home .content a.logo {
    background-size: 70%;
  }
  header.home .content nav ul li a {
    font-size: 15px;
    padding: 32px 15px;
  }



/*
  .pageContent {
    margin-top: 81px;
  }
*/  .pageContent .pageBanner {
    background-position: center 81px !important;
    min-height: 280px;
    background-size: contain !important;
  }
  .pageContent .pageBanner .caption h1 {
    font-size: 50px;
  }
  .pageContent .contentArea .sidebar.sticky {
    top: 81px;
  }
  .pageContent .contentArea .sidebar ul li a {
    padding-left: 50px;
  }
  .pageContent .contentArea.productArea .row .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .pageContent .contentArea.productArea .row .col.pt55 {
    padding-top: 30px;
  }
  .pageContent .contentArea.productArea .row .col.pl55 {
    padding-left: 30px;
  }
  .pageContent .contentArea.productList .itemArea .item a {
    padding: 15px;
  }
  .pageContent .contentArea.productList .itemArea .item a span {
    font-size: 16px;
  }
  .pageContent .contentArea.productList .itemArea .item a span.title {
    font-size: 20px;
  }
  .pageContent .contentArea.productList .itemArea .item a small {
    font-size: 20px;
  }
  .pageContent .contentArea.certificatesArea .itemArea .item a span {
    font-size: 16px;
  }
  .pageContent .contentArea.investorRelationsArea h3 {
    font-size: 20px;
  }
  .pageContent .contentArea.productCategory .itemArea .item a h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1250px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pl120 {
    padding-left: 20px;
  }

  .pr120 {
    padding-right: 20px;
  }

  .textArea p {
    font-size: 15px;
  }

  .documentArea .left {
    padding: 15px 20px;
  }
  .documentArea .left span {
    font-size: 20px;
  }

  .formArea input, .formArea textarea {
    font-size: 18px;
    padding: 15px;
  }
  .formArea textarea {
    height: 100px;
  }
  .formArea button {
    font-size: 20px;
    padding: 15px 30px;
  }
  .formArea .title {
    font-size: 20px;
    font-weight: bold;
  }

  header .content {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .content a.logo {
    background-size: 70%;
  }
  header .content nav ul li a {
    font-size: 14px;
    padding: 32px 5px;
  }
  header .content .right a {
    font-size: 12px;
    padding-left: 25px;
    margin-left: 10px;
  }
  header .content .right a.offerBtn {
    background-size: 30% auto;
  }
  header .content .right a.langBtn {
    background-size: 40% auto;
  }
  header.home .content {
    padding-left: 10px;
    padding-right: 10px;
  }
  header.home .content a.logo {
    background-size: 70%;
  }
  header.home .content nav ul li a {
    font-size: 14px;
    padding: 32px 5px;
  }
  header.home .content .right a {
    font-size: 12px;
    padding-left: 25px;
    margin-left: 10px;
  }
  header.home .content .right a.offerBtn {
    background-size: 30% auto;
  }
  header.home .content .right a.langBtn {
    background-size: 40% auto;
  }

  .boxArea .item .title {
    font-size: 16px;
    padding: 15px 0px;
  }

  .pageContent .pageBanner {
    min-height: 200px;
  }
  .pageContent .pageBanner .caption h1 {
    font-size: 35px;
  }
  .pageContent .contentArea .sidebar.sticky {
    top: 81px;
  }
  .pageContent .contentArea .sidebar ul li a {
    padding-left: 20px;
  }
  .pageContent .contentArea.productArea .row .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .pageContent .contentArea.productArea .row .col.pt55 {
    padding-top: 30px;
  }
  .pageContent .contentArea.productArea .row .col.pl55 {
    padding-left: 30px;
  }
  .pageContent .contentArea.productList .itemArea .item {
    width: 20%;
  }
  .pageContent .contentArea.productList .itemArea .item a {
    padding: 15px;
  }
  .pageContent .contentArea.productList .itemArea .item a span {
    font-size: 12px;
  }
  .pageContent .contentArea.productList .itemArea .item a span.title {
    font-size: 20px;
  }
  .pageContent .contentArea.productList .itemArea .item a small {
    font-size: 20px;
  }
  .pageContent .contentArea.certificatesArea .itemArea .item {
    width: 33.3%;
  }
}
@media screen and (max-width: 768px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pt55 {
    padding-top: 20px !important;
  }

  .pr55 {
    padding-right: 20px !important;
  }

  .pb55 {
    padding-bottom: 20px !important;
  }

  .pl55 {
    padding-left: 20px !important;
  }

  .pl120 {
    padding-left: 20px !important;
  }

  .pr120 {
    padding-right: 20px !important;
  }

  .textRight {
    text-align: left;
  }

  .textArea p {
    font-size: 15px;
  }

  .documentArea .left {
    padding: 0px 20px;
    width: 85%;
  }
  .documentArea .left span {
    font-size: 16px;
    padding: 20px 30px 20px 50px;
    line-height: 1.3;
  }
  .documentArea .right {
    width: 15%;
  }

  .formArea {
    padding-bottom: 50px;
  }
  .formArea .row {
    margin-bottom: 0px;
    flex-direction: column;
  }
  .formArea .row .col {
    margin-bottom: 10px;
  }
  .formArea .row .col.col50 {
    width: 100%;
  }
  .formArea .row .col.col33 {
    width: 100%;
  }
  .formArea input, .formArea textarea {
    font-size: 15px;
    padding: 15px;
  }
  .formArea textarea {
    height: 100px;
  }
  .formArea button {
    font-size: 16px;
    padding: 15px 30px;
    margin-bottom: 20px;
  }
  .formArea .title {
    font-size: 18px;
    font-weight: bold;
  }

  .row {
    flex-direction: column;
  }
  .row .col {
    width: 100%;
  }
  .row .col.col50 {
    width: 100%;
  }

  header .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .content .mobileTools {
    display: block;
  }
  header .content a.logo {
    background-size: 70%;
    background-position: left center;
  }
  header .content nav {
    display: none;
    position: absolute;
    background: #F2F4F6;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 100vh;
    border-top: 1px solid #eee;
  }
  header .content nav ul {
    flex-direction: column;
  }
  header .content nav ul li a {
    font-size: 14px;
    padding: 32px 5px;
  }
  header .content .hasSub:hover .subMenu {
    top: 100%;
    pointer-events: all;
    opacity: 1;
    position: inherit;
  }
  header .content .right {
    position: absolute;
    right: 60px;
  }
  header .content .right a {
    padding-left: 35px;
  }
  header .content .mobileMenuLinkContent span {
    background: #009933;
  }
  header.home .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  header.home .content a.logo {
    background-size: 70%;
    background-position: left center;
  }
  header.home .content nav ul li a {
    font-size: 14px;
    padding: 32px 5px;
  }
  header.home .content .right {
    position: absolute;
    right: 60px;
  }
  header.home .content .right a {
    padding-left: 35px;
  }
  header.home .content .mobileMenuLinkContent span {
    background: white;
  }

  section.mainSlider .owl-nav {
    top: auto;
    bottom: 0px;
    transform: translateY(0px);
    display: flex;
    left: 10%;
    right: auto;
    width: 80%;
  }
  section.mainSlider .owl-nav button {
    width: 50%;
  }
  section.mainSlider .owl-nav button:after {
    left: 50%;
    transform: translateX(-50%);
  }
  section.mainSlider .owl-nav button:before {
    display: none;
  }
  section.mainSlider .item {
    background-position: top center !important;
    background-size: 100% auto !important;
  }
  section.mainSlider .item .caption .title {
    font-size: 30px;
  }
  section.mainSlider .item .caption small {
    font-size: 20px;
  }

  .boxArea {
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .boxArea .item {
    width: 100%;
    margin-bottom: 50px;
  }

  .homeProductArea .homeProduct {
    padding-left: 20px;
    padding-right: 20px;
  }
  .homeProductArea .homeProduct p {
    font-size: 25px;
    line-height: 1.3;
  }
  .homeProductArea .homeProduct i {
    font-size: 16px;
  }
  .homeProductArea .homeProduct a {
    width: 48%;
    float: left;
  }
  .homeProductArea .homeProduct:after {
    content: "";
    clear: both;
    display: block;
  }

  .pageContent .pageBanner {
    min-height: 200px;
    background-repeat: no-repeat !important;
    background-size: auto !important;
  }
  .pageContent .pageBanner .caption {
    width: 80%;
  }
  .pageContent .pageBanner .caption h1 {
    font-size: 20px;
  }
  .pageContent .pageBanner .caption .breadCrumb a {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 10px;
  }
  .pageContent .pageBanner .caption .breadCrumb a:after {
    top: 10px;
    transform: translate(0px);
  }
  .pageContent .contentArea {
    flex-direction: column;
  }
  .pageContent .contentArea .sidebar {
    display: none;
  }
  .pageContent .contentArea .pageInner {
    width: 100%;
  }
  .pageContent .contentArea.productList .listHead {
    flex-direction: column-reverse;
    height: auto;
  }
  .pageContent .contentArea.productList .listHead .productListDown {
    width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.4;
    padding-right: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .pageContent .contentArea.productList .listHead .productListDown:after {
    top: 50%;
    transform: translateY(-50%);
  }
  .pageContent .contentArea.productList .listHead .searchArea {
    width: 100%;
  }
  .pageContent .contentArea.productList .itemArea .item {
    width: 50%;
  }
  .pageContent .contentArea.productList .itemArea .item a:after {
    display: none;
  }
  .pageContent .contentArea.certificatesArea .listHead {
    height: auto;
  }
  .pageContent .contentArea.certificatesArea .listHead .searchArea {
    width: 100%;
  }
  .pageContent .contentArea.certificatesArea .itemArea .item {
    width: 100%;
  }
  .pageContent .contentArea.complaintsPolicy .row .textRight {
    text-align: left;
  }
  .pageContent .contentArea.investorRelationsArea h3 {
    font-size: 18px;
  }
  .pageContent .contentArea.investorRelationsArea h3.toggle {
    padding-left: 20px;
  }
  .pageContent .contentArea.investorRelationsArea h3.toggle:after {
    right: 20px;
  }
  .pageContent .contentArea.investorRelationsArea .toggleContent {
    padding: 10px 0px;
  }
  .pageContent .contentArea.investorRelationsArea .row.partnershipStructure {
    flex-direction: row;
    font-size: 14px;
  }
  .pageContent .contentArea.investorRelationsArea .row.partnershipStructure .col {
    padding: 10px;
  }
  .pageContent .contentArea.productCategory .itemArea .item {
    width: 100%;
    border: 0px;
    margin-bottom: 20px;
  }
  .pageContent .contentArea.productArea .row {
    margin-bottom: 30px;
  }
  .pageContent .contentArea.productArea .row .col.pl55 {
    padding-left: 20px;
  }
  .pageContent .contentArea.productArea .row:nth-child(2) {
    flex-direction: column-reverse;
  }
  .pageContent .contentArea.offerArea .row input[type=checkbox] + label a {
    color: #505050;
    font-size: 14px;
  }
  .pageContent .contentArea.productDetail .right {
    width: 100%;
  }
  .pageContent .contentArea.productDetail .right .row {
    flex-direction: row;
  }
  .pageContent .contentArea.productDetail .right .row .col {
    font-size: 14px;
    padding: 20px 15px;
    word-break: break-all;
  }
  .pageContent .contentArea.productDetail .right .row .col:nth-child(1) {
    width: 50%;
  }
  .pageContent .contentArea.productDetail .right .row .col:nth-child(2) {
    width: 50%;
  }
  .pageContent .contentArea.productDetail .right .productTable {
    overflow-x: scroll;
  }
  .pageContent .contentArea.productDetail .right .productTable .fiveCol {
    width: 300%;
    flex-wrap: nowrap !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .fiveCol .col {
    padding: 18px 10px;
    width: 60% !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .fourCol {
    width: 300%;
    flex-wrap: nowrap !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .fourCol .col {
    padding: 18px 10px;
    width: 60% !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .threeCol {
    width: 300%;
    flex-wrap: nowrap !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .threeCol .col {
    padding: 18px 10px;
    width: 60% !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .twoCol {
    flex-wrap: nowrap !important;
  }
  .pageContent .contentArea.productDetail .right .productTable .twoCol .col {
    padding: 18px 10px;
    width: 50% !important;
  }
  .pageContent .contentArea.productDetail .left {
    width: 100%;
  }
  .pageContent .contentArea.productDetail .left .documentArea:last-child {
    margin-bottom: 20px;
  }
  .pageContent .contentArea.productDetail .left.pr55 {
    padding-right: 0px !important;
  }

  footer .content {
    flex-direction: column;
  }
  footer .content .left {
    display: none;
  }
  footer .content .right {
    width: 100%;
    padding-left: 0px;
  }
  footer .content .right .top {
    flex-direction: column;
    text-align: center;
  }
  footer .content .right .top a.logo {
    display: block;
    margin-bottom: 20px;
  }
  footer .content .right .top a.logo img {
    width: 75%;
  }
  footer .content .right .top .title span {
    font-size: 16px;
  }
  footer .content .right .bottom p {
    font-size: 15px;
  }

  .mobileMenuLink {
    height: 100%;
    width: 20px;
    float: left;
    display: block;
    margin-top: 5px;
  }

  .mobileMenuLinkContent {
    width: 20px;
    height: 20px;
    position: relative;
    margin: auto;
  }

  .line1 {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .line2 {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 8px;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .line3 {
    width: 20px;
    height: 2px;
    position: absolute;
    top: 16px;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .mobileMenuLink.closer .line1 {
    transform: rotate(45deg);
    top: 10px;
  }

  .mobileMenuLink.closer .line2 {
    display: none;
  }

  .mobileMenuLink.closer .line3 {
    transform: rotate(-45deg);
    top: 10px;
  }

  .wpMobile {
    display: block;
  }
  .wpMobile .whatsappBtnMobile {
    position: fixed;
    bottom: 70px;
    left: 40px;
    background: #25d366 url(../images/icons/whatsapp.svg) no-repeat center left 10px;
    color: #fff;
    font-size: 15px;
    border-radius: 30px;
    padding: 20px 30px 20px 70px;
    z-index: 100;
    transition: 0.3s;
    background-size: 30% auto;
  }
  .wpMobile .whatsAppAreaMobile {
    display: none;
    position: fixed;
    bottom: 130px;
    left: 0px;
    width: 100%;
    transition: 0.3s;
    min-height: 150px;
    background: #25d366;
    z-index: 100;
    padding: 20px;
    border-radius: 30px;
    border-radius: 0px;
  }
  .wpMobile .whatsAppAreaMobile .top {
    min-height: 85px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 15px;
  }
  .wpMobile .whatsAppAreaMobile .top p {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
  }
  .wpMobile .whatsAppAreaMobile .top p a {
    color: #009933;
  }
  .wpMobile .whatsAppAreaMobile .bottom {
    display: flex;
    min-height: 75px;
    align-items: center;
    padding: 0 20px;
  }
  .wpMobile .whatsAppAreaMobile .bottom i {
    width: 100%;
    width: 50%;
    text-align: right;
    margin-right: 10px;
  }
  .wpMobile .whatsAppAreaMobile .bottom i img {
    width: 60%;
  }
  .wpMobile .whatsAppAreaMobile .bottom span {
    font-size: 16px;
    color: #fff;
    width: 50%;
  }
  .wpMobile .whatsAppAreaMobile .bottom span small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 7px;
  }
  .wpMobile .closeBtn {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    background-color: #25d366;
    padding: 10px 15px 25px 15px;
  }

  .wpDesktop {
    display: none;
  }
}
@media screen and (max-width: 340px) {
  header .right a {
    padding-left: 25px !important;
  }
}