* {padding: 0;margin: 0;}

body {background-color: #fff;}
html {
    scroll-behavior: smooth !important;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    scrollbar-color: var(--color-1) var(--color-2);
}
li {
    list-style: none;

}
h1,
h2,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}
a{font-family: var(--font); text-decoration: none;}
p {
    font-family: var(--font);
}

.section-padding {
    padding-top: 4em;
    padding-bottom: 4em;
}

.heading {
    text-align: center;
    width: 60%;
    margin: auto;
}

.heading h1 {
    font-size: 3rem;
    line-height: 3.2rem;
    font-weight: 800;
    text-transform: capitalize;
}

.heading h1 span {
    color: var(--color-1);
}


.btn.btn_style {
    background-color: var(--color-1);
    font-weight: 600;
    color: #fff;
    width: 210px;
    height: 55px;
    border-radius: 50px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
}
.btn.btn_link_style {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.btn.btn_link_style:hover {
    color: var(--color-1);
}
.container{
    max-width: 88%;
}
.smooth-scroll {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--color-1);
	color: #fff !important;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	font-size: 26px;
	z-index: 9999;
	box-shadow: 0px 3px 11px -8px #000;
	transition: all .3s;
}
/* ********************************************* Inner Banner Styles ******************************************* // */
.inner_banner {
	position: relative;
	width: 100%;
	height: 300px;
	background-image: url(../images/banner_bg.jpg);
	background-size: 100%;
	background-position: 100% 33%;
	display: flex;
	justify-content: center;
	align-items: center;
    border-bottom: 4px solid var(--color-1);
}
.inner_banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.inner_banner .inner_banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}
.inner_banner .inner_banner_content h2 {
	font-size: 50px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	display: block;
	line-height: 55px;
	text-transform: uppercase;
	font-family: var(--font);
	margin: auto;
}
.page-breadcrumb {
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	align-content: center;
}
.page-breadcrumb li {
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
}

.page-breadcrumb li a {
    color: var(--color-1);
    text-decoration: none;
    font-weight: 500;
}
.page-breadcrumb li a:hover {
    color: #fff;
}
/* // ********************************************* Banner ******************************************* // */

.banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: transparent linear-gradient(-50deg, #c9efff 0%, #fff 100%) 0% 0% no-repeat padding-box;
}
.desktop_img {
	display: block !important;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mobile_img {
	display: none !important;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 60% 60%;
	background-color: var(--color-2);
	border-radius: 50%;
}
.carousel,
.carousel-inner,
.carousel-item {
  height: 90vh;
}

.carousel-item > .d-block {
  width: 100%;
  height: 90vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} 
.banner .carousel-caption .container {
	padding-left: 80px;
}
.banner .carousel-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: left;
	top: 0;
	display: grid;
	align-content: center;
	padding: 0;
}
/* .banner h2 {
	font-size: 50px;
	font-weight: 700;
	color: #095e00;
	display: block;
	margin: 0;
	line-height: 53px;
	font-family: var(--font);
	width: 45%;
} */
.banner h2 {
	font-size: 60px;
	font-weight: 700;
	/* color: #095e00; */
	display: block;
	margin: 0;
	line-height: 64px;
	font-family: var(--font);
	width: 50%;
	color: #000;
}
.banner p {
	font-size: 20px;
	color: #000;
	font-weight: 400;
	line-height: 1.5;
	margin: 20px 0;
	width: 40%;
	text-transform: capitalize;
}

.banner .btn_div {
    display: flex;
    gap: 10px;
}

.banner  .btn {
    background-color: var(--color-1);
    font-size: 16px;
    font-family: var(--font);
    font-weight: bold;
    height: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    color: #fff;
    flex: 1;
  
}

/* // ********************************************* Counters ******************************************* // */

.highlights_sec {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    background: #ffffff3b;
    border-top: 1px solid #484848;
    border-bottom: 1px solid #484848;
}

