/* site theme color  */
:root {
  --heading: #333333;
  --cstm-green: #81d742;
  --brdr-color: #45a047;
  --about-color: #b2d236;
}

/* site theme color  */

/* NAVIGATION MENU MEDIA QUERY & STYLING */
.nav-link {
  z-index: 10000 !important;
}

.navigation {
  transition: ease-in-out 1s;
  background-color: #ffffff;
}

@media (min-width: 990px) {
  /* on scrolled behavior of navbar */

  .scrolled .navigation .logo {
    margin: 0 !important;
    padding: 0 !important;
  }

  .scrolled .navigation {
    padding: 1rem 0;
    animation: fadein 1.4s;
  }

  @keyframes fadein {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* on scrolled end */

  nav img {
    margin-top: 4.2rem;
    position: relative;
    transition: ease-in-out 0.5s;
  }

  nav {
    z-index: 10 !important;
    height: 5.7rem !important;
    margin: 0 4rem;
  }

  nav .nav-item {
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    color: var(--heading);
  }

  .nav-link {
    display: inline-block;
    padding: 3px 13px;
    border-right: solid 1px var(--brdr-color);
    color: var(--heading);
  }

  .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--brdr-color);
    transition: width 0.3s;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    transition: ease-in 0.4s;
  }

  .dropdown-content {
    color: white;
    transition: ease-in-out 0.4s;
    display: none;
    position: absolute;
    background-color: var(--brdr-color);
    min-width: 240px;
    padding: 12px 0px;
    z-index: 1;
  }

  .dropdown-content a {
    text-decoration: none;
    color: #ffffff;
  }

  .dropdown-content a p {
    padding: 5px 5px;
    font-size: 13px;
    margin: 0;
  }

  .dropdown-content a:hover p {
    color: yellow;
    background-color: rgba(255, 244, 96, 0.082);
  }

  .dropdown:hover .dropdown-content {
    display: block;
    animation: fadein 0.5s;
  }

  @keyframes fadein {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* DROPDOWN IN DROPDOWN CSS */

  /* Dropdown Button */
  .dropbtn {
    padding: 5px 19px;
    font-size: 13px;
    margin: 0;
    color: #ffffff;
  }

  .dropdown2 {
    position: relative;
    display: inline-block;
  }

  .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: var(--brdr-color);
    min-width: 250px;
    margin-left: -250px !important;
    margin-top: -2rem !important;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .dropdown-content2 a {
    color: #ffffff;
    padding: 12px 16px;
    font-size: 13px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content2 a:hover {
    color: yellow;
    background-color: rgba(255, 244, 96, 0.082);
  }

  .dropdown2:hover .dropdown-content2 {
    display: block;
  }
}

/* MOBILE SCREEN NAV BAR + DROPDOWN BEHAVIOR */

@media (max-width: 559px) {
  nav img {
    width: 80px;
  }
}

@media (max-width: 989px) {
  nav img {
    transition: ease-in-out 1s;
  }

  .mblscrolled .navigation .logo {
    opacity: 0;
    visibility: hidden;
    width: 50%;
  }

  .mblscrolled .navigation h3 {
    opacity: 1;
    transition: ease-in-out 1s;
  }

  .mblscrolled .navigation {
    background-color: white;
    transition: ease-in-out 1s;
  }

  .navigation h3 {
    transition: ease-in-out 1s;
    opacity: 0;
    position: relative;
    margin-top: -2.9rem;
    width: fit-content;
    z-index: 12;
  }

  .navigation ul {
    margin-top: 2rem;
  }

  .navigation {
    transition: ease-in-out 1s;
    position: relative;
  }

  nav .nav-item {
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(128, 128, 128, 0.114);
  }

  nav .nav-item:hover {
    background-color: rgb(245, 245, 245);
  }

  nav .nav-item:hover .nav-link {
    color: var(--cstm-green);
  }

  .nav-link {
    display: inline-block;
    padding: 5px 13px;
    color: black;
  }

  .dropdown {
    position: relative;
    display: inline-block;
    transition: ease-in 0.4s;
  }

  .dropdown-menu {
    animation: fadein 2s;
  }

  .dropdown-content {
    color: var(--heading);
    min-width: 100%;
    padding: 5px 16px;
    font-size: 13px;
    z-index: 1;
  }

  .dropdown-content a {
    text-decoration: none;
    color: var(--heading);
  }

  .dropdown-content a p {
    padding: 0;
    margin: 0;
  }

  .dropdown-content a:hover p {
    color: var(--brdr-color);
    background-color: rgba(96, 255, 122, 0.082);
  }

  /* DROPDOWN MOBILE VERSION CSS */

  /* Dropdown Button */
  .dropbtn {
    padding: 5px 15px;
    font-size: 13px;
    margin: 0;
    color: #eb0000;
    background-color: transparent;
  }

  .dropdown2 {
    position: relative;
    display: block;
  }

  .dropdown-content2 {
    display: none;

    position: absolute;
    background-color: rgb(247, 247, 247);
    min-width: 210px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .dropdown-content2 a {
    color: #6b6b6b;
    padding: 12px 16px;
    font-size: 13px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content2 a:hover {
    color: var(--brdr-color);
    background-color: rgba(114, 255, 96, 0.082);
  }

  .dropdown2:active .dropdown-content2 {
    display: block;
  }

  .dropdown2:hover .dropdown-content2 {
    display: block;
  }
}

@keyframes In {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* hero banner  */

.hero-banner {
  height: 35rem;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero-banner {
    height: 100% !important;
  }
}

.hero-banner img {
  animation-delay: 3.5s;
  animation: zoom-in 18.5s;
}

@keyframes zoom-in {
  0% {
    transform: scale(1, 1);
  }

  60% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

/* rice patter under slider home */

.rice {
  /* background-color: black; */
  background-image: url(../images/rice-pattern.png);
  background-repeat: repeat-x;
  height: 5rem !important;
}

.heading1 {
  /* font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif; */
  font-size: 18px;
  font-weight: 600;
}

/* home brand 3 picture grid  */
.brand {
  gap: 2rem;
}

.brand img {
  width: 100%;
}

.brand h4 {
  position: relative;
  color: var(--brdr-color);
  text-align: center;
  margin-top: 4rem;
}

.branditm {
  position: relative;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #29292950;
}

.branditm:hover .overlay {
  opacity: 1;
}

/* above footer  */

/* social media box  */
.s-mediabox {
  padding: 0 !important;
  justify-content: space-around;
}

.s-mediabox h4 {
  display: flex;
  justify-content: center;
}

.s-mediabox .icon-media hr {
  width: 40%;
  color: #33333365;
}

@media (max-width: 580px) {
  .s-mediabox .icon-media hr {
    width: 90% !important;
    color: #33333365;
  }
}

/* footer style here  */
.footer .bg-img {
  background-image: url(../images/footer-bg.jpg);
  background-repeat: repeat-x;
  height: 12rem;
}

.footer-links {
  background-color: #165604;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cstm-green);
  text-decoration: underline;
}

.footer-links h6 {
  padding-top: 3rem;
  margin-bottom: 1.3rem;
}

.footer-links hr {
  color: #45a046af;
}

.socialmedia span {
  background-color: rgba(156, 189, 133, 0.377);
  padding: 3px 6px;
  border-radius: 25px;
  opacity: 0.5;
}

.socialmedia span:hover {
  background-color: #81d742;
  color: #ffffff;
  opacity: 1;
}

.dwnld-btn img {
  width: 11.7rem;
  margin-top: 2.7rem;
}

.trademark span {
  font-size: 12px;
  margin-left: 6px;
  font-weight: 600;
}

/*============================================================
===============ABOUT/HISTORY PAGE STYLING=====================
============================================================== */

.aboutbanner {
  background-color: var(--about-color);
}

.about-content img {
  margin: auto;
  display: block;
}
@media (max-width: 450px) {
  .about-content .img-main {
    width: 100%;
  }
}

.about-content h3 {
  font-size: 37px;
  color: var(--about-color);
}

.about-content h5 {
  color: var(--about-color);
}

.about-content p {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 24px;
  word-spacing: normal;
  color: #6b6b6b;
}

.about-content .row {
  justify-content: center !important;
  margin-top: 2.5rem;
}

.about-content .row div {
  margin-top: 2rem;
  vertical-align: middle;
}

.about-content .quotation i {
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.about-content .quotation img {
  width: 90%;
}

@media (min-width: 900px) {
}

.our-founders {
  padding: 0 1.5rem;
}

.our-founders p {
  line-height: 26px;
}

.our-founders .date {
  padding: 24px 0;
}
.our-founders .date span {
  text-decoration: underline;
}

.our-founders img {
  width: 83%;
}

.our-founders h6 {
  background-color: var(--about-color);
  color: #2e2e2e;
  padding: 5px 0;
  font-size: 18px;
  margin-top: 2.4rem;
  width: 87%;
}

/* 4th generation style / about  */

.fourth-gen {
  background-image: url(../images/green-texture.jpg);
  background-repeat: repeat-x;
  height: 11rem !important;
}

.fourth-gen h1 {
  padding-top: 4rem;
  color: #ffffff;
}

.bg-texture {
  background-image: url(../images/bg.jpg);
  overflow: hidden;
  background-repeat: repeat;
  height: 100%;
}

/*================================ 
rice products specs page styling
================================== */

.rice-specs p {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 24px;
  word-spacing: normal;
  color: #6b6b6b;
}

.rice-specs h1 {
  color: #ffffff;
  background-color: var(--about-color);
  padding: 5px;
  font-size: 34px;
}

.rice-specs .colored {
  background-color: #e3e3e3;
}

.rice-specs .table {
  color: #6b6b6b;
  margin: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}

.rice-specs h2 {
  color: #6b6b6b;
}

table {
  padding: 0 13px;
}

.table td {
  padding: 5px;
}

/* =========================
packaging pages styling here
============================ */

.packaging .packagings-texture {
  margin-top: auto;
  margin-bottom: -0.5rem;
  padding: none;
  position: relative;
}

.packaging {
  background-image: url(../images/packagings/rice-field.jpg);
  background-size: cover;
  overflow: hidden;
}

.packaging .banner {
  margin-top: 16%;
  width: 43%;
  animation: slide-top 1.3s ease-out forwards;
}

@media (max-width: 800px) {
  .packaging .banner {
    margin-top: 26%;
    width: 43%;
  }
}

@keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }

  100% {
    opacity: 1.5;
    transform: translateY(-25px);
  }
}

.package-content h1 {
  margin: 2rem 0;
  color: var(--about-color);
  font-size: 45px;
}

.package-content p,
ul {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 24px;
  word-spacing: normal;
  color: #6b6b6b;
}

.package-content ul li {
  margin-top: 1rem;
}

.package-content {
  margin-bottom: 3rem;
}

.package-content li {
  list-style: none;
}

.package-content li {
  background-repeat: no-repeat;
  background-position: left top;
  padding: 0px 0 0px 25px;
  background-size: 22px;
  background-image: url(../images/icons/bullet-icon.png);
}

/* ===================
CONTACT US PAGE
=================== */
.contact-page-content a {
  text-decoration: none;
}

.contact-us .texture {
  margin-top: -2rem;
  width: 100%;
}

.contact-page-content h6 {
  margin-top: 50px;
  display: flex;
  color: #4d4d4d;
  font-weight: 600;
}

.contact-page-content h6::after {
  content: "";
  flex: 1;
  padding-top: 5px;
  border-bottom: groove 1px;
  margin: auto 0.25rem;
}

.contact-page-content p {
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 24px;
  word-spacing: normal;
  color: #6b6b6b;
}
.contact-page-content a {
  text-decoration: none;
  color: #6b6b6b;
}

.contact-page-content span {
  color: rgb(26, 26, 26) !important;
}

/* CONTACT FORM STYLING HERE  */

form label {
  color: #6b6b6b;
}

input[type="text"],
select,
textarea:active {
  border: none;
  outline: none;
}

input[type="text"],
select,
textarea:focus {
  outline: none;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 5px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: var(--cstm-green);
  color: white;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: rgb(4, 167, 189);
}

.contform {
  border-radius: 5px;
  background-color: #ffffff;
  padding: 20px;
}

/*===================================
  INFRASTRUCTURE DROP DOWN PAGES CSS 
===================================== */

/* CORPORATE #1 */

.bg-infrastructure {
  background-image: url(../images/arm-steam.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-infrastructure2 {
  background-image: url(../images/reprocess-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-infrastructure3 h1 {
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: yellow;
  position: relative;
}

@media (min-width: 900px) {
  .bg-infrastructure3 h1 {
    margin-top: -10%;
    font-size: 70px;
  }

  .bg-infrastructure3 {
    margin-bottom: 10%;
  }
}

@media (max-width: 899px) {
  .bg-infrastructure3 h1 {
    margin-top: -10%;
    font-size: 50px;
  }

  .bg-infrastructure3 {
    margin-bottom: 5%;
  }
}

@media (max-width: 660px) {
  .bg-infrastructure3 h1 {
    margin-top: -12%;
    font-size: 24px;
  }

  .bg-infrastructure3 {
    margin-bottom: 8%;
  }
}

.bg-infra-img {
  margin-top: 30%;
}

.infrastructure {
  margin-top: 3rem;
}

.infrastructure h1 {
  color: var(--about-color);
}

.infrastructure p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.infrastructure img {
  padding-top: 2rem;
  display: block;
  margin: auto;
}

@media (max-width: 550px) {
  .infrastructure img {
    width: 90%;
  }
}

@media (min-width: 990px) {
  .infrastructure h1 {
    font-size: 45px;
  }

  .border-right {
    border-right: var(--about-color) 2px solid;
  }

  .border-left {
    border-left: var(--about-color) 2px solid;
  }
}

.texture-bg {
  background-image: url(../images/green-texture.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
  margin-top: 4rem;
}

.texture-bg img {
  display: block;
  margin: auto;
  width: 100%;
  padding: 1.5rem 0rem;
}

@media (min-width: 500px) {
  .texture-bg img {
    padding: 2rem 4rem;
  }
}

/* BRAND INFORMATION PAGES STYLING  */
.brand-information h2 {
  color: var(--about-color);
}

.brand-information p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.brand-information th,
td {
  color: #6b6b6b;
  padding: 5px 7px;
}

.brand-information table tr {
  border-bottom: 1px solid #2e2e2e27;
}

.brand-information table .bg-green {
  color: #ffffff;
  background-color: var(--about-color);
}

.factsandinstructions .btn {
  outline: 1px solid #2e2e2e27;
  color: #6b6b6b;
  font-size: 18px;
  background-color: #ffffff;
  border-radius: 0;
  border: 0;
  margin-bottom: 1px;
  height: 5rem;
  border-right: #ffffff 7px solid;
  font-weight: 700;
  width: 100% !important;
  text-decoration: underline;
}

.factsandinstructions .btn:hover {
  outline: 1px solid #2e2e2e27;
  background-color: #0da325;
  color: #ffffff;
  text-decoration: none;
  border-right: #81d742 7px solid;
}

.factsandinstructions .btn:focus {
  outline: 1px solid #2e2e2e27;
  background-color: #0da325;
  color: #ffffff;
  text-decoration: none;
  border-right: #81d742 7px solid;
}

.factsandinstructions .btn:focus .inactive {
  background-color: #000000 !important;
  color: #ffffff;
}

.factsandinstructions hr {
  border-bottom: 2px dashed gray;
  color: #ffffff;
  margin: 3rem 0;
}

.factsandinstructions .card-body,
.card {
  border: 0;
}

.factsandinstructions .image-inst {
  border: var(--about-color) 1px dashed;
  width: -webkit-fill-available;
  margin-bottom: 2rem;
}

.factsandinstructions .note {
  font-weight: 600;
}

.factsandinstructions h5 {
  color: #0da325;
  margin-bottom: 2rem;
}

.factsandinstructions ul li {
  list-style: none;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 0px 12px 11px 30px;
  border-bottom: 1px solid #2e2e2e27;
  margin-bottom: 1rem;
  background-size: 22px;
  background-image: url(../images/icons/bullet-icon.png);
}

/* MEDIA COVERAGE  */
.zoom-parent {
  overflow: hidden;
}

.zoom {
  transition: transform 5s;
  width: 100%;
}

.zoom:hover {
  transform: scale(1.5);
}

.media-page .row {
  background-color: rgb(240, 240, 240);
  margin-top: 2.8rem;
}

.media-page h1 {
  color: var(--about-color);
}

.media-page h3 {
  color: #313131;
  text-transform: capitalize;
  transition: ease-in-out 0.2s;
}

.media-page h3:hover {
  color: var(--cstm-green);
}

.media-page a {
  text-decoration: none;
}

.media-page p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.media-page .category {
  color: #6b6b6b;
}

.media-page .tag {
  font-size: 13px;
  font-weight: 500;
}

.media-page .category:hover {
  text-decoration: underline;
}

.media-page .btn {
  font-weight: 700;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

/* .media-page .btn::after{content: "▸"; margin: auto; padding-top: 8px; font-size: 13px;} */

.media-page .btn::after {
  content: "";
  display: block;
  border: 0;
  width: 0;
  height: 2px;
  background: var(--brdr-color);
  transition: width 0.4s;
}

.media-page .btn:hover::after {
  width: 100%;
}

.media-page .btn:focus {
  border: 0;
  outline: 0;
}

.text-page center {
  padding: 5rem 0;
}

.text-page center p {
  color: #b4b4b4;
  font-size: 13px;
}

.text-page h1 {
  font-size: 29px;
  color: #313131;
}

.text-page p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.text-page .images {
  justify-content: space-around;
}

.award {
  background-image: url(../images/bg-awards.jpg);
  background-size: cover;
}

.award h1 {
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 6vw;
  text-transform: uppercase;
  padding-top: 5vh;
}

.award .award-1 {
  margin: auto;
  display: block;
  width: 65%;
  margin-top: 22vh;
}

.award .pep-texture {
  margin-top: 10%;
  margin-bottom: -0.2rem;
}

/* CAREER PAGE  */
.career .main {
  justify-content: space-around;
}

.career .row {
  margin-top: 5rem;
}

.career p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.career span {
  color: #000000 !important;
}

/* COMPANY MESSAGE  */
.company-message {
  background-color: var(--about-color);
  margin-bottom: 5rem;
}

.company-message img {
  display: block;
  margin: auto;
  width: 67%;
  padding-top: 4rem;
}

.company-message-content h1 {
  color: var(--about-color);
  margin-bottom: 2rem;
  font-size: 37px;
}

.company-message-content h6 {
  margin-bottom: 2rem;
  color: #ffffff;
  font-size: 20px;
  text-transform: uppercase;
  background-color: var(--brdr-color);
  text-align: center;
  padding: 7px 0;
  border-radius: 18px;
}

.company-message-content .row {
  justify-content: space-between;
}

.company-message-content .card {
  background-color: var(--about-color);
  margin-top: 2rem;
  border: 2px solid var(--brdr-color);
  border-radius: 20px;
}

.company-message-content .bg-dif {
  background-color: #e0fa79;
}

.company-message-content p {
  color: #3f3f3f;
  padding: 0px 9px;
}

/* CSR FOOTER PAGE  */
.csr-corporate h1 {
  color: var(--about-color);
  margin: 3rem 0;
}

.csr-corporate .row {
  margin-top: 3rem;
}

.csr-corporate img {
  margin: auto;
  display: block;
}

@media (max-width: 990px) {
  .csr-corporate img {
    width: 60% !important;
  }
}

.csr-corporate p {
  margin-top: 1.2rem;
  font: normal 15px / 27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
  line-height: 27px;
  word-spacing: normal;
  color: #6b6b6b;
}

.flip-box {
  margin-top: 2rem;
  background-color: transparent;
  width: 300px;
  height: 90px;
  perspective: 1000px;
}
.flip-box a {
  text-decoration: none;
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotatex(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-box-back a {
  color: #81d742;
}

.flip-box-back {
  transform: rotatex(180deg);
}

/*============== flip box 2===========  */

.flip-box-inner2 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner2 {
  transform: rotatey(180deg);
}

.flip-box-front2,
.flip-box-back2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-back2 a {
  color: #ffffff;
}
.flip-box-back2 {
  background-color: #81d742;
  padding: 0 7px;
  transform: rotatey(180deg);
}

.rice-secion .row {
  justify-content: center;
}
.rice-secion h1 {
  color: var(--brdr-color);
}

/* flip box 3  */

.flip-box3 {
  margin-top: 1rem;
  background-color: transparent;
  width: 190px;
  height: 250px;
  perspective: 1000px;
}
.flip-box3 a {
  text-decoration: none;
}
.flip-box-inner3 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box3:hover .flip-box-inner3 {
  transform: rotatex(180deg);
}

.flip-box-front3,
.flip-box-back3 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-box-back3 a {
  color: #81d742;
}

.flip-box-back3 {
  transform: rotatex(180deg);
}

/* flip box 3 y axis  */
.flip-box-inner4 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box3:hover .flip-box-inner4 {
  transform: rotatey(180deg);
}

.flip-box-front4,
.flip-box-back4 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-box-back4 a {
  color: #ffffff;
}

.flip-box-back4 {
  transform: rotatey(180deg);
  background-color: #81d742;
}

/* brand info  */
.brand-banner {
  background-image: url(../images/brands-info.jpg);
}
.brand-banner img {
  display: block;
  margin: auto;
  width: 80%;
}
.brand-banner h1 {
  text-align: center;
  font-size: 5vw;
  color: #ffffff;
  font-weight: 800;
  padding-top: 6vw;
}
.brand-banner p {
  color: #ffffff;
  font-size: 3vw;
  text-align: center;
  font-family: "Edu TAS Beginner", cursive;
}
.brand-pg p {
  color: rgb(73, 73, 73);
}

/* window modal styling here  */
/* .modal-content{border: 5px solid var(--brdr-color);} */

.nav-container {
  display: flex;
  align-items: center;
  height: 62px;
}

.nav-container li {
  list-style: none;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: -17px !important;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 21px;
  width: 27px;
  position: absolute;
  top: 17px;
  left: -17px !important;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo {
  display: none;
}

.certifications div {
  margin-top: 1rem;
}
.certifications img {
  border: 1px solid gray;
}

.monitor {
  background-image: url(../images/bg.jpg);
  overflow: hidden;
  background-repeat: repeat-x;
  height: fit-content;
}

.monitor-2 .main-mon {
  width: 100%;
  padding: 12px;
  position: relative;
  padding: 12px;
}
.monitor-2 img {
  width: 100%;
}
.monitor-2 iframe {
  position: absolute;
  left: 11%;
  width: 78%;
  height: 55%;
  top: 10%;
}

/* ============================================= */
#wechat {
  .modal-content{
    border: 0;
  }
  .modal-body {
    margin: auto;
    border: 0;
    padding: 0 20px;
    height: 550px;
    max-width: 94%;
    text-align: center;
    img {
      margin: 2rem 0;
      width: 100%;
    }
    .head-txt {
      z-index: 1;
      strong {
        display: block;
        margin-top: 2rem;
        color: #000000;
      }
    }
    p{
      color: #aeaeae;
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
    }
  }

  .modal-dialog {
    background-color: #fff;
    position: relative;

    
  }

  .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
  }

  .link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #0da325;
    font-size: 18px;
    white-space: nowrap;
  }
}

.wechat_popup {
  a {
    cursor: pointer;
  }
}

@media (min-width: 406px) {
  #wechat{
    .modal-dialog{
      width: 390px;
    }
  }
}

@media (max-width: 576px) and (min-width:400px) {
  #wechat {
    .modal-dialog {
       top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 390px;
    }
  }
}
