@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #030f41;
  --theme-color-2: #ffa400;
  --theme-color-3: #2a3771;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.theme_btn {
  background: var(--theme-color);
  padding: 20px 40px;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
  position: relative;
}

.theme_btn:after {
  content: "";
  bottom: -3px;
  left: 0;
  background: var(--theme-color-2);
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 0 0 5px 5px;
  transition: 0.2s all;
}

.theme_btn:hover {
  background: var(--theme-color-2);
  color: #fff;
}

.theme_btn:hover:after {
  background: var(--theme-color);
}

.theme_btn_2 {
  background: var(--theme-color-2);
  padding: 20px 40px;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
  position: relative;
}

.theme_btn_2:after {
  content: "";
  bottom: -3px;
  left: 0;
  background: var(--theme-color);
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 0 0 5px 5px;
  transition: 0.2s all;
}

.theme_btn_2:hover {
  background: var(--theme-color);
  color: #fff;
}

.theme_btn_2:hover:after {
  background: var(--theme-color-2);
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
  font-family: "Rubik", sans-serif;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #000;
}

.autoRotate {
  animation: autoShowRotate;
  animation-timeline: view();
}

@keyframes autoShowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.autoMoveY {
  animation: autoMover 3.5s linear infinite;
}

@keyframes autoMoverY {
  50% {
    transform: translateY(-20px);
  }
}

.autoMoveX {
  animation: autoMoverX 3.5s linear infinite;
}

@keyframes autoMoverX {
  50% {
    transform: translateX(-20px);
  }
}

/* Header CSS Start */

.serv-a {
  position: relative;
  cursor: pointer;
}

.serv-a a {
  padding-bottom: 28px;
}

li.serv-a a i {
  padding-left: 11px;
}

.nav-dropdown {
  position: absolute;
  top: 50px;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-dropdown ul {
  display: block;
  background-color: var(--theme-color);
}

.serv-a:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  clip: inherit;
  -webkit-transform: scaleY(1);
  -khtml-transform: scaleY(1);
  transform: scaleY(1);
}

.nav-dropdown ul li {
  transition: 0.2s all;
}

.nav-dropdown ul li a {
  padding: 10px 20px;
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-dropdown ul li:hover {
  background-color: #000;
}

.nav-dropdown ul li:hover a {
  color: var(--theme-color);
}

.offcanvas,
.offcanvas-btn {
  display: none;
}

a.btn.offcanvas-btn {
  display: none;
}

.closebtn {
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
}

.closebtn i {
  color: #000;
  font-size: 30px;
}

.top_bar {
  background: var(--theme-color);
  padding: 20px 0;
}

.top_social ul {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
  list-style: none;
}

.top_social ul li a i {
  width: 16px;
  height: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
}

.top_social ul li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a3771;
  border-radius: 10% 10% 0 0;
  position: relative;
}

.top_social ul li a::after {
  content: "";
  bottom: -3px;
  background: var(--theme-color-2);
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 0 0 10px 10px;
}

.top_social ul li a:hover {
  background: var(--theme-color-2);
  transform: scale(0.9);
}

.top_social ul li a:hover:after {
  background: #2a3771;
}

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

.logo_part {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
}

.logo img {
  width: 100%;
}

header {
  padding: 10px 0;
}

.logo {
  width: 25.34%;
}

.navigation ul li a {
  text-transform: uppercase;
  font-weight: 600;
}

.navigation ul li a:hover {
  color: var(--theme-color-2);
}

.nav_btn {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 12px;
  padding: 18px 32px;
  background: var(--theme-color-3);
}

.nav_btn i {
  margin-right: 20px;
}

.nav_btn a {
  color: #fff;
}

.nav_btn:hover:after {
  background: var(--theme-color-3);
}

/* Header CSS End */

.banner_imgs img {
  width: 100%;
  height: 650px;
  width: 100%;
  object-fit: cover;
}

