@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
}
body a {
  text-decoration: none !important;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  background: #F09118;
}

::-webkit-scrollbar-thumb:hover {
  background: #0A7CA5;
}

h2 {
  font-weight: bold !important;
  font-size: 28px !important;
}

h3 {
  font-size: 25px !important;
}

h5 {
  font-size: 18px !important;
}

.Btn_1 {
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 0.5em 2em;
  outline: none;
  border: none;
  border-radius: 5px;
  display: inline-block;
  background-color: #0A7CA5;
}
.Btn_1:hover::before {
  transform-origin: center right;
  transform: scaleX(1);
}
.Btn_1::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F09118;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}
.Btn_1:hover {
  cursor: pointer;
}

/* <========== WHATSAPP-ICONS ============ */
.whatsapp-icon,
.phone-icon {
  position: fixed;
  bottom: 20px !important;
  left: 20px !important;
  background: #25d366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 9999 !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-icon i,
.phone-icon i {
  font-size: 28px;
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.76);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
@keyframes phone-icon {
  0% {
    box-shadow: 0 0 0 0 rgba(60, 57, 250, 0.76);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.phone-icon {
  bottom: 90px !important;
  background-color: #2F58CD;
  animation-name: phone-icon;
}
.phone-icon i {
  font-size: 28px;
  color: #fff;
}

.popup {
  display: none;
  background-image: url("../images/popup-img.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  width: 500px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6431372549) !important;
  color: white;
  padding: 20px;
  border-radius: 5px;
  z-index: 9999 !important;
  animation: fadeIn 1s ease-in-out;
}

.popup-content .popup-form {
  width: 100%;
}
.popup-content span {
  color: #F09118;
}
.popup-content .popup-form .form-group label {
  padding-bottom: 8px;
}
.popup-content .popup-form .form-group .form-control {
  border-radius: 0;
  border: 1px solid #000;
}
.popup-content .popup-form .form-select {
  border-radius: 0 !important;
  border: 1px solid #000;
}
.popup-content .popup-form .submit-btn {
  background-color: #F09118;
  padding: 8px 30px;
  border: none;
  color: #fff;
  border-radius: 5px;
  margin-top: 10px;
}
.popup-content .popup-form .captcha-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-content .popup-form .dynamic-code {
  padding: 6px 0;
  background: #fff;
  color: #000;
  border: 1px solid #393376;
  border-radius: 8px;
  text-align: center;
}
.popup-content .popup-form .captcha-reload {
  padding-left: 5px;
}

.close {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  color: #fff !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    top: -100px;
  }
  to {
    opacity: 1;
  }
}
.Navbar_bg {
  background-color: #083F54;
}
.Navbar_bg .col-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.Navbar_bg .col-flex .socail_icons a,
.Navbar_bg .col-flex .socail_icons i {
  color: #fff;
}
.Navbar_bg .col-flex .socail_icons a:hover,
.Navbar_bg .col-flex .socail_icons i:hover {
  color: #F09118;
  text-decoration: underline !important;
}
.Navbar_bg .col-flex .socail_icons i,
.Navbar_bg .col-flex .socail_icons img {
  font-size: 20px;
  padding-right: 10px;
}
.Navbar_bg .col-flex .socail_icons span {
  padding-left: 10px;
}

.navbar .navbar-brand img {
  mix-blend-mode: multiply !important;
}
.navbar .nav-item {
  padding-right: 15px;
  position: relative;
}
.navbar .nav-item .dropdown {
  width: 200px;
  background-color: #fff;
  padding: 0 !important;
  display: none;
  position: absolute;
  top: 40px;
  animation: fadeDown 0.3s ease forwards;
  /* Apply the fade-down animation */
  transition-delay: 0.3s ease-in-out !important;
  z-index: 9999 !important;
  padding-top: 30px !important;
}
.navbar .nav-item .dropdown .dropdown_list {
  list-style: none;
  padding: 8px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(206, 201, 201, 0.2470588235);
}
.navbar .nav-item .dropdown .dropdown_list:hover {
  background-color: #F09118;
}
.navbar .nav-item .dropdown .dropdown_list a {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}
.navbar .nav-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  display: inline-block;
  background-color: #F09118;
  background-origin: center left;
  left: 0;
  transition: all 0.3s ease-in-out;
  bottom: -8px;
}
.navbar .nav-item:hover::before {
  transform: scaleX(100%) !important;
}
.navbar .nav-item .nav-link {
  color: #000 !important;
  font-weight: 500;
}

.navbar .nav-item:hover .dropdown {
  display: block;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.swiper-image1 {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image2 {
  background: url("../images/banner2.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image3 {
  background: url("../images/banner3.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image4 {
  background: url("../images/banner5.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image5 {
  background: url("../images/banner6.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image6 {
  background: url("../images/banner7.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image7 {
  background: url("../images/banner8.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image8 {
  background: url("../images/banner9.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.swiper-image9 {
  background: url("../images/banner10.png") center no-repeat;
  width: 100%;
  background-size: cover;
  height: 80vh !important;
}

.text-container {
  display: flex;
  align-items: center;
  justify-content: start;
  color: #F09118;
  height: 80vh;
}
.text-container h1 {
  font-weight: bold;
}

.owl-carousel .owl-item img {
  width: auto !important;
  display: inline !important;
}

#color1 {
  background-color: #042B3D;
}

#color2 {
  background-color: #053043;
}

#color3 {
  background-color: #063549;
}

#color4 {
  background-color: #073A4E;
}

#color5 {
  background-color: #083F54;
}

#color6 {
  background-color: #09445A;
}

.carousel_card {
  background-color: #083F54;
  color: #fff;
  text-align: center !important;
  padding: 15px;
}
.carousel_card .icon_img img {
  height: 50px;
  display: block;
}
.carousel_card .carousel_title {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 14px !important;
  text-transform: uppercase;
  position: relative;
}
.carousel_card .carousel_title::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 35px;
  background-color: #158DC4;
  width: 60px;
  height: 2px;
}
.carousel_card .carousel_content {
  font-size: 14px;
}

.line_wrapper {
  line-height: 30px;
  text-align: justify;
}

.sec_banner {
  background: url("../images/bg.png") center no-repeat;
  width: 100%;
  background-size: cover;
}
.sec_banner .about_container {
  margin-left: 18%;
}

.sec_banner1 {
  background-color: #083F54;
}
.sec_banner1 .services_container {
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  background-color: #fff;
  margin: 15px 0;
  overflow: hidden;
}
.sec_banner1 .services_container img {
  height: 200px;
  transition: all 0.3s ease-in-out;
}
.sec_banner1 .services_container:hover img {
  transform: scale(1.1);
}
.sec_banner1 .services_title {
  text-align: center;
  color: #fff;
}

#product_carousel .carousel_product {
  width: 100% !important;
}
#product_carousel .carousel_product img {
  height: 200px;
  display: block;
}
#product_carousel .owl-carousel .owl-item img {
  width: 100% !important;
  display: block !important;
}

.value_container {
  margin-right: 15%;
}

.footer_bg {
  background-color: #083F54;
}
.footer_bg .footer_nav {
  color: #fff;
}
.footer_bg .footer_nav h5 {
  padding-bottom: 10px;
}
.footer_bg .footer_nav p {
  font-size: 14px;
}
.footer_bg .footer_nav ul {
  padding-left: 0 !important;
}
.footer_bg .footer_nav ul li {
  margin-bottom: 10px;
  font-size: 14px !important;
  list-style: none;
}
.footer_bg .footer_nav ul li span {
  padding-right: 10px;
}
.footer_bg .footer_nav ul li a {
  color: #fff;
  font-size: 14px;
}
.footer_bg .footer_nav ul li a:hover {
  text-decoration: underline !important;
  color: #F09118;
}
.footer_bg .footer_nav .footer_img {
  height: 40px;
  padding-right: 10px;
}
.footer_bg .footer_nav .footer_icon a {
  padding-right: 10px;
  color: #F09118;
}
.footer_bg .footer-form {
  width: 80%;
  margin: 0 auto;
}
.footer_bg .footer-form .form-group label {
  color: #fff;
  padding-bottom: 8px;
}
.footer_bg .footer-form .submit-btn {
  background-color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
  color: #000 !important;
  font-weight: 500;
}
.footer_bg .footer-form .submit-btn:hover {
  background-color: #F09118;
  color: #fff !important;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2823529412);
  padding: 15px 0;
}
.copyright a {
  color: #fff;
  padding-right: 10px;
  font-size: 14px;
}
.copyright a:hover {
  color: #F09118;
}
.copyright p {
  margin-bottom: 0 !important;
  color: #fff;
  font-size: 14px;
}

.about_banner {
  background: url("../images/banner.png") center no-repeat;
  width: 100%;
  height: 60vh;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3215686275);
}
.about_banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.about_banner .banner_title h1 {
  color: #fff;
  font-weight: bold;
}

