@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap");
/*============================== Variables =========================*/
:root {
  --brand: #25824B;
  --dark: #000000;
  --white: #ffffff;
  --body-text-color: #464646;
  --transition: all .3s ease-in-out;
  --poppins: "Poppins", sans-serif;
  --roboto: "Roboto", sans-serif;
}

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

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--roboto);
  font-size: 1.067rem;
  line-height: 1.6;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
}

.figure {
  margin: 0;
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.text-primary {
  color: var(--brand) !important;
}

.bg-light {
  background: #F5F5F5 !important;
}

.bg-gradient {
  background: #F0F1F1 !important;
}

.text-dark {
  color: #1A1818 !important;
}

.text-justify {
  text-align: justify !important;
}

.ff-poppins {
  font-family: var(--poppins);
  font-display: swap;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600;
}

.lead-sm {
  font-size: 1.125rem;
}

.ff-roboto {
  font-family: var(--roboto);
}

.h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2, .h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.4;
}

h3, .h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand);
}

h4, .h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #001b41;
}

.form-control-lg[type=text], .form-control-lg[type=email], .form-control-lg[type=number] {
  height: 3.5rem;
}

.col--5 {
  max-width: 20%;
  flex: 0 0 20%;
}

.round {
  border-radius: 0.437rem;
}

.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
  background-color: #e9ecef;
  color: var(--brand);
}

.z-index {
  z-index: 99;
  position: relative;
}

.link__more {
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand);
}
.link__more::after {
  margin-left: 0.5rem;
  content: "";
  width: 1.25rem;
  height: 1rem;
  display: inline-block;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMyNTgyNEIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWFycm93LXJpZ2h0Ij48bGluZSB4MT0iNSIgeTE9IjEyIiB4Mj0iMTkiIHkyPSIxMiI+PC9saW5lPjxwb2x5bGluZSBwb2ludHM9IjEyIDUgMTkgMTIgMTIgMTkiPjwvcG9seWxpbmU+PC9zdmc+") center center/1.25rem;
  transition: all 0.3s ease-in-out;
}
.link__more:hover, .link__more:focus, .link__more:active {
  color: var(--dark);
}
.link__more:hover::after, .link__more:focus::after, .link__more:active::after {
  transform: translateX(1rem);
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
  color: var(--brand);
}

a {
  text-decoration: none;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus {
  box-shadow: none;
}

.btn {
  border-radius: 3rem;
  color: #fff;
  font-size: 1.125rem;
  padding: 0.65rem 2rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn:hover {
  border-color: var(--brand);
  background-color: var(--brand);
  filter: brightness(125%);
}
.btn:focus {
  background-color: var(--brand);
}

.btn-primary {
  background-color: #5FC26E;
  border-color: #5FC26E;
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--brand);
}
.btn-white:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--brand);
  filter: brightness(115%);
}

.btn-outline-primary {
  border: 2px solid var(--brand);
  background-color: transparent;
  color: var(--brand);
}

.modal-open {
  padding-right: 0 !important;
}

.modal .modal-dialog {
  max-width: 500px;
}
.modal .modal-dialog.max-400 {
  max-width: 400px;
}
.modal .modal-body {
  padding: 1.5rem;
}

/*------------------ Full width container management ----------------*/
.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.disc__list {
  padding-left: 0.875rem;
}
.disc__list li {
  list-style-type: disc;
}

.mobile__actions {
  position: fixed;
  bottom: 0;
  left: 1.5rem;
  z-index: 999;
}
.mobile__actions .action-btn {
  box-shadow: 0 0 0 #0568A8;
  animation: pulse 1.5s infinite;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  padding: 0;
  margin-bottom: 1rem;
}
.mobile__actions .action-btn img {
  width: 2.75rem;
  height: 2.75rem;
}
.mobile__actions .action-btn.call {
  animation: pulse 1.75s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0568A8;
  }
  70% {
    box-shadow: 0 0 0 1.25rem rgba(5, 103, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 103, 168, 0);
  }
}

