@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  --primary-color: #983f43;
  --second-color: #e5383a;
  --yellow: #fbf215;
  --light-pink: #c08285;
  --white: #fff;
  --black: #000;
  --gray: #888888;
  --mid-gray: #d5d5d5;
  --light-gray: #e6e6e68e;
  --btn-color: #d84130;
}

/* Primary Button */

.primary-btn {
  margin-top: 40px;
  display: inline-block;
}

.primary-btn a {
  color: var(--white);
  border: 1px solid var(--btn-color);
  padding: 10px 20px;
  font-size: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  background-color: var(--btn-color);
}

.primary-btn a:hover {
  background-color: var(--white);
  border: 1px solid var(--btn-color);
  color: var(--btn-color);
}

@media (max-width: 576px) {
  .primary-btn a {
    font-size: 18px;
  }
}

/* Primary Button End Here */

/* Title */
.primary-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--btn-color);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.primary-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--btn-color);
}

@media (max-width: 768px) {
  .single-box-w-c {
    height: 260px;
  }

  .single-box-w-c p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .primary-title {
    font-size: 20px;
  }
}

.white-pt {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.white-pt::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--white);
}

/* Title End Here */

/* header */
.btn a {
  color: var(--white);
  padding: 10px 20px;
  background-color: var(--darkblue);
  border-radius: 40px;
  font-weight: 600;
}

/* /header/ */
.header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--white);
  box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
  height: 98px;
  /* padding: 15px; */
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-radius: 10px;
  height: 98px;
}

.header .logo a {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--darkblue);
  font-weight: 600;
}

.header .logo a img {
  width: 232px;
  margin-top: 10px;
}

.header .nav-menu {
  padding: 0 15px;
}

.header .menu>.menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}

.header .menu>.menu-item>a {
  display: block;
  padding: 39px 0;
  font-size: 16px;
  color: var(--btn-color);
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header .menu>.menu-item>a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
  /* color: var(--lightblack); */
  color: #000;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: var(--btn-color);
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
  background-color: var(--btn-color);
}

.header .menu>.menu-item>a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
  color: var(--btn-color);
}

.header .menu>.menu-item>.sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 320px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--white);
  padding: 10px 0;
  border-top: 3px solid var(--darkblue);
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.contact-nav {
  display: none;
}

.contact-nav h2 {
  font-size: 25px;
  font-weight: 600;
  position: relative;
}

.contact-nav h2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 2px;
  bottom: 2px;
  background-color: var(--primary-color);
}