section.banner_section {
  position: relative;
}

.banner_wrap {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  padding: 50px;
  width: 63%;
  text-align: center;
  z-index: 1;
  border-radius: 20px;
}

.banner_wrap h1 {
  font-size: 60px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.banner_wrap h1 span {
  color: var(--theme-color-2);
}

.banner_wrap::before {
  content: "";
  width: 100%;
  background-color: #141414;
  opacity: 0.7;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
  z-index: -1;
  border-radius: 20px;
}

.banner_wrap p {
  width: 80%;
  margin: 0 auto 15px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}

.banner_imgs {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner_imgs img.animate {
  animation: zoomCycle 4s ease-in-out forwards;
}

@keyframes zoomCycle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

section.offer_section {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #e9eaed;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 75px 0 70px 18px;
}

.offer_head {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.offer_head h4 {
  width: 27%;
  font-size: 32px;
}

.offer_head_inner {
  width: 73%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer_head a {
  padding: 18px 32px;
  font-size: 12px;
}

.offer_boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.offer_box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.offer_wrap {
  background-color: #dddddd;
  text-align: center;
  padding: 40px 30px 40px 30px;
  box-shadow: 0px 3px 30px 0px
    rgba(23.999999999999996, 22.000000000000004, 43, 0.14);
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: var(--theme-color);
  border-radius: 10px 10px 10px 10px;
  z-index: 9;
  position: relative;
  width: 90%;
  margin: -50px auto 0;
}

.offer_wrap img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(51%) saturate(3915%)
    hue-rotate(220deg) brightness(80%) contrast(104%);
  margin: 5px 0px 20px 0px;
  position: relative;
  z-index: 1;
}

.offer_wrap h5 {
  font-size: 22px;
  color: #141414;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.offer_wrap a {
  font-size: 13px;
  color: var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  position: relative;
  z-index: 1;
}

.offer_head_inner p {
  width: 70%;
}

.offer_wrap::after {
  content: "";
  width: 100%;
  height: 0;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.2s all;
  z-index: 0;
  opacity: 0;
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: var(--theme-color-2);
  border-radius: 10px 10px 10px 10px;
}

.offer_wrap:hover:after {
  height: 103%;
  opacity: 1;
}

.offer_wrap:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7463%)
    hue-rotate(133deg) brightness(110%) contrast(101%);
}

.offer_wrap:hover h5 {
  color: #fff;
}

.offer_wrap a:hover {
  color: #fff;
}

.advertisement_sec {
  padding: 14px 8px 8px;
  background-color: #e7e7e7;
}

section.offer_section .col-md-3 {
  padding-right: 0;
}

.advertisement_head h2 {
  font-size: 31px;
  text-transform: uppercase;
  color: #2a3771;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.advertisement_head h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--theme-color-2);
  left: 0;
  bottom: 0;
}

.advertisement_slide {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 2px 0 0 rgba(212, 222, 217, 0);
  color: #797f89;
  display: inline-flex !important;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  position: relative;
}

.advertisement_slide_img img {
  width: 94%;
  height: 162px;
  object-fit: cover;
  border-radius: 8px;
}

.advertisement_slide_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #646464;
}

.advertisement_slide_icon span {
  font-size: 13px;
}

.advertisement_slide_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advertisement-heart {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 28px;
  transition: 0.2s all;
  opacity: 0;
}

.advertisement-heart a {
  background: var(--theme-color);
  padding: 5px 7px;
}

.advertisement-heart a i {
  color: var(--theme-color-2);
}

.advertisement_slide:hover .advertisement-heart {
  opacity: 1;
  bottom: 29px;
}

section.about_section {
  padding: 100px 0px 100px 0px;
}

.about_left h4 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about_left p {
  color: #141414;
  width: 80%;
  margin-bottom: 30px;
}

.about_inner_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.about_inner_wrap img {
  width: 39%;
  height: 195px;
  object-fit: cover;
  border-radius: 10px;
}

