@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700;800&display=swap');
@font-face {
  font-family: 'binerka';
  src: url(../font/binerka-webfont.woff);
}
:root {
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-23: 23px;
  --font-size-28: 28px;
  --font-size-50: 50px;
  --color-f1592a: #f1592a;
  --color-0c2d77: #0c2d77;
  --color-ffffff: #ffffff;
  --color-000000: #000000;
  --line-height-20: 20px;
  --line-height-36: 36px;
  --line-height-60: 60px;
  --font-family-notosans: 'Noto Sans', sans-serif;
  --font-family-binerka: 'binerka';
}
html {
  scroll-behavior: smooth;
}
header,
footer,
section {
  width: 100%;
  float: left;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}
body {
  font-family: var(--font-family-notosans);
  font-size: var(--font-size-18);
  line-height: inherit;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
a {
  font-size: var(--font-size-18);
  text-decoration: none;
  font-family: var(--font-family-notosans);
  font-weight: 700;
  color: var(--color-ffffff);
}
.title {
  font-size: var(--font-size-50);
  text-decoration: none;
  font-family: var(--font-family-binerka);
  font-weight: 600;
  color: var(--color-0c2d77);
  text-transform: uppercase;
  line-height: var(--line-height-60);
  padding-top: 20px;
  letter-spacing: 3px;
}
.footer-title {
  font-size: var(--font-size-28);
  font-family: var(--font-family-binerka);
  font-weight: 600;
  color: var(--color-0c2d77);
  text-transform: uppercase;
  line-height: var(--line-height-36);
  padding-top: 20px;
  letter-spacing: 3px;
}
p {
  font-size: var(--font-size-20);
  text-decoration: none;
  font-family: var(--font-family-notosans);
  font-weight: 400;
  text-align: justify;
  margin-bottom: 20px;
}
.p-content {
  font-size: var(--font-size-20);
  text-decoration: none;
  font-family: var(--font-family-notosans);
  font-weight: 400;
  text-align: justify;
  margin-bottom: 20px;
}
.section-small-text {
  font-size: var(--font-size-23);
  text-decoration: none;
  font-family: var(--font-family-notosans);
  font-weight: 500;
  color: var(--color-0c2d77);
}
.small-text {
  font-size: var(--font-size-18);
  text-decoration: none;
  font-family: var(--font-family-notosans);
  font-weight: 400;
  color: var(--color-000000);
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}
img {
  width: 100%;
}
.gsw-button a {
  padding: 10px 20px;
  border: 2px solid var(--color-f1592a);
  color: var(--color-f1592a);
  transition: all 0.5s ease-in;
  text-transform: uppercase;
}
.gsw-button a:hover {
  padding: 10px 20px;
  background: var(--color-f1592a);
  color: var(--color-ffffff);
}
.gsw-button button {
  background: transparent;
  padding: 10px 20px;
  border: 2px solid var(--color-f1592a);
  color: var(--color-f1592a);
  transition: all 0.5s ease-in;
  text-transform: uppercase;
}
.gsw-button button:hover {
  padding: 10px 20px;
  background: var(--color-f1592a);
  color: var(--color-ffffff);
}
.img-zoom {
  overflow: hidden;
}
.img-zoom .zoom {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 2.5s ease-out 0s;
  -moz-transition: all 2.5s ease-out 0s;
  -ms-transition: all 2.5s ease-out 0s;
  -o-transition: all 2.5s ease-out 0s;
  transition: all 2.5s ease-out 0s;
}
.img-zoom:hover .zoom {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.g_header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background: transparent;
}
.main-header.g_shrink {
  position: fixed;
  background: var(--color-ffffff);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  z-index: 999;
}
.main-header.g_shrink .main-nav .navbar-expand-lg .navbar-brand img,
.main-header.g_shrink .main-nav .navbar-expand-lg .navbar-brand img {
  width: 100px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
/* navbar */
.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0;
}
.main-nav {
  background: var(--color-ffffff);
  padding: 5px 0px;
  width: 100%;
  float: left;
}
.main-nav .navbar .navbar-nav .nav-item .nav-link {
  font-family: var(--font-family-notosans);
  font-weight: 400;
  font-size: var(--font-size-18);
  text-transform: uppercase !important;
  padding: 0 30px;
  transition: all 0.5 ease-in-out !important;
}
.main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.main-nav .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--color-f1592a);
  font-weight: 600;
}
.navbar-brand img {
  width: 150px;
}
.main-nav .navbar-nav .dropdown .dropdown-menu {
  min-width: auto !important;
  margin: 0;
  top: 30px;
  padding: 0px;
  background-color: var(--color-ffffff) !important;
  border: none;
  box-shadow: 0px 0px 10px -4px #0000009d;
  z-index: 9;
  left: 30px;
}
.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  width: 220px;
  float: left;
  font-size: var(--font-size-16);
  color: var(--color-000000);
  background-color: var(--color-ffffff);
  padding: 10px 10px;
  text-transform: uppercase;
}
.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--color-f1592a);
  color: var(--color-ffffff);
}
/* about-us */
.about-us {
  padding-top: 100px;
}
.about-us-text-box {
  padding: 0 0 0 50px;
}
.about-us-text .title span {
  color: var(--color-f1592a);
}
.about-us .about-us-icon .section-small-text {
  font-weight: 700;
}
.about-us .about-us-icon .section-small-text img {
  width: 40px;
  margin-right: 20px;
}
.about-us .about-us-icon {
  padding: 20px 0;
}
.about-us-icon-box {
  padding: 20px 0;
}
hr.hr-7.aos-init.aos-animate {
  color: gray;
}
/* .GSW-Counter */
.GSW-Counter {
  padding-top: 100px;
}
.counter-section-box img {
  width: 100px;
}
.counter-section-box {
  display: flex;
  justify-content: space-around;
}
.counter-section-box-text .section-small-text {
  font-weight: 900;
}
.bg {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 30px;
  /* margin: 0 20px; */
  background: white;
}
/* services */
.services {
  padding-top: 100px;
}
.services-img {
  position: relative;
}
.services-box {
  border-left: 3px solid var(--color-ffffff);
  border-bottom: 3px solid var(--color-ffffff);
}
.services-box .services-img img {
  height: 330px;
  object-fit: cover;
}
.services-img-text {
  background: var(--color-f1592a);
  padding: 15px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.services-img-text .section-small-text {
  color: var(--color-ffffff);
  font-weight: 900;
}
.bg2 {
  background: var(--color-0c2d77);
  display: flex;
  align-items: center;
  height: 663px;
}
.services .about-us-text .title span {
  color: var(--color-f1592a);
}
.services .about-us-text-box {
  padding: 0 20px;
}
.services .services-img1 img {
  height: 663px;
}
/* gallery */
.gallery {
  background: var(--color-f1592a);
  margin-top: 50px;
  padding-top: 50px;
}
.minus {
  margin-bottom: -34px;
}
.gallery-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-text .gsw-button a {
  padding: 10px 20px;
  background: var(--color-f1592a);
  border: 2px solid white;
  color: var(--color-ffffff);
}
.gallery-text .gsw-button a:hover {
  padding: 10px 20px;
  background: var(--color-ffffff);
  border: 2px solid white;
  color: var(--color-f1592a);
}
.gallery-img img {
  height: 350px;
  object-fit: cover;
}
/* .clients */
.clients {
  padding-top: 100px;
}
.client-img {
  width: 16.66%;
  float: left;
  padding: 20px;
  text-align: center;
}
.client-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* .testimonial */
.testimonial {
  padding: 50px 0;
  background: var(--color-0c2d77);
  margin-top: 50px;
}
.testimonial-box .inverted img {
  width: 80px;
  margin: 20px 0;
}
.testimonial-box-border {
  width: 50px;
  height: 5px;
  background: var(--color-f1592a);
  margin: 20px 0;
}
.testimonial-box-img img {
  width: 70px;
  border-radius: 50px;
  height: 70px;
  object-fit: cover;
}
.testimonial-box {
  padding: 30px 50px;
  background: var(--color-ffffff);
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-box-name {
  padding-top: 20px;
}
.testimonial-box-text {
  padding-left: 20px;
  text-align: left;
}
.testimonial .gsw-button a {
  border: 1px solid var(--color-ffffff);
  background: none;
  color: var(--color-ffffff);
}
.testimonial .gsw-button a:hover {
  background: var(--color-ffffff);
  color: var(--color-0c2d77);
}
/* .footer */
.footer {
  padding-top: 50px;
}
.footer-logo img {
  width: 150px;
  padding-bottom: 20px;
}
.footer-second ul li a {
  font-size: var(--font-size-16);
  font-family: var(--font-family-notosans);
  font-weight: 600;
  margin-top: 10px;
  color: #000000;
  display: flex;
  align-items: center;
  transition: all .5s ease-in;
}
.footer-second ul li a:hover {
  color: var(--color-f1592a);
}
.footer-second i {
  color: var(--color-f1592a);
  font-size: 30px;
  padding-right: 20px;
}
.footer-third ul li {
  padding: 5px 0;
}
.footer-third ul li a {
  font-size: var(--font-size-16);
  font-family: var(--font-family-notosans);
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  transition: all .5s ease-in;
}
.footer-third ul li a:hover {
  color: var(--color-f1592a);
}
.copyright {
  background: #eeeeee;
  padding: 20px 0;
  margin-top: 50px;
}
.copyright p {
  font-size: var(--font-size-18);
}
.copyright p a {
  font-weight: 900;
  color: var(--color-0c2d77);
  text-transform: capitalize;
}
.copyright p a:hover {
  color: var(--color-f1592a);
}
.footer-first {
  width: 90%;
}
.footer-flex {
  display: flex;
  justify-content: flex-end;
}
/* products */
.products {
  padding: 50px 0;
}
.prod-height-01 {
  height: 750px;
  width: 100%;
  object-fit: cover;
}
.prod-height-02 {
  height: 360px;
  width: 100%;
  object-fit: cover;
}
.prod-height-03 {
  height: 360px;
  width: 100%;
  object-fit: cover;
}
.product-img {
  margin-top: 30px;
  position: relative;
  transition: all 0.5s ease-in;
  cursor: pointer;
}
.product-img::before {
  width: 412px;
  height: 250px;
  position: absolute;
  content: '';
  background: var(--color-0c2d77);
  z-index: 1;
  left: -115px;
  bottom: -131px;
  transition: all .5s ease-in;
  rotate: 29deg;
  overflow: hidden;
  opacity: 0;
}
.product-img:hover::before {
  opacity: 1;
}
.product-text {
  position: absolute;
  z-index: 9;
  left: 30px;
  bottom: 30px;
}
.product-text .section-small-text {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-ffffff);
}
.sectors-img {
  margin-bottom: 30px;
}
.sectors-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #00000000 0%, #00000067 50%, #000000c2 100%);
}
/* banner */
.banner {
  background: var(--color-0c2d77);
  margin-bottom: 100px;
  /* height: 650px; */
  position: relative;
}
.banner-text {
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-slider {
  margin-bottom: -50px;
  position: relative;
  right: 0;
  top: 0;
}
.banner-images .banner-img {
  width: 500px;
  margin-left: 5px;
}
.banner-images .banner-img img {
  height: 700px;
  object-fit: cover;
}
.banner-text .title span {
  color: var(--color-f1592a);
}
.banner-button .gsw-button {
  margin-right: 20px;
  margin-top: 50px;
}
.banner-button .gsw-button a {
  border: 2px solid var(--color-ffffff);
  color: var(--color-ffffff);
}
.banner-button .gsw-button a:hover {
  background: var(--color-f1592a);
  border: 2px solid var(--color-f1592a);
}
.banner-slider-box {
  position: absolute;
  right: 0;
  top: 0;
  /* z-index: 11; */
  width: 50%;
  float: right;
}
.banner-logo {
  position: absolute;
  /* top: 0; */
  bottom: -59px;
  left: 129px;
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 3px solid;
  opacity: .25;
}
.banner-slider {
  padding-bottom: 30px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--color-000000);
  opacity: .5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-f1592a);
}
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 50px;
}
.banner-text .title {
  -webkit-animation: bounceIn 1s;
  animation: bounceIn 1s;
}
.banner-text .slider-title {
  -webkit-animation: bounceIn 1.5s;
  animation: bounceIn 1.5s;
}
/* main-gallery */
/* gallery */
.masonry {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
}
.gallery-box .img {
  max-width: 100%;
}
.masonry .item {
  display: inline-block;
  background: #ffffff;
  padding: 0px;
  margin: 0 0 1.5em;
  width: 100%;
  transition: 1s ease all;
  -webkit-transition: 1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 2px 2px 4px 0 #ccc;
  /* float: left; */
}