.contact-nav a {
  display: flex;
  align-items: center;
  color: var(--lightblack);
  font-size: 18px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.nav-links a i {
  margin-right: 15px;
  color: var(--darkblue);
}

.contact-nav .btn-all {
  margin: 20px 0;
}

.social-nav li {
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-nav li i {
  color: var(--white);
  font-size: 18px;
}

.social-nav {
  display: flex;
  margin-top: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right .contact-whatsapp {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}

.header-right .contact-phone i {
  color: var(--darkblue);
  font-size: 25px;
}

.header-right .call-display span {
  color: var(--darkblue);
  font-size: 20px;
}

.fix-icon {
  position: fixed;
  display: none;
  bottom: 15px;
  right: 20px;
}

.fix-icon .contact-whatsapp,
.fix-icon .contact-phone {
  width: 50px;
  height: 50px;
  margin: 5px 0;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 30px;
}

.call-display {
  display: flex;
  align-items: flex-start;
}

.call-display span {
  color: var(--darkblue);
}

.nav-btn2 a {
  color: white;
  display: block;
}

.nav-links a {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .header .menu>.menu-item {
    margin-left: 14px;
  }

  .header .menu>.menu-item>a {
    font-size: 15px;
  }
}


@media (max-width: 1300px) and (min-width: 992px) {
  .header .logo a img {
    width: 150px;
  }
}

@media (min-width: 1101px) {
  .header .menu>.menu-item-has-children:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header .menu>.menu-item-has-children:hover>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--btn-color);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: var(--btn-color);
  position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-color);
  box-sizing: border-box;
}

.header .open-nav-menu span:before {
  top: -7px;
}

.header .open-nav-menu span:after {
  top: 7px;
}

.header .close-nav-menu {
  height: 68px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.header .close-nav-menu img {
  width: 16px;
}

.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.header-right a span {
  /* font-size: 18px; */
  font-weight: 600;
  color: var(--lightblack);
}

.header-btn a {
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 20px;
  font-size: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  background-color: var(--btn-color);
}

.header-btn:hover a {
  background-color: var(--white);
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  padding: 10px 20px;
}

/* /home section/ */
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.jpg");
  background-position: center top;
  background-size: cover;
}

/* responsive */

@media (max-width: 992px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .nav-menu {
    position: fixed;
    right: -300px;
    visibility: hidden;
    width: 300px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: var(--white);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }

  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }

  .header .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .header .menu>.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .menu>.menu-item>a {
    color: var(--btn-color);
    padding: 12px 15px;
    border-bottom: 1px solid var(--black);
  }

  .header .menu>.menu-item:first-child>a {
    border-top: 1px solid var(--black);
  }

  .header .menu>.menu-item>a .plus:before,
  .header .menu>.menu-item>a .plus:after {
    background-color: var(--btn-color);
  }

  .header .menu>.menu-item-has-children.active>a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header .menu>.menu-item>.sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }

  .header .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 12px 45px;
    color: var(--btn-color);
    border-bottom: 1px solid #333333;
  }

  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }

  .contact-nav {
    display: block;
    margin-top: 30px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .fix-icon {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 2;
  }

  .header-right .contact-whatsapp,
  .header-right .contact-phone {
    display: none;
  }

  .call-display span {
    display: none;
  }

  .header .logo a img {
    width: 120px;
  }

  .header-btn a {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .header-btn a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

/* End Header */



/* banner-section */
.banner-section {
  background-image: linear-gradient(349deg, #fccf31 10%, #f55555 100%);
}

.banner-img img {
  width: 71%;
  margin-left: 35px;
}

.banner-content h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 15px 0;
}

.banner-content h1 {
  font-size: 54px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px 0;
}

.banner-content p {
  font-size: 18px;
  /* letter-spacing: 2px; */
  font-weight: 400;
  color: var(--white);
  margin: 0 0 40px 0;
}

.banner-btn {
  display: inline-block;
}

.banner-btn a {
  background-color: var(--btn-color);
  color: var(--white);
  padding: 10px 20px;
  font-size: 20px;
  border: 1px solid var(--white);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.banner-btn:hover a {
  background-color: var(--white);
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
}

.banner-flex {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .banner-img img {
    margin: 0;
  }
}

/* Modal animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: var(--white);
  top: 1%;
  padding: 50px;
  width: 90%;
  max-width: 960px;
  margin: auto;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.6s ease-out;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 35px;
  cursor: pointer;
  color: var(--btn-color);
}

form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
  height: 100px;
}

button[type="submit"] {
  padding: 10px 20px;
  background-color: var(--btn-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  border: 1px solid var(--btn-color);
  font-size: 20px;
}

button[type="submit"]:hover {
  background-color: var(--white);
  border: 1px solid var(--btn-color);
  color: var(--btn-color);
}

.modal-content h2 {
  text-align: center;
  color: var(--btn-color);
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .banner-content {
    margin-top: 30px;
  }

  .banner-flex {
    flex-direction: column;
  }

  .banner-content h1 {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .modal-content {
    top: 8%;
  }
}

@media (max-width: 576px) {
  .banner-img img {
    width: 100%;
  }

  .banner-img {
    text-align: center;
  }

  .banner-img img {
    width: 50%;
  }

  .banner-content h4 {
    font-size: 16px;
  }

  .banner-content h1 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .modal-content {
    top: -5%;
  }

  /* .modal {
    top: -90px;
  } */
  .banner-btn a {
    font-size: 18px;
  }

  .modal-content {
    padding: 17px;
  }
}

/* banner-section End Here */

/*  */
.inner-banner-section {
  background-image: url(../images/banner.jpg);
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  position: relative;
}

.inner-banner-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.455);
}