.highlights_sec .stats {
    flex-basis: 20%;
    text-align: center;
    display: grid;
    place-content: center;
    height: 100%;
    padding: 20px 0;
    border-right: 1px solid #484848;
}

.highlights_sec .stats h2 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}

.highlights_sec .stats h5 {
    margin: 0;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

/* // ********************************************* about ******************************************* // */

.about_section .abt_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    height: 600px;
    border-radius: 30px;
 overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0px 3px 11px -8px #000;
}
.about_section .abt_img img:hover {
    transform: scale(1.05);
    transition: all .3s;
}
.about_section .about_info {
    padding-right: 100px;
}
.about_section .about_info p {
    color: #000;
    line-height: 28px;
}
.about_section .about_info .title h1 {
	padding-left: 0;
	color: #000;
	display: block;
	font-weight: 500;
	font-size: 40px;
}
.mission_vission {
	background-color: var(--bgcolor2);
}
.mission_vission .nav-pills {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}
.mission_vission .nav-pills .nav-link {
	background: transparent;
	border: 2px solid var(--color-1);
	border-radius: 35px;
	color: #fff;
	padding: 10px 20px;
	min-width: 210px;
	font-size: 17px;
	transition: all .3s;
}
.mission_vission .nav-pills .nav-link:hover, 
.mission_vission .nav-pills .nav-link.active, 
.mission_vission .nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--color-1);
	font-weight: 600;
	transform: scale(1.08);
}
.mission_vission .title h4 {
	color: var(--color-1);
	font-family: var(--banner-font);
	font-size: 40px;
	font-weight: 600;
	text-transform: uppercase;
}
.mission_vission p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.mission_vission .abt_img {
	padding-left: 50px;
}
.mission_vission .abt_img img{
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: 0px 3px 11px -8px #000;
  width: 100%;
}
/* // ********************************************* Services ******************************************* // */
.services_sections {
    background-color: var(--bgcolor1);
    /* background-image: url(../images/shape1.png); */
    background-size: 60%;
    background-repeat: no-repeat;
}
.services_sections .left_heading {
	margin-right: 70px;
}
.services_sections h1 {
	font-size: 50px;
	font-weight: 600;
	color: #000;
	line-height: 55px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.services_sections p {
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 24px;
}
.services_sections h5.subheading {
	display: inline-block;
	border-radius: 35px;
	color: var(--color-2);
	font-size: 16px;
	text-transform: uppercase;
}
.services_sections .feature_item {
	border-radius: 30px;
	background: #fff;
	/* box-shadow: 0px 3px 11px -8px #000; */
	/* border: 1px solid var(--color-1); */
	text-align: center;
	padding: 15px;
}
.services_sections .feature_item .feature-icon {
	color: var(--color-1);
	font-size: 3rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1px !important;
}
.services_sections .feature_item h5 {
	font-weight: 600;
	font-size: 18px;
	color: var(--color-2);
}
/* ********************************************* products ******************************************* // */
.product_section .heading h1 {
	font-size: 50px;
	font-weight: 700;
	color: #000;
	line-height: 50px;
	text-transform: uppercase;
}
.product_section h5.subheading {
    display: inline-block;
    border-radius: 35px;
    color: var(--color-2);
    font-size: 16px;
    text-transform: uppercase;
}
.gtco-testimonials {
    position: relative;
    margin-top: 30px;
  }
.gtco-testimonials h2 {
	font-size: 25px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
}
.gtco-testimonials p {
	font-size: 15px;
	text-align: center;
	color: #eee;
	font-weight: 400;
	line-height: 17px;
}
.gtco-testimonials .products_item {
    background: #fff;
    /* box-shadow: 0 8px 30px -7px #adbecb; */
    margin: 10px 20px;
    border-radius: 4px;
    border: none;
    overflow: hidden;
    position: relative;
    transition: all .5s;
}
.gtco-testimonials .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* background-color: rgba(0, 0, 0, 0.38); */
	height: 100%;
	
	text-align: center;
	display: grid;
	align-content: end;
	background: linear-gradient(to bottom, rgba(54,136,251,0.05) 0%,rgba(0, 0, 0, 0.93) 100%);
  transition: all .5s;
}
.gtco-testimonials .products_item .txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all .5s;
    padding: 40px;
}
.gtco-testimonials .products_item:hover .txt{
   transform: translateY(-30%);
}
.gtco-testimonials .products_item:hover .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.558) 0%,rgba(0, 0, 0, 0.651) 100%);
  align-content: center;
  transition: all .5s;
}
.owl-nav {
	margin-top: 20px;
}
.gtco-testimonials .products_item img {
	height: 500px;
	object-fit: cover;
	object-position: center;
}
.gtco-testimonials .overlay .link {
	color: #fff;
	font-weight: 600;
	text-decoration: ;
	border-bottom: 2px solid;
	padding-rightb: ;
	display: inline-block;
	width: fit-content;
	margin: auto;
}
.owl-nav {
	display: flex !important;
	justify-content: center;
	gap: 10px;
	/* position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	padding: 0 20px; */
}
.owl-nav button {
	color: var(--color-2) !important;
	background: transparent !important;
	width: 35px;
	height: 35px;
	border-radius: 40px;
	border: 2px solid var(--color-2) !important;
	pointer-events: all;
	font-size: 26px !important;
	display: grid;
	place-content: center;
    transition: all .3s;
}
.owl-nav button:hover {
    background: var(--color-2) !important;
    color: #fff !important;
}
.gtco-testimonials .card h6.card-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.gtco-testimonials .card p {
    font-size: 16px;
    color: #000;
    padding-top: 0;
    margin: 0;
    line-height: 20px;
    display: none;
}
  .gtco-testimonials .active {
    opacity: 1;
    transition: all 0.3s;
  }
  .gtco-testimonials .center {
    opacity: 1;
    scale: 1.1;
}
 
  .gtco-testimonials .center h5 span {
    font-size: 20px;
  }
  /* .gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
  } */
  
  @media (max-width: 767px) {
    .gtco-testimonials {
      margin-top: 20px;
    }
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    outline: 0;
  }
  .owl-carousel button.owl-dot {
    outline: 0;
  }