.about_inner_wrap ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about_inner_wrap ul li {
  color: #000;
  position: relative;
  padding-left: 40px;
}

.about_inner_wrap ul li::before {
    content: "";
    background-image: url(../images/check.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-right: 20px;
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
}

.about_left a {
  padding: 18px 32px;
  font-size: 12px;
}

section.about_section {
  padding: 100px 0px 100px 0px;
}

.about_right_img img {
  width: 75%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px 10px 10px 10px;
  box-shadow: -100px 36px 0px 2px #ffa400;
  margin-left: auto;
  display: block;
}

.about_logo img {
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-color: var(--theme-color-2);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 20px 15px 20px;
  background: var(--theme-color);
  width: 44%;
  border-radius: 10px;
  margin-left: auto;
  display: block;
  margin-right: 100px;
  position: relative;
  top: -40px;
}

.process_section {
  position: relative;
  padding: 100px 0px 100px 0px;
  background: linear-gradient(90deg, #030f41 28%, #f1f1f1 25%);
}

.process_section .row {
  position: relative;
}

.process_left img {
  width: 80%;
  height: 540px;
  object-fit: cover;
  border-radius: 10px;
}

.process_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(../images/process_bg.png);
  background-position: center right;
  opacity: 0.1;
}

.process_right h4 {
  margin-bottom: 20px;
  font-size: 32px;
  width: 80%;
  color: #141414;
}

.process_box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.process_icon {
  width: 70px;
  height: 70px;
  background: var(--theme-color-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
}

.process_icon i {
    font-size: 27px;
    margin: 26%;
    color: var(--theme-color);
}

.process_icon:after {
  content: "";
  bottom: -3px;
  left: 0;
  background: var(--theme-color);
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 0 0 5px 5px;
  transition: 0.2s all;
}

.process_box h5 {
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: #141414;
  width: 75%;
}

.process_icon:hover {
  background: var(--theme-color);
}

.process_icon:hover:after {
  background: var(--theme-color-2);
}

.simple_section {
  padding: 100px 0px 100px 0px;
}

.about_left h2 {
  margin-bottom: 20px;
  color: #141414;
}

.simple_section .about_left .theme_btn {
  margin: 20px 0 0 0;
}

.simple_right img {
  width: 80%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px 10px 10px 10px;
  box-shadow: -100px 36px 0px 2px #ffa400;
  display: block;
  margin-left: auto;
}

.simple_right_cow img {
  box-shadow: none;
  width: 56%;
  border-style: solid;
  border-width: 15px 15px 0px 0px;
  border-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  height: auto;
  margin-right: auto;
  margin-left: unset;
}

.simple_right_cow {
  position: relative;
  top: -100px;
}

.form_sec {
  box-shadow: 0px 3px 30px 0px
    rgba(17.999999999999996, 28.00000000000005, 81.99999999999999, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 50px;
  background: #fff;
  width: 90%;
  margin: 0 auto 0;
  border-radius: 20px;
}

.contact_section {
    margin-bottom: -40px;
    position: relative;
}

.contact_inner_section {
    margin-bottom: 0;
}

.contact_left h2 {
  color: #141414;
  margin-bottom: 20px;
}

.input_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.contact_left input,
.contact_left textarea {
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  background-color: #e9eaed;
  border: 1px solid #e9eaed;
  border-radius: 5px 5px 5px 5px;
}

.contact_left textarea {
  height: 108px;
}

.contact_left button {
  border: 0;
  padding: 18px 32px;
  width: 100%;
  transition: 0.2s all;
}

.contact_right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../images/contact_right.jpg);
  background-position: 70% 0px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px 16px 0px 16px;
  border-radius: 10px;
  position: relative;
}

.contact_flex {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
}

.contact_flex .process_icon {
  width: 60px;
  height: 65px;
}

.contact_flex:hover {
  color: var(--theme-color-2);
}

.contact_right h5 {
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.contact_right h6 {
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.contact_right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.7);
  z-index: 0;
  border-radius: 10px;
}

footer {
  padding: 100px 10px 20px 10px;
  background: var(--theme-color);
}

.col1 img {
  width: 75%;
}

.col2 h4 {
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}

.col2 h4::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 61%;
  height: 2px;
  background: var(--theme-color-2);
  left: 0;
  border-radius: 10px;
}

