:root {
  --orange: #f2631b;
  --background-color: #f8f9fa;
  --text-color: #212121;
  --white: #ffffff;
  --bg-light: #fef6ef;
  --gradient1: linear-gradient(145deg, #ff7944, #fd5757);
}

@font-face {
  font-family: beingLove;
  src: url(./font/Being-Love-Sans.otf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: beingLove;
  src: url(./font/beinglove.otf);
  font-style: normal;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Archivo", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-family: "Archivo", serif;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.5rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.5rem;
}

section {
  padding: 60px 0;
}

.dview {
  display: block;
}

.mview {
  display: none;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semiBold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extraBold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.textOrange {
  color: var(--orange);
}

.textGrey {
  color: var(--text-color);
}

.textWhite {
  color: var(--white);
}

.bgLight {
  background-color: var(--bg-light);
}

.bgWhite {
  background-color: var(--white);
}

.bgOrange {
  background-color: var(--orange);
}

.flexBox {
  display: flex;
  gap: 15px;
}

.sec2 .flexBox div:nth-child(1) {
  flex-basis: 50px;
}

.sec2 .flexBox div:nth-child(2) {
  flex-grow: 1;
}


.sec1 {
  position: relative;
}
.shapeDivider{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
}
.contactform {
  background-image: linear-gradient(360deg, #f2621b, #f28a29);
  padding: 30px;
  border-radius: 10px;
}

.contactform button {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  border: 1px solid #ffffff;
  padding: 5px 20px;
  border-radius: 40px;
  background-color: transparent;
}

.teamImage {
  margin-top: -60px;
}



.sec3 hr {
  opacity: 1;
  color: #f2621b;
  background-color: #f2621b;
  width: min(60%, 350px);
  margin: 20px auto;
}
.sec5{
  position: relative;
  padding: 90px 0;
}
.sec5 .shapeDividers{
  position: absolute;
  width: 100%;
  left: 0;
}
.sec5 > .shapeDividers:nth-child(1){
  top: -5px;
}
.sec5 > .shapeDividers:nth-child(3){
  bottom: -5px;
}
.sec5 hr {
  opacity: 1;
  color: #f2621b;
  background-color: #f2621b;
  width: min(60%, 250px);
  margin: 20px auto;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  background-color: #838383 !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
}

.owl-dot.active {
  background-color: #f28a29 !important;
}

.accordion-item {
  margin-bottom: 15px;
}

.lastButtons {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}

.lastButtons a {
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: unset;
  padding: 5px 25px;
  border: 1px solid #f2621b;
}

/* ACCORDION CSSS STARTS */

.accordion-button:not(.collapsed) {
  color: var(--text-color);
  background-color: unset;
  box-shadow: unset;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset;
}

.accordion-button {
  font-size: 1.3rem;
}

.transparentHeading {
  -webkit-text-stroke: 1px #f2631b;
  -webkit-text-fill-color: transparent;

  /* fallback */
  color: #333;

}

/* ACCORDION CSSS STARTS */

/* CAPSULE BOX CSS STARTS */
.box {
  border-radius: 150px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.30);
  min-height: 430px;
}

.box:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 0px;
  height: 100%;
  border-radius: 150px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.30);
  transition: all 0.3s ease;
  background-image: linear-gradient(to right, #f2621b 0%, #f28a29 100%);
}

.box:hover:before {
  width: 100%;
}

.box:hover .image-wrapper {
  padding: 0;

}

.box:hover .box-desc {
  color: #fff;
}

.image-wrapper {
  position: relative;
  max-width: 300px;
  max-height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  padding: 15px;
  transition: all 0.5s ease;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.20);
  margin-bottom: 20px;
}

.image-wrapper img {
  border-radius: 50%;
  transition: all 500ms ease;
}

.box-desc {
  position: relative;
}

.box hr {
  opacity: 1;
  color: #f2621b;
  background-color: #f2621b;
  width: min(60%, 150px);
  margin: 20px auto;
  position: relative;
  z-index: 99;
}

.box:hover hr {
  color: #fff;
  background-color: #fff;
}

.sec4 .gridBox {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.sec4 .teamBox {
  position: relative;
  transition: all 1s;
  padding: 20px;
}

.sec4 .teamBox img {
  display: block;
  margin-bottom: 20px;
}

.sec4 .gridItems:hover .teamBox {
  transform: translateY(-10px);
}

/* CAPSULE BOX CSS STARTS */

/**
==============================================================
POPUP CSS STARTS  
=================================================================
**/
/* Popup container */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup content */
.popup-content {
  background-color: transparent;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 700px;
  position: relative;
}

.popup-content h2 {
  margin: 0 0 15px;
}

.popup-content p {
  margin: 0 0 20px;
}

.popup-content button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.popup-content button:hover {
  background-color: #0056b3;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
  color: #ffb031;
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.3rem;
  }

  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 1rem;
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px;
  }

  p {
    font-size: 1.1rem;
  }

  a {
    font-size: 1rem;
  }

  section {
    padding: 45px 0;
  }

  section.even,
  section.odd {
    padding: 45px 0 45px 0;
  }


  .dview {
    display: none !important;
  }

  .mview {
    display: block !important;
  }

  .odd.row {
    flex-direction: column-reverse;
  }

  .accordion-button {
    font-size: 20px;
  }

  .accordion-body {
    font-size: 16px;
  }
  .brandlogo img{
    max-width: 100px;
  }
  .sec4 .gridBox {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .teamImage {
    margin-top: 0px;
  }
  .shapeDivider {
    bottom: -10px;
}
  .sec2 .flexBox {
    margin-bottom: 20px;
  }
  .sec2 img[src="./images/ryan.png"]{
    max-width: 200px;
  }
  .box{
    margin-bottom: 30px;
    min-height: 280px;
  }
  .image-wrapper{
    max-width: 150px;
    max-height: 150px;

}
.lastButtons{
  margin-top: 20px;
  flex-direction: column;
}
.sec5{
  position: relative;
  padding: 30px 0;
}
}