@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #98c93c;
  --secondary-color: #0cab6a;
  --dark-color: #0b1460;
  --white-color: #ffffff;
  --text-color: rgb(31, 31, 31);
  --border-radius: 4px;
  --transition: ease-in-out 0.3s;
  --border-color: #dadbdf;
  --bg-color:#F0F4FF;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: 600;
}

a {
  color: var(--primary-color);
  display: block;
  text-decoration: none !important;
  transition: ease-in-out 0.3s;
}
a:hover {
  color: var(--secondary-color);
}
p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.mt {
  margin-top: 80px;
}

.mb {
  margin-bottom: 80px;
}

.pt {
  padding-top: 80px;
}

.pb {
  padding-bottom: 80px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.container {
  max-width: 1140px;
}

/* Top Header  */
.top-header {
  padding: 5px 0;
  background-image: linear-gradient(to left, #96c63b 0%, #0cab6a 100%);
}

.th-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.th-left ul {
  display: flex;
}

.th-left ul li a {
  display: block;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.th-left ul li a:hover {
  color: #ff2121;
}
.th-left ul li a i {
  margin-right: 5px;
  font-size: 20px;
  vertical-align: middle;
}

.th-left ul li + li a {
  margin-left: 30px;
}

.social-media ul {
  display: flex;
}

.social-media ul li a {
  display: block;
  color: var(--white-color);
  font-size: 18px;
  transition: var(--transition);
}
.social-media ul li a:hover {
  color: #ff2121;
}
.social-media ul li + li a {
  margin-left: 15px;
}
/* Top Header End  */




/* Header  */
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
}

.header-menu ul {
  display: flex;
}

.header-menu ul li a {
  display: block;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}

.header-menu ul li a:hover {
  color: var(--secondary-color);
}

.header-menu ul li + li a {
  margin-left: 45px;
}

.main-header {
  padding: 15px 0;
  box-shadow: 0px 7px 40px rgb(0 0 0 / 15%);
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--white-color);
}
/* Header End  */





/* Mobile Menu */

#mySidenav {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1020;
  background: var(--white-color);
  width: 250px;
  height: 100%;
  overflow-x: hidden;
}
.sidenav {
  margin-right: -250px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  display: none;
}
.sidenav.active {
  margin-right: 0;
  box-shadow: -5px 0px 15px 0 rgb(0 0 0 / 15%);
  opacity: 1;
  visibility: visible;
}
#menu1 li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  border-bottom: 1px solid #f1f1f1;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}
#menu1 li a i {
  font-size: 30px;
}
#menu1 li a:hover {
  color: var(--secondary-color);
}
.mobile-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--white-color);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

#close-btn {
  background: var(--secondary-color);
  color: var(--white-color);
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 27px;
  font-size: 20px;
  border-radius: 100%;
}

#mySidenav::-webkit-scrollbar {
  width: 7px;
}

#mySidenav::-webkit-scrollbar-track {
  background: var(--white-color);
  display: none;
}

#mySidenav::-webkit-scrollbar-thumb {
  background: rgb(208 208 208);
  border-radius: 10px;
}
.toggle-btn {
  cursor: pointer;
  display: none;
}
.toggle-btn span {
  display: block;
  height: 3px;
  background: var(--secondary-color);
  margin: 7px 0;
  width: 32px;
}
.toggle-btn span:nth-child(2) {
  width: 20px;
  margin-left: auto;
}
.metismenu .has-arrow:after {
  width: 0.3em;
  height: 0.3em;
}
.sidenav ul ul {
  background: #f7f7f7;
}

.mobile_search {
  display: none;
}
.search-mobile {
  display: none;
}
.sidenav .th-left ul{
  display: block;
}
.sidenav .th-left ul li a{
  color: var(--text-color);
}
.sidenav .th-left {
  padding: 0 20px;
}
.sidenav .th-left ul li + li a {
  margin-left: 0px;
}
.sidenav .th-left ul li{
  margin-top: 20px;
}
.sidenav .th-left ul li a:hover{
  color: var(--secondary-color);
}
/* Mobile Menu End */





/* Slider  */
.slider {
  background-image: linear-gradient(to left, #93c43c 0%, #0daa68 100%);
}
.slider-wrap {
  height: 550px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-img img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.slider-caption {
  width: 50%;
  padding-right: 90px;
}
#carouselExampleFade{
  width: 50%;
}
.carousel-control-next, .carousel-control-prev{
  width: 5%;
  opacity: 1;
}
.slider-caption h1 {
  color: var(--white-color);
  line-height: 1.3;
}

.slider-caption p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--white-color);
  margin-top: 30px;
  margin-bottom: 0;
}

.main-btn {
  display: flex;
  margin-top: 35px;
}

.main-btn a {
  display: block;
  background: #ff2121;
  padding: 12px 20px;
  color: var(--white-color);
  font-weight: 500;
  border-radius: var(--border-radius);
  border: 2px solid #ff2121;
  transition: var(--transition);
}

.main-btn a + a {
  margin-left: 15px;
}
.main-btn a:nth-child(2) {
  background: transparent;
  border: 2px solid var(--white-color);
}
.main-btn a:first-child:hover {
  background: #bf401e;
  border-color: #bf401e;
}
.main-btn a:hover {
  background: #ff2121;
  border-color: #ff2121;
}