@media only screen and (max-width:320px) {
  .masonry {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

@media only screen and (min-width:321px) and (max-width:768px) {
  .masonry {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media only screen and (min-width:769px) and (max-width:1200px) {
  .masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media only screen and (min-width:1201px) {
  .masonry {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
  }
}
.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
}
.gallery-box {
  position: relative;
} 
.gallery-box a {
  display: block;
  position: relative;
}
.gallery-box a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000bd;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gallery-box:hover a::before{
  opacity: 1;
}
.gallery-box .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
} 
.gallery-box:hover .overlay {
  opacity: 1;
} 
.gallery-box .overlay img {
 width: 30px;
 height: 30px;
} 
/* gallery */

.main-gallery {
  background: #0000000d;
  padding: 100px 0;
}
/* page-titie */
.page-title {
  height: 400px;
  /* background-position: 100% 100%; */
  position: relative;
  background-image: 100% 100%;
  background-position: center center;
}
.page-title::before {
  position: absolute;
  background: #000000a6;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
}
.breadcrumb-inner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.breadcrumb-inner .title {
  color: var(--color-ffffff);
}

/* inner-about-section */
.our-vision {
  padding: 40px 40px;
  background: #fdf7e9;
}
/* advantage-section */
.advantage-list ul li {
  margin-top: 25px;
  padding-left: 50px;
  position: relative;
  color: var(--color-ffffff);
}
.advantage-list ul li span {
  font-weight: 600;
  color: var(--color-ffffff);
}
.advantage-list ul li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  background: var(--color-ffffff);
  border-radius: 100px;
  padding: 4px;
}
.advantage-img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40%;
  transform: translateY(-50%);
}
/* advantage-section */
/* inner-about-section */
/* main-clients */
.main-clients {
  background: #0000000d;
}
.clients-main-img {
  padding: 30px;
  background: var(--color-ffffff);
  border-radius: 15px;
  box-shadow: 0 3px 10px #00000033;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.clients-main-img:hover {
  box-shadow: 0 3px 10px #000000b0;
  border-radius: 0 15px;
}
.clients-main-img-margin {
  margin-top: 20px;
}
/* main-clients */
/* inner-contact-section */
.icon-bx-wraper {
  padding: 20px;
  border: 2px solid #0000001a;
  border-radius: 4px;
  background-color: #00000003;
}
.icon-bx-wraper .dlab-tilte {
 font-weight: 600;
}
.icon-content p a {
  color: var(--color-0c2d77);
}
/* inquiry-form */
.inquiry-form {
  box-shadow: 5px 5px 20px 0 #0000000d;
  border-radius: 0;
  margin-top: 0;
  height: 100%;
  background: var(--color-ffffff);
  padding: 30px;
  border-radius: 4px;
}
.form-group {
  margin-bottom: 25px;
}
.form-control {
  border-color: #e1e6eb;
  box-shadow: none;
  height: 50px;
  font-size: var(--font-size-18);
  line-height: var(--line-height-20);
  padding: 8px 12px;
}
textarea.form-control{
height:150px;
resize: none;
}
.form-control:focus {
  border-color: #e1e1e1;
  outline: 0;
}
.form-control:focus,
.has-error .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* inquiry-form */
.inquiry-form .input-group-addon {
  border-width: 0 0 1px;
  font-size: var(--font-size-18);
  padding: 12px 0 3px;
  vertical-align: top;
  border-bottom: 1px solid #e1e6eb;
}
.text-primary {
  color: var(--color-f1592a) !important;
}
.inquiry-form .form-control {
  border-width: 0 0 1px;
  font-size: var(--font-size-18);
}
.input-group {
  width: 100%;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
/* inner-contact-section */
/* product-categories-section */
/* categories-box image*/
.product-categories-section {
  background: #e5e5e5;
}

.product-categories-box {
  width: 100%;
  float: left;
  margin-bottom: 30px;
  background: #f2f8ff;
  box-shadow: 0 0px 14px #6b6b6b3b;
  -webkit-transition: all 0.5s ease-out 0s;
 -moz-transition: all 0.5s ease-out 0s;
 -ms-transition: all 0.5s ease-out 0s;
 -o-transition: all 0.5s ease-out 0s;
 transition: all 0.5s ease-out 0s;
}
.product-categories-box:hover {
  box-shadow: 0 0px 14px #6b6b6bd5;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.product-list-box {
  width: 100%;
  float: left;
  padding: 10px 10px;
  background: #f2f8ff;
}
.product-list-box .product-name {
  display: inline-block;
  font-size: var(--font-size-23);
  color: var(--color-000000);
  font-weight: 700;
  width: 100%;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.product-list-box p {
  font-size: var(--font-size-18);
  text-align: center;
}
.product-categories-box:hover .product-list-box .product-name {
  color: var(--color-f1592a);
}
.product-list-box small { 
  font-size: var(--font-size-20);
  color: var(--color-000000);
  font-weight: 500;
}
.product-subtitle {
  margin-top: 10px;
  width: 100%;
}
.product-info .product-name {
  font-size: var(--font-size-23);
  font-family: var(--font-family-notosans);
  font-weight: 600;
  color: var(--color-000000);
  margin-bottom: 10px;
}
.product-info .d-flex div {
  margin-right: 25px;
  margin-bottom: 10px;
  font-size: var(--font-size-18);
  font-family: var(--font-family-notosans);
  font-weight: 500;
  color: var(--color-000000);
}
.product-info .d-flex div span {
  width: 10px;
  height: 10px;
  background: var(--color-0c2d77);
  display: inline-block;
  border-radius: 20px;
  position: relative;
  top: -3px;
}
.product-info .d-flex div:hover span {
  background: var(--color-f1592a);
}

.product-subtitle table, .product-subtitle table th, .product-subtitle table td {
  border: none;
  padding: 6px;
  font-size: var(--font-size-16);
  text-transform: uppercase;
}
.product-subtitle table {
  width: 100%;
  border: solid 1px #d4d4d4;
}
.product-subtitle table tr th {
  background: var(--color-0c2d77);
  color: var(--color-ffffff);
}
.product-subtitle table tr th:first-child {
  width: 25%;
}
.product-subtitle table tr th:nth-child(2) {
  width: 45%;
}
.product-subtitle table tr th {
  width: 30%;
}
.product-subtitle table tr td, .product-subtitle table tr th {
  border: solid 1px #d4d4d4;
  border-bottom: none;
}
.product-categories-box .popular-categories-img {
  background: #fff;
  display: block;
  height: 350px;
  width: 100%;
}
.product-categories-box .popular-categories-img img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-list-box p {
  position: relative;
}
.product-list-box p a {
  font-size: var(--font-size-16);
  color: var(--color-f1592a);
}
.morecontent span {
  display: none;
}
.morelink {
  display: block;
}
.morelink.less {
  color: var(--color-0c2d77);
}
/* product-categories-section */

.product-row {
  padding: 20px 10px;
  border-bottom: solid 3px var(--color-f1592a);
  margin-top: 30px;
  background: #f9f9f9;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.product-list-box02 {
  width: 100%;
  float: left;
  background: transparent;
}
.product-list-img img {
 width: 100%;
}
.product-details p {
 position: relative;
 padding-left: 100px;
 text-align: left;
 margin-bottom: 10px;
}
.product-details p span {
  font-weight: 700;
 position: absolute;
 left: 0;
 top: 0;
 -webkit-transition: all 0.5s ease-out 0s;
 -moz-transition: all 0.5s ease-out 0s;
 -ms-transition: all 0.5s ease-out 0s;
 -o-transition: all 0.5s ease-out 0s;
 transition: all 0.5s ease-out 0s;
}
.product-list-img {
  background: var(--color-ffffff);
}
.product-row:hover {
 background: #e3e3e3;
}
.product-row:hover .product-name, .product-row:hover .product-details p span {
 color: var(--color-f1592a);
}




.product-zoom {
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.product-zoom .product-zoom-img  {
  -webkit-animation: zoom 100s ease-out infinite;
  animation: zoom 100s ease-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s linear;
  padding: 30px;
}
.product-categories-box:hover .product-zoom .hover-img  { 
  opacity: 1;
  transition: opacity 1s linear;
  z-index: 1;
}
.product-categories-box:hover .popular-categories-img .hoverout-img  { 
  opacity: 0;
  transition: opacity 1s linear;
}
@-webkit-keyframes zoom {
  0% {-webkit-transform: scale(1);}
  50% {-webkit-transform: scale(1.5);}
  100% {-webkit-transform: scale(1);}
}
@keyframes zoom {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
} 


/* services-section */
.parralex-effect-section {
  position: relative;
  transform-style: inherit;
  z-index: -1;
}
.parralex-effect-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: url(../images/service/services-bg.jpg) top center;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  z-index: -2;
}
.what-is-bitumen {
  position: relative;
  background: #2721600d;
}
.what-is-bitumen:before {
  position: absolute;
  content: "";
  top: 7%;
  left: 0;
  width: 30%;
  height: 85%;
  background: #262262;
  z-index: 1;
}
.cion-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
}
.cion-left:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-image: url(../images/service/line-vector2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 60%;
  z-index: 99;
  opacity: 0.3;
}
.white-bg {
  background: var(--color-ffffff);
  z-index: 99;
  position: relative;
  padding: 50px 50px;
}
.paking:after {
  position: absolute;
  content: "";
  width: 100%;
  border-bottom: 1px dashed #2767ab6e;
  bottom: 0;
  left: 0;
}
.icon-style li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  font-size: var(--font-size-18);
  font-weight: 400;
  line-height: var(--line-height-30);
  text-align: justify;
  margin-bottom: 15px;
}
.icon-style li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/icons/world-map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  left: 0;
}
.rigrt-side-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
}
.rigrt-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* services-section */
/* disclaimer-section */
.disclaimer-list {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 40px;
}
.disclaimer-list li {
list-style: upper-alpha;
}
.disclaimer-list li p {
text-align: left;
}
.disclaimer-list li p a {
color: var(--color-000000);
}
/* disclaimer-section */
/* footer whatsapp*/
.whatsapp {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
}
.whatsapp img {
  width: 60px;
}
/* footer whatsapp */
.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1650px;
}
.sidenav, .mobile-toggle {
  display: none;
}
.mobile-none {
  display: none;
}
.desktop-none  {
  display: block;
}
/* responsive css */
@media only screen and (min-width: 1921px) {}