.inner-banner-text h1 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
}

.inner-banner-text span {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 18px;
}

@media (max-width: 576px) {
  .inner-banner-section {
    height: 250px;
    background-position: bottom !important;
  }
}

/* Contact Us */
.contact-group {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
}

.contact-group .contact-form-prt {
  width: 66%;
  background-color: var(--white);
  padding: 40px 30px;
  box-shadow: #ccc 0px 1px 11px;
}

.contact-info {
  width: 34%;
  background-image: linear-gradient(349deg, #fccf31 10%, #f55555 100%);
  color: var(--white);
  padding: 40px 30px;
}

.contact-info a {
  color: var(--white);
  font-size: 18px;
}

.contact-group h4 {
  font-size: 26px;
  font-weight: normal;
  color: var(--btn-color);
  margin: 0 0 10px 0px;
}

.contact-info h4 {
  color: var(--white);
}

.form {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: auto;
  justify-content: space-between;
}

.form-group {
  width: calc(50% - 10px);
  margin: 10px 0px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  outline: none;
  border: #ccc 1px solid;
  font-size: 17px;
  font-family: "Poppins";
  transition: 0.5s all;
}

select.form-control {
  appearance: none;
  padding: 12px;
  background-image: url(https://coderwrap.com/wp-content/uploads/2023/01/slt-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) 20px;
}

.form-control:focus {
  border-color: #000;
}

.form-control::-webkit-input-placeholder {
  color: #000;
}

.form-control:-ms-input-placeholder {
  color: #000;
}

.form-control::placeholder {
  color: #000;
}

.fg-full-width {
  width: 100%;
}

textarea.form-control {
  height: 150px;
}

.submit-btn {
  padding: 10px 40px;
  border: none;
  outline: none;
  font-size: 20px;
  text-transform: uppercase;
  background-color: var(--btn-color);
  color: var(--white);
  cursor: pointer;
  transition: 0.5s all;
}

.submit-btn:hover {
  opacity: 0.8;
}

.c-info-item {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 30px 0px;
  align-items: center;
}

.c-info-item .c-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.c-info-item .c-info-icon img {
  width: 26px;
  filter: brightness(0) invert(1);
}

.c-info-item .c-info-cont {
  width: calc(100% - 60px);
  padding-left: 17px;
  display: inline-block;
}

@media (max-width: 992px) {
  .form-group {
    width: 100%;
  }

  .contact-group .contact-form-prt,
  .contact-info {
    width: 100%;
    padding: 25px 15px;
  }
}

@media (max-width: 992px) {

  .contact-group .contact-form-prt,
  .contact-info {
    width: 100%;
    padding: 25px 30px;
  }
}

/* Contact Us End Here */

/* Rating */
.rating {
  border-bottom: 1px solid var(--btn-color);
}

.rating-inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.rating-inner img {
  width: 120px;
}

.rating-star span {
  color: rgb(221, 173, 0);
}

.rating-star p {
  color: var(--gray);
  margin-top: 8px;
}

@media (max-width: 576px) {
  .rating-inner img {
    width: 80px;
  }

  .rating-star span {
    font-size: 10px;
  }

  .rating {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  /* .rating-inner {
    margin-bottom: 25px;
  } */
}

@media (max-width: 1300px) {
  .rating-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Rating End Here */

/* why choose */
.single-box-w-c {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin: 20px 0;
}

.single-box-w-c-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-box-w-c-img img {
  width: 100px;
}

.single-box-w-c h3 {
  font-size: 16px;
  color: var(--black);
  margin: 15px 0;
  height: 20px;
  overflow: hidden;
}

.single-box-w-c p {
  font-size: 16px;
  color: var(--gray);
}

.single-box-w-c:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

@media (max-width: 992px) {
  .single-box-w-c {
    margin-bottom: 20px;
  }
}

/* why choose End Here */

/*  */
/* .d-s-m {
  background-color: var(--light-gray);
  margin-top: 40px;
}

.d-l-img {
  text-align: center;
}

.d-l-img img {
  width: 44%;
}

.d-r-content h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.d-r-content ul li {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  list-style: disc;
  margin-left: 18px;
}

.r-flex {
  display: flex;
  align-items: center;
}
.r-flex-second {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

@media (max-width: 576px) {
  .d-l-img img {
    width: 65%;
  }
}

@media (max-width: 992px) {
  .r-flex {
    flex-direction: column;
  }
  .r-flex-second {
    flex-direction: column;
  }
  .d-l-img {
    margin-bottom: 20px;
  }
  .d-s-m {
    margin-top: 0 !important;
  }
} */

/* Counter */
.counter-section {
  background-image: url(../images/counter-bg-3.jpg);
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 100px 0;
}

.counter-section::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #000000c8;
}

.counter-section .row {
  /* background-image: url(../images/shape); */
  background-size: cover;
  background-position: center;
}

.single-counter-box {
  text-align: center;
}

.bg-row-color {
  /* background-color: var(--light-pink); */
}

.single-counter-box span {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--white);
  /* background: -webkit-linear-gradient( #983f433d, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.single-counter-box p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.single-counter-box-img img {
  width: 80px;
}

@media (max-width: 992px) {
  .single-counter-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .single-counter-box-img img {
    width: 50px;
  }
}

/* Counter ENd Here */

/* FAQ */
.faq-section {
  font-family: "Poppins", sans-serif;
  /* background-color: var(--light-pink); */
  /* padding: 60px 0; */
  text-align: center;
  background-position: bottom right 0%;
}

.faq-section .faq_left_half_circle {
  position: absolute;
  left: 80px;
}

.faq-section .faq_left_half_circle img {
  position: relative;
  top: 140px;
}

.faq-section h3 {
  color: var(--black);
  text-align: center;
  padding-bottom: 50px;
  font-size: 30px;
  margin: 0px;
}

/* .faq-section .faq-accordions {
 max-width: 760px;
 margin: 0 auto;
} */

.faq-section .faq-accordions .accordion-row {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black);
  cursor: pointer;
}

.faq-section .faq-accordions .accordion-row .title {
  text-align: left;
  color: var(--black);
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
}

.faq-section .faq-accordions .title:after {
  content: "";
  position: absolute;
  border-left: var(--black) 2px solid;
  border-bottom: var(--black) 2px solid;
  right: 10px;
  top: 8px;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  width: 10px;
  height: 10px;
  z-index: 1;
  transform: rotate(-45deg);
}

.faq-section .faq-accordions .title.open:after {
  transform: rotate(135deg);
  top: 14px;
}

.faq-section .faq-accordions .accordion-row .content {
  text-align: left;
  color: var(--black);
  font-size: 16px;
  line-height: 30px;
  overflow: hidden;
  height: 0px;
  transition: 0.5s all;
}

.faq-section .faq-accordions .accordion-row .open+.content {
  height: auto;
  overflow: initial;
  padding: 20px 0px;
}

.faq-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--btn-color);
  margin-bottom: 30px;
  text-align: start;
}