@media (max-width: 1199.99px) {
  body {
    font-size: 1rem;
  }
  .h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 1.35rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  .ptb-7 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.55rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  .ptb-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .ptb {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .col--5 {
    max-width: 33.33333%;
    flex: 0 0 33.33333%;
  }
  .ptb-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 1rem;
  }
  .h1 {
    font-size: 1.875rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.35rem;
  }
  h4, .h4 {
    font-size: 1.125rem;
  }
  .col--5 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .ptb {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
  }
  .h1 {
    font-size: 1.625rem;
  }
  h2, .h2 {
    font-size: 1.45rem;
  }
  h3, .h3 {
    font-size: 1.125rem;
  }
  h4, .h4 {
    font-size: 1rem;
  }
  .lead-sm {
    font-size: 1rem;
  }
  .col--5 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .ptb {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .btn {
    padding: 0.35rem 1.45rem;
    font-size: 1rem;
  }
  .mobile__actions {
    left: 0.5rem;
  }
}
@keyframes glitter {
  0% {
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }
  100% {
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}
#preloader {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background-color: #fff;
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.load hr {
  border: 0;
  margin: 0;
  width: 30%;
  height: 30%;
  position: absolute;
  border-radius: 50%;
  animation: spin 2s ease infinite;
  opacity: 1;
}

.load :first-child {
  background: #19A68C;
  animation-delay: -1.5s;
}

.load :nth-child(2) {
  background: #F63D3A;
  animation-delay: -1s;
}

.load :nth-child(3) {
  background: #FDA543;
  animation-delay: -0.5s;
}

.load :last-child {
  background: #193B48;
}

@keyframes spin {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}
@media (max-width: 992px) {
  .load {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .load {
    width: 50px;
    height: 50px;
  }
}
/*=========== PreLoader Styles =============*/
.top__nav img {
  height: 1.125rem;
  width: auto;
  margin-right: 0.5rem;
}
.top__nav img.clock {
  height: 1.35rem;
}
.top__nav a {
  color: var(--white);
}
.top__nav .links a {
  position: relative;
  margin-right: 1rem;
}
.top__nav .links a:not(:last-child)::after {
  content: "|";
  font-size: 1rem;
  display: inline-block;
  position: absolute;
  top: -0.12rem;
  right: -0.625rem;
}

.social__links li:not(:last-child) {
  margin-right: 0.5rem;
}
.social__links li a {
  width: 2rem;
  height: 2rem;
  background-color: var(--white);
  color: var(--brand);
}

/*====================== Navigation Styles ===================*/
.navbar {
  padding: 0.5rem 0;
  background-color: #fff;
}
.navbar .navbar-brand {
  display: block;
  padding: 0;
}
.navbar .navbar-brand img {
  max-height: 5.5rem;
}
.navbar .navbar-brand .shine {
  display: block;
  position: absolute;
  background-image: url("../images/glitter.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
  width: 110px;
  height: 110px;
  animation: glitter 6s linear 0s infinite normal;
  text-indent: -9999px;
  top: -54%;
  left: -14%;
  position: absolute;
  pointer-events: none;
}
.navbar .nav-item {
  margin-left: 1rem;
}
.navbar .nav-item:last-child .nav-link {
  padding-right: 0 !important;
}
.navbar .nav-link {
  font-size: 1rem;
  line-height: 1.35;
  color: #2F2F2F;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.navbar .nav-link.dropdown-toggle::after {
  content: "\f107";
  font: normal normal normal 18px/1 FontAwesome;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-link:hover::after {
  transform: rotate(-180deg) !important;
  color: var(--brand);
}
.navbar .nav-link.show {
  color: var(--brand);
}
.navbar .nav-link.show::after {
  transform: rotate(-180deg) !important;
  color: var(--brand);
}
.navbar .active .nav-link {
  position: relative;
  color: var(--brand);
}
.navbar .remove__underline::before {
  content: none !important;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  background-color: var(--white);
  border: 0;
  padding: 0;
  box-shadow: 0 0.4rem 0.75rem rgba(37, 130, 76, 0.168627451) !important;
  transition: all 0.3s ease-in-out;
  transform: scaleY(0);
  opacity: 0;
  border-radius: 0%;
  min-width: 15rem;
}
.navbar .dropdown .dropdown-menu.food__safety {
  min-width: 11rem;
}
.navbar .dropdown .dropdown-menu.about__dropmenu {
  min-width: 10rem;
}
.navbar .dropdown .dropdown-menu.sub__inner__dropdown__menu {
  min-width: 30rem;
  left: auto;
  right: -30rem;
  top: 0;
}
.navbar .dropdown .dropdown-menu.sub__inner__dropdown__menu .border-right {
  border-right: 1px solid #eee !important;
}
.navbar .dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}
.navbar .dropdown .dropdown-menu a {
  font-size: 0.937rem;
  color: #2F2F2F;
  display: block;
  padding: 0.75rem 1rem;
  position: relative;
  text-transform: uppercase;
}
.navbar .dropdown .dropdown-menu a:hover {
  color: var(--brand);
}
.navbar .dropdown .dropdown-menu .dropdown-item.dropdown-toggle::after {
  transform: rotate(-90deg);
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
}
.navbar .dropdown .dropdown-menu .childDrop.active a.nav-link {
  color: var(--brand);
}
.navbar .dropdown .dropdown-menu .childDrop.active a.nav-link::before {
  width: 2px;
  height: 100%;
  bottom: 0;
  left: 0;
  transform: none;
}
.navbar .dropdown .dropdown-menu.inner__dropdown__menu {
  left: 100%;
  top: 0%;
  min-width: 18rem;
}
.navbar .dropdown .dropdown-menu.inner__dropdown__menu.level3 {
  min-width: 15rem;
  max-width: 15rem;
}
.navbar .level2-link.dropdown-toggle::after {
  content: "\f107";
  font: normal normal normal 18px/1 FontAwesome;
  border: 0;
  transition: all 0.3s ease-in-out;
}
.navbar .dropdown-item {
  text-transform: uppercase;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 28px;
  height: 22px;
  position: relative;
  background-color: transparent;
  padding: 0%;
  border-radius: 0%;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar .navbar-toggler span {
  display: block;
  background-color: #005080;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.navbar .navbar-toggler span:nth-child(2) {
  top: 9px;
}
.navbar .navbar-toggler span:nth-child(3) {
  top: auto;
  bottom: 0px;
}
.navbar .navbar-toggler.jsExpand span:nth-child(1) {
  transform: rotate(-48deg);
  top: 9px;
}
.navbar .navbar-toggler.jsExpand span:nth-child(3) {
  transform: rotate(48deg);
  bottom: 9px;
}
.navbar .navbar-toggler.jsExpand span:nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
}
.navbar.fixed-top {
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #d9e8ff;
  padding: 0.5rem 0;
  animation: mymove 1s ease-in-out;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 3rem;
}

@keyframes mymove {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
/*----------- Side Menu Wrapper Styles ---------------*/
.sideMenu {
  min-height: 100vh;
  z-index: 1060;
  background-color: rgba(0, 0, 0, 0.45);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.sideMenu .content {
  max-width: 350px;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
}
.sideMenu .content .nav-item {
  margin-left: 0;
  border-bottom: 1px solid #e4e4e4;
}
.sideMenu .content .nav-item.active .nav-link {
  padding-left: 1rem !important;
}
.sideMenu .content .nav-item.active .nav-link::before {
  width: 2px;
  height: 70%;
  top: 50%;
  bottom: auto;
  left: 0%;
  transform: translateY(-50%) translateX(0);
}
.sideMenu .content .nav-item.active .nav-link:hover::before {
  transform: translateY(-50%) translateX(0) !important;
}
.sideMenu .content .nav-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0.625rem 0rem !important;
  font-size: 15px;
  color: #2F2F2F;
  text-transform: uppercase;
  font-weight: 500;
}
.sideMenu .content .nav-link.pe {
  padding: 0.625rem 0.75rem 0.625rem 0 !important;
}
.sideMenu .content .nav-link.dropdown-toggle.parent {
  width: 3rem;
  border-left: 1px solid #eee;
}
.sideMenu .content .nav-link.dropdown-toggle::after {
  content: "\f107";
  font: normal normal normal 18px/1 FontAwesome;
  font-size: 24px;
  border: 0;
  margin: 0%;
  transition: all 0.3s ease-in-out;
}
.sideMenu .content .collapse__btn {
  color: var(--brand);
  background-color: #f4f4f4;
  white-space: inherit !important;
}
.sideMenu .content .collapse__btn::after {
  transform: rotate(180deg);
}
.sideMenu .content .collapse__btn.collapsed {
  color: #2F2F2F;
  background-color: transparent;
}
.sideMenu .content .collapse__btn.collapsed::after {
  transform: rotate(0deg);
}
.sideMenu .content .dropdown .dropdown-menu {
  position: unset;
  padding: 0;
  box-shadow: none;
  min-width: auto;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  box-shadow: none !important;
}
.sideMenu .content .dropdown .dropdown-menu li:nth-child(1) {
  border-top: 1px solid #e4e4e4;
}
.sideMenu .content .dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.sideMenu .content .dropdown .dropdown-menu a {
  width: 100% !important;
  font-size: 14px;
  padding: 0.5rem 0;
}
.sideMenu .content .dropdown .dropdown-menu a:hover {
  color: var(--dark);
}
.sideMenu .content .dropdown-item {
  padding: 0.5rem 0.625rem !important;
  font-size: 15px;
}
.sideMenu .content .inner__dropdown__menu .dropdown-item {
  white-space: pre-line;
}
.sideMenu .content .collapse li:nth-child(1) {
  border-top: 1px solid #e4e4e4;
}
.sideMenu .content .collapse li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.sideMenu.js--open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown .dropdown-menu .dropdown:hover > a {
    color: var(--brand) !important;
  }
  .navbar .dropdown:hover > a {
    color: var(--brand);
  }
  .navbar .dropdown:hover > a::after {
    transform: rotate(-180deg) !important;
  }
  .navbar .dropdown:hover > .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
  }
}
@media (max-width: 1400px) {
  .top__nav .small {
    font-size: 0.75rem;
  }
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
  .navbar .navbar-brand .shine {
    width: 70px;
    height: 70px;
  }
  .navbar .nav-item {
    margin-left: 0.125rem;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-brand img {
    max-height: 2.75rem;
  }
  .navbar .navbar-brand .shine {
    width: 80px;
    height: 80px;
  }
  .navbar .nav-link {
    font-size: 0.775rem;
  }
  .navbar .nav-item {
    margin-left: 0.125rem;
  }
  .top__nav .small {
    font-size: 0.725rem;
  }
  .top__nav .links a:not(:last-child)::after {
    font-size: 0.875rem;
    top: -0.175rem;
  }
  .top__nav img {
    height: 13px;
    margin-right: 0.35rem;
  }
  .top__nav img.clock {
    height: 17px;
  }
}
@media (max-width: 992px) {
  .navbar .dropdown .dropdown-menu .content {
    padding-left: 0% !important;
  }
  .navbar {
    height: auto;
  }
  .navbar .container {
    position: relative;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem 2rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    z-index: 999;
  }
}
@media (max-width: 767.99px) {
  .top__nav .small {
    font-size: 0.875rem;
  }
  .top__nav .links a:not(:last-child)::after {
    top: -1px;
  }
  .navbar .navbar-brand .shine {
    width: 60px;
    height: 60px;
    top: -40%;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 4rem;
  }
  .navbar .navbar-collapse {
    padding: 1rem 1.5rem;
  }
  .navbar .navbar-toggler.jsExpand span:nth-child(1) {
    top: 9px;
  }
  .top__nav img {
    height: 11px;
  }
  .top__nav .small {
    font-size: 0.75rem;
  }
  .top__nav .links a:not(:last-child)::after {
    top: 0px;
    font-size: 0.75rem;
  }
  .sideMenu .content {
    max-width: 100%;
  }
}
footer {
  background-color: #001F3F;
  color: #fff;
  padding: 4rem 0 1rem 0;
}
footer a {
  color: #fff;
  font-weight: 500;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .underline {
  position: relative;
}
footer .underline::after {
  content: "";
  width: 150vw;
  height: 1px;
  background-color: #0e3862;
  position: absolute;
  bottom: 0%;
  left: -40vw;
  display: block;
}
footer .underline.copyright::after {
  top: 0%;
  bottom: auto;
}
footer .title {
  position: relative;
  margin-bottom: 1.5rem;
}
footer .title::after {
  content: "";
  width: 5rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -0.5rem;
  left: 0%;
  display: block;
}
footer .details__list li {
  margin-bottom: 0.75rem;
}
footer .details__list li img {
  width: 1.25rem;
  height: auto;
}
footer .details__list li .caption {
  width: calc(100% - 1.25rem);
  padding-left: 1rem;
  font-size: 1rem;
}
footer .social__links a {
  background-color: var(--brand);
  color: var(--dark);
}
footer .social__links a:hover {
  background-color: var(--white);
  color: var(--brand);
  text-decoration: none;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 1rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--brand);
  z-index: 99;
  display: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWFycm93LXVwIj48bGluZSB4MT0iMTIiIHkxPSIxOSIgeDI9IjEyIiB5Mj0iNSI+PC9saW5lPjxwb2x5bGluZSBwb2ludHM9IjUgMTIgMTIgNSAxOSAxMiI+PC9wb2x5bGluZT48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  background-position: center center;
  border: 2px solid var(--white);
}
.backTop:hover {
  background-color: var(--dark);
}
.backTop.show {
  display: block;
}

/*====================================================== Home Page Styles =========================================================================================*/
/*======================= Header Wrapper Styles ========================*/
.header__wrapper .h1 {
  font-size: 4rem;
  font-weight: 600;
}
.header__wrapper .carousel {
  position: relative;
}
.header__wrapper .carousel-item {
  min-height: calc(100vh - 8rem);
}
.header__wrapper .carousel-item .container {
  min-height: calc(100vh - 8rem);
}
.header__wrapper .carousel-item.bg-shadow {
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}
.header__wrapper .carousel-indicators {
  bottom: 4rem;
}
.header__wrapper .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
  display: block;
  box-sizing: border-box;
}
.header__wrapper .carousel-indicators .active {
  background-color: #fff;
}
.header__wrapper .carousel-controls .carousel-control-next, .header__wrapper .carousel-controls .carousel-control-prev {
  width: 2rem;
  height: 4rem;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
}
.header__wrapper .carousel-controls .carousel-control-next {
  left: auto;
  right: 2rem;
}

/*------ Get a Quote --------------*/
.banner__wrapper {
  box-shadow: 13px 12px 0px 4px #006838;
  height: 441px;
  width: 436px;
  border-radius: 50%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.banner__wrapper::before {
  content: "";
  height: 441px;
  width: 436px;
  border-radius: 50%;
  box-shadow: -9px -8px 0px 6px #dbdbdb;
  position: absolute;
}
.banner__wrapper img {
  height: 441px;
  width: 436px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.banner__wrapper.no_shadow {
  box-shadow: none;
}
.banner__wrapper.no_shadow::before {
  content: none;
}

/*------- Trusted Company ------------------*/
.trust__link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  font-weight: 700;
  font-family: var(--poppins);
  padding: 2rem 2rem;
  background: #F0F1F1;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 0.437rem;
  min-height: 7.812rem;
  transition: all 0.3s ease-in-out;
}
.trust__link:hover {
  box-shadow: none;
  background-color: var(--brand);
  color: var(--white);
  position: relative;
  transform: translateY(-0.5rem);
}
.trust__link.expert {
  min-height: 5rem;
}

/*------ Stand Wrapper -------------*/
.stand__card {
  padding: 1rem;
  min-height: 5.75rem;
  transition: var(--transition);
}
.stand__card:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0 0.2rem 0.5rem rgba(255, 255, 255, 0.5);
}

.page__header {
  box-shadow: inset 0 0 0 2000px rgba(59, 126, 34, 0.7);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 19rem;
  display: flex;
  align-items: center;
}
.page__header .h1 {
  font-weight: bold;
  text-transform: capitalize;
  color: var(--white);
}

.block__wrapper {
  background: #F0F1F0;
}
.block__wrapper .title__box {
  position: relative;
}
.block__wrapper .title__box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--brand);
  position: absolute;
  top: 0%;
  left: -90%;
  z-index: 0;
}
.block__wrapper .content {
  padding: 3rem 2rem 3rem 4rem;
}
.block__wrapper.right__align .title__box {
  padding-left: 3rem;
}
.block__wrapper.right__align .title__box::before {
  left: auto;
  right: -90%;
}
.block__wrapper.right__align .content {
  padding: 3rem 4rem 3rem 2rem;
}

.check__list li {
  position: relative;
  padding-left: 2rem;
}
.check__list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 0%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDkuNUMwIDYuOTgwNDQgMS4wMDA4OSA0LjU2NDA4IDIuNzgyNDkgMi43ODI0OUM0LjU2NDA4IDEuMDAwODkgNi45ODA0NCAwIDkuNSAwQzEyLjAxOTYgMCAxNC40MzU5IDEuMDAwODkgMTYuMjE3NSAyLjc4MjQ5QzE3Ljk5OTEgNC41NjQwOCAxOSA2Ljk4MDQ0IDE5IDkuNUMxOSAxMi4wMTk2IDE3Ljk5OTEgMTQuNDM1OSAxNi4yMTc1IDE2LjIxNzVDMTQuNDM1OSAxNy45OTkxIDEyLjAxOTYgMTkgOS41IDE5QzYuOTgwNDQgMTkgNC41NjQwOCAxNy45OTkxIDIuNzgyNDkgMTYuMjE3NUMxLjAwMDg5IDE0LjQzNTkgMCAxMi4wMTk2IDAgOS41Wk04Ljk1Nzg3IDEzLjU2NkwxNC40MjczIDYuNzI4NTNMMTMuNDM5MyA1LjkzODEzTDguNzc1NDcgMTEuNzY2MUw1LjQ3MiA5LjAxMzZMNC42NjEzMyA5Ljk4NjRMOC45NTc4NyAxMy41NjczVjEzLjU2NloiIGZpbGw9IiMyNTgyNEIiLz4KPC9zdmc+Cg==") no-repeat center center/1rem;
}
.check__list li:not(:last-child) {
  margin-bottom: 1rem;
}
.check__list.sm li {
  padding-left: 1.5rem;
}
.check__list.sm li::before {
  position: absolute;
  top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
}
.check__list.sm li:not(:last-child) {
  margin-bottom: 0.5rem;
}

