@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: optima-cufonfonts-regular;
  src: url(../font/optima-cufonfonts/OPTIMA.TTF) format("truetype");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: optima-cufonfonts-medium;
  src: url(../font/optima-cufonfonts/Optima\ Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: optima-cufonfonts-bold;
  src: url(../font/optima-cufonfonts/OPTIMA_B.TTF) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: arial-regular;
  src: url(../font/arial/ARIAL.TTF) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+000-5FF;
}
@font-face {
  font-family: arial-bold;
  src: url(../font/arial/ARIALBD.TTF) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+000-5FF;
}

/* ================ Index ============== */

/* 1. COMMON CSS */

:root {
  --bg-black: #000;
  --bg-white: #fff;
  --bg-green: #005f36;
  --bg-dark-yellow: #adbf02;
  --primary-font: "EB Garamond", serif;
  --arial-font: "arial-regular";
  --arial-font-bold: "arial-bold";
  --secondary-font-regular: "optima-cufonfonts-regular";
  --secondary-font-medium: "optima-cufonfonts-medium";
  --secondary-font-bold: "optima-cufonfonts-bold";
  --text-white: #fff;
  --text-black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: var(--secondary-font-regular); */
}

/*#region top ================================== COMMON CSS START ====================== */

html {
  font-family: var(--secondary-font-regular);
  /* scroll-behavior: smooth !important;
  scroll-padding-top: 5rem !important; */
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100vw;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  font-family: var(--primary-font);
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.trigger_1,
.trigger_2,
.trigger_3,
.trigger_4,
.trigger_5 {
  position: relative;
  z-index: 999;
}

.border_radius {
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

/* .fixed_tree {
  width: fit-content;
  position: relative;
} */

.fixed_tree .tree_icon {
  width: 66%;
  object-fit: cover;
}
.fixed_tree .green_yellow_leaf1 {
  position: absolute;
  left: 20.1%;
  top: 45%;
  width: 9%;
  object-fit: cover;
}
.fixed_tree .green_green_leaf_big {
  position: absolute;
  left: 6%;
  top: 42%;
  width: 13%;
  object-fit: cover;
}
.fixed_tree .yellow_green_leaf {
  position: absolute;
  left: 18%;
  top: 29%;
  width: 8%;
  object-fit: cover;
}
.fixed_tree .green_yellow_dot {
  position: absolute;
  left: 10%;
  top: 26%;
  width: 6%;
  object-fit: cover;
}
.fixed_tree .green_green_leaf2 {
  position: absolute;
  left: 26.5%;
  top: 17%;
  width: 8%;
  object-fit: cover;
}
.fixed_tree .green_blue_leaf {
  position: absolute;
  left: 16.6%;
  top: 15%;
  width: 8%;
  object-fit: cover;
}

/* Animation Tree End*/

p {
  font-size: 16px;
  line-height: 1.3em;
}

h1 {
  font-size: 46px;
  line-height: 1.3em;
  font-family: var(--secondary-font-medium);
}
h2 {
  font-size: 36px;
  line-height: 1.3em;
  font-family: var(--secondary-font-medium);
}
h4 {
  font-size: 32px;
  line-height: 1.3em;
  font-family: var(--secondary-font-regular);
}

h6 {
  font-size: 24px;
  line-height: 1.3em;
  font-family: var(--secondary-font-bold);
}

section {
  padding: 60px 0px;
}

@media (max-width: 480px) {
  section {
    padding: 60px 15px !important;
  }
  h4 {
    font-size: 22px;
  }
}

.btn-green {
  padding: 8px 40px;
  background-color: var(--bg-green);
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-family: var(--secondary-font-regular);
}
.btn-green:hover {
  background-color: var(--bg-dark-yellow);
  color: var(--bg-green);
}

.btn-green:focus {
  box-shadow: none !important;
  border: 1px solid var(--text-white);
}
.overflow-hidden {
  overflow: hidden;
}
.overflowx-clip {
  overflow-x: clip;
}
/* .pos-relative {
  position: relative;
} */
/* .vh-80 {
  min-height: 80vh;
} */

@media (min-width: 1600px) {
  .navbar ul {
    gap: 4px !important;
  }
}

/* Slick Slider CSS Start */

.slick-slide {
  padding: 0px 40px 0px 10px;
  /* padding: 0px 15px; */
}

.slick-arrow {
  font-family: "Font Awesome 5 Free";
  background: transparent;
  width: 40px;
  height: 40px;
  position: absolute;
  top: initial;
  bottom: 0;
  margin: 0px 15px;
  color: #000;
  z-index: 1;
  border-radius: 30px;
  font-size: 0;
  outline: 0;
  border: 1px solid #000;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  opacity: 1;
  outline: 0;
  padding: 0px 25px;
}
/* .slick-arrow:hover {
  background: #adbf02;
} */
button {
  outline: 0 !important;
}

.slick-arrow.slick-prev.custom-prev:before {
  font-family: "Font Awesome 5 Free";
  /* content: "\f060";  */
  color: #000;
  font-size: 30px;
  font-weight: 600;
  background: transparent;
  transition: 0.3s all ease-in-out;
}

.slick-arrow.slick-next.custom-next:before {
  font-family: "Font Awesome 5 Free";
  /* content: "\f061";  */
  color: #000;
  font-size: 30px;
  font-weight: 600;
  background: transparent;
  transition: 0.3s all ease-in-out;
}

.slick-arrow:hover.slick-prev:before {
  padding-right: 10px;
  transition: 0.3s all ease-in-out;
  color: #008a81;
}

.slick-arrow.slick-prev {
  right: 51.3%;
  bottom: -2%;
  width: 120px;
  gap: 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.slick-arrow.slick-prev:hover {
  padding-right: 40px;
  transition: 0.3s all ease-in-out;
  background-color: #005f36;
}

.slick-arrow.slick-next {
  left: 49.8%;
  bottom: -2%;
  width: 120px;
  gap: 15px;
}



.slick-arrow.slick-next:hover {
  padding-left: 40px;
  transition: 0.3s all ease-in-out;
  background-color: #005f36;
}

.slick-arrow:hover.slick-next:before {
  padding-left: 10px;
  transition: 0.3s all ease-in-out;
  color: #008a81;
}

.slick-dots {
  text-align: center;
  padding: 0;
  margin-bottom: 0px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}


.slick-dots li:only-child {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before,
.slick-dots li button::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0px;
  left: 0;
  right: 0px;
  left: 0px;
  margin: auto auto;
  width: 8px;
  height: 8px;
  background: none;
  background: #898989;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before,
.slick-dots li.slick-active button::before {
  background: #000;
  width: 8px;
  height: 8px;
}

.slick-list {
  padding: 0 6% 0 6% !important;
}
/* Slick Slider CSS End */

/* Header CSS BEGiNS */
.navbar {
  background: #003f00e2;
  padding: 15px 0px;
}

.logo_brand {
  font-size: 42px;
  color: var(--text-white);
  text-decoration: none;
}
.logo_brand:hover {
  color: var(--text-white);
}
.footer .logo_brand{
  line-height: 1;
}
.navbar-brand {
  font-size: 42px;
  color: var(--text-white);
}
.navbar-brand:hover {
  color: var(--text-white);
}

.navbar ul {
  gap: 4px;
  list-style-type: none;
  color: var(--text-white);
}
.navbar .navbar-nav li {
  list-style-type: none;
  padding: 0px 8px;
  border: 1px solid transparent;
  border-radius: 50px;
}
.navbar .navbar-nav li:hover {
  border: 1px solid rgb(221 221 221 / 25%);
}
.navbar .navbar-nav li.active:hover {
  border: 1px solid #005f3600;
}
.navbar .navbar-nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  font-family: var(--secondary-font-medium);
  padding-left: 15px !important;
}
.navbar .navbar-nav li a:before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50px;
}
.navbar .navbar-nav li.active a:before {
  display: none;
}
.navbar .navbar-nav li.active a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 2px;
  left: 5px;
  background: #fff;
}
@media (max-width: 1400px) {
  .navbar ul {
    color: var(--text-white);
  }
}
@media (max-width: 1024px) {
  .navbar ul li{
    padding: 0px 5px !important;
  }
  .navbar ul li a{
    font-size: 13px !important;
  }
}
@media (max-width: 992px) {
  .navbar ul li{
    padding: 0px 10px !important;
  }
  .navbar ul li a{
    font-size: 16px !important;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 0px;
  }
  .slick-list {
    padding: 0 0% 0 0% !important;
  }
  .slick-arrow.slick-prev {
    left: 35%;
  }

  .slick-arrow.slick-next {
    right: 35%;
  }
}

/* Footer CSS BEGiNS */

.footer {
  padding: 45px 15px !important;
  background: #000;
  position: relative;
  z-index: 100;
}
.footer-wrapper {
  color: #fff;
}
/* .footer-wrapper ul {
  display: flex;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0px;
}
.footer-wrapper ul li {
  padding: 0px 15px;
} */
.footer-wrapper ul{
  line-height: 1;
}
.footer-wrapper ul li a {
  color: #fff;
  text-decoration: none;
  font-family: var(--arial-font-bold);
  font-size: 14px !important;
}
.footer-wrapper ul li a:hover {
  text-decoration: underline;
}
.footer-wrapper p {
  font-family: var(--arial-font);
  font-size: 14px !important;
}
.footer-link p {
  padding: 0px 15px;
  margin-bottom: 0px;
  font-family: var(--arial-font);
  font-size: 14px !important;
  /* font-weight: 600; */
}

.footer-link a {
  font-size: 14px !important;
  text-decoration: none;
  font-family: var(--arial-font-bold);
}
.footer-link a:hover {
  text-decoration: underline;
}
/* b {
  font-family: var(--arial-font-bold);
} */
@media (max-width: 480px) {
  .footer-wrapper {
    display: block;
  }
  .footer-wrapper ul {
    width: 100%;
    justify-content: space-between;
  }
  .footer-wrapper ul li {
    padding: 0;
    margin-bottom: 10px;
  }
  .footer-wrapper p {
    padding: 0;
  }
}

/* Home Page CSS BEGiNS */

/* .bg_banner {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 0 !important;
  background-attachment: fixed;
} */
.bg_banner {
  position: relative;
  z-index: 0 !important;
}
.banner-item {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 0 !important;
  background-attachment: fixed;
}
.tech-slider .slick-list {
  padding: 0 !important;
}
.banner-content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10%;
}