@media (max-width: 1200px) {
  .faq-section .faq-accordions .accordion-row .title {
    font-size: 18px;
  }
}

/* FAQ End Here */

/* Client Review */

.single-client-review-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px;
  text-align: center;
  margin: 20px 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.single-client-review-box-img img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border: 2px solid var(--btn-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.single-client-review-box-img ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.single-client-review-box-img ul li i {
  color: rgb(221, 173, 0);
}

.single-client-review-box h4 {
  font-size: 20px;
  color: var(--btn-color);
  margin: 10px 0;
}

.single-client-review-box p {
  font-size: 18px;
  color: var(--black);
  margin: 10px 0;
}

.single-client-review-box h5 {
  font-size: 18px;
  color: var(--btn-color);
  margin: 10px 0;
}

/* .single-client-review-box:hover {
  background-color: var(--light-pink);
  color: var(--white);
}

.single-client-review-box:hover h5,
.single-client-review-box:hover h4 {
  color: var(--mid-gray) !important;
}

.single-client-review-box:hover p {
  color: var(--white);
} */

/* Client Review End Here */

/* footer */
footer {
  position: relative;
  background-image: linear-gradient(135deg, #fccf31 10%, #f55555 100%);
  color: var(--white-color);
}

.footer-section {
  position: relative;
  background-image: url(../images/footer-background.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.footer-section::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0px;
  right: 0;
  left: 0;
  background-image: linear-gradient(349deg, #fccf31eb 10%, #f55555 100%);
  z-index: -1;
}

.footer-bg-img1 img {
  width: 100px;
  position: absolute;
  bottom: 20px;
}

/* .footer-bg-img2 img {
  width: 100px;
  position: absolute;
  right: 40px;
  bottom: 20px;
  transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
}
.footer-bg-img3 img {
  width: 100px;
  position: absolute;
  left: 10%;
  top: 30px;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
} */

footer i {
  color: var(--white);
}

.footer-content-box p {
  color: var(--white);
  font-size: 18px;
  width: 80%;
}

.footer-contact {
  padding: 30px;
}

.footer-contact a {
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}

.footer-contact-box i {
  margin-right: 10px;
}

.footer-contact-icon i {
  margin-right: 36px;
  font-size: 20px;
}

.email-box {
  text-align: center;
}

.footer-logo {
  text-align: center;
  position: relative;
  z-index: 0;
}

.footer-logo img {
  height: 83px;
  margin-top: 7px;
}

.footer-logo::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: var(--white);
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.footer-content img {
  width: 160px;
  margin-top: 30px;
}

.footer-content h4 {
  color: var(--white);
  font-size: 28px;
  margin: 30px 0 15px 0;
  font-weight: 500;
}

.footer-content ul {
  margin-bottom: 10px;
}

.footer-contact-icon {
  margin-top: 20px;
}

.footer-content ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
  transition: 0.5s;
  font-weight: 400;
}

.footer-content-box ul i {
  font-size: 20px;
  margin-right: 15px;
}

.footer-content ul li:hover {
  /* transform: translateX(5px); */
  color: var(--light-gray);
}

@media (max-width: 992px) {
  .footer-contact {
    text-align: center;
  }

  .email-box {
    margin: 15px 0;
  }

  .footer-contact-icon i {
    margin-right: 20px;
  }

  .client-review-card h4 {
    font-size: 20px;
  }
}

.footer-address {
  display: flex;
}

.fa-location-dot {
  font-size: 25px;
  margin-right: 10px;
}

.copyright {
  text-align: center;
  margin-top: 15px;
}

.copyright h4 {
  margin: 20px 0;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
}

.copyright img {
  width: 75px;
  vertical-align: middle;
  background-color: var(--white);
}

/* end footer */

/* Get Quote */
.quote-left-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.get-quote-r {
  background-image: linear-gradient(349deg, #fccf31 10%, #f55555 100%);
  padding: 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-left-box-icon i {
  color: var(--white);
  font-size: 25px;
}

.quote-left-box-content h2 {
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}

.quote-left-box-content p {
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
}

@media (max-width: 768px) {
  .get-quote-r {
    flex-direction: column;
  }

  .quote-right-btn {
    margin-top: 30px;
  }
}

@media (max-width: 992px) {
  .get-quote-r {
    flex-direction: column;
  }

  .quote-left-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .quote-left-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Get Quote End Here */

/* connect softy */
.connect-pharma {
  background-image: linear-gradient(349deg, #fccf31 10%, #f55555 100%);
}

.connect-pharma .row {
  overflow: hidden;
}

.connect-pharma-detail {
  display: block;
  padding: 53px 30px;
}

.connect-pharma [class*="col-"] {
  padding: 0;
  float: left;
}

.connect-pharma-detail h2 {
  font-size: 40px;
  margin: 0 0 30px 0;
  color: var(--white);
}

.connect-pharma-detail p {
  font-size: 16px;
  color: var(--white);
  margin: 0;
  line-height: 32px;
}

.pharma-contact-us {
  padding: 34.8px;
}

.pharma-contact-us input {
  width: 100%;
  font-size: 18px;
  height: 50px;
  padding: 0 10px;
  border: none;
  margin: 0 0 20px 0;
}

.pharma-contact-us input:focus,
.pharma-contact-us textarea:focus {
  outline: gray;
}

.pharma-contact-us textarea {
  margin: 0 0 20px 0;
  font-size: 18px;
  padding: 0 10px;
  border: none;
  width: 100%;
}

.phone-email {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pharma-contact-us span input {
  width: 80px;
  margin-left: 20px;
}

.contact-btn a {
  padding: 10px 40px;
  background-color: var(--primary-color);
  font-size: 20px;
  text-decoration: none;
  color: white;
  display: inline-block;
}

@media (max-width: 1300px) {
  .pharma-contact-us {
    height: 516px;
  }
}

@media (max-width: 992px) {
  .connect-pharma-detail h2 {
    font-size: 30px;
  }

  .connect-pharma-detail p {
    font-size: 15px;
  }

  .phone-email {
    display: block;
  }

  .pharma-contact-us {
    height: auto;
  }
}

@media (max-width: 768px) {
  .connect-pharma-detail {
    padding: 20px 15px;
  }

  .pharma-contact-us {
    padding: 20px 15px;
  }
}

/* end connect softy */

/* g-map-section */
.g-map-section .gmap_canvas {
  width: 100%;
}

/* g-map-section End here */

/* Video Review */
.farmer-review {
  background: rgb(218, 218, 218);
  background: linear-gradient(180deg,
      rgba(218, 218, 218, 0.593) 8%,
      rgba(255, 255, 255, 1) 100%);
}

.farmer-review-box {
  background-color: var(--light-gray);
  padding: 20px;
}

iframe {}

/*End Video Review */

/* whatsapp */
.floating_btn {
  position: fixed;
  bottom: 40px;
  right: 11px;
  width: 115px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: var(--gray);
  font-size: 14px;
}

@media (max-width: 576px) {
  .floating_btn {
    right: 40px;
    width: 0;
  }

  .text_icon {
    display: none;
  }

  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    }
  }
}

/* whatsapp end */

/* call button */
.floating_call_btn {
  display: none !important;
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: #3e3e3e;
  padding: 20px 0;
  text-align: center;
  z-index: 99998;
}

.floating_call_btn a {
  font-size: 20px;
  color: var(--white);
}

@media (max-width: 650px) {
  .floating_call_btn {
    display: block !important;
  }
}

/* call button */

/* Softy Detail */
.softy-detail-right-content h3 {
  font-size: 30px;
  color: var(--btn-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.softy-detail-right-content p {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
}

.softy-detail-right-content h6 {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
}

.softy-detail-right-content h4 {
  font-size: 25px;
  color: var(--btn-color);
  font-weight: 600;
  margin: 20px 0;
}

.softy-detail-right-content ul li {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}

.softy-detail-left-img img {
  width: 70%;
}

.softy-details {
  background-color: var(--light-gray);
}

@media (max-width: 767px) {
  .softy-detail-left-img {
    text-align: center;
  }
}

/* Softy Detail End here */

/* Gallery Area */
.gallery-area .image img {
  width: 100%;
}

.gallery-area .image {
  margin-bottom: 15px;
}

/* End Gallery Area */

/* About Us */

.about-top,
.about-us-section {
  background-color: var(--light-gray);
}

.about-top-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-us-left-img img {
  width: 100%;
}

.about-us-left-content h2 {
  font-size: 44px;
  color: var(--btn-color);
  font-weight: 600;
  /* margin-bottom: 20px; */
}

.about-us-right-content p {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .about-us-right-content p {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .about-us-left-content h2 {
    font-size: 40px;
  }

  .about-top-img img {
    height: 300px;
  }
}

/* About Us End */

/* <!-- breadcrumb --> */

.breadcum {
  background-color: var(--light-pink);
  padding: 30px 0;
}

.breadcum-main {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcum-main li a {
  color: var(--white);
  font-size: 18px;
}

.breadcum-main li i {
  color: var(--white);
}

.breadcum-main li p {
  color: var(--white);
}

/* <!-- breadcrumb End --> */

/* Success and error alert styles */
#success-popup,
#error-popup {
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 8px 0;
  text-align: center;
  display: none;
}

#error-popup {
  background-color: var(--second-color);
}

#success-popup {
  background-color: green;
}

/* Success and error alert styles end */

/* Discover Machine */
.dm-section {
  background-image: linear-gradient(349deg, #fccf31 10%, #f55555 100%);
}

.dm-machine-r-bg {
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.983);
  background-color: #ffffff63;
}

.d-o-m-img {
  text-align: center;
  margin-bottom: 20px;
}

.d-o-m-img img {
  width: 50%;
  aspect-ratio: 1/1.9;
}

.d-o-m-img {
  text-align: center;
  margin-bottom: 20px;
}

.d-o-m-img img {
  width: 50%;
}

.flex-dom-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.d-o-m h2 {
  font-size: 30px;
  color: var(--white);
  text-align: center;
  margin-bottom: 38px;
}

.dm-section .dm-machine-r-bg {
  padding: 20px !important;
  margin-bottom: 30px;
}

.dm-section .dm-machine-r-bg .flex-dom-btn {
  flex-direction: column;


}

.dm-section .dm-machine-r-bg .flex-dom-btn .banner-btn {
  width: 100%;
  text-align: center;
}

.dm-section .dm-machine-r-bg .flex-dom-btn .banner-btn a {
  display: block;

}

@media (max-width: 1300px) {
  .d-o-m h2 {
    font-size: 20px;
  }

  .flex-dom-btn {
    flex-direction: column;
    /* gap: 40px; */
  }
}

@media (max-width: 1200px) {
  .dom1 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .dom2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 450px) {
  .flex-dom-btn {
    /* flex-direction: column; */
    /* gap: 38px; */
  }

  .d-o-m-img img {
    width: 80%;
  }
}

@media (max-width: 390px) {
  .flex-dom-btn .banner-btn a {
    font-size: 14px;
  }
}

/* Discover Machine End Here */


/* * * * * * * * * * * * * * * */

/* Landing banner */
.landing-banner img {
  width: 100%;
  margin-left: 0;
}

.landing-banner .banner-area-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-banner .banner-area-btn a {
  background-color: var(--btn-color);
  color: var(--white);
  padding: 10px 20px;
  font-size: 20px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.landing-banner .banner-area-btn a:hover {
  background-color: var(--white);
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
}

.landing-banner .banner-area-btn .wapp-btn a {
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@media (max-width: 576px) {
  .landing-banner img {
    width: 100%;
  }

  .landing-banner .banner-area-btn {
    gap: 10px;
  }
}

/* End Landing banner */

/* Landing Discover Machine */
.landing-discover-machine .d-o-m {
  padding: 30px !important;
  margin-bottom: 30px;
}

.landing-discover-machine .d-o-m h2 {
  text-transform: capitalize;
}

.landing-discover-machine .d-o-m-img img {
  width: 100%;
  aspect-ratio: 0;
}

.landing-discover-machine .flex-dom-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-discover-machine .flex-dom-btn .btn-area {
  width: 100%;
}

.landing-discover-machine .flex-dom-btn .btn-area a {
  display: inline-block;
  text-align: center;
  width: 100%;
  background-color: var(--btn-color);
  color: var(--white);
  padding: 10px 20px;
  font-size: 20px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.landing-discover-machine .flex-dom-btn .btn-area a:hover {
  background-color: var(--white);
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
}


@media (max-width: 450px) {
  .landing-discover-machine .d-o-m-img img {
    width: 100%;
  }

  .landing-discover-machine .d-o-m h2 br {
    display: none;
  }
}

/* End Landing Discover Machine */

/* Landing Softy Details */
.landing-softy-details .softy-detail-left-img img {
  width: 100%;
}

/* End Landing Softy Details */

/* * * * * * * * * * * * * * * */