.products__title {
  padding-bottom: 10px;
  color: #F09118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4117647059);
  text-align: center;
}

.products_list {
  background-color: #083F54;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 8px;
  padding: 20px;
  height: calc(95% - 10px);
  margin: 20px 0;
  overflow: hidden;
}
.products_list .products_items {
  background-color: #fff;
  height: calc(100% - 10px);
  padding: 25px;
  border-radius: 3px;
}
.products_list .products_items li {
  margin-bottom: 10px !important;
  padding-left: 10px;
  font-weight: 500;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.products_list .products_items li::marker {
  content: "\f2e4";
  font-family: "remixicon";
  font-size: 20px;
}

#lubricant-carousel .lubricant_img img {
  height: 250px;
}
#lubricant-carousel .owl-carousel .owl-item img {
  width: auto !important;
  margin: 0 auto !important;
  display: block !important;
}

.card-wrapper {
  background-color: #F09118;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  height: calc(100% - 20px);
}

.classification_list ul {
  padding-top: 10px;
}
.classification_list ul li {
  margin-bottom: 10px;
  padding-left: 10px;
}
.classification_list ul li::marker {
  content: "\f2e4";
  font-family: "remixicon";
  font-size: 20px;
}

.contact_info {
  width: 80%;
  margin: 0 auto;
}
.contact_info h5 {
  padding-bottom: 10px;
}
.contact_info ul {
  padding-left: 0 !important;
}
.contact_info ul li {
  margin-bottom: 10px;
  font-size: 14px !important;
  list-style: none;
}
.contact_info ul li span {
  padding-right: 10px;
}
.contact_info ul li a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.contact_info ul li a:hover {
  text-decoration: underline !important;
  color: #F09118;
}
.contact_info .contact_icons {
  padding-top: 25px;
}
.contact_info .contact_icons i {
  background-color: #083F54;
  width: 25px;
  height: 25px;
  font-size: 20px;
  padding: 8px;
  margin-right: 15px;
  color: #fff;
  border-radius: 5px;
}
.contact_info .contact_icons i:hover {
  color: #F09118;
}