@media (max-width: 1600px) {
  :root {
    --font-size-16: 15px;
    --font-size-18: 16px;
    --font-size-20: 18px;
    --font-size-23: 20px;
    --font-size-28: 24px;
    --font-size-50: 40px;
    --line-height-20: 20px;
    --line-height-36: 30px;
    --line-height-60: 50px;
}
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1480px;
  }
  .navbar-brand img {
    width: 100px;
}
.main-nav .navbar .navbar-nav .nav-item .nav-link {
  padding: 0 15px;
}
.gsw-button a:hover {
  padding: 8px 14px;
}
.gsw-button a {
  padding: 8px 14px;
}
.banner-text {
  height: 550px;
}
.banner-images .banner-img img {
  height: 600px;
}
.prod-height-01 {
  height: 600px;
}
.prod-height-02 {
  height: 300px;
}
.prod-height-03 {
  height: 270px;
}
.client-img {
  padding: 8px;
}
.client-img img {
  width: 120px;
  height: 120px;
}
.testimonial-box .inverted img {
  width: 50px;
  margin: 20px 0;
}
.testimonial-box {
  padding: 30px 30px;
}
.testimonial-box-img img {
  width: 50px;
  height: 50px;
}
.testimonial-box-text {
  padding-left: 10px;
}
.footer-logo img {
  width: 90px;
  padding-bottom: 20px;
}
.footer-title {
  padding-top: 10px;
}
.footer-second ul li {
  padding: 0;
}
.footer-second ul li a {
  padding-top: 14px;
}
.footer-second i {
  font-size: 22px;
  padding-right: 16px;
}
.breadcrumb-inner, .page-title {
  height: 350px;
}
}
@media (max-width: 1560px) {
}
@media (max-width: 1480px) {
  :root {
    --font-size-16: 15px;
    --font-size-18: 16px;
    --font-size-20: 18px;
    --font-size-23: 20px;
    --font-size-28: 22px;
    --font-size-50: 32px;
    --line-height-20: 20px;
    --line-height-36: 26px;
    --line-height-60: 42px;
}
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
  .pb-100 {
    padding-bottom: 50px;
}
.pt-100 {
    padding-top: 50px;
}
.pb-50 {
  padding-bottom: 30px;
}
.pt-50 {
  padding-top: 30px;
}
.our-vision {
  padding: 20px 20px;
}
.advantage-img {
  width: 45%;
}
.footer-first {
  width: 100%;
}
.banner-button .gsw-button {
  margin-right: 10px;
  margin-top: 20px;
}
.about-us {
  padding-top: 40px;
}
.banner-logo {
  bottom: -59px;
  left: 89px;
}
.banner-logo-img img {
  width: 200px;
}
.product-img::before {
  width: 350px;
  height: 200px;
  left: -85px;
  bottom: -110px;
}
.product-img {
  margin-top: 20px;
}
.product-categories-box .popular-categories-img {
  height: 250px;
}
}
@media (max-width: 1366px) {}