.technology_bg {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/technology/technology-bg.png") no-repeat center center;
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers_bg {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}
.subtext {
  font-size: 22px;
  line-height: 1.3em;
  font-family: var(--primary-font);
}

.sub_sec ul li {
  font-size: 22px;
  line-height: 1.3em;
  font-family: var(--primary-font);
}
.sub_sec {
  position: relative;
  z-index: 100;
}

/* .home_bg_1 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../images/bgs/home_bg1.png") no-repeat center center;
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
}
.home_bg_2 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url("../images/bgs/home_bg2.png") no-repeat center center;
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
} */

.parent {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.child {
  transition: all 1.1s;
  -webkit-transition: all 1.1s;
  -moz-transition: all 1.1s;
  -ms-transition: all 1.1s;
  -o-transition: all 1.1s;
}

.parent:hover .child {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

@media (max-width: 768px) {
  .tree_icon {
    position: absolute;
    right: 0px;
    top: -13%;
    overflow-x: hidden;
    width: 20%;
    z-index: 1000 !important;
  }
}
@media (max-width: 480px) {
  .tree_icon {
    position: absolute;
    right: 0px;
    top: -13%;
    overflow-x: hidden;
    width: 40%;
    z-index: 1000 !important;
  }
}

.leadership_bg {
  background: url("../images/home/leadership-bg.jpg") center center no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  z-index: 0;
}

.offerings-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.offerings-img {
  overflow: hidden;
  border-radius: 40px;
}
.offerings-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.offerings-img:hover img {
  overflow: hidden;
  transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  /*transition: .3s all ease-in-out;*/
}

.offerings-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px 30px;
  color: #fff;
  z-index: 999;
}
.offerings-content p {
  font-size: 18px;
  font-style: italic;
}

/*#endregion ================================== COMMON CSS START ====================== */

/* Offerings Page CSS BEGiNS */
.offerings-list {
  list-style-type: none;
  padding-left: 30px;
}
.offerings-list li {
  color: #000;
  font-size: 20px;
  padding: 10px 0px;
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-left: 35px;
}
.offerings-list li a {
  color: #000;
  text-decoration: none;
  position: relative;
}
.offerings-list li:hover a {
  color: #2e9737;
}
.offerings-list li a:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 5px;
  background: #005f36;
  width: 10px;
  height: 10px;
  border-radius: 50px;
}

/* Styles */

.form-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}
label {
  font-size: 22px;
  font-weight: 600;
}
label.error {
  position: absolute;
  bottom: -25px;
  color: red;
  font-size: 15px;
  left: 0;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  font-size: 18px;
  margin: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 5px 20px;
  box-shadow: none !important;
  border: 1px solid #7b7b7b !important;
  background-color: #dedede !important;
}