.col2 ul {
  list-style: none;
}

.col2 ul li a {
  color: #fff;
}

.col2 ul li {
  margin-bottom: 10px;
}

.col2 ul li a:hover {
  color: var(--theme-color-2);
}

.col2 h6 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.col2 form label {
  color: #fff !important;
  font-size: 17px;
  display: block;
  margin-bottom: 5px;
}

.col2 form input {
  padding: 0.7em;
  display: block;
  background-color: #f4f4f4;
  border: 1px solid #fff;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 7px;
}

.col2 form button {
  padding: 11px;
  background: var(--theme-color-2);
  color: #fff;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
}

.col2 span {
  font-size: 12px;
  color: #ffffff;
  font-style: italic;
  margin: 40px 0 0 0;
  display: block;
}

.copyright_wrap {
  border-top: 1px solid #ffffff;
  margin-top: 80px;
  margin-bottom: 0px;
  padding: 20px 0px 0px 0px;
}

.copyright_wrap p {
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}

.table_section {
  border-top: 1px solid;
}

.table_section table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
  font-family: Arial, sans-serif;
  margin: 20px 0;
}

.table_section table thead tr th,
table tbody tr td {
  border: 2px solid #000;
  padding: 12px 15px;
  text-align: left;
  background-color: #f4f4f4;
  color: #848484;
  font-size: 15px;
}

.table_section table tbody tr.even td {
  background-color: #fff;
}

.table_section table tbody tr td a {
  color: var(--theme-color-2);
  text-decoration: underline;
}

.table_buy_head label {
  font-family: "Heebo", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  line-height: 2.6em;
  letter-spacing: 0px;
  color: #141414;
}

label.table_buy_select select {
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: transparent;
  display: block;
  padding: 4px;
}

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

label.table_buy_input input {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.5em;
  letter-spacing: 0;
  color: #141414;
  border-style: solid;
  border: 1px solid #e9eaed;
  border-radius: 5px 5px 5px 5px;
  padding: 5px;
  background-color: transparent;
  margin-left: 3px;
  width: 100%;
}

label.table_buy_input {
  text-align: right;
}

h6.dataTables_info {
  color: #848484;
  font-weight: 400;
}

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

.table_buy_pagination a {
  padding: 0.5em 1em;
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.table_buy_pagination span a {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    to bottom,
    rgba(230, 230, 230, 0.1) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.login_form_wrap {
  background-color: #fff;
  box-shadow: 0 0 20px #f0f0f0;
  max-width: 100%;
  padding: 20px;
  margin: 20px;
}

.input-wrap {
  margin-bottom: 20px;
}

.input-wrap span {
  color: #848484;
  font-size: 13px;
}

.input-wrap label {
    color: #111;
    display: block;
    margin-bottom: 12px;
    text-align: left;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
    text-align: left !important;
}
.input-wrap label span {
  color: red;
}

.input-wrap input {
  border: 1px solid #e9eaed;
  border-radius: 5px 5px 5px 5px;
  background-color: transparent;
  padding: 8px 10px;
  width: 100%;
}

.button-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.button-wrap button {
  border: 0;
  padding: 12px 32px;
  transition: 0.2s all;
  width: auto;
}

.button-wrap .input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.button-wrap .input-wrap input {
  width: auto;
}

.button-wrap .input-wrap label {
  margin: 0;
}

.input-wrap a {
  text-decoration: underline;
  color: var(--theme-color);
  font-weight: 500;
}

.input-wrap p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner_banner_section .banner_imgs img {
  height: 450px;
}

.inner_banner_section .banner_wrap h1 {
  margin: 0;
}

.contact_inner_section {
  padding: 80px 0;
}

.privacy-wrap {
  text-align: justify;
}

.privacy-wrap h2 {
  margin-bottom: 30px;
  font-size: 50px;
  font-style: italic;
  color: var(--theme-color);
}

.privacy-wrap p {
  line-height: 28px;
  text-align-last: left;
  margin-bottom: 20px;
}

.privacy-wrap h4 {
  font-size: 23px;
  letter-spacing: 0.7px;
  margin: 20px 0;
}

.privacy-wrap ul {
  padding-left: 30px;
}

.privacy-wrap ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 25px;
  list-style: none;
  position: relative;
}

.privacy-wrap ul li::before {
  content: "\f560";
  font-family: "FontAwesome";
  color: var(--theme-color-2);
  position: absolute;
  left: -3%;
}

.privacy-wrap a {
  color: var(--theme-color-2);
}

section#auth {
    padding: 5%;
}