@media (max-width: 1280px) { 
  :root {
    --font-size-16: 14px;
    --font-size-18: 15px;
    --font-size-20: 17px;
    --font-size-23: 18px;
    --font-size-28: 20px;
    --font-size-50: 30px;
    --line-height-20: 18px;
    --line-height-36: 24px;
    --line-height-60: 40px;
}
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1024px;
  }
  .main-header.g_shrink .main-nav .navbar-expand-lg .navbar-brand img, .main-header.g_shrink .main-nav .navbar-expand-lg .navbar-brand img {
    width: 60px;
}
.navbar-brand img {
  width: 80px;
}
.counter-section-box img {
  width: 50px;
}
.gallery-img img {
  height: 260px;
}
.what-is-bitumen:before {
  top: 2%;
  height: 95%;
}
.banner-text {
  height: 400px;
}
.banner-images .banner-img img {
  height: 430px;
}
.banner-logo-img img {
  width: 150px;
}
.banner-logo {
  bottom: -30px;
  left: 30px;
}
.about-us .about-us-icon {
  padding: 8px 0;
}
.about-us-icon-box {
  padding: 0px 0 30px;
}
.about-us .about-us-icon .section-small-text img {
  width: 30px;
  margin-right: 10px;
}
.bg {
  padding: 20px;
}
.services {
  padding-top: 50px;
}
.bg2, .services .services-img1 img {
  height: 450px;
}
.services-box .services-img img {
  height: 224px;
}
.prod-height-03 {
  height: 230px;
}
.prod-height-01 {
  height: 480px;
}
.products {
  padding: 30px 0;
}
}
@media (max-width: 1199.98px) {
}
@media (max-width: 1024px) {
  :root {
    --font-size-16: 14px;
    --font-size-18: 15px;
    --font-size-20: 17px;
    --font-size-23: 18px;
    --font-size-28: 20px;
    --font-size-50: 26px;
    --line-height-20: 18px;
    --line-height-36: 24px;
    --line-height-60: 30px;
}
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
    padding: 0 20px;
  }
  .services .about-us-text-box {
    padding: 0 10px;
}
.breadcrumb-inner, .page-title {
  height: 230px;
}
}
@media (max-width: 991.98px) {
  .mobile-none, .sidenav, .mobile-toggle {
    display: block;
  }
  .desktop-none  {
    display: none;
  }
  /* mob-sidenav */
  :root {
    --font-size-16: 14px;
    --font-size-18: 15px;
    --font-size-20: 17px;
    --font-size-23: 18px;
    --font-size-28: 20px;
    --font-size-50: 26px;
    --line-height-20: 18px;
    --line-height-36: 24px;
    --line-height-60: 32px;
}
  /* mob-sidenav */
  .banner-slider-box {
    position: relative;
    width: 100%;
  }
  .banner-text {
    height: auto;
    padding: 50px 0 50px;
}
  .banner-logo {
    z-index: 9;
}
.banner-images .banner-img img {
  height: 300px;
}
.about-us-text-box {
  padding: 0 0 0 20px;
}
.navbar-collapse {
  position: absolute;
  top: 100%;
  background: #fff;
  width: 100%;
  padding: 20px 20px;
}
.main-nav .navbar .navbar-nav .nav-item .nav-link {
  padding: 4px 0px;
  margin-bottom: 8px;
}
.gsw-button a {
  display: inline-block;
}
.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 4px 5px;
  margin-bottom: 8px;
}
.navbar-toggler {
  padding: 6px 10px;
  border: solid 1px #ccc;
  background: #f1592a;
  color: #fff;
}
.navbar-toggler:focus {
  box-shadow: unset;
}
.footer-flex {
  display: block;
}
.footer-logo img {
  padding-bottom: 10px;
}
.footer-second ul li a {
  padding-top: 0;
}
.footer {
  padding-top: 60px;
}
.copyright {
  padding: 15px 0;
  margin-top: 30px;
}
.bg {
  padding: 20px 10px;
}
.services {
  padding-top: 50px;
}
.products {
  padding: 30px 0;
}
.gallery {
  margin-top: 30px;
  padding-top: 30px;
}
.clients {
  padding-top: 70px;
}
.bg2 {
  height: 100%;
  padding: 30px 20px;
}
.title {
  padding-top: 10px;
  letter-spacing: 2px;
}
.client-img img {
  width: 70px;
  height: 70px;
}
.client-img {
  width: 20%;
}
.testimonial {
  padding: 30px 0;
  margin-top: 30px;
}
.footer-title {
  padding-top: 30px;
  letter-spacing: 2px;
}
.main-gallery {
  padding: 40px 0;
}
.pt-100 {
  padding-top: 30px;
}
.pb-100 {
  padding-bottom: 30px;
}
.breadcrumb-inner, .page-title {
  height: 250px;
}
.advantage-list ul li img {
  width: 25px;
  padding: 2px;
}
.advantage-list ul li {
  margin-top: 18px;
  padding-left: 38px;
}
.GSW-Counter {
  padding-top: 50px;
}
.clients-main-img {
  padding: 20px;
}
.inquiry-form {
  padding: 20px 20px;
}
.GSW-Counter .bg {
  width: 32.33%;
  float: left;
}
.bg2 {
  height: auto;
}
.services .services-img1 img, .prod-height-03, .services-box .services-img img {
  height: 450px;
}
.footer-logo img {
  width: 70px;
  padding-bottom: 20px;
}
}