.contact_bg {
  background-color: #f1f1f1;
}
.contact_bg .contact_bg {
  background: url("../images/img2.png") center no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left;
}
.contact_bg .contact-form {
  width: 100%;
  background-color: #fff;
  display: block;
  padding: 15px;
  font-family: "Montserrat", sans-serif !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 5px;
}
.contact_bg .contact-form .form-group label {
  padding-bottom: 8px;
}
.contact_bg .contact-form .form-group .form-control {
  border-radius: 0;
  border: 1px solid #000;
}
.contact_bg .contact-form .submit-btn {
  background-color: #F09118;
  padding: 10px 25px;
  border: none;
  color: #fff;
  border-radius: 5px;
}
.contact_bg .contact-form .captcha-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_bg .contact-form .dynamic-code {
  padding: 6px 0;
  background: #fff;
  color: #000;
  border: 1px solid #393376;
  border-radius: 8px;
  text-align: center;
}
.contact_bg .contact-form .captcha-reload {
  padding-left: 4px;
}

.rice_banner {
  background: url("../images/banner4.png") center no-repeat;
  width: 100%;
  height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}
.rice_banner .banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.rice_banner .banner_title h1 {
  color: #fff;
  font-weight: bold;
}

.rice_content span {
  color: #F09118;
  font-weight: bold;
}

.whychoose-title {
  color: #fff;
  text-align: center;
}

#box-wrapper {
  background-color: rgba(255, 255, 255, 0.4862745098);
}

.whychoose_wrapper {
  background-color: #ffffff;
  padding: 15px;
  height: 230px;
  text-align: center;
  border-radius: 5px;
}
.whychoose_wrapper img {
  height: 50px;
}
.whychoose_wrapper h5 {
  font-weight: bold;
  padding-top: 15px;
}

