html{
	scroll-behavior: smooth;
}
body{

}
:root {
  --primaryColor: #3669D5;
  --secondaryColor: #FFFFFF;
  --nightcolor: #000000;

/*  text*/
  --headerfooterfont: georgia;
  --mainheadingfont: dino-heading;
  --subheadingfont: dino-subheading;
  --paragraphfont: dino-paragraph;
}
@font-face {
    font-family: 'dino-heading';
    src: url('../font/lato-black-webfont.woff2') format('woff2'),
         url('../font/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'dino-paragraph';
    src: url('../font/montserrat-variablefont_wght-webfont.woff2') format('woff2'),
         url('../font/montserrat-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'dino-subheading';
    src: url('../font/OleoScript-Regular.woff2') format('woff2'),
         url('../font/OleoScript-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.container-fluid{
  padding: 0px;
  max-width: 1600px;
  margin: auto;
}

.highlight_octal{
  color: #d34d4d;
}

/*header part*/
/*navigation menu*/
.main-menu{
  padding: 0px 30px;
}
.nav-item{
  padding: 10px 20px;
}
.social-item{
  padding: 10px 0px;
}
.social-link{
  padding: 10px 0px;
}
.socialmedia{
  width: 50px;
  padding: 0px 10px;
}

.sm-icons{
  flex-direction: row;
}
.navbar-brand img{
  width: calc(100vw - 85vw);
}
.nav-link{
  font-family: georgia;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  padding-bottom: 12px;
}
.nav-link.active{
  color: var(--primaryColor)!important;
  font-weight: 600;
}




.navbar-expand-lg .navbar-nav {
  margin: auto;
}
.dino .nav-link,
.dino .nav-link:after,
.dino .nav-link:before{
  transition: 0.5s;
}

.dino .nav-link{
  position: relative;
  z-index: 1;
}
.dino .nav-link:hover{
  color: var(--secondaryColor);
}
.dino .nav-link::after{
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: var(--primaryColor);
  border-radius: 20px;
  visibility: none;
  opacity: 0;
  z-index: -1;
}

.dino .nav-link:hover::after{
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.dino .nav-link.active:hover::after{
  background: none;
  opacity: 0;
}

.dropdown .left-icon, .dropdown .right-icon{
  position: relative;
  display: inline-block;
  width: 12px;
  height: 3px;
  background-color: var(--secondaryColor);
  border-radius: 40px;
}

.white-index .left-icon, .white-index .right-icon {
  background-color: black;
}

.white-index .nav-link:hover .left-icon, .white-index .nav-link:hover .right-icon{
  background-color: white;
}

.nav-link:hover .left-icon, .nav-link:hover .right-icon{
  background-color: black;
}

.dropdown .left-icon.active-icon, .dropdown .right-icon.active-icon{
  background-color: var(--primaryColor);
}

.dropdown{
  transition: all 250ms ease-in-out;
}
.dropdown .left-icon {
  top: -4px;
  left: 4px;
  transform: rotate(45deg);
  transition: all 250ms ease-in-out;
}

.dropdown.active-toggle .left-icon {
  transform: rotate(135deg);
}

.dropdown .right-icon {
  right: 5px;
  top: -4px;
  transform: rotate(-45deg);
  transition: all 250ms ease-in-out;
}

.dropdown.active-toggle .right-icon {
  transform: rotate(-135deg);
}

.dropdown-menu{
  display: block;
  width: 100%;
  background: none;
  padding: 0px;
  border: none;
/*  transition: all 250ms ease-in-out;*/
  overflow: hidden;
  z-index: 0;
}

.dropdown-menu a {
  display: flex;
  background: var(--secondaryColor);
  color: var(--primaryColor);
  text-transform: uppercase;
  font-family: var(--headerfooterfont);
  text-decoration: none;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 2.5px;
  border: 1px solid black;
}

.dropdown .dropdown-menu a {
  transform: translateY(-100px);
  transition: all 0.4s ease-in-out;
}

.dropdown .dropdown-menu {
  transform: translateY(-150px);
  transition: all 1s ease-in-out;
}

.dropdown.active-dropdown .dropdown-menu a{
  transform: translateY(0px);
  transition: all 0.8s ease-in-out;
}

.dropdown.active-dropdown .dropdown-menu{
  transform: translateY(0px);
  transition: all 0.2s ease-in-out;
}

.dropdown .dropdown-menu {
/*  display: block;*/
  left: 0;
  top: 100%;
}

.dropdown-item {
  position: relative;
  z-index: 1;
}

.dropdown-menu .dropdown-item:hover {
  color: var(--secondaryColor);
}

.dropdown-item::after{
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  content: '.';
  color: transparent;
  background: var(--primaryColor);
  visibility: none;
  opacity: 0;
  z-index: -1;
  transform: translatex(200px);
  transition: all 0.5s ease-in-out;
}

.dropdown-item:hover::after{
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

.dropdown-item.active:hover::after{
  background: none;
  opacity: 0;
}
.dropdown-toggle.black.show{
/*  z-index: 2;*/
  color: black !important;
}

.dropdown-toggle.show{
/*  z-index: 2;*/
  color: white !important;
}
/*.dropdown:hover .dropdown-menu{
  transform: translateY(0px);
}*/



/*.dropdown-menu{
  transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown > .dropdown-menu {
  transform: translateY(0);
}*/
/*.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }

  ::after, ::before {
    box-sizing: border-box;
}*/



.nav-link.social-link:hover:after{
  background: none;
  opacity: 0;
}
.socialmedia{
  transition: all 0.3s linear;
}
.socialmedia:hover {
  transform: scale(1.3);
}
.nav-bg-image{
  position: relative;
  height: 300px;
  width: 100%;
  padding: 0;
  background-image:linear-gradient(180deg, rgb(2 5 16 / 85%) 35%, rgb(23 65 153 / 0%) 100%), 
  url(../images/hdpe_bg.jpg);
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 50px;
}
.nav-bg-image.hdpe-product-bg{
  background-image:linear-gradient(180deg, rgb(2 5 16 / 85%) 35%, rgb(23 65 153 / 0%) 100%), 
  url(../images/hdpe_bg.jpg);
}
.nav-bg-image > .container-fluid{
  position: absolute;
}
.bg-color {
  background-color: transparent!important;
}

.dino .nav-white{
  color: var(--secondaryColor);
}

.dino .nav-white:hover{
  color: black;
}

      /*start of main content*/

.coming_background{
  height: calc(100vh - 88px);
  background-image: linear-gradient(322deg, rgb(0 77 101 / 54%) 0%,
   rgb(13 38 47 / 49%) 100%), url(../images/hdpe_bg.jpg);
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.coming_content_main{
  display: grid;
  align-content: center;
  height: calc(100vh - 88px);
  overflow: hidden;
}
.coming_content_sub{
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: solid 8px white;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px 40px;
  margin: auto;
  /*box-shadow:  12px 12px 35px #105870,
             -12px -12px 35px #2fffff;*/
}

.coming_content_sub h1 {
  font-family: var(--subheadingfont);
  font-weight: 400;
  padding: 10px 0px;
  font-size: 40px;
}

.coming_content_sub p {
  font-family: var(--paragraphfont);
  font-weight: 600;
  font-size: 20px;
  padding: 0px 0px 10px 0px;
}
.coming_content_sub button {
  border: 2px solid var(--secondaryColor);
  border-radius: 8px;
  background-color: transparent;
  padding: 12px;
  transition: all 0.5s ease-in-out;
}
.coming_content_sub button:hover {
  background-color: var(--nightcolor);
/*  border: 2px solid var(--nightcolor);*/
}

/*.coming_content_sub button:hover a{
  color: var(--nightcolor);
}*/

.coming_content_sub a {
  text-decoration: none;
  color: var(--secondaryColor);
}


.black-index button{
  border: 1px solid var(--nightcolor);
  border-radius: 8px;
  background-color: transparent;
  padding: 8px;
  float: right;
  transition: all 0.5s ease-in-out;
  font-family: var(--paragraphfont);
  font-weight: 600;
}
.black-index button:hover{
  background-color: var(--nightcolor);
}
.black-index button:hover a {
  color: var(--secondaryColor);
}
.black-index button a{
  color: var(--nightcolor);
  text-decoration: none;
}

.about-index {
  padding-top: 20px;
  margin-top: 30px;
}
.index-height{
  margin-top: 50px;
}

.tablet-mobile{
  display: none;
}
.desktop{
  display: inline-flex;
}

.product-bg{
  background-color: rgb(0 149 217 / 30%);
  padding-top: 50px;
  padding-bottom: 50px;
}

.main-heading{
  padding: 20px 0 20px 0;
  text-align: center;
  text-transform: capitalize;
}

.main-heading h5 {
  font-family: var(--mainheadingfont);
  font-size: 35px;
  font-style: italic;
  font-weight: 600;
  text-underline-offset: 10%;
}
.row{
  margin-bottom: 50px;
}

.octal-paragraph p, h4, li{
  font-family: var(--paragraphfont);
  text-align: justify;
  font-style: italic;
  font-weight: 600;
}
.octal-paragraph2{
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.octal-paragraph2 p, h4, li{
  font-family: var(--paragraphfont);
  text-align: justify;
  font-style: italic;
  font-weight: 600;
}
.octal-adjust{
  margin: 0;
}

h4{
  font-size: 25px;
}

p, li {
  font-size: 16px;
}

.octal-paragraph2.contact h4 {
  font-family: var(--subheadingfont);
  text-align: left;
  font-size: 30px;
} 

.octal-paragraph h4 {
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 20px;
}

.octal-paragraph h4, ol {
  padding: 0 5% 0 5%;
}

.octal-paragraph li {
  padding-bottom: 15px;
  padding-left: 8px;
}

.octal-paragraph2 li {
  padding-bottom: 2px;
  padding-left: 8px;
}

.cell-dino {
  font-family: var(--paragraphfont);
  padding: 10px 10px;
  border: none;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 14px;
  font-weight: 600;
}
/*.cell-dino-address{
  font-family: var(--paragraphfont);
  padding: 10px 10px;
  border: none;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 14px;
  font-weight: 600;
}*/

.side-image img {
  border-radius: 8px;
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  border: 4px solid var(--secondaryColor);
  box-shadow: 0px 0px 10px 2px #000000b5;
}
#light {
  color: #d34d4d;
}
.dino-cover{
  border: 2px solid;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 2px #000000b5;
  margin-bottom: 50px;
  padding: 40px 20px;
}
.dino-cover p{
  font-family: var(--paragraphfont);
  font-weight: 600;
  font-style: italic;
  text-align: justify;
  margin-bottom: 40px;
}
.sub-heading{
  margin: 20px 0px 20px 0px;
}
.sub-heading h5{
  font-family: var(--subheadingfont);
  font-size: 35px;
  font-style: italic;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
}

.sub-product-img{
  text-align: center;
  padding: 10px 0px;
  margin-bottom: 40px;
}

.sub-product-img .product-image{
  width: calc(100vw - 15%);
  height: auto;
  margin: auto;
  max-width: calc(1320px - 15%);
}

hr {
  width: calc(100vw - 15%);
  margin: auto;
  max-width: calc(1320px - 20px);
  margin-bottom: 40px;
}

.g-map {
/*  padding: 10px 0px 10px 0px;*/
  padding: 0px;
  margin-bottom: 45px;
  border: 5px solid black;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
}
.contact-main{
  border: 2px solid var(--nightcolor);
  border-radius: 20px;
  overflow: hidden;
  margin: 5px;
  margin-bottom: 40px;
}
.contact-dark{
  background-color: black;
  padding: 25px;
  color:  var(--secondaryColor);
}
.contact-light{
  padding: 25px;
}
.black-index button{
  font-size: 14px;
}
.row-aboutpage{
  margin-bottom: 0;
}
.bg-color-tab{
  background-color: var(--nightcolor)!important;
  transition: all 0.5s ease-in-out;
}
      /*end of main content*/
      /*start of footer*/

.bg-dark{
  max-width: 1600px;
  margin: auto;
  /*position: absolute;
  left: 0;
  right: 0;
  bottom: 0;*/
}

.foot-row{
  margin: 10px;
}

.footdesign1{
  text-align: left;
  padding: 0 0 0 50px;
}
.footdesign{
  text-align: right;
  padding: 0 50px 0 0;
}

.design1{
  color: var(--secondaryColor);
  font-family: var(--headerfooterfont);
  font-weight: 400;
  letter-spacing: 1px;
}
.design{
/*  color: var(--primaryColor);*/
  color: #60badc;
  font-family: var(--headerfooterfont);
  font-weight: 600;
  letter-spacing: 0.5px;
}
      /*end of footer*/

/**************Start Animation section***********************/

.hex-brick {
  background: #000000;
  width: 24px;
  height: 10px;
  position: absolute;
  top: 5px;
  animation-name: fade00;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.white{
  background: #ffffff;
  animation-name: fade01;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.center-gel .h2 {
      transform: rotate(45deg);
      height: 9.84px;
      -webkit-transform: rotate(45deg);
}

.center-gel .h3 {
  transform: rotate(-45deg);
  height: 9.84px;
  -webkit-transform: rotate(-45deg);
}
.center-gel .h4 {
  transform: rotate(90deg);
}

.gel {
  height: 30px;
  width: 30px;
  transition: all .3s;
  -webkit-transition: all .3s;
}

.center-gel {
  animation-name: pulse00;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-name: pulse00;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  z-index: 1;
}
.gel-rotate {
  position: relative;
  top: 15%;
  left: 96%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}
.gel-rotate2 {
  position: absolute;
  top: 30%;
  left: 80%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.gel-rotate3 {
  position: absolute;
  top: 40%;
  left: 20%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
.gel-rotate4{
  position: absolute;
  top: 85%;
  left: 90%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.gel-rotate5 {
  position: absolute;
  top: 90%;
  left: 7%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 13s;
  animation-iteration-count: infinite;
}
.gel-rotate6 {
  position: absolute;
  top: 50%;
  left: 60%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.gel-rotate7 {
  position: absolute;
  top: 70%;
  left: 65%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 17s;
  animation-iteration-count: infinite;
}
.gel-rotate8 {
  position: absolute;
  top: 18%;
  left: 11%;
  animation-name: rotate-object;
  animation-timing-function: linear;
  animation-duration: 14s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

@keyframes pulse00 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.01);
    transform: scale(0.01);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fade00 {
  0% {
    background: #252525;
  }

  50% {
    background: #000000;
  }

  100% {
    background: #353535;
  }
}

@keyframes rotate-object {
  0% {
    left: 0%;
  }

  100% {
    left: 90%;
  }
}

@keyframes fade01 {
  0% {
    background: #f4f4f4;
  }

  50% {
    background: #ffffff;
  }

  100% {
    background: #f4f4f4;
  }
}

.reveal_appear{
  position: relative;
  opacity: 0;
  filter: blur(5px);
  transition: 1.5s all ease;
}

.reveal_appear:nth-child(2){
  transition-delay: 400ms;
}

.reveal_appear.active_appear{
  filter: blur(0);
  opacity: 1;
}

/**************end Animation section***********************/

/***************** special-case large size *******************/

@media only screen and (min-width: 1600px){

/*.dropdown:hover .dropdown-menu{
  display: block;
}*/
.navbar-brand img{
  width: 250px
}

}

/***************** tablet size *******************/
@media only screen and (max-width: 993px){
.navbar-brand img{
  width: calc(100vw - 75vw);
}

.nav-link{
  font-size: 14px;
  padding-left: 15px;
}
.socialmedia{
  width: 40px;
  padding: 0px 5px;
  margin: 0px 8px;
}

.dropdown-menu{
  display: none;
}

.dropdown .left-icon, .dropdown .right-icon{
  width: 10px;
  height: 2px;
  border-radius: 40px;
}

.dropdown .left-icon {
  top: -4px;
  left: 4px;
}
.dropdown .right-icon {
  right: 3px;
  top: -4px;
}
.dropdown-item {
  font-size: 14px;
}

      /*start of main content*/
.main-heading h5 {
  font-size: 30px;
}
.sub-heading h5{
  font-size: 30px;
}
.coming_background{
  height: calc(100vh - 56px);
}
.contact-dark{
  height: 300px;
}
.coming_content_main{
  height: calc(100vh - 56px);
}

.coming_content_sub{
  border: solid 6px white;
  padding: 20px 0px;
}

.coming_content_sub h1 {
  padding: 10px 0px;
  font-size: 35px;
}

.coming_content_sub p {
  font-size: 15px;
  padding: 0px 20px 10px 20px;
}
.coming_content_sub button {
  border: 2px solid var(--secondaryColor);
  border-radius: 8px;
  background-color: transparent;
  padding: 12px;
  transition: all 0.5s ease-in-out;
  font-size: 15px;
  padding: 8px;
}

.about-index{
  padding: 0px 25px;
}

.tablet-mobile{
  display: inline-flex;
}
.desktop{
  display: none;
}

.side-image{
  padding-bottom: 12px;
}

.side-image-index{
  margin-top: 40px;
}
h4{
  font-size: 20px;
}
p, li {
  font-size: 14px;
}
.para-reduce{
  margin-top: -50px;
}
.black-index button{
  font-size: 12px;
}
.side-image img {
  margin-top: 40px;
/*  width: 100%;*/
}
.side-image.dont-change img {
  margin-top: 20px;
/*  margin-bottom: calc(100vw - 5%);*/
  margin-bottom: 20px;
/*  width: 100%;*/
}

      /*end of main content*/

.hex-brick {
  width: 12px;
  height: 5px;
}

.center-gel .h2 {
  height: 4.84px;
}

.center-gel .h3 {
  height: 4.84px;
}

}


/****************mobile size ********************/
@media only screen and (max-width: 600px){
.navbar-brand img{
  width: calc(100vw - 65vw);
}
.nav-link{
  font-size: 12px;
}
.socialmedia{
  width: 40px;
  padding: 0px 5px;
  margin: 0px 8px;
}
.dropdown .left-icon, .dropdown .right-icon{
  width: 8px;
  height: 2px;
  border-radius: 40px;
}
.dropdown .left-icon {
  top: -4px;
  left: 2px;
}
.dropdown .right-icon {
  right: 4px;
  top: -4px;
}
.dropdown-item {
  font-size: 12px;
}


      /*start of main content*/
.main-heading h5 {
  font-size: 25px;
}
.sub-heading h5{
  font-size: 25px;
}
.coming_background{
  height: calc(100vh - 56px);
}

.coming_content_main{
  height: calc(100vh - 56px);
  max-width: calc(100vw - 30px);
}

.coming_content_sub{
  border: solid 6px white;
  padding: 20px 0px;
}

.coming_content_sub h1 {
  padding: 10px 0px;
  font-size: 25px;
}

.coming_content_sub p {
  font-size: 10px;
  padding: 0px 20px 10px 20px;
}
.coming_content_sub button {
  border: 2px solid var(--secondaryColor);
  border-radius: 8px;
  background-color: transparent;
  padding: 6px;
  transition: all 0.5s ease-in-out;
  font-size: 10px;
}
.about-index{
  padding: 0px 0px;
}

/*.tablet-mobile{
  display: block;
}
.desktop{
  display: none;
}*/

.octal-paragraph2.contact h4 {
  font-size: 20px;
} 
.cell-dino {
  font-size: 10px;
  line-height: 12px;
}
.contact-dark{
  height: 250px;
}
.sub-product-img {
/*  height: 500px;*/

}
.sub-product-img .product-image{
  width: calc(100vw - 20%);
}
h4{
  font-size: 15px;
}
p, li {
  font-size: 12px;
}
.para-reduce{
  margin-top: -50px;
}
.container {
  padding: 0 30px;
}
.dino-cover{
  padding: 10px 20px;
}
.black-index button{
  font-size: 10px;
}
.side-image-index{
  margin-top: 40px;
}
      
      /*end of main content*/

/* footer side*/

.foot{
  display: block;
}
.footdesign{
  text-align: center;
  padding: 0 5px 0 5px;
}
.footdesign1{
  text-align: center;
  padding: 0 5px 0 5px;
}
.design{
  letter-spacing: 0px;
}
.design1{
  letter-spacing: 0px;
}

}