/* Slider End  */





/* About Section  */
.about-section-media {
  padding-right: 60px;
}
.about-section-content span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, #8fc13b 0%, #0caa6a 100%);
  margin-bottom: 10px;
}

.about-section-content h2 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-section-content p {
  font-size: 15px;
  line-height: 1.7;
}
.about-section .row {
  align-items: center;
}
/* About Section End  */





/* Company Group  */
.company-group {
  background-color: var(--bg-color);
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.main-title {
  text-align: center;
  margin-bottom: 40px;
}

.main-title h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0;
}

.company-group-wrap {
  background: var(--white-color);
  padding: 30px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0px 3px 40px rgb(0 0 0 / 8%);
  margin-bottom:25px;
  transition: var(--transition);
}
.company-group-wrap:hover{
  transform: translateY(-10px);
}

.company-group-media img {
  width: auto;
  height: 110px;
}

.company-group-content h3 {
  font-size: 20px;
  margin-bottom:0;
}
.company-group-content h3 a {
  display: block;
  color: var(--text-color);
  transition: var(--transition);
}
.company-group-content h3 a:hover{
  color: var(--secondary-color);
}
.company-group-content {
  margin-top: 30px;
}

/* Company Group End  */





/* Footer  */
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff47;
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.footer-logo img {
  height: 65px;
  width: auto;
}

.copy-right p {
  margin-bottom: 0;
  font-size: 12px;
  color: var(--white-color);
}

.copy-right p a {
  display: inline-block;
  font-weight: 500;
  color: #ff2121;
  transition: var(--transition);
}

.footer {
  padding-top:0px;
  background-image: linear-gradient(to left, #93c43c 0%, #0daa68 100%);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  width: 50%;
  padding-right: 60px;
}

.subscription-form {
  width: 50%;
  position: relative;
}

.footer-contact h3 {
  font-size: 35px;
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-contact p {
  margin-bottom: 0;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-color);
}

.subscription-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0px 25px;
  background: #ff2121;
  color: var(--white-color);
  font-weight: 500;
  border: none;
  border-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.subscription-form .form-control {
  border: none;
  height: 60px;
  border-radius: 100px;
  padding: 10px 30px;
  font-size: 15px;
  padding-right: 150px;
}

.subscription-form .form-control::placeholder {
  color: #cdcdcd;
}
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-middle-contact ul {
  display: flex;
}

.footer-middle-contact ul li span {
  display: block;
  font-weight: 500;
  color: #ededed;
}

.footer-middle-contact ul li h3 {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 10px;
}

.footer-middle-contact ul li {
  margin-right: 70px;
}

.footer-middle-contact ul li h3 i {
  margin-right: 5px;
  font-size: 25px;
  vertical-align: middle;
}

.footer-social-media span {
  display: block;
  font-weight: 600;
  color: #ededed;
}

.footer-social-media ul {
  display: flex;
  margin-top:10px;
}

.footer-social-media ul li a {
  display: block;
  height: 36px;
  width: 36px;
  line-height: 38px;
  text-align: center;
  background: var(--white-color);
  border-radius: 100%;
  font-size: 18px;
  color: var(--secondary-color);
  transition: var(--transition);
}
.footer-social-media ul li+li a{
  margin-left: 10px;
}

.footer-social-media ul li a:hover {
  background: #ff2121;
  color: var(--white-color);
}
.footer-middle {
  margin-top: 40px;
}
/* Footer End  */




/* Scroll Top */
.go-top {
  position: fixed;
  cursor: pointer;
  transition: var(--transition);
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1021;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 100px;
}
.pulse {
  z-index: 4;
  text-align: center;
  font-size: 27px;
  height: 30px;
  width: 30px;
  line-height: 39px;
  background: #ff2121;
  color: var(--white-color);
  font-size: 14px;
  position: relative;
  z-index: 0;
  border-radius: 100%;
}
.pulse:after {
  animation: ripple-white3 0.8s linear infinite;
  background: rgb(255 33 33 / 30%);
  content: "";
  height: 40px;
  left: -5px;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  line-height: 40px;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  z-index: -1;
  border-radius: 100%;
}
.pulse i {
  font-size: 22px;
}
@keyframes ripple-white3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  40% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
  }
}
/* Scroll Top End */
.footer-link .index:hover{
  color: black!important;
}

.enquiry_select{
  width: 100%;
}

 .submitbtn{
  border: 1px solid #d3cccc;
  padding: 10px 30px;
  border-radius: 4px;
}

.submitbtn:hover{
  border: 1px solid #c2bdbd;
  background-color: #b9b6b6;
  color: white;
  opacity: .8;

}
.submitbtnwrapper{
  display: flex;
  justify-content: center;
}

.enquiry {
  padding-bottom: 80px;
}


.pb{
  margin-bottom: 60px;
}
.wrapper{
  overflow-x: hidden;
}

.select2-container{
  width: 100%!important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
  border: 1px solid var(--primary-color) !important;
}
.modal{
  z-index: 1051;
}