.submit_sec {
  margin-left: 5rem;
}

.padding_top {
  margin-top: 6rem;
}
.portfolio-table table th,
.portfolio-table table td{
  padding: 10px 40px !important;
  font-size: 20px;
}
.portfolio-table table thead th{
  font-size: 22px;
  font-weight: 800;
  border-bottom: 0;
}
.portfolio-table table thead th:nth-child(odd){
  background: #9dbfa7;
}
.portfolio-table table thead th:nth-child(even){
  background: #ffeca7;
}
.portfolio-table table tbody td:nth-child(odd){
  background: #e4f1e8;
}
.portfolio-table table tbody td:nth-child(even){
  background: #fffee9;
}
.portfolio-table table tbody tr{
  border-bottom: 3px solid #fff;
}
.Chemical-title{
  font-size: 20px;
  font-weight: 700;
}
.Chemical-name img{
/* background: #fff;
border: 1px solid #000;
padding: 10px; */
margin-top: 20px;
/* width: 40%; */
}
@media(max-width: 575px){
  .portfolio-table table th,
.portfolio-table table td{
  padding: 10px 10px !important;
  font-size: 14px;
}
.portfolio-table table thead th{
  font-size: 14px;
}
.Chemical-title{
  font-size: 14px;
  font-weight: 700;
}
}

.intl-tel-input{
  display:block;
  position:relative;
  width:100%;
  
}
.intl-tel-input .selected-flag{
  height:37px!important;
  border-radius:50px 0 0 50px;
}
label.error{
  font-size: 15px;
  margin-bottom: 5px;
}
#cv_upload{
    opacity: 0;
    width: 0;
}