#testimonials {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px 0 !important;
}
#testimonials p {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.banner_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.banner_title h1 {
  color: #fff;
  font-weight: bold;
}

.Polymers_banner {
  background: url("../images/banner/Polymers.jpeg") center no-repeat;
  width: 100%;
  height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}

.Organic_banner {
  background: url("../images/banner/organic-chemical.jpg") center no-repeat;
  width: 100%;
  height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}

.base_banner {
  background: url("../images/banner/Base-oil2.jpg") top no-repeat;
  width: 100%;
  height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}

.additive_banner {
  background: url("../images/banner/Additive-package2.jpg") center no-repeat;
  width: 100%;
  height: 60vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}

.lubricant_banner {
  background: url("../images/banner/Lubricant.jpg") center no-repeat;
  width: 100%;
  height: 70vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2549019608);
  background-size: cover;
}

.container_form {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.container_form .container_formtitle {
  text-align: center;
  color: #333333;
}
.container_form .form-group {
  margin-bottom: 15px;
}
.container_form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #333333;
}
.container_form .form-group input,
.container_form .form-group textarea {
  width: calc(100% - 10px);
  padding: 8px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.container_form #reviewForm button {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.container_form #reviewForm button button:hover {
  background-color: #218838;
}
.container_form #responseMessage {
  margin-top: 20px;
  text-align: center;
}
.container_form .emoji-container {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.container_form .emoji-item {
  text-align: center;
  cursor: pointer;
}
.container_form .emoji {
  font-size: 2em;
  transition: transform 0.3s;
}
.container_form .emoji-label {
  display: block;
  margin-top: 5px;
}
.container_form .emoji-item.selected .emoji,
.container_form .emoji-item.selected .emoji-label {
  background-color: #218838;
  border-radius: 50%;
  color: #fff;
}
.container_form .emoji-item.selected .emoji {
  animation: bounce 0.5s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.blog_flex {
  display: grid;
  grid-template-columns: 75% 25%;
  grid-template-rows: auto auto;
  width: 100%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  position: relative;
}
.blog_flex .left {
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 15px;
}
.blog_flex .right {
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 15px;
  height: 600px;
  position: sticky;
  right: 0;
  top: 0;
}

.gallery_img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 10px;
}
.gallery_img .gallery-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_card {
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  text-align: center;
}
.blog_card img {
  height: 250px;
  width: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog_card .card-title {
  font-weight: bold;
  padding-bottom: 8px;
}
.blog_card .card-body {
  background-color: #042B3D;
  color: #fff;
  padding: 15px;
  text-align: start;
  line-height: 25px;
}
.blog_card .blog_btn {
  background-color: #F09118;
  padding: 10px 20px;
  color: #fff;
  display: inline-block;
  border-radius: 8px;
}

.row_col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
}
.row_col .thank-youimg img {
  height: 200px;
}
.row_col .container_body .body_subtitle {
  padding-top: 10px;
  line-height: 35px;
}
.row_col .container_body h1 {
  font-size: 32px;
}
.row_col .container_body p {
  font-size: 20px;
}
.row_col .container_body .button {
  background-color: #042B3D;
  color: #fff;
  width: 40%;
  padding: 5px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 15px;
}
.row_col .container_body .button:hover {
  background-color: #F09118;
}
.row_col .container_body .icons {
  padding-top: 20px;
}
.row_col .container_body .icons a {
  font-size: 20px;
  padding-right: 10px;
  padding-top: 15px;
  display: inline-block;
  color: #042B3D;
}

.wrpaer__content p {
  text-align: justify;
}

.col__Sec h6 {
  position: relative;
}
.col__Sec h6::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #09445A;
  bottom: -10px;
  left: 0;
}
.col__Sec p {
  padding-top: 20px;
  text-align: justify;
}

.Key__list ul {
  padding-left: 15px !important;
}
.Key__list ul li {
  margin-bottom: 10px;
  text-align: justify;
  padding-left: 12px !important;
}
.Key__list ul li::marker {
  content: "\f2e5" !important;
  font-family: "remixicon";
  font-size: 20px;
}/*# sourceMappingURL=style.css.map */