/*======================================
   Login & Register & My Account CSS
========================================*/
.alert-success {
    color: #ffffff;
    background-color: #00b894;
    border-color: #00b894;
}

.alert-danger {
    color: #FFF;
    background-color: #ff4949;
    border-color: #ff4949;
}

.section{
	padding-top: 80px;
	padding-bottom: 50px;
}

.section-heading{
	text-align: center;
	font-weight: 600;
	margin-bottom: 60px;
	color: var(--primary-color);
	position: relative;
	line-height: 24px;
}

.section-heading::after{
	content: '';
    width: 60px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

#auth{
	padding: 60px 0px;
}

.login_register{
	background: #ffffff;
    padding: 50px;
    box-shadow: 1px 3px 10px #d8d8d8;
}

.login_register .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login_register .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.login_register .btn-login{
	display: block;
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
	transition: all 0.3s;
	width: 100%;
	margin-top: 30px;
}
.login_register .btn-login:hover{
    background: var(--primary-color);
    color: #FFF;
}

.login_register .right_link{
	color: var(--primary-color);
	margin-top: 15px;
	transition: all 0.3s;
	display: inline-block;
}

.login_register .right_link:hover{
	text-decoration: underline;
}

.create-account-link{
	color: var(--primary-color);
	display: inline-block;
	margin-top: 15px;
	transition: all 0.3s;
}

.create-account-link:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #e9e9e9;
}

.customer_dashboard{
	box-shadow: 0 0 4px 0 #d0cfcf;
}

.customer_dashboard .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
}
.customer_dashboard .nav-tabs li.nav-item a.active{
	background: #030f41;
	color: #FFF;
}
.customer_dashboard .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard_content .card-header {
    background-color: #030f41;
    border-color: #030f41;
    padding: 14px 20px;
}

.dashboard_content .card-header > h4 {
	font-size: 16px;
	color: #FFF;
	font-weight: 400;
	margin: 0;
}

.account_details .form-control {
	height: auto;
    display: block;
    width: 100%;
   	padding: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #CCC;
    border-radius: .25rem;
    margin-top: 15px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.account_details .form-control:focus{
	outline: none;
	-webkit-box-shadow: none;
    box-shadow: none;
	border: 1px solid #000;
}

.account_details .btn-login{
    background: #FFF;
    padding: 18px 50px;
    border: 1px solid #303952;
    color: #303952;
	transition: all 0.3s;
	margin-top: 30px;
}
.account_details .btn-login:hover{
    background: #303952;
    color: #FFF;
}
.btn-add-address{
	color: #FFF !important;
	padding: 6px 16px;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #FFF;
	border-radius: 50px;
}

.table_buy {
    margin-top: 2%;
}
/*======================================
	End Login CSS
========================================*/


.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #555;
}