@media (max-width: 800px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
}
@media (max-width: 767.98px) {
  .advantage-img {
    display: none;
}
.about-us-text-box {
  padding: 0;
}
.about-us .about-us-icon {
  padding: 10px 0;
}
.about-us .about-us-icon .section-small-text img {
  width: 30px;
  margin-right: 10px;
}
.product-categories-box .popular-categories-img {
  height: 300px;
}
.about-us-icon-box {
  padding: 10px 0;
}
.banner-logo {
  bottom: -50px;
  left: 19px;
}
.banner-logo-img img {
  width: 130px;
}
.banner {
  margin-bottom: 50px;
}
.footer {
  padding-top: 40px;
}
.product-zoom {
  padding: 10px;
}
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
}
.whatsapp img {
  width: 40px;
}
.whatsapp {
  bottom: 60px;
  right: 20px;
}
}
@media (max-width: 575.98px) {
  .GSW-Counter .bg {
    width: 300px;
  }
  .gallery-text {
    display: block;
}
  .gallery-text .gsw-button {
    margin-top: 20px;
    margin-bottom: 30px;
}
.client-img {
  width: 33%;
}
.banner-text {
  padding: 20px 0 20px;
}
}
@media (max-width: 480px) {
}

@media (max-width: 375px) {
}
/* responsive css */