/*============ Contact Page Styles ======================*/
.contact__wrapper .icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid var(--brand);
}
.contact__wrapper .icon img {
  width: 1.5rem;
  height: 1.5rem;
}
.contact__wrapper .caption {
  width: calc(100% - 3.25rem);
  padding-left: 1rem;
}
.contact__wrapper .caption .lead {
  font-weight: 700;
}
.contact__wrapper .caption a {
  font-weight: 700;
  display: block;
  color: var(--brand);
}
.contact__wrapper .form-control {
  height: 3rem;
  border-color: #e3e3e3;
  margin-top: 0.2rem;
}
.contact__wrapper textarea.form-control {
  height: auto;
}
.contact__wrapper .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}

.map {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #ccc;
  max-height: 30rem;
}
.map::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

@media (max-width: 1400px) {
  .header__wrapper .h1 {
    font-size: 3.5rem;
  }
  .banner__wrapper {
    height: 421px;
    width: 416px;
  }
  .banner__wrapper::before {
    height: 421px;
    width: 416px;
  }
  .banner__wrapper img {
    height: 421px;
    width: 416px;
  }
}
@media (max-width: 1200px) {
  .header__wrapper .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .header__wrapper .h1 {
    font-size: 2.75rem;
    text-align: center;
  }
  .header__wrapper .carousel-item {
    min-height: 33rem;
    text-align: center;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
  }
  .header__wrapper .carousel-item .container {
    min-height: 33rem;
    justify-content: center;
  }
  .header__wrapper .carousel-indicators {
    bottom: 2rem;
  }
  .block__wrapper .content {
    padding: 3rem 0rem 3rem 2rem;
  }
  .block__wrapper.right__align .content {
    padding: 3rem 2rem 3rem 0rem;
  }
  .page__header {
    min-height: 14rem;
  }
}
@media (max-width: 768px) {
  .header__wrapper .h1 {
    font-size: 2.5rem;
  }
  .header__wrapper .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
  }
  .block__wrapper .title__box {
    padding: 3rem;
    justify-content: center;
    text-align: center;
  }
  .block__wrapper .title__box::before {
    width: 150vw;
  }
  .block__wrapper .content {
    padding: 2rem 0rem 3rem 0rem;
    text-align: justify;
  }
  .block__wrapper.right__align .title__box::before {
    left: auto;
    right: -90%;
  }
  .block__wrapper.right__align .content {
    padding: 1.5rem 0rem 2rem 0rem;
  }
  .page__header {
    min-height: 16rem;
  }
}
@media (max-width: 576px) {
  .social__links {
    right: 0.2rem;
  }
  .social__links li a {
    width: 24px;
    height: 24px;
  }
  .header__wrapper .h1 {
    font-size: 1.875rem;
  }
  .header__wrapper .carousel-item {
    min-height: 26rem;
  }
  .header__wrapper .carousel-item .container {
    min-height: 26rem;
  }
  .header__wrapper .carousel-indicators {
    bottom: 1rem;
  }
  .header__wrapper .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  .banner__wrapper {
    height: 301px;
    width: 296px;
  }
  .banner__wrapper::before {
    height: 301px;
    width: 296px;
  }
  .banner__wrapper img {
    height: 301px;
    width: 296px;
  }
  .banner__wrapper {
    box-shadow: 7px 6px 0px 4px #006838;
  }
  .banner__wrapper::before {
    box-shadow: -9px -5px 0px 6px #dbdbdb;
  }
  .page__header {
    min-height: 10rem;
  }
  .block__wrapper .title__box::before {
    left: -50%;
  }
  .block__wrapper.right__align .title__box::before {
    right: -38%;
  }
  .block__wrapper .title__box {
    padding: 2rem 0 !important;
  }
}/*# sourceMappingURL=style.css.map */