.custom-radio input[type="radio"] {
    display: none;
}

.radio-mark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

.custom-radio input[type="radio"]:checked ~ .radio-mark {
    border-color: #007bff;
}

.radio-mark::after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #007bff;
}

.custom-radio input[type="radio"]:checked ~ .radio-mark::after {
    display: block;
}

.advertisement_slide_img {
    width: 100%;
    height: 100%;
}

button.btn {
    border: 2px solid black;
    background: #030f41;
    color: #fff;
}

#p-form .form-row {
margin-bottom: 20px;
}

#card-element {
padding: 12px;
border: 1px solid #ccc;
border-radius: 6px;
background-color: #f9f9f9;
}

#card-errors {
color: red;
font-size: 14px;
margin-top: 10px;
}

#p-form button.btn {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
}

#p-form button.btn:hover {
background-color: #0056b3;
}

.biomass_slider {
    margin-left: 0;
}

.biomass_slider img, .biomass_sec_nav img {
  width: 100%;
  height: 100%;
}
.biomass_slider .slick-prev::before {
  font-family: FontAwesome;
  content: "\f104";
  color: #000;
  font-size: 40px;
  opacity: 1;
}
.biomass_slider .slick-next::before {
  content: "\f105";
  font-family: FontAwesome;
  color: #000;
  font-size: 40px;
  opacity: 1;
}
.biomass_slider .slick-prev {
  left: 10%;
}
.biomass_slider .slick-next {
  right: 10%;
}
.biomass_sec_nav {
  width: 40%;
  margin: 30px auto 0;
  margin-right: auto;
  display: block;
  margin-left: unset;
}
.biomass_sec_nav .slick-slide {
  margin-right: 20px;
}
.biomass_sec_nav .slick-slide img {
  height: 120px;
  object-fit: cover;
}
.biomass_slider img {
    width: 70% !important;
    height: 500px !important;
    object-fit: contain;
    object-position: top;
}

.biomass_sec_slider {
    padding: 10px 0 50px;
    width: 60%;
}
.bio_user_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bio_user_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio_user_wrap p, .bio_user_wrap a {
    color: #646464;
    margin: 0;
    font-size: 15px;
}

.bio_user_wrap i {
    color: #646464;
}

.bio_user_wrap a {
    text-decoration: underline;
}

.bio_user_wrap a:hover {
    color: var(--theme-color-2);
}
.biomass_main_back {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px #f0f0f0;
    padding: 12px 20px;
    margin: 20px 0;
}

.overview_sec h2 {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.overview-wrap p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.overview-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview_diff_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-wrap a {
    text-decoration: underline;
}

.overview-wrap a:hover {
    color: var(--theme-color-2);
}

.overview-wrap-icons a {
    background: #3b5998;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.overview-wrap a i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.overview-wrap-icons a:last-child {
    background: #1e73be;
}

.overview_diff_flex {border-top: 1px solid rgba(0, 0, 0, .1);padding-top: 12px;margin-top: 12px;}
.listing_box {
    width: 30%;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    margin-bottom: 0;
}

.listing_box a img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 10px;
}
.listing_content {
    padding: 10px;
}

.listing_content .overview-wrap {
    margin-bottom: 10px;
}

.biomass_main_flex {
    display: flex;
    align-items: start;
}

.listing-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}
.overview-wrap-flex {
    flex-direction: column;
    align-items: start;
}
@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 991px) {
  .offcanvas-btn {
    font-size: 30px;
    color: #fff;
    background-color: var(--theme-color);
    padding: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
  .offcanvas-btn:hover,
  .offcanvas-btn:active {
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    color: #fff !important;
  }
  .offcanvas,
  .offcanvas-btn {
    display: block !important;
  }
  .offcanvas {
    background-color: var(--theme-color);
  }
  .offcanvas-body {
    padding-top: 50px;
  }
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 450px) {
}
@media only screen and (max-width: 370px) {
}