/* ********************************************* index_abouts ******************************************* // */
.Technology_Innovation_section .technology_innvation_content h1 {
	font-family: var(--font);
	color: var(--color-1);
	font-size: 50px;
	font-weight: 700;
	line-height: 50px;
}
.Technology_Innovation_section .technology_innvation_content ul {
	padding-left: 0;
	border-top: 1px dashed #000;
	padding-top: 15px;
	margin-top: ;
}

/* ********************************************* Product categories ******************************************* // */
.product_category_sections .heading h1 {
	font-size: 50px;
	font-weight: 600;
	color: #000;
	line-height: 55px;
	text-transform: uppercase;
}
.product_category_sections h5.subheading {
	display: inline-block;
	border-radius: 35px;
	color: var(--color-2);
	font-size: 16px;
	text-transform: uppercase;
}
.product_category_sections  .nav-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.product_category_sections  .nav-pills .nav-link {
	background: transparent;
	border: 2px solid var(--color-1);
	border-radius: 35px;
	color: #000;
	padding: 10px 20px;
	min-width: 210px;
	font-size: 17px;
    transition: all .3s;
}
.product_category_sections .nav-pills .nav-link:hover,
.product_category_sections .nav-pills .nav-link.active, 
.product_category_sections .nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--color-1);
	font-weight: 600;
    transform: scale(1.08);
}
.product_category_sections #nav-tabContent {
	margin-top: 90px;
}
.product_category_sections .card {
	background: var(--bgcolor1);
	border: none;
	border-radius: 30px;
	margin-bottom: 70px;
	border: 2px solid var(--bgcolor1);
	transition: all .3s;
}
.product_category_sections .card:hover {
	cursor: pointer;
	border: 2px solid var(--color-1);
	background: #fff;
	box-shadow: 0px 21px 30px -24px #00000094;
}
.product_category_sections .card .card-body {
	color: #000;
	padding: 20px 30px;
	border-top: 2px solid var(--color-1);
	margin-top: 20px;
	min-height: 250px;
}
.product_category_sections .card .card-body .card-title {
	font-size: 25px;
	font-family: var(--font);
	font-weight: 700;
	color: var(--color-1);
    margin-bottom: 0;
}
.product_category_sections .card .card-body .brandName {
	margin-bottom: 10px;
	display: inline-block;
	font-size: 13px;
	border-bottom: 1px solid;
}
.product_category_sections .card .card-body .card-text {
	font-size: 15px;
	line-height: normal;
	font-family: var(--font);
	color: #000;
}
.product_category_sections .card .card-img-top {
	width: 100%;
	height: 260px;
	object-fit: contain;
	object-position: center;
	margin: auto;
	filter: drop-shadow(0px 9px 5px #0000009e);
	margin-top: -40px;
}
.table.table-bordered.table_style thead th {
	background: #a9d40c45;
	color: #7a9c00;
	font-family: var(--banner-font);
	text-transform: uppercase;
	font-size: 15px;
	border: 1px solid #a9d40c;
}
.table.table-bordered.table_style tbody td {
	color: #000;
	font-family: var(--font);
	font-size: 15px;
	border: 1px solid #a9d40c;
}
.table_style tr:hover {background-color: #a34e2930;}
.table_style tr:hover  td {color: #793b20  !important;font-weight: 600}
.table_style tr:hover  td a{background-color:var(--color-2) !important;color: #fff !important;}


/* *********************************************** Footer *********************************************** */
.footer-section {
    background-color: #333;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.footer-top {
  padding-top: 5em;
  padding-bottom: 50px;
}
.footer-top p, .company-footer-contact-list li {
    color: #fff;
    margin: 0;
}
.company-footer-contact-list {
  margin-top: 10px;
}
.courses-link-list li {
    list-style: none;
    line-height: 33px;
}
.company-footer-contact-list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.company-footer-contact-list li + li {
  margin-top: 5px;
}
.company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 20px;
  display: inline-block;
}

.footer-top .site-logo {
  margin-bottom: 25px;
  display: block;
  max-width: 250px;
}
.footer-top .widget-title {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.courses-link-list {
    padding: 0;
    margin: 0;
    line-height: 40px;
}
.courses-link-list li a {
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    text-decoration: none;
    font-size: 15px;
    font-family: var(--font);
}
.courses-link-list li a:hover {
  color: var(--color-1);
}
.courses-link-list li i {
  margin-right: 5px;
}
.footer-top .small-post-title a {
  color: #ffffff;
  font-weight: 400;
}
.small-post-item .post-date {
    color: #fff;
    margin-bottom: 3px;
    font-family: var(--banner-font);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    border-bottom: 2px solid var(--color-1);
    padding-bottom: 2px;
}
.small-post-list li + li {
  margin-top: 30px;
}
.news-letter-form {
  margin-top: 15px;
  position: relative;
}
.news-letter-form input {
    width: 100%;
    padding: 10px 25px;
    border: 2px solid var(--color-1);
    background: transparent;
    color: #000;
    border-radius: 35px;
}
ul.terms-privacy.d-flex.justify-content-sm-end.justify-content-center {
    margin: 0;
}
.news-letter-form input[type="submit"] {
  width: auto;
  border: none;
  background-color:  var(--color-1);
  color: #ffffff;
  position: absolute;
  right: 0;
  top: 2px;
}
.footer-bottom {
	padding: 15px 0;
	background: #212121;
}
.copy-right-text {
    color: #666;
}
.copy-right-text a {
  color: #666;
  text-decoration: none;
}
.terms-privacy li + li {
  margin-left: 30px;
}
.terms-privacy li a {
    color: #666;
    position: relative;
}
.terms-privacy li a:after {
  position: absolute;
  content: "-";
  color: #666;
  display: inline-block;
  top: 0;
  right: -18px;
}
.terms-privacy li + li a:after {
  display: none;
}

.small-post-list {
    padding: 0;
}
.social-icons-btn {
	display: flex;
	gap: 10px;
	justify-content: right;
}
.social-icons-btn .icons {
	min-width: 27px;
	min-height: 27px;
	background: var(--color-2);
	border-radius: 5px;
	text-align: center;
	line-height: 45px;
	font-size: 12px;
	color: #fff;
	display: grid;
	place-content: center;
    transition: all .3s;
}
.social-icons-btn .icons:hover{
    background: var(--color-1);
}

/* ************************************ contact page ***************************************** */
.contact_form_div {
	margin-left: 50px;
}
.contact_form_div .contact_form {
	background: #fff;
	padding: 50px;
	border-radius: 20px;
	border: 2px solid var(--color-1);
}
.contact_form_div .contact_form .form-group{
    position: relative;
}
.contact_form_div .contact_form .form-group .form-control {
	background: transparent;
	border: 1px solid var(--color-1);
	height: 45px;
	color: #000;
	border-radius: 5px;
	box-shadow: none !important;
	outline: none;
}
.contact_form_div .contact_form .form-group textarea.form-control{
    min-height: 100px;
}
.contact_form_div .contact_form .form-group label {
	padding: 0 5px;
	position: absolute;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	left: 20px;
	top: -12px;
    color: #000;
    font-family: var(--font);
}
.contact_form_div .contact_form h2 {
	font-size: 40px;
	font-weight: 600;
	color: var(--color-2);
	line-height: 35px;
	text-transform: uppercase;
}
.contact_info h3 {
	font-size: 40px;
	font-weight: 600;
	color: #000;
	line-height: 35px;
	text-transform: uppercase;
	
}
.contact_info .contact_info_list {
	padding: 0;
}
.contact_info .contact_info_list li {
	display: flex;
	column-gap: 20px;
	margin-bottom: 20px;
	align-items: center;
}
.contact_info .contact_info_list li p {
	margin: 0;
	font-size: 18px;
	color: #000;
	line-height: 20px;
	font-family: var(--banner-font);
	font-weight: 500;
}
.contact_info .contact_info_list li p span {
	font-weight: 600;
	color: var(--color-2);
	display: block;
	font-size: 13px;
	text-transform: uppercase;
}
.contact_info .contact_info_list li .icon {
	min-width: 50px;
	min-height: 50px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	background: var(--color-1);
	font-size: 25px;
	color: #fff;
}
/* ********************************************* HERBICIDE ******************************************* // */
/* .herbicides_section {
    background-color: var(--bgcolor1);
} */
.herbicides_section .nav-pills {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}
.herbicides_section .nav-pills .nav-link {
	background: #fff;
	border: 2px solid var(--color-1);
	border-radius: 4px;
	color: #000;
	padding: 5px 10px;
	font-size: 15px;
	transition: all .3s;
	min-width: 100px;
	text-transform: uppercase;
	font-family: var(--banner-font);
	font-weight: 600;
}
.herbicides_section .nav-pills .nav-link:hover, 
.herbicides_section .nav-pills .nav-link.active, 
.herbicides_section .nav-pills .show > .nav-link {
	color: #fff;
	background-color: var(--color-1);
	font-weight: 600;
	transform: scale(1.08);
}
.herbicides_section .herbicides_img {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	border: 1px solid var(--color-1);
	box-shadow: 0px 3px 11px -8px #000;
	position: sticky;
	top: 150px;
	left: 0;
  /* height: 500px; */
}
.herbicides_section .herbicides_img img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;    
}
.herbicides_section .product_txt {
    padding-left: 70px;
}
.herbicides_section  h1 {
	font-size: 50px;
	font-weight: 600;
	color: #000;
	line-height: 55px;
	text-transform: uppercase;
}
.herbicides_section .product_txt h4 {
	font-size: 15px;
	font-family: var(--font);
	color: var(--color-2);
	font-weight: 700;
	border-bottom: 1px solid;
	display: inline-block;
	margin-bottom: 4px;
}
.herbicides_section .product_txt .txt_box ul {
	padding: 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}
.herbicides_section .product_txt .txt_box ul li {
	background: #a9d40c33;
	color: #5b7400;
	display: inline-block;
	padding: 3px 20px;
	font-weight: 600;
	border-radius: 4px;
	font-style: italic;
	font-size: 15px;
	text-transform: capitalize;
}
/* ******************************************************* career ****************************** */
.career_login {
	height: 100vh;
	background-image: url(../images/comingsoon_bg.jpg);
	background-size: cover;
	background-position: center;
  }  
	.login_form {
	  margin-left: 70px;
	  padding: 40px;
	  background-color: #fff;
	  border-radius: 20px;
	box-shadow: 0px 0px 25px -12px #000;
  }
  .login_form h2 {
	  font-size: 60px;
	  font-weight: 700;
	  display: block;
	  margin: 0;
	  line-height: 64px;
	  font-family: var(--font);
	color: var(--color-1);;
  }
  .career_login .login_form .form-floating .form-control, .career_login .login_form .form-group .form-control {
	  border: 1px solid #666;
	  background: transparent;
	  box-shadow: none !important;
	  font-size: 19px;
	  font-family: var(--paragraph-font);
	  color: #000;
	  font-weight: 600;
  }
  .career_login .login_form .form-floating label, .career_login .login_form .form-group label {
	  font-size: 14px;
	  font-weight: 600;
	  text-transform: uppercase;
	  font-family: var(--banner-font);
	  color: #000;
	  transition: all 0.2s ease-in-out;
  }
  .career_login .login_form .form-floating > .form-control:focus ~ label, .career_login .login_form .form-floating > .form-control:not(:placeholder-shown) ~ label {
	  top: -4px;
	  color: #fff !important;
	  background: var(--color-2);
	  opacity: 1;
	  padding: 2px 7px;
	  height: auto;
	  line-height: 20px;
	  border-radius: 4px;
	  left: 6px;
  }
  
  
  .btn.career_login_btn {
	  background-color: var(--color-2);
	  color: #fff !important;
	  font-weight: 600;
	  font-family: var(--paragraph-font);
	  margin-left: 10px;
	   transition: all 0.2s ease-in-out;
  }
  .btn.career_login_btn:hover {
	  background-color: var(--color-1);
	  color: #fff !important;
  }
  .career_login .login_form .submit{
	  background-color: var(--color-1);
	  color: #fff !important;
	  font-weight: 600;
	  font-family: var(--paragraph-font);
	  width: 150px;
	  height: 50px;
	  border-radius: 50px;
	  font-size: 20px;
	  margin-left: auto;
	  display: block;
	   transition: all 0.2s ease-in-out;
  }
  /* ************************************* contact page ********************************************** */
  .contact_txt {
	padding-left: 50px;
}
.contact_txt ul {
	padding: 0;
}
.contact_txt ul li {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 0;
}
.contact_txt ul li .icon {
	width: 50px;
	height: 50px;
	font-size: 23px;
	border: 2px solid var(--color-1);
	max-width: 50px;
	min-width: 50px;
	min-height: 50px;
	max-height: 50px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	color: var(--color-1);
}
.contact_txt ul li .info p {
	margin: 0;
	line-height: 19px;
}