@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #f04e25;
  --secondary: #000;
  --tertiary: #030303;
  --quarternary: #3b3b3b;
  --border-primary: #f04e25;
  --ff-primary: "Poppins", sans-serif;
  --ff-secondary: "Poppins", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
body {
  margin: 0;
  background-color: #f5f6ef;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1600px;
}
.navbar .badge {
  margin: 0 5px;
}
.badge {
  padding: 20px 30px !important;
  font-size: 20px;
  border-radius: 10px;
  font-weight: 400 !important;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
  .navbar-brand img {
    width: 150px;
  }
}

@media (max-width: 430px) {
  .badge {
    padding: 20px 30px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
    text-transform: uppercase;
  }
}
.form-control {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.input input,
.input select {
  background: #ffffff;
  border: 1px solid rgb(0 0 0 / 30%);
  border-radius: 50px;
  height: 56px;
}
.input textarea {
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 30%);
  min-height: 100px;
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}

.bg-white {
  background-color: #ffffff !important;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 600 !important;
}

.header {
  z-index: 9999;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: var(--primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary) !important;
}
button {
  outline: 0;
  border: 0;
}
a:hover {
  opacity: 1 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
}
h1 {
  font-size: 54px;
  font-weight: 700;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}
h3 {
  font-size: 30px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  font-weight: 600;
}
h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em !important;
}
h6 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 30px;
    font-weight: 700;
  }
  h2 {
    font-size: 24px;
    font-weight: 700;
  }
  h3 {
    font-size: 22px;
    font-weight: 700;
  }
  h4 {
    font-size: 20px;
    font-weight: 700;
  }
  h5 {
    font-size: 18px;
    font-weight: 400;
  }
}

.rounded-5 {
  border-radius: 0.625rem !important;
}

p,
a,
span,
li,
div {
  font-family: var(--ff-secondary);
}
.text-body {
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 30px !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-light {
  background-color: #f5f6ef !important;
}

.bg-gradient {
  background: #f04e25;
  background: -moz-linear-gradient(90deg, #f04e25 41%, #001d75 100%);
  background: -webkit-linear-gradient(90deg, #f04e25 41%, #001d75 100%);
  background: linear-gradient(90deg, #f04e25 41%, #001d75 100%) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #f04e25 !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}
.border-2 {
  border-width: 2px !important;
}
/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #ffffff !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
  *********NAVIGATION**********
  ****************************/
nav li a {
  margin: 0;
  border-radius: 20px;
  padding: 10px 0px !important;
  background-color: transparent;
  color: #333;
  transition: background-color 0.25s, color 0.25s;
}

nav li a {
  padding: 10px 15px !important;
}

.nav-link {
  font-family: var(--ff-primary);
  font-size: 20px;
  position: relative;
  color: #fff !important;
  cursor: pointer;
}
a.nav-link.active {
  color: #000 !important;
  text-decoration: underline;
}
@media (max-width: 430px) {
  #phone-no {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.web-btn {
  padding: 15px 30px;
  border-radius: 30px;
}

img.img-fluid.position-absolute.top-0.end-0 {
  margin-right: -5px;
}
.swiper-slide {
  background-color: #f04e251a;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.text-body {
  font-size: 14px;
  color: #555;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-position {
  font-style: italic;
  margin-bottom: 15px;
}

.quote-icon {
  font-size: 20px;
  color: #f04e25;
  margin-bottom: 10px;
}

.swiper-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #f04e25;
  color: white;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  border-radius: 50%;
  font-weight: bold;
  position: relative;
  margin: 20px 20px !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 20px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
  content: "next";
  font-size: 20px;
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 60px !important;
}

div#header {
  z-index: 19999999999;
  position: relative;
}
.-mr-5 {
  margin-right: -5px;
}

.team-content.text-center {
  position: absolute;
  top: auto;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all 0.5s;
  color: #fff;
}

.team-card:hover .team-social {
  display: flex !important;
}
.team-card:hover .team-img {
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
}
.hero-section {
  position: absolute;
  top: 0;
  left: 0;
}

hr {
  border-top: 1px solid #000;
}
.accordion-button:not(.collapsed) {
  color: #ff3d00;
  background-color: #ffffff;
  box-shadow: none;
}
.accordion-item {
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 10px !important;
}
.accordion-header button {
  font-size: 24px;
  font-weight: 600;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-tabs {
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border: 0;
  border-radius: 50px;
  padding: 10px 40px;
}

@media screen and (max-width: 475px) {
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link {
    padding: 10px 30px;
    width: 100%;
  }
  .nav-link {
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-tabs {
    border-radius: 22px;
  }
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  background: transparent;
  color: #000000 !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: #000;
  color: #fff !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 0;
}
.show-menu {
  display: block !important;
  background: #fff;
  height: 400px;
  padding: 10px;
}
.header.bg-white a.nav-link {
  color: #000 !important;
}
.header.bg-white a.btn-transparent {
  color: #000 !important;
  border-color: #000 !important;
}
.accordion-button:focus {
  box-shadow: none;
}
@media screen and (max-width: 475px) {
  section.section.hero {
    height: 600px;
  }
  .hero video.w-100 {
    height: 100%;
    object-fit: cover;
  }
  .hero svg {
    display: none;
  }
  .reverse-md {
    flex-direction: column-reverse;
  }
  .header {
    background: #fff;
  }
  .header a.nav-link {
    color: #000 !important;
  }
  .header a.btn-transparent {
    color: #000 !important;
    border: 1px solid #000;
  }
  .accordion-item {
    padding: 0;
  }
  .accordion-header button {
    font-size: 16px;
    font-weight: 600;
  }
}
.web-btn {
  min-width: 190px;
}
/* customize select field appearance icon */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #477928;
  border: 2px solid blue;
  display: inline-block;
  width: 30px;
  height: 30px;
  /*position:relative;*/
}

select + i {
  color: #000000;
  margin-left: -26px;
  font-size: 5px;
  vertical-align: middle;
  top: 5px;
}
/* Media Query for 1024px */
@media (min-width: 1024px) {
  .hero.section {
    height: 800px;
  }
}
/* Media Query for 800px */
@media (min-width: 800px) {
  .hero.section {
    height: 1000px;
  }
}
/* Media Query for 500px */
@media (min-width: 500px) {
  .hero.section {
    height: 1100px;
  }
}

/* Media Query for less than 500px */
@media (max-width: 499px) {
  .hero.section {
    height: 800px !important;
  }
}
/* Tablet Mode - 3 items on first row, 2 on second row */
@media (min-width: 768px) and (max-width: 991px) {
  .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    flex: 1 0 33.33%; /* Each item takes up 1/3 of the row width */
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item:nth-child(4),
  .nav-item:nth-child(5) {
    flex: 1 0 50%; /* Last two items take up 1/2 of the row width each */
  }
}
