html,
body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --main-color: #f55a00;
  --main-font: "Libre Baskerville", serif;
  --light-color: #fff5f0;
  --dark-color: #242424;
}

.common-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: var(--main-color);
  text-decoration: none;
  word-break: normal;
  text-transform: uppercase;
  padding: 8px 28px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--main-color);
}
.common-btn:hover {
  opacity: 0.9;
  color: #fff;
  scale: 0.95;
}
.common-btn.white-btn {
  background-color: transparent;
  color: #000;
}

.section-padding {
  padding: 60px 0px;
}

.section-title {
  font-size: 32px;
  font-family: var(--main-font);
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
}

.fs-18 {
  font-size: 18px;
  margin-bottom: 32px;
}

.banner-section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0px;
}
.banner-section header .logo img {
  width: auto;
  height: 52px;
}
.banner-section .hero-section {
  padding: 60px 0px 0px;
  margin-left: 100px;
}
.banner-section .hero-section .align-content {
  align-items: center;
}
.banner-section .hero-section .content h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
.banner-section .hero-section .content p {
  color: #000;
  font-size: 18px;
  margin: 24px 0px;
}
.banner-section .hero-section .img-box {
  text-align: end;
}
.banner-section .hero-section .img-box img {
  height: 460px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -1px;
}

.button-div {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}

.services-section {
  padding: 50px 0px;
  background-image: url("../images/rectangle.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -1px;
  border-radius: 16px;
  border-top-right-radius: 0px;
  margin-bottom: 30px;
}
.services-section .section-content {
  color: #fff;
  text-align: center;
  padding: 0px 20px;
}
.services-section .section-content h2 {
  margin-bottom: 20px;
  font-family: var(--main-font);
}
.services-section .section-content p {
  font-weight: 400;
  font-size: 18px;
}
.services-section .section-content .services .service {
  display: inline-block;
  background-color: var(--light-color);
  color: black;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  margin: 6px;
}

.testimonial-section .testimonial {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-style: italic;
}
.testimonial-section .testimonial .partner-academy {
  margin-top: 30px;
}
.testimonial-section .testimonial .partner-academy img {
  width: auto;
  height: 48px;
  display: inline-block !important;
}

.transform-way--section {
  text-align: center;
}
.transform-way--section .transform-services .transform-service {
  background-color: #a4af50;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.transform-way--section .transform-services .transform-service .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.transform-way--section .transform-services .transform-service .icon img {
  width: 20px;
  height: auto;
}
.transform-way--section .transform-services .transform-service h5 {
  margin: 16px 0px;
  font-weight: 600;
}
.transform-way--section .transform-services .transform-service p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
}
.transform-way--section .transform-services .transform-service.color-1, .transform-way--section .transform-services .transform-service.color-6, .transform-way--section .transform-services .transform-service.color-7 {
  background-color: #a4af50;
}
.transform-way--section .transform-services .transform-service.color-2, .transform-way--section .transform-services .transform-service.color-5, .transform-way--section .transform-services .transform-service.color-8 {
  background-color: #efb229;
}
.transform-way--section .transform-services .transform-service.color-3, .transform-way--section .transform-services .transform-service.color-4, .transform-way--section .transform-services .transform-service.color-9 {
  background-color: #ff7d33;
}

.battle-tested--section .section-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 12px;
}
.battle-tested--section .section-content .section-title {
  text-align: left;
}
.battle-tested--section .section-content ul {
  padding-left: 0px;
}
.battle-tested--section .section-content ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.battle-tested--section .section-content ul li span {
  color: var(--main-color);
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-right: 4px;
}
.battle-tested--section .section-content .button-div {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.proof-sauce-section .fs-18 {
  text-align: center;
  font-weight: 700;
}
.proof-sauce-section .sauce {
  text-align: center;
}
.proof-sauce-section .sauce .counter {
  display: inline-block;
  color: var(--main-color);
  font-size: 32px;
  font-weight: 600;
  font-family: var(--main-font);
}
.proof-sauce-section .sauce .counter sub {
  font-size: 24px;
}
.proof-sauce-section .sauce p {
  color: #000;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 8px;
}

.story-section {
  background-color: var(--light-color);
  border-radius: 12px;
}
.story-section .section-title span {
  color: var(--main-color);
}
.story-section .c-founder-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
.story-section .content {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
}
.story-section .content .founder-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
}
.story-section .content .about-founder {
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 0px;
}

.video-section {
  background-color: var(--main-color);
  border-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-top: 15rem;
}
.video-section .section-content .section-title,
.video-section .section-content .fs-18 {
  color: #fff;
  text-align: center;
}
.video-section .section-content .content {
  margin: 60px 0px 40px;
}
.video-section .section-content .content .gaurantee-card {
  background-color: var(--light-color);
  padding: 24px 20px;
  border-radius: 12px;
}
.video-section .section-content .content .gaurantee-card .stamp {
  text-align: center;
}
.video-section .section-content .content .gaurantee-card .stamp img {
  max-width: 100%;
  width: 86px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-section .section-content .content .gaurantee-card .guarantee-text h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
}
.video-section .section-content .content .gaurantee-card .guarantee-text p {
  margin-bottom: 0px;
}
.video-section .section-content .content .button-div {
  justify-content: center;
  margin-top: 40px;
}
.video-section .section-content .content .button-div .common-btn {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-color: var(--light-color);
}
.video-section .section-content .content .button-div .common-btn:nth-child(2) {
  background-color: var(--main-color);
  color: var(--light-color);
}
.video-section .video-container {
  margin-top: -19rem;
}
.video-section .video-container .video-box video {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background-color: var(--dark-color);
  padding: 40px;
  border-radius: 12px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-top: -10px;
  color: #c4c4c4;
}
footer .logo {
  margin-bottom: 20px;
}
footer .logo img {
  width: auto;
  height: 44px;
}
footer p {
  font-size: 14px;
  margin-bottom: 0px;
}
footer .copyright {
  text-align: right;
}
footer .copyright p:first-child {
  margin-bottom: 20px;
}
footer .copyright p .canada-flag {
  width: 14px;
  height: auto;
}

.testimonial-slider .owl-nav {
  position: absolute;
  bottom: -30px;
  width: 110px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
  width: 36px;
  height: 36px;
  background-image: url("../images/arrow_left.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 36px 36px !important;
  float: left;
  opacity: 0.85;
}
.testimonial-slider .owl-nav .owl-prev:hover,
.testimonial-slider .owl-nav .owl-next:hover {
  scale: 0.95;
  background-image: url("../images/arrow_left_orange.png") !important;
}
.testimonial-slider .owl-nav .owl-next {
  rotate: -180deg;
  float: right;
}/*# sourceMappingURL=custom.css.map */