@import url("../css/fontawesome-all.min.css");

/**** custom fonts start ****/
@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Light.woff2") format("woff2"),
    url("../fonts/Figtree-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-LightItalic.woff2") format("woff2"),
    url("../fonts/Figtree-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Regular.woff2") format("woff2"),
    url("../fonts/Figtree-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Italic.woff2") format("woff2"),
    url("../fonts/Figtree-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Medium.woff2") format("woff2"),
    url("../fonts/Figtree-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-MediumItalic.woff2") format("woff2"),
    url("../fonts/Figtree-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-SemiBold.woff2") format("woff2"),
    url("../fonts/Figtree-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/Figtree-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Bold.woff2") format("woff2"),
    url("../fonts/Figtree-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-BoldItalic.woff2") format("woff2"),
    url("../fonts/Figtree-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-ExtraBold.woff2") format("woff2"),
    url("../fonts/Figtree-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-ExtraBoldItalic.woff2") format("woff2"),
    url("../fonts/Figtree-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-Black.woff2") format("woff2"),
    url("../fonts/Figtree-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src:
    url("../fonts/Figtree-BlackItalic.woff2") format("woff2"),
    url("../fonts/Figtree-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/**** custom fonts end ****/
:root {
  --logoWidth: 177px;
  --pageCenter: 1270px;
  --bodyFontFamily: "Figtree", sans-serif;
  --bodyFontColor: #333333;
  --bodyFont: 16px;
  --bodyLineHeight: 24px;
  --linkColor: #febd34;
  --headerSpace: 175px;
  --btnFontFamily: "Figtree", sans-serif;
  --btnFont: 14px;
  --btnColor: #fff;
  --btnBg: #b86b4b;
  --btnBorder: 1px solid #b86b4b;
  --btnBorderRadius: 40px;
  --btnPadding: 8.5px 15px;
  --btnBgHover: #fff;
  --btnColorHover: #b86b4b;
  --btnSecondaryColor: #fff;
  --btnSecondaryBg: #04351e;
  --btnSecondaryBorder: 1px solid #04351e;
  --btnSecondaryHoverColor: #04351e;
  --btnSecondaryBgHover: #fff;
}

html {
  overflow-x: hidden;
  font-size: var(--bodyFont);
  line-height: var(--bodyLineHeight);
}

body {
  color: var(--bodyFontColor);
  font-size: 100%;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  line-height: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

* {
  border: none;
  margin: 0;
  outline: none !important;
  padding: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

label {
  display: block;
  margin: 0 0 5px;
  font-weight: 400;
}

label.auto {
  display: inline-block;
  margin: 5px 40px 5px 0;
}

label.auto:last-child {
  margin-right: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--linkColor);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--bodyFontColor);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bodyFontFamily);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}

.h1,
h1 {
  font-size: 50px;
}

.h2,
h2 {
  font-size: 45px;
}

.h3,
h3 {
  font-size: 40px;
  font-weight: 600;
}

.h4,
h4 {
  font-size: 19px;
}

.h5,
h5 {
  font-size: 18px;
}

.h6,
h6 {
  font-size: 16px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

/***** wp ******/
.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 15px 30px;
}

.alignleft {
  float: left;
  margin: 5px 30px 15px 0;
}

.alignnone {
  margin: 10px 0;
}

.alignblock {
  margin: 10px 0;
  float: none;
  width: 100%;
  display: block;
}

.alignright.shadow {
  -webkit-box-shadow: -25px 25px 40px rgba(0, 0, 0, 0.16);
  box-shadow: -25px 25px 40px rgba(0, 0, 0, 0.16);
  margin-left: 105px;
  margin-bottom: 40px;
}

p.pn {
  padding: 0;
  margin: 0;
}

p {
  margin: 0 0 20px;
}

p + ul,
p + ol {
  margin-top: -6px;
}

ul {
  margin: 0 0 25px;
}

ul li {
  position: relative;
  padding: 0 0 7px 22px;
  overflow: hidden;
}

ul li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 12px;
  color: var(--bodyFontColor);
  display: inline-block;
  line-height: 1;
  position: absolute;
  left: 2px;
  top: 7px;
}

ol {
  padding-left: 26px;
  margin: 0 0 25px;
  text-align: left;
  overflow: hidden;
}

ol li {
  list-style: decimal;
  padding-bottom: 7px;
  padding-left: 0;
}

ol li ul > li {
  padding-left: 20px;
  list-style: none;
}

ol li ul > li:before {
  display: block;
  left: 1px;
}

ul ol li {
  overflow: visible;
}

ul ol li:before {
  display: none;
  overflow: visible;
}

ol ol li {
  list-style: lower-alpha;
}

ol ol ol li {
  list-style: lower-roman;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-top: 12px;
  margin-bottom: 5px;
}

ul li:last-child,
ol li:last-child {
  padding-bottom: 0;
}

.text-center ul {
  text-align: left;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.list-none li {
  padding-left: 0;
}

.list-none li:before {
  display: none;
}

p:last-child,
ol:last-child,
ul:last-child,
ol ul:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.table-responsive {
  border: none;
  margin: 20px 0;
  overflow: auto;
}

table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid #cfcdcd;
  border-collapse: collapse !important;
}

table tr td,
table tr th {
  padding: 14px 15px;
  vertical-align: top;
  text-align: left;
  line-height: 18px;
  border: 1px solid #dddddd;
}

table tr th {
  font-weight: 700;
}

th[align="center"],
td[align="center"] {
  text-align: center !important;
}

th[align="right"],
td[align="right"] {
  text-align: right !important;
}

.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

.common-content {
  padding: 60px 0;
}

.smallCommonHeading {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 24px;
}

.smallCommonHeading2 {
  font-size: 20px;
}

.type2.smallCommonHeading {
  margin: 0 0 10px;
}

.lynx-white-bg {
  background: #f7f7f7;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

a[href^="tel:"],
a[href^="mailto:"] {
  display: inline-block;
  word-break: break-word;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--pageCenter);
  clear: both;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row:before,
.row:after {
  content: "";
  clear: both;
  display: table;
}

.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33%;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33%;
  }
}

@media (min-width: 992px) {
  .h1,
  h1 {
    font-size: 56px;
  }

  .h2,
  h2 {
    font-size: 50px;
  }

  .h3,
  h3 {
    font-size: 43px;
    font-weight: 600;
  }

  .h4,
  h4 {
    font-size: 30px;
  }

  .h5,
  h5 {
    font-size: 20px;
  }

  .h6,
  h6 {
    font-size: 18px;
  }

  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33%;
  }
}

/******Input******/
input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="file"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea,
.form-control {
  background-color: #fffced;
  border: 1px solid #fffced;
  border-radius: 5px;
  color: var(--bodyFontColor);
  display: block;
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  line-height: 20px;
  padding: 12px 22px;
  position: relative;
  width: 100%;
  height: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus,
input[type="url"]:focus,
.form-control:focus {
  border-color: var(--bodyFontColor);
}

textarea,
textarea.form-control {
  height: 125px;
  resize: none;
}

select {
  -moz-appearance: unset;
  -webkit-appearance: unset;
  background-image: url("../img/select-down-arrow.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 10px) center;
  padding-right: 30px !important;
}

select option {
  font-size: 16px;
}

.input-group-btn:last-child > .btn:hover,
.input-group-btn:last-child > .btn-group:hover {
  color: #787878;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 15px;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-form-control label {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: #737c96;
  font-weight: normal !important;
}

.wpcf7-form-control .wpcf7-list-item input {
  display: none;
}

.wpcf7-form-control .wpcf7-list-item-label {
  position: relative;
  padding: 2px 0 2px 32px !important;
  margin: 0 !important;
}

.wpcf7-form-control .wpcf7-list-item-label:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #d3dae5;
  background-color: #f7f9fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
}

.wpcf7-form-control
  .wpcf7-list-item:has(input[type="checkbox"])
  .wpcf7-list-item-label:before {
  border-radius: 4px;
}

.wpcf7-form-control
  .wpcf7-list-item:has(input[type="checkbox"])
  .wpcf7-list-item-label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  width: auto;
  background: none;
  height: auto;
  color: #b86b4c;
  line-height: 18px;
  font-weight: 900;
  left: 3px;
  top: 3px;
}

.wpcf7-form-control .wpcf7-list-item-label::after {
  content: "";
  background: #b86b4c;
  border-radius: 20px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  left: 6px;
  opacity: 0;
}

.wpcf7-form-control input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #043024;
  opacity: 1;
}

::-moz-placeholder {
  color: #043024;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #043024;
  opacity: 1;
}

:-moz-placeholder {
  color: #043024;
  opacity: 1;
}

/******Browser Compatibility******/
input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield !important;
}

/******Input Ends******/
a,
input[type="button"],
input[type="submit"],
input[type="reset"],
:after,
:before {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

section,
header,
footer {
  float: left;
  width: 100%;
  position: relative;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--btnFontFamily);
  font-weight: 400;
  position: relative;
  border: var(--btnBorder);
  border-radius: var(--btnBorderRadius);
  text-align: center;
  text-transform: uppercase;
  font-size: var(--btnFont);
  color: var(--btnColor);
  font-style: normal;
  line-height: normal;
  padding: var(--btnPadding);
  text-decoration: none !important;
  white-space: normal;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  min-width: 141px;
}

.btn:hover {
  color: var(--btnColorHover);
}

.secondary-btn {
  color: var(--btnSecondaryColor);
  background-color: var(--btnSecondaryHoverBg);
  border: var(--btnSecondaryBorder);
}

.secondary-btn:hover {
  color: var(--btnSecondaryHoverColor);
}

.btn.outline-btn {
  color: var(--btnBg);
  background-color: var(--btnBgHover);
}

.btn.outline-btn::before {
  background-color: var(--btnBg);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.btn.outline-btn:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.btn.outline-btn:hover,
.btn.outline-btn:focus {
  color: var(--btnColor);
  background-color: var(--btnBg);
}

.btn.secondaryOutline-btn {
  color: var(--btnSecondaryHoverColor);
  background-color: var(--btnSecondaryBgHover);
  border-color: var(--btnSecondaryHoverColor);
}

.btn.secondaryOutline-btn::before {
  background-color: var(--btnSecondaryHoverColor);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.btn.secondaryOutline-btn:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.btn.secondaryOutline-btn:hover,
.btn.secondaryOutline-btn:focus {
  color: var(--btnSecondaryColor);
  background-color: transparent;
}

.btn.green-btn {
  color: #ffffff;
  background-color: #04351e;
  border-color: #04351e;
}

.btn.green-btn::before {
  background-color: #fff;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.btn.green-btn:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.btn.green-btn:hover,
.btn.green-btn:focus {
  color: #04351e;
}

input.btn {
  background-color: var(--btnBg);
}

input.btn:hover {
  background: var(--btnBgHover);
}

input.btn.secondary-btn {
  background-color: var(--btnSecondaryBg);
}

input.btn.secondary-btn:hover {
  background-color: var(--btnSecondaryBgHover);
}

input.btn.secondaryOutline-btn:hover {
  background: var(--btnSecondaryBg);
}

.btn-row .btn {
  margin: 10px 6px 0 0;
}

.btn-row .btn:last-child {
  margin-right: 0;
}

.btn:not(input) {
  position: relative;
}

.btn:not(input)::before {
  content: "";
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:
    transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: var(--btnBg);
}

.btn:not(input):hover::before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.btn.secondary-btn:not(input)::before {
  background: var(--btnSecondaryBg);
}

.custom-upload {
  position: relative;
  border: 1px solid #fffced;
  margin: 0 0 15px !important;
  border-radius: 5px;
  padding: 14px 20px;
  background: #fffced;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.custom-upload:hover {
  border-color: var(--bodyFontColor);
}

.custom-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 0;
  -o-text-overflow: clip;
  text-overflow: clip;
  opacity: 0;
}

.upload-btn {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-break: keep-all;
  font-size: 0.875rem;
  line-height: normal;
  margin: 0 10px 0 0;
  font-weight: 300;
}

.custom-upload i {
  font-size: 18px;
  display: block;
  position: static;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  margin: 0 10px 0 0;
}

.custom-upload small {
  display: block;
  font-size: 12px;
  color: #acacac;
  font-style: italic;
  line-height: normal;
}

.wpcf7-not-valid-tip {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 7px;
  line-height: 1;
  margin: 10px 0 0;
  border-radius: 5px;
  border: 1px solid #dc3232;
  position: relative;
}

.wpcf7-not-valid-tip::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: -5px;
  left: 18px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #dc3232;
  border-left: 1px solid #dc3232;
}

.wpcf7-not-valid {
  border-width: 2px !important;
  border-color: #dc3232 !important;
}

/******Form Style******/
.form-max-width {
  max-width: 600px;
}

.form-field {
  text-align: left;
  margin-top: -20px;
}

.form-field input,
.form-field textarea,
.form-field select {
  margin: 0;
}

.form-field .row,
.row.form-field {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}

.form-field .row .row,
.row.form-field .row {
  margin-left: -6px;
  margin-right: -6px;
  margin-top: -20px;
}

.form-field [class^="col-"],
.form-field [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 20px;
}

.form-field [class^="col-"] [class^="col-"],
.form-field [class*="col-"] [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

.form-field p {
  padding: 10px 0 0 0;
  margin: 0;
}

.form-field [class^="col-"] p,
.form-field [class*="col-"] p {
  position: relative;
  padding: 0;
  margin: 0;
}

.form-field .btn {
  min-width: 190px;
}

/******Header******/
header + div,
header + section {
  padding-top: var(--headerSpace) !important;
}

header {
  position: fixed;
  background-color: transparent;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 999;
  transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
}
header .container {
  position: relative;
  z-index: 3;
}
header .header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0;
}

html:not(.head-fix):has(.main-banner video) header::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: rgb(0 0 0 / 20%);
  backdrop-filter: blur(3px);
}

header .header-left {
  float: left;
  width: var(--logoWidth);
  min-width: var(--logoWidth);
}

header .header-right {
  margin: 0 0 0 auto;
}

header .logo {
  float: left;
  max-width: 100%;
  z-index: 999;
  width: 100%;
}

header .logo a {
  display: block;
  margin: 0;
  position: relative;
}

header .logo img {
  display: block;
  margin: 0;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

header .logo img + img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

header .header-btn-wrap {
  margin: 0 0 0 35px;
}

header .header-btn-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header .header-btn-wrap ul li {
  padding: 0px;
  margin: 0px 0px 0px 15px;
}

header .header-btn-wrap ul li:first-child,
header .header-btn-wrap ul li:last-child {
  margin: 0px;
}

header .header-btn-wrap ul li::before {
  display: none;
}

header .header-btn-wrap .btn {
  padding-inline: 26px;
}

header .header-btn-wrap .btn i {
  display: none;
}

.head-fix header .logo img {
  opacity: 0;
  visibility: hidden;
}

.head-fix header .logo img + img,
body:not(:has(.main-banner)) header .logo img + img,
.head-fix body:has(.inner-banner) header .logo img + img {
  opacity: 100%;
  visibility: visible;
}

body:not(:has(.main-banner)) header .logo img {
  visibility: hidden;
  opacity: 0;
}

.head-fix header {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  background: #fff;
}

body:has(.inner-banner) header .logo img + img {
  opacity: 0;
  visibility: hidden;
}

body:has(.inner-banner) header .logo img {
  opacity: 100%;
  visibility: visible;
}

@media only screen and (min-width: 1025px) {
  /*****nav starts*****/
  .nav-trigger,
  .nav-wrap nav ul li:before,
  .submenu-button,
  .nav-trigger-wrap {
    display: none;
  }

  .nav-wrap {
    position: relative;
    float: left;
    width: 100%;
    margin: 0;
    z-index: 99;
  }

  .nav-wrap nav {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    display: block;
    position: relative;
  }

  .nav-wrap nav ul.nav {
    float: right;
    margin: 0;
  }

  .nav-wrap nav ul.nav > li {
    float: left;
    margin: 0 30px 0 0;
    padding: 0;
    overflow: visible;
    position: relative;
  }

  .nav-wrap nav ul.nav > li:last-child {
    margin-right: 0;
  }

  .nav-wrap nav ul.nav > li > a {
    display: block;
    padding: 7px 0;
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav > li > a:focus,
  .nav > li > a:hover {
    background-color: transparent;
  }

  /*.nav-wrap nav ul.nav li.has-sub li.has-sub > a { padding-right: 20px !important } */
  .nav-wrap nav ul.nav > li.has-sub > a {
    padding-right: 20px;
  }

  .nav-wrap nav ul.nav > li.has-sub > a:after {
    display: block;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-size: 10px;
    line-height: 41px;
    position: absolute;
    right: 0;
    top: 0px;
    z-index: 99;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    font-weight: 600;
  }

  .nav-wrap nav ul.nav > li.has-sub:hover > a:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .nav-wrap nav ul.nav li.has-sub li.has-sub > a:after {
    content: "\f105";
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    font-family: Font Awesome\5 Pro;
    font-weight: 400;
    margin-left: 5px;
    color: inherit;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
  }

  /****sub nav menu*****/
  .nav-wrap nav ul.nav > li.has-sub > ul {
    margin-top: 26px;
  }

  .nav-wrap nav ul.nav > li.has-sub:hover > ul {
    margin-top: 6px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
  }

  .nav-wrap nav ul.nav ul {
    position: absolute;
    border-radius: 0;
    padding: 5px 10px;
    margin: 0;
    visibility: hidden;
    text-align: left;
    left: 50%;
    right: auto;
    opacity: 0;
    top: calc(100% - 1px);
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 10px;
  }

  .nav-wrap nav ul.nav > li.has-sub > ul::before {
    content: "";
    display: block;
    padding: 10px;
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
  }

  .nav-wrap nav ul.nav ul ul:after {
    display: none;
  }

  .nav-wrap nav ul.nav ul ul {
    top: 100%;
    left: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .nav-wrap nav ul.nav ul li {
    float: left;
    width: 100%;
    min-width: 200px;
    padding: 3px 0;
    margin: 0;
    vertical-align: top;
    overflow: visible;
  }

  .nav-wrap nav ul.nav ul li a {
    display: block;
    white-space: normal;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: #000;
    padding: 8px 14px;
    text-align: left;
    border-radius: 7px;
  }

  .nav-wrap nav ul.nav li:hover > ul {
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transition:
      opacity 0.3s linear 0s,
      top 0.3s linear 0s;
    -o-transition:
      opacity 0.3s linear 0s,
      top 0.3s linear 0s;
    transition:
      opacity 0.3s linear 0s,
      top 0.3s linear 0s;
  }

  .nav-wrap nav ul.nav ul > li:hover > ul {
    top: 0;
  }

  .nav-wrap nav ul.nav li:hover > a,
  .nav-wrap nav ul.nav li > a:hover,
  .nav-wrap nav ul.nav li.current-menu-item > a,
  .nav-wrap nav ul.nav li.current-menu-ancestor > a {
    color: #fff;
  }

  .nav-wrap nav ul.nav ul li:hover > a,
  .nav-wrap nav ul.nav ul li > a:hover,
  .nav-wrap nav ul.nav ul li.current-menu-item > a,
  .nav-wrap nav ul.nav ul li.current-menu-ancestor > a {
    background: var(--bodyFontColor);
    color: #fff;
  }

  .nav-wrap nav ul.nav > li > a:before {
    content: "";
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: -webkit-transform 0.4s
      cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:
      transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
      -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    background: #fff;
  }

  .nav-wrap nav ul.nav > li:hover > a:before,
  .nav-wrap nav ul.nav > li > a:hover:before,
  .nav-wrap nav ul.nav > li.current-menu-item > a:before,
  .nav-wrap nav ul.nav > li.current-menu-ancestor > a:before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    width: 100%;
  }

  /********** Mega Menu CSS Start **********/
  .nav-wrap .mega-dropdown {
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    padding: 0 !important;
  }

  .mega-dropdown ul {
    display: block !important;
    position: static !important;
    max-height: inherit !important;
    opacity: 1 !important;
    padding: 0 !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    float: left;
    width: 100%;
    background: 0 0 !important;
    margin-top: 0 !important;
  }

  .mega-dropdown:before,
  .nav-wrap nav ul.nav ul:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    padding: 17px 0;
  }

  .nav-wrap nav ul.nav ul.mega-dropdown:after {
    display: none;
  }

  .nav-wrap nav ul.nav ul.mega-dropdown .arrow {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 1px);
    -ms-transform: translate(-50%, 1px);
    transform: translate(-50%, 1px);
    bottom: calc(100% + 3px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--linkColor);
  }

  .mega-dropdown .scroll {
    padding: 20px 0;
    max-height: 67.7vh;
    overflow-y: auto;
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li a {
    padding: 3px 0 3px 10px;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li.more-link > a {
    border-top: 1px solid #d4d4d4;
    color: #fc6812;
    padding: 10px 0 0;
    margin: 10px 0 0 0;
    font-weight: 500;
  }

  .nav-wrap nav ul.nav > li:hover > .mega-dropdown ul {
    visibility: visible !important;
  }

  .nav-wrap nav ul.nav > li > .mega-dropdown .col-md-2 {
    border-right: 1px solid #dadada;
    width: 20%;
    padding: 26px 0 26px 26px;
  }

  .nav-wrap nav ul.nav > li > .mega-dropdown > .row {
    margin: 0;
  }

  .nav-wrap nav ul.nav > li > .mega-dropdown .col-md-2:last-child {
    border: none;
  }

  .mega-dropdown .scroll > li {
    width: calc(100% / 5 - 40px) !important;
    margin: 0 20px 25px !important;
  }

  .mega-dropdown .scroll > li > a {
    font-weight: 600 !important;
    color: #1c1c1c !important;
    border-bottom: 1px solid #d4d4d4;
    padding: 0px 0px 7px !important;
    margin: 0 0 5px;
    font-size: 15px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-transform: uppercase !important;
  }

  .mega-dropdown .scroll > li > a::after {
    display: none !important;
  }

  .mega-dropdown .scroll > li.img-box {
    padding-top: 30px;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li ul::before,
  .nav-wrap nav ul.nav .mega-dropdown ul li a::after {
    display: none !important;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li li a {
    padding: 3px 0 3px 20px;
  }

  /********** Mega Menu CSS End **********/
  .head-fix header .nav-wrap nav ul.nav > li > a,
  body:not(:has(.main-banner)) header .nav-wrap nav ul.nav > li > a,
  .head-fix body:has(.inner-banner) header .nav-wrap nav ul.nav > li > a {
    color: var(--bodyFontColor);
  }

  .head-fix header .nav-wrap nav ul.nav > li > a:before,
  body:not(:has(.main-banner)) header .nav-wrap nav ul.nav > li > a:before,
  .head-fix
    body:has(.inner-banner)
    header
    .nav-wrap
    nav
    ul.nav
    > li
    > a:before {
    background: var(--bodyFontColor);
  }

  body:has(.inner-banner) header .nav-wrap nav ul.nav > li > a {
    color: #fff;
  }

  body:has(.inner-banner) header .nav-wrap nav ul.nav > li > a:before {
    background: #fff;
  }

  /**************Nav ends**************/
}

/****Space Control Top Bottom*****/
.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 10px 0 !important;
}

.m-2 {
  margin: 20px 0 !important;
}

.m-3 {
  margin: 30px 0 !important;
}

.m-4 {
  margin: 40px 0 !important;
}

.m-5 {
  margin: 50px 0 !important;
}

.m-6 {
  margin: 60px 0 !important;
}

.m-7 {
  margin: 70px 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 10px 0 !important;
}

.p-2 {
  padding: 20px 0 !important;
}

.p-3 {
  padding: 30px 0 !important;
}

.p-4 {
  padding: 40px 0 !important;
}

.p-5 {
  padding: 50px 0 !important;
}

.p-6 {
  padding: 60px 0 !important;
}

.p-7 {
  padding: 70px 0 !important;
}

.m-t0 {
  margin-top: 0 !important;
}

.m-t1 {
  margin-top: 10px !important;
}

.m-t2 {
  margin-top: 20px !important;
}

.m-t3 {
  margin-top: 30px !important;
}

.m-t4 {
  margin-top: 40px !important;
}

.m-t5 {
  margin-top: 50px !important;
}

.m-t6 {
  margin-top: 60px !important;
}

.m-t7 {
  margin-top: 70px !important;
}

.m-b0 {
  margin-bottom: 0 !important;
}

.m-b1 {
  margin-bottom: 10px !important;
}

.m-b2 {
  margin-bottom: 20px !important;
}

.m-b3 {
  margin-bottom: 30px !important;
}

.m-b4 {
  margin-bottom: 40px !important;
}

.m-b5 {
  margin-bottom: 50px !important;
}

.m-b6 {
  margin-bottom: 60px !important;
}

.m-b7 {
  margin-bottom: 70px !important;
}

.m-l4 {
  margin-left: 40px !important;
}

.m-l2 {
  margin-left: 20px !important;
}

.m-l3 {
  margin-left: 30px !important;
}

.p-t0 {
  padding-top: 0 !important;
}

.p-t2 {
  padding-top: 20px !important;
}

.p-t3 {
  padding-top: 30px !important;
}

.p-t4 {
  padding-top: 40px !important;
}

.p-t5 {
  padding-top: 50px !important;
}

.p-t6 {
  padding-top: 60px !important;
}

.p-t7 {
  padding-top: 70px !important;
}

.p-b0 {
  padding-bottom: 0 !important;
}

.p-b2 {
  padding-bottom: 20px !important;
}

.p-b3 {
  padding-bottom: 30px !important;
}

.p-b4 {
  padding-bottom: 40px !important;
}

.p-b5 {
  padding-bottom: 50px !important;
}

.p-b6 {
  padding-bottom: 60px !important;
}

.p-b7 {
  padding-bottom: 70px !important;
}

.p-l2 {
  padding-left: 20px !important;
}

.p-l3 {
  padding-left: 30px !important;
}

.p-l4 {
  padding-left: 40px !important;
}

.p-r2 {
  padding-right: 20px !important;
}

.p-r3 {
  padding-right: 30px !important;
}

.p-r4 {
  padding-right: 40px !important;
}

.p-r5 {
  padding-right: 50px !important;
}

/****Space Control Top Bottom End*****/
/*******Lay Image*******/
.lazy-image {
  position: relative;
  width: 100%;
  padding-top: 66.33%;
  overflow: hidden;
  display: block;
}

.lazy-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  margin: auto !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition:
    opacity 0.5s ease-in,
    -webkit-transform 0.5s ease-in;
  -webkit-transition:
    opacity 0.5s ease-in,
    -webkit-transform 0.5s ease-in;
  -o-transition:
    opacity 0.5s ease-in,
    transform 0.5s ease-in;
  transition:
    opacity 0.5s ease-in,
    transform 0.5s ease-in;
  transition:
    opacity 0.5s ease-in,
    transform 0.5s ease-in,
    -webkit-transform 0.5s ease-in;
}

a:hover .lazy-image img {
  -webkit-transform: scale(1.02, 1.02);
  -ms-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02);
}

/******Plugin's CSS Start*********/
/******Flexslider*********/
.flexslider {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.flexslider:before {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  border-width: 0.2rem;
}

.flexslider ul.slides {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}

.flexslider li {
  padding: 0;
}

.flexslider li:before {
  display: none;
}

.flexslider .slides > li {
  position: relative;
  display: none;
  -webkit-backface-visibility: hidden;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexslider .flex-control-paging-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  text-align: right;
  padding-right: 10px;
  z-index: 99;
}

.flexslider .flex-control-paging {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 55px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 98;
  height: auto;
  text-align: center;
  padding: 0 10px;
}

.flexslider .flex-control-paging li {
  position: static;
  display: inline-block;
  width: auto;
  margin: 2px 6px;
  height: auto;
}

.flexslider .flex-control-paging li a {
  border: 1px solid #fff;
  width: 13px;
  height: 13px;
  line-height: 10px;
  font-size: 0;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  border-radius: 34px;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.flexslider .flex-control-paging li .flex-active,
.flexslider .flex-control-paging li a:hover {
  background-color: #b86b4b;
  border-color: #b86b4b;
}

.flexslider .flex-control-paging li .flex-active:after,
.flexslider .flex-control-paging li a:hover:after {
  display: none;
}

.flexslider .flex-direction-nav li {
  position: static;
}

.flexslider .flex-direction-nav a {
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
}

.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -60px;
  top: 50%;
  margin-top: -25px;
  width: 60px;
  height: 60px;
  z-index: 98;
  border-radius: 60px;
  display: inline-block;
  font-size: 0;
}

.flexslider .flex-direction-nav {
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.flexslider .flex-direction-nav .flex-next {
  left: auto;
  right: -60px;
}

.flexslider .flex-direction-nav .flex-prev:before,
.flexslider .flex-direction-nav .flex-next:before {
  content: "";
  line-height: 1;
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 6px;
  margin: 0 2px;
  position: absolute;
  top: 50%;
  left: 65%;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.flexslider .flex-direction-nav .flex-next:before {
  left: auto;
  right: 65%;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  -ms-transform: translate(50%, -50%) rotate(-45deg);
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}

.flexslider:hover .flex-direction-nav .flex-prev {
  left: -25px;
}

.flexslider:hover .flex-direction-nav .flex-next {
  right: -25px;
}

.flexslider .flex-direction-nav .flex-prev:hover,
.flexslider .flex-direction-nav .flex-next:hover {
  background: rgba(0, 0, 0, 1);
}

.flexslider .flex-direction-nav .flex-prev:hover:before,
.flexslider .flex-direction-nav .flex-next:hover:before {
  color: #fff;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
}

.flexslider .flex-disabled {
  display: none;
}

.flexslider iframe,
.flexslider video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 95%;
}

/**********Owl Carousel**********/
.owl-carousel.has-shadow {
  margin: 25px -10px 0;
  width: auto;
}

.owl-carousel.has-shadow .owl-item {
  margin: 10px 0;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #0b0b0b;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: transform 0.1s ease;
  transition: transform 0.1s ease;
  transition:
    transform 0.1s ease,
    -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-carousel .owl-dots {
  display: table;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
  padding-top: 25px;
  text-align: center;
}

.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 2px 6px;
  border: 1px solid #020d0f;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 20px;
}

.owl-carousel .owl-dot span {
  display: none;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
  background-color: #020d0f;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: absolute;
  left: 12px;
  right: 0;
  top: 54%;
  margin-top: -25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  font-size: 0;
  z-index: 98;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: 12px;
}

.owl-carousel .owl-nav .owl-prev.disabled,
.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  content: "";
  line-height: 1;
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  margin: 0 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.owl-carousel .owl-nav .owl-next:before {
  left: auto;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  -ms-transform: translate(50%, -50%) rotate(-45deg);
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: #020d0f;
  border-color: #020d0f;
}

.owl-carousel .owl-nav .owl-prev:hover:before,
.owl-carousel .owl-nav .owl-next:hover:before {
  color: #fff;
}

.owl-carousel.top-nav {
  margin-top: 40px;
}

.owl-carousel.top-nav .owl-nav {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 65px;
  padding: 15px 0;
  margin-bottom: 38px;
}

.owl-carousel.vertical-nav .owl-nav .owl-prev,
.owl-carousel.vertical-nav .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  margin: 0;
  height: auto;
  width: 25px;
}

.owl-carousel.arrow {
  padding-left: 40px;
  padding-right: 40px;
}

.owl-carousel.arrow .owl-nav .owl-prev,
.owl-carousel.arrow .owl-nav .owl-next {
  background-color: transparent;
  margin-top: -25px;
  width: 30px;
  height: 50px;
}

.owl-carousel.arrow .owl-nav .owl-prev:before,
.owl-carousel.arrow .owl-nav .owl-next:before {
  font-size: 46px;
  line-height: 30px;
  color: #5db733;
}

.owl-carousel.arrow .owl-nav .owl-prev:hover,
.owl-carousel.arrow .owl-nav .owl-next:hover {
  background-color: #438f9f;
}

.owl-carousel.arrow .owl-nav .owl-prev:hover:before,
.owl-carousel.arrow .owl-nav .owl-next:hover:before {
  color: #fff;
}

.bottom-arrow .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 16px;
  width: 128px;
  margin: 0 auto;
}

.bottom-arrow .owl-nav .owl-next,
.bottom-arrow .owl-nav .owl-prev {
  width: 20px;
  margin: -11px 0 0;
  height: 22px;
  background: none !important;
}

.bottom-arrow .owl-nav .owl-next:before,
.bottom-arrow .owl-nav .owl-prev:before {
  color: #020d0f;
  line-height: 1;
}

.bottom-arrow .owl-nav .owl-next:hover:before,
.bottom-arrow .owl-nav .owl-prev:hover:before {
  color: #333;
}

.bottom-right-arrow .owl-nav {
  position: absolute;
  bottom: 65px;
  right: 0;
  left: auto;
  padding: 0;
  width: 142px;
  margin: 0 auto;
}

.bottom-right-arrow .owl-nav .owl-next,
.bottom-right-arrow .owl-nav .owl-prev {
  width: 64px;
  margin: -11px 0 0;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 14px rgb(29 50 77 / 5%);
  box-shadow: 0px 0px 14px rgb(29 50 77 / 5%);
}

.bottom-right-arrow .owl-nav .owl-next:before,
.bottom-right-arrow .owl-nav .owl-prev:before {
  color: #546259;
  line-height: 1;
  border-color: #546259;
  padding: 5px;
}

.bottom-right-arrow .owl-nav .owl-next:hover:before,
.bottom-right-arrow .owl-nav .owl-prev:hover:before {
  color: #333;
}

.bottom-right-arrow .owl-nav .owl-next:hover,
.bottom-right-arrow .owl-nav .owl-prev:hover {
  background: #546259;
}

.bottom-right-arrow .owl-nav .owl-next:hover:before,
.bottom-right-arrow .owl-nav .owl-prev:hover:before {
  border-color: #fff;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev,
.owl-carousel.type-2-arrow .owl-nav .owl-next {
  width: 42px;
  height: 42px;
  background-color: transparent;
  border: 1px solid #020d0f;
  margin-top: -21px;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:before,
.owl-carousel.type-2-arrow .owl-nav .owl-next:before {
  color: #020d0f;
  font-size: 22px;
  font-weight: normal;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:hover,
.owl-carousel.type-2-arrow .owl-nav .owl-next:hover {
  background-color: #020d0f;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:hover:before,
.owl-carousel.type-2-arrow .owl-nav .owl-next:hover:before {
  color: #fff;
}

/***** Owl Carousel End *******/
/******Magnific Popup*******/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000000;
  opacity: 0.75;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: #fff;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button.mfp-arrow:hover,
button.mfp-close:hover {
  background: #000;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 28px;
  border-radius: 30px 30px 0 0;
  position: absolute;
  right: 0;
  top: 0 !important;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #ffffff;
  font-style: normal;
  font-family: Arial, Baskerville, monospace;
  background: 0 0 !important;
}

div.mfp-close {
  display: none !important;
}

.videoFrame .mfp-close {
  top: 0 !important;
  background-color: rgba(236, 223, 223, 0.5) !important;
  border-radius: 0;
  opacity: 0;
}

.videoFrame .mfp-iframe-scaler:hover .mfp-close {
  opacity: 1;
}

.videoFrame .mfp-iframe-holder .mfp-content {
  max-width: 90%;
  max-height: 100%;
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #333;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow-left {
  width: 30px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 90;
  display: inline-block;
  margin-top: -25px;
  font-size: 0;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
}

.mfp-arrow-left:before {
  content: "";
  height: 15px;
  width: 15px;
  display: block;
  border: 2px solid #929292;
  border-right-width: 0;
  border-bottom-width: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 18px;
  left: 8px;
}

.mfp-arrow-right {
  width: 30px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 90;
  display: inline-block;
  margin-top: -25px;
  font-size: 0;
  cursor: pointer;
  border-radius: 30px 0 0 30px;
}

.mfp-arrow-right:before {
  content: "";
  height: 15px;
  width: 15px;
  display: block;
  border: 2px solid #929292;
  border-left-width: 0;
  border-top-width: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 18px;
  right: 8px;
}

.mfp-arrow-left:hover:before,
.mfp-arrow-right:hover:before {
  border-color: #fff;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
  background: #fff;
}

.img-max-inherit img.mfp-img {
  max-height: inherit !important;
}

.mfp-figure {
  line-height: 0;
  position: relative;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 16px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-content video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000000;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-close {
  color: #fff;
}

.mfp-no-margins img.mfp-img {
  padding: 0;
}

.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

.mfp-no-margins .mfp-container {
  padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
}

@media all and (min-width: 900px) {
  .caption-frame .mfp-container {
    left: 50%;
    display: table;
    width: auto;
    padding: 0 45px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }

  button.mfp-arrow,
  button.mfp-close {
    background: rgba(255, 255, 255, 0.95);
  }
}

/******Magnific Popup End*******/
/********** accordion css start **********/
.accordion {
  background-color: #fffef9;
  border: 1px solid #f1eedf;
  margin-bottom: 20px;
  text-align: left;
  border-radius: 10px;
}

.accordion .accordion-content {
  padding: 0 31px 24px 55px;
  line-height: 28px;
  display: none;
}

.accordion .accordion-head {
  margin: 0;
  line-height: normal;
  padding: 18px 60px 18px 35px;
  position: relative;
  cursor: pointer;
  font-size: 20px;
}

.accordion .accordion-head::after {
  content: "+";
  font-size: 24px;
  position: absolute;
  right: 30px;
  top: 17px;
  z-index: 99;
  color: #333333;
  line-height: 1;
  font-weight: 700;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.active.accordion .accordion-head::after {
  content: "+";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.all-faq {
  padding: 0 0 36px;
}

.accordion:last-of-type {
  margin: 0;
}

/********** accordion css end **********/
/******Plugin's CSS End*********/
.bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg img {
  display: none;
}

.bg + * {
  position: relative;
  z-index: 2;
}

.main-banner {
  background-color: #000;
  padding-top: 0 !important;
  color: #fff;
}

.main-banner img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 50%;
}

.main-banner .max-width {
  max-width: 930px;
  padding-left: 112px;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -ms-transform: translateY(-16%);
  -webkit-transform: translateY(-16%);
  transform: translateY(-16%);
}

.main-banner h1,
.main-banner .heading {
  font-family: var(--bodyFontFamily);
  font-weight: 700;
  font-size: 56px;
  line-height: normal;
}

.inner-banner {
  background: #06351e;
  color: #fff;
  font-size: 20px;
  line-height: normal;
  padding-top: 85px !important;
  padding-bottom: 40px;
}

.inner-banner .max-width {
  max-width: 58%;
  padding: 0 0 0 115px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.inner-banner .img-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}

.inner-banner .container {
  position: relative;
}

/*****Social Icons*****/
ul.social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 35px 0 0;
  vertical-align: middle;
}

ul.social-icon li {
  display: inline-block;
  width: auto;
  margin: 3px 11px 3px 0;
  background: none;
  padding: 0;
  vertical-align: middle;
  color: #fff;
}

ul.social-icon li:before {
  display: none;
}

ul.social-icon li a {
  display: inline-block;
  padding: 0;
  width: auto;
}

ul.social-icon li i {
  text-align: center;
  display: inline-block;
  border: 0;
  border-radius: 50%;
  vertical-align: top;
  font-size: 15px;
  color: #fff;
  background-color: #74d51e;
  line-height: 1;
}

ul.social-icon li i:before {
  display: inline-block;
  line-height: 30px;
  width: 30px;
}

ul.social-icon li a:hover i {
  color: #04351e;
  background-color: #fff;
}

/*****Social Icons End*****/
/******Footer*****/
.mnu-acc-trg {
  display: none;
}

.scrollup {
  position: fixed;
  width: 25px;
  height: 25px;
  background: #b86b4c;
  border: 1px solid #b86b4c;
  border-radius: 50%;
  bottom: -40px;
  right: 10px;
  z-index: 999;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.scrollup i {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
}

.scrollup.in {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.scrollup:hover {
  background: transparent;
  color: #b86b4c;
}

footer a:hover,
footer a:focus,
footer .current-menu-item a {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

footer .footer-top ul li::before {
  display: none;
}

footer .footer-top ul li {
  padding: 0;
}

footer .footer-top {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #fffced;
  background: #04351e;
  border-radius: 0 0 30px 30px;
  padding: 74px 0 68px 0;
}

footer .footer-top .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

footer .footer-top a {
  color: inherit;
}

footer .footer-top h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 9px;
  min-width: 90px;
}

footer .footer-top .box p {
  margin: 0 0 6px;
}

footer .footer-top .box p:last-of-type {
  margin: 0;
}

footer .footer-top .box p:has(i) {
  position: relative;
  padding: 0 0 0 31px;
}

footer .footer-top .box p:has(i) i {
  color: #74d51e;
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 15px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .footer-top .container .box:nth-child(3) {
  padding: 0 0 0 70px;
}

footer .footer-top .container .box:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  padding: 0 90px 0 0;
}

footer .footer-bottom {
  color: #043024;
  font-size: 14px;
  line-height: normal;
  padding: 29px 0;
}

footer .footer-bottom a {
  color: inherit;
}

footer .footer-bottom p {
  margin: 0;
}

footer .footer-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .footer-bottom a:hover {
  color: #05351e !important;
}

/******Footer End*****/
.commonHeading .leaf {
  position: relative;
  display: inline-block;
}

.commonHeading .leaf::after {
  content: "";
  position: absolute;
  top: -11%;
  left: 70%;
  width: 34px;
  height: 17px;
  background: url("../img/i-dote.png") no-repeat center / contain;
}

.main-banner + .hPod-cat-area,
.inner-banner + div,
.inner-banner + section {
  margin: -40px 0 0;
  border-radius: 30px 30px 0 0;
}

.inner-banner + div,
.inner-banner + section {
  background-color: #fff;
}

.commonHeading {
  font-size: 43px;
  font-weight: 600;
}

.hPod-cat-area {
  background: #f7f7f7;
  padding: 62px 0 70px;
  text-align: center;
  /* font-size: 20px; */
  position: relative;
  z-index: 10;
}

.hPod-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 72px;
  grid-row-gap: 57px;
  padding: 24px 20px 0;
}

.hPod-box {
  background: #fff;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  font-size: 16px;
  line-height: normal;
  -webkit-box-shadow: 0px 0px 21px rgb(4 48 36 / 4%);
  box-shadow: 0px 0px 21px rgb(4 48 36 / 4%);
}

.hPod-box .img-box {
  position: relative;
  overflow: hidden;
  padding-top: 74.167%;
}

.hPod-box .img-box img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: auto;
  height: 90%;
  margin: auto;
}

.two-col-info + .hPod-listing {
  padding-top: 45px;
}

.img-SilderBox .lazy-image.mainImg {
  padding-top: 56%;
}

.img-SilderBox .owl-item {
  height: 85px;
  position: relative;
  overflow: hidden;
}

.img-SilderBox .lazy-image:not(.mainImg) img {
  max-width: 80%;
  max-height: 70%;
}

.img-SilderBox .lazy-image.mainImg img {
  max-width: 80% !important;
}

.img-SilderItem.owl-carousel {
  padding: 0 40px 0;
  position: relative;
}

.img-SilderItem.owl-carousel::before {
  display: block;
  content: "";
  width: 60px;
  height: 3px;
  background: #4b6f44;
  margin: 0 auto 15px;
  border-radius: 50px;
}

.img-SilderItem .lazy-image {
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
}

.img-SilderItem .lazy-image:hover,
.img-SilderItem .lazy-image.active {
  border-color: #05351e;
}

.img-SilderItem.owl-carousel .owl-next,
.img-SilderItem.owl-carousel .owl-prev {
  margin-top: -10px;
}

.img-SilderBox:not(:has(.img-SilderItem)) .lazy-image.mainImg {
  padding-top: 74.167%;
}

.hPod-box .content-box {
  padding: 16px 40px 39px;
}

.hPod-box .content-box h4 {
  margin: 0 0 8px;
}

.hPod-box .content-box p {
  margin: 0 0 20px;
}

.hPod-box .content-box p:last-of-type {
  margin: 0;
}

.type2.hPod-listing {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}

.type2.hPod-listing .hPod-box .img-box {
  padding-top: 75.676%;
}

.type2.hPod-listing .hPod-box .img-SilderBox .owl-item {
  height: 55px;
}

.type2.hPod-listing .hPod-box .img-SilderBox .lazy-image:not(.mainImg) img {
  max-width: 90%;
  max-height: 80%;
}

.cat-Bgarea {
  padding: 64px 0;
}

.cat-Bgarea .max-width {
  background: #fff;
  max-width: 550px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  color: #043024;
  font-size: 18px;
}

.cat-Bgarea .max-width h4 {
  color: #333333;
  margin: 0 0 17px;
}

.cat-Bgarea .max-width .btn {
  padding-inline: 31px;
}

.hShop-area {
  text-align: center;
  background: #fffced;
  padding: 52px 0 70px;
  font-size: 18px;
}

.hShop-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  padding: 40px 0 0;
}

.hShop-box {
  text-align: center;
  font-size: 16px;
  line-height: normal;
}

.hShop-box .img-box {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 20px;
}

.hShop-box .img-box .inbox {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 10px solid rgb(0 0 0 / 10%);
}

.hShop-box .img-box .icon {
  width: 57px;
  height: 57px;
  position: absolute;
  bottom: -2px;
  right: 27px;
  background: #74d51e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hShop-box .img-box .inbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hShop-box h4 {
  margin: 0 0 7px;
  font-size: 26px;
}

.hShop-box h4 small {
  display: block;
  font-size: 18px;
}

.hAbout-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hAbout-area .max-width {
  max-width: 460px;
  margin: 0 auto 0 0;
}

.hAbout-area .content {
  padding: 20px 20px 20px 50px;
}

.hAbout-area .img-box img {
  width: 100%;
}

.hAbout-area .content .btn {
  min-width: 190px;
}

.sustainable-area {
  padding: 61px 0;
  color: #fff;
  text-align: center;
  background-color: #04351e;
  background-image:
    url("../img/sustainable-bg2.png"), url("../img/sustainable-bg.png");
  background-position:
    center calc(100% - 70px),
    center bottom;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, auto;
  font-size: 18px;
}

.sustainable-cir {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 22px 0 110px;
}

.sustainable-cir .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.sustainable-cir .icon-box span {
  position: absolute;
}

.sustainable-cir .icon-box span:nth-child(1) {
  top: 14%;
  left: 66%;
}

.sustainable-cir .icon-box span:nth-child(2) {
  top: 43.5%;
  left: 78.5%;
}

.sustainable-cir .icon-box span:nth-child(3) {
  top: 64%;
  left: 43.5%;
}

.sustainable-cir .icon-box span:nth-child(4) {
  top: 43%;
  left: 9%;
}

.sustainable-cir .icon-box span:nth-child(5) {
  top: 12%;
  left: 21%;
}

.partner-with-us-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sustainable-cir .content-box .content {
  text-align: left;
  line-height: normal;
  font-size: 16px;
  font-weight: 400;
}

.sustainable-cir .content-box .content h5 {
  font-size: 25px;
  margin: 0 0 4px;
}

.sustainable-cir-wrapper {
  position: relative;
  margin: 0 auto;
}

.sustainable-cir-wrapper .content-box {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.sustainable-cir-wrapper .content-box .content {
  text-align: left;
  line-height: normal;
  font-weight: 400;
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}

.sustainable-cir-wrapper .content-box .content h5 {
  font-size: 25px;
  margin: 0 0 5px;
}

.sustainable-cir-wrapper .content-box .content:nth-child(1) {
  top: 9%;
  left: 69.5%;
}

.sustainable-cir-wrapper .content-box .content:nth-child(2) {
  top: 44%;
  left: 69.5%;
}

.sustainable-cir-wrapper .content-box .content:nth-child(3) {
  top: 83%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.sustainable-cir-wrapper .content-box .content:nth-child(4) {
  top: 44%;
  left: 14%;
}

.sustainable-cir-wrapper .content-box .content:nth-child(5) {
  top: 7%;
  left: 14%;
}

.sustainable-cir-wrapper .content-box .content img {
  display: none;
}

.partner-with-us-area {
  color: #fff;
  padding: 40px 0;
}

.contact-form.form-field [class^="col-"]:has(.btn) {
  padding-top: 37px;
}

.faq-wrapper {
  background: #fffced;
  text-align: center;
  padding: 60px 0;
}

.faq-wrapper .container {
  max-width: 880px;
}

.faq-wrapper .all-faq {
  padding: 25px 0 0;
}

.pod-feat-wrapper {
  text-align: center;
  padding: 83px 0;
  color: inherit;
  background: #06351e;
}

.type2.pod-feat-wrapper {
  color: #fffced;
}

.pod-feat-wrapper .pod-feat-list {
  padding: 70px 0 0;
}

.pod-feat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 31px 0 0;
  line-height: normal;
  grid-column-gap: 40px;
  font-size: 15px;
  line-height: 22px;
  row-gap: 40px;
}

.type2.pod-feat-list {
  grid-template-columns: repeat(5, 1fr);
}

.pod-feat-box img {
  margin: 0 auto 21px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 65px;
}

.pod-feat-box h4 {
  font-size: 24px;
}

.plt-typ-wrapper {
  text-align: center;
  background-color: #fffced;
  padding: 66px 0;
}

.plt-typ-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 41px 0 0;
  line-height: normal;
  grid-column-gap: 50px;
  grid-row-gap: 64px;
}

.plt-typ-box .lazy-image {
  width: 190px;
  height: 190px;
  margin: 0 auto 19px;
  border-radius: 50%;
  background: #06351e;
}

.two-col-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 55px;
  text-align: left;
}

.v-center.two-col-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reverse.aboutInfo {
  direction: rtl;
}

.two-col-info .img-box img {
  width: 100%;
}

.two-col-info .img-box.rounded img {
  border-radius: 30px;
}

.two-col-info h5 {
  font-size: 25px;
}

.two-col-info h5 small {
  font-size: 18px;
}

.two-col-info h3 {
  margin: 0 0 15px;
}

img.f-width {
  width: 100%;
}

ul.company-stats {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  padding: 30px 0 0;
}

ul.company-stats li {
  padding: 0;
}

ul.company-stats li::before {
  display: none;
}

ul.company-stats li h3 {
  font-weight: 700;
  margin: 0 0 15px;
}

.aboutInfo {
  padding: 45px 0 0;
}

.scale-business-wrap {
  text-align: center;
  background: #f7f7f7;
}

.scale-business-listing {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  padding: 25px 0 0;
}

.scale-business-listing .box {
  background: #fff;
  padding: 25px 40px;
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 21px rgb(4 48 36 / 5%);
  box-shadow: 0px 0px 21px rgb(4 48 36 / 5%);
  min-height: 311px;
}

.scale-business-listing .box img {
  margin: 0 auto 10px;
}

.scale-business-listing .box h5 {
  font-size: 24px;
}

.type2.scale-business-wrap {
  text-align: center;
  background: #fff;
}

.type2.scale-business-wrap .scale-business-listing .box {
  -webkit-box-shadow: 0px 0px 21px rgb(4 48 36 / 10%);
  box-shadow: 0px 0px 21px rgb(4 48 36 / 10%);
}

.map-area {
  position: relative;
  overflow: hidden;
  padding-top: 43.7782%;
}

.map-area iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.contact-info-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fffced;
  font-size: 18px;
}

.contact-info-area .max-width {
  max-width: 639px;
  width: 100%;
}

.contact-info-area .form-box {
  color: #fff;
  background: #04321c;
}

.contact-info-area .form-box .max-width {
  margin: 0 0 0 auto;
}

.contact-info-area .contact-info-box .max-width {
  padding-left: 55px;
}

.contact-info-area .max-width {
  padding: 65px 15px;
}

.contact-info-area .form-box .contact-form {
  padding: 0 42px 0 0;
}

.contact-info-area .contact-info-box p:has(i) {
  position: relative;
  padding: 0 0 0 32px;
}

.contact-info-area .contact-info-box p:has(i) i {
  color: #74d51e;
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 17px;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-info-area .contact-info-box a {
  color: inherit;
}

.contact-info-area .contact-info-box a:hover {
  color: var(--linkColor);
}

.contact-info-area .contact-info-box p {
  margin: 0 0 16px;
}

.contact-info-area .contact-info-box p:last-of-type {
  margin: 0;
}

.join-green-wrapper {
  text-align: center;
  color: #fff;
  padding: 75px 0;
}

.sus-banner {
  position: relative;
  overflow: hidden;
  margin: 50px 0 0;
}

.sus-banner > img {
  width: 100%;
}

.sus-banner .content {
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  max-width: 730px;
  margin: 0 auto;
  font-size: 18px;
}

.sus-banner .content h4 {
  color: #010101;
}

.making-proc-wrapper {
  text-align: center;
  padding: 60px 0 95px;
  color: #fff;
  background-color: #06351e;
  background-image: url("../img/making-proc-leaf-bg2.png");
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: auto;
  position: relative;
}

.making-proc-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 145px;
  top: 230px;
  z-index: 1;
  background-image: url("../img/making-proc-leaf-bg.png");
  background-position: center top;
  background-repeat: repeat-y;
}

.making-proc-wrapper .container {
  position: relative;
  z-index: 2;
}

.making-proc-wrapper h3 {
  font-weight: 700;
}

.making-proc-wrap {
  margin: 0px auto 0;
  padding: 50px 0 0;
  position: relative;
  z-index: 7;
  max-width: 597px;
  text-align: left;
  --boxHeight: 428px;
}

.making-proc-wrap .box .inner {
  max-width: 321px;
  margin: 0 62px 0 auto;
}

.making-proc-wrap .box {
  position: relative;
  min-height: var(--boxHeight);
  line-height: normal;
  padding: 95px 0 40px;
}

.making-proc-wrap .box h4 {
  font-weight: 900;
  margin: 0 0 18px;
}

.making-proc-wrap .box .inner img {
  margin: 0 0 16px;
}

.making-proc-wrap .box .inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: var(--boxHeight);
  height: var(--boxHeight);
  border: 10px solid #fffced;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.making-proc-wrap .box:nth-child(even) .inner::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 0;
  left: 18px;
}

.making-proc-wrap .box::before,
.making-proc-wrap .box::after {
  content: "";
  display: block;
  width: 150px;
  height: 10px;
  background: #fffced;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-55%, 0);
  -ms-transform: translate(-55%, 0);
  transform: translate(-55%, 0);
}

.making-proc-wrap .box::before {
  top: 0;
  border-radius: 10px 0 0 10px;
}

.making-proc-wrap .box::after {
  bottom: 0;
  border-radius: 10px 0 0 10px;
}

.making-proc-wrap .box + .box {
  margin: -10px 0 0;
}

.making-proc-wrap .box:first-of-type .inner::before,
.making-proc-wrap .box:last-of-type .inner::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fffced;
  position: absolute;
  z-index: 5;
  top: 0;
  -webkit-transform: translate(-34px, -50%);
  -ms-transform: translate(-34px, -50%);
  transform: translate(-34px, -50%);
  background-image: url("../img/i-dote.png");
  background-repeat: no-repeat;
  background-position: center;
}

.making-proc-wrap .box:last-of-type .inner::before {
  bottom: 0;
  top: auto;
  -webkit-transform: translate(-34px, calc(50% - 10px));
  -ms-transform: translate(-34px, calc(50% - 10px));
  transform: translate(-34px, calc(50% - 10px));
}

.making-proc-wrap .box .count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #fffced;
  border-radius: 50%;
  color: #06351e;
  font-size: 30px;
  font-weight: 900;
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  transform: translate(0px, -50%);
}

.making-proc-wrap .box .count span {
  color: #6ecc1e;
}

.making-proc-wrap .box:nth-child(even) .count {
  right: auto;
  left: 0;
}

/************Responsive Start************/
@media only screen and (max-width: 1199px) {
  :root {
    --headerSpace: 120px;
    --logoWidth: 140px;
  }

  .nav-wrap nav ul.nav > li {
    margin: 0 30px 0 0;
  }

  header .header-row {
    padding: 20px 0 30px;
  }

  .hPod-listing {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .sustainable-cir {
    display: none;
  }

  .sustainable-cir-wrapper .content-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    column-gap: 90px;
    max-width: 900px;
    margin: 50px auto 0;
  }

  .sustainable-cir-wrapper .content-box .content {
    position: relative !important;
    width: 100% !important;
    text-align: left !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    padding-left: 30px;
  }

  .sustainable-cir-wrapper .content-box .content span:has(img) {
    position: absolute;
    left: 0;
    top: 0;
  }

  .sustainable-cir-wrapper .content-box .content img {
    display: block;
    max-width: 100%;
    -moz-filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .sustainable-cir-wrapper .content-box .content p br {
    display: none;
  }

  .pod-feat-wrapper {
    padding: 50px 0;
  }

  .pod-feat-wrapper .commonHeading br {
    display: none;
  }

  .pod-feat-wrapper .pod-feat-list {
    padding: 40px 0 0;
  }

  .pod-feat-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .scale-business-listing {
    gap: 25px;
  }

  .inner-banner .max-width {
    padding-left: 30px;
  }

  .sus-banner .content {
    top: 10%;
  }
}

@media only screen and (max-width: 1024px) {
  /**************/
  .nav-trigger {
    float: right;
    padding: 0 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition-property:
      opacity,
      -webkit-filter;
    -webkit-transition-property:
      opacity,
      -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property:
      opacity,
      filter,
      -webkit-filter;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: var(--btnBg);
    border: 2px solid var(--btnBg);
    border-radius: 40px;
    margin: 0 0 0 12px;
    overflow: visible;
    font-size: 0;
    line-height: 0;
  }

  .nav-trigger .icon {
    width: 20px;
    height: 28px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    line-height: 0;
    margin: 4px 0 0 0;
  }

  .nav-trigger .icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #ffffff;
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .nav-trigger .icon span:nth-child(even) {
    left: 50%;
  }

  .nav-trigger .icon span:nth-child(odd) {
    left: 0;
  }

  .nav-trigger .icon span:nth-child(1),
  .nav-trigger .icon span:nth-child(2) {
    top: 5px;
  }

  .nav-trigger .icon span:nth-child(3),
  .nav-trigger .icon span:nth-child(4) {
    top: 12px;
  }

  .nav-trigger .icon span:nth-child(5),
  .nav-trigger .icon span:nth-child(6) {
    top: 19px;
  }

  .closemenu.nav-trigger .icon span:nth-child(1),
  .closemenu.nav-trigger .icon span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .closemenu.nav-trigger .icon span:nth-child(2),
  .closemenu.nav-trigger .icon span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .closemenu.nav-trigger .icon span:nth-child(1) {
    left: 2px;
    top: 8px;
  }

  .closemenu.nav-trigger .icon span:nth-child(2) {
    left: calc(50% - 1px);
    top: 8px;
  }

  .closemenu.nav-trigger .icon span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }

  .closemenu.nav-trigger .icon span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }

  .closemenu.nav-trigger .icon span:nth-child(5) {
    left: 2px;
    top: 15px;
  }

  .closemenu.nav-trigger .icon span:nth-child(6) {
    left: calc(50% - 1px);
    top: 15px;
  }

  #sidebar-nav {
    right: -300px;
    top: 0;
    bottom: 0;
    position: fixed;
    width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 20px 0 30px 35px;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    background: #fff;
    -webkit-box-shadow:
      inset -30px 20px 20px rgb(255 255 255),
      inset -30px -20px 20px rgb(255 255 255),
      inset 0px 0px 20px rgb(0 0 0 / 40%);
    box-shadow:
      inset -30px 20px 20px rgb(255 255 255),
      inset -30px -20px 20px rgb(255 255 255),
      inset 0px 0px 20px rgb(0 0 0 / 40%);
  }

  html,
  header {
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.3s linear 0s;
  }

  .sidebar_active {
    overflow: hidden;
    margin-left: -300px;
    margin-right: 300px;
  }

  .sidebar_active #sidebar-nav {
    display: block;
    right: 0;
    z-index: 999999;
  }

  .nav-wrap nav ul.nav > li.has-sub > a:after {
    display: none;
  }

  .sidebar_active header {
    position: fixed;
    left: -300px;
    right: 300px;
  }

  .nav-wrap nav ul li::before {
    display: none;
  }

  .nav-wrap nav ul,
  nav ul ul {
    display: none;
  }

  .nav-wrap nav ul.nav {
    padding: 0;
    margin: 0;
    border: 0;
    visibility: visible;
    display: block;
    top: 0;
    color: #272422;
  }

  .nav-wrap nav ul.nav > li {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .nav-wrap nav ul.nav > li > a {
    display: block;
    color: #272422;
    padding: 17px 20px 17px 5px;
    margin: 0;
    white-space: inherit;
    border-radius: 0;
    border: none;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-wrap nav ul.nav > li.has-sub > a {
    padding-right: 50px;
  }

  .nav-wrap nav ul.nav ul li {
    opacity: 1;
    padding: 0;
  }

  .nav-wrap nav ul.nav ul {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-wrap nav > ul.nav > li > ul {
    max-height: inherit;
    margin-top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: left;
  }

  .nav-wrap nav ul.nav > li > ul > li {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    border-bottom: none;
    min-width: inherit;
  }

  .nav-wrap nav ul.nav > li > ul li a {
    display: block;
    color: inherit;
    padding: 10px 40px 10px 15px;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    white-space: inherit;
    text-align: left;
  }

  .nav-wrap nav ul.nav ul ul li {
    padding-left: 10px;
  }

  .nav-wrap nav .submenu-button {
    position: absolute;
    font-size: 0;
    background-color: transparent;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 111;
  }

  .nav-wrap nav ul.nav > li > .submenu-button {
    height: 60px;
    width: 50px;
  }

  .nav-wrap nav .submenu-button:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    margin: -4px -4px 0 0;
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .nav-wrap nav .submenu-button.submenu-opened:before {
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: -3px;
  }

  .sidebar_active .mega-dropdown.open,
  .sidebar_active .nav-wrap nav ul.nav ul.open {
    display: block !important;
    position: static !important;
    top: 40px;
    left: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    opacity: 1;
    visibility: visible;
    height: 100%;
    overflow: auto;
    z-index: 99999;
  }

  .scale-business-listing .box {
    padding: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .alignleft,
  .alignright {
    max-width: 300px;
  }

  /*** Menu Accordion Mobile **/
  .mnu-acc {
    position: relative;
  }

  .mnu-acc + .content {
    display: none;
    padding: 10px 0px 0px;
  }

  .mnu-acc-trg {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: rgb(0, 176, 140);
    font-size: 12px;
    text-align: right;
    cursor: pointer;
  }

  .mnu-acc-trg i {
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }

  .active.mnu-acc .mnu-acc-trg i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .main-banner .max-width {
    padding: 0 20px;
    text-align: center;
  }

  .main-banner h1,
  .main-banner .heading {
    font-size: 36px;
  }

  .main-banner h1 br,
  .main-banner .heading br {
    display: none;
  }

  .main-banner + .hPod-cat-area,
  .inner-banner + div,
  .inner-banner + section {
    margin-top: 0;
    border-radius: 0;
  }

  .main-banner img,
  .main-banner video {
    height: auto;
    min-height: 520px;
  }

  .main-banner .caption {
    padding-bottom: 40px;
  }

  .main-banner.flexslider .flex-direction-nav {
    display: none;
  }

  .main-banner.flexslider .flex-control-paging {
    bottom: 20px;
  }

  .inner-banner {
    padding-bottom: 0;
  }

  .inner-banner .max-width {
    padding: 50px 0 0;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: center;
    max-width: 100%;
  }

  .inner-banner h1 {
    font-size: 36px;
  }

  .hPod-cat-area {
    padding: 35px 0;
  }

  .hPod-box .content-box p br {
    display: none;
  }

  .hPod-cat-area h3,
  .hShop-area .commonHeading,
  .commonHeading,
  .two-col-info h3,
  .making-proc-wrapper h3 {
    font-size: 27px;
  }

  .commonHeading .leaf::after {
    top: 0;
    left: 40%;
    width: 20px;
    height: 17px;
  }

  .commonHeading:has(.leaf) {
    line-height: 1.5;
  }

  .smallCommonHeading2 {
    font-size: 17px;
  }

  .hShop-listing {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    padding: 30px 0 0;
  }

  .hAbout-area {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hAbout-area ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hAbout-area .max-width {
    max-width: 100%;
  }

  .hAbout-area .content {
    padding: 30px 15px;
  }

  .partner-with-us-area {
    padding: 30px 0;
  }

  .partner-with-us-area .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-with-us-area img {
    margin: 0 auto 20px;
  }

  .cat-Bgarea .max-width {
    font-size: 16px;
  }

  .form-field .btn {
    width: 100%;
  }

  .contact-form.form-field [class^="col-"]:has(.btn) {
    padding-top: 15px;
    text-align: center;
  }

  .sustainable-area {
    padding: 35px 0;
  }

  .aboutInfo {
    padding: 25px 0 0;
  }

  .two-col-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .two-col-info .content-box {
    padding-top: 25px;
  }

  .common-content,
  .faq-wrapper {
    padding: 35px 0;
  }

  .contact-info-area {
    grid-template-columns: 1fr;
  }

  .contact-info-area .max-width {
    max-width: 100%;
    padding: 30px 15px;
    text-align: center;
  }

  .contact-info-area .form-box .contact-form {
    padding: 0;
  }

  .contact-info-area .contact-info-box .max-width {
    padding: 30px 15px;
  }

  .contact-info-area .contact-info-box p:has(i) {
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .plt-typ-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .sus-banner {
    margin: 10px 0 0;
  }

  .sus-banner .content {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .common-content.lynx-white-bg {
    text-align: center;
  }

  .making-proc-wrapper {
    padding: 35px 0 50px;
  }

  .join-green-wrapper {
    padding: 50px 0;
  }

  footer .footer-top {
    padding: 0 0 30px;
    border-radius: 0;
    margin: 0 -15px;
  }

  footer .footer-top .container {
    display: flex;
    flex-wrap: wrap;
  }

  footer .footer-top .box {
    width: 33.33%;
    padding: 30px 15px 0 !important;
  }

  footer .footer-top .container .box:nth-child(2) {
    align-items: flex-start;
  }

  footer .footer-top .box:first-child {
    width: 100%;
    text-align: center;
  }

  footer .footer-top .box .f-logo {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  footer .footer-top .box ul.social-icon {
    margin-inline: auto;
    width: fit-content;
  }
}

@media only screen and (max-width: 767px) {
  .hPod-listing {
    grid-template-columns: 1fr;
  }

  .sustainable-cir-wrapper .content-box {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .scale-business-listing {
    grid-template-columns: 1fr;
  }

  .scale-business-listing .box {
    min-height: inherit;
  }

  .plt-typ-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 15px 0 0;
  }
  .plt-typ-box .lazy-image {
    width: 162px;
    height: 162px;
  }
  .plt-typ-list .plt-typ-box {
    max-width: 250px;
    margin: 0 auto;
  }

  footer .footer-bottom {
    padding: 15px 0;
  }

  footer .footer-bottom .container {
    flex-wrap: wrap;
  }

  footer .footer-bottom p {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 639px) {
  .cat-Bgarea {
    padding: 40px 0;
  }

  .cat-Bgarea .max-width {
    max-width: 100%;
    text-align: center;
  }

  .making-proc-wrap {
    padding: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .making-proc-wrap .box .inner {
    margin: 0 82px 0 auto;
  }

  .making-proc-wrap .box .inner {
    max-width: 100%;
  }

  .making-proc-wrap .box {
    min-height: inherit;
    padding: 20px 0;
  }

  .making-proc-wrap .box:first-of-type .inner::before,
  .making-proc-wrap .box:last-of-type .inner::before {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .making-proc-wrap .box:last-of-type .inner::before {
    -webkit-transform: translate(0, calc(50% - 10px));
    -ms-transform: translate(0, calc(50% - 10px));
    transform: translate(0, calc(50% - 10px));
  }

  .making-proc-wrap .box:nth-child(even) .inner {
    margin: 0 auto 0 82px;
  }

  .making-proc-wrap .box .inner::after,
  .making-proc-wrap .box::before,
  .making-proc-wrap .box::after,
  .making-proc-wrap .box:first-of-type .inner::before,
  .making-proc-wrap .box:last-of-type .inner::before {
    display: none !important;
  }
}

@media only screen and (max-width: 580px) {
  .alignleft,
  .alignright {
    max-width: 100%;
    margin: 10px 0;
    float: none;
    display: block;
  }

  .main-banner h1,
  .main-banner .heading {
    font-size: 30px;
  }

  header .header-btn-wrap .btn {
    font-size: 0;
    min-width: inherit;
    line-height: normal;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .header-btn-wrap .btn i {
    display: block;
    font-size: 20px;
  }

  header .header-btn-wrap {
    margin: 0;
  }

  .hPod-listing {
    padding: 24px 0 0;
  }

  .hPod-box .content-box {
    padding: 16px 20px 30px;
  }

  .cat-Bgarea .max-width {
    padding: 20px;
  }

  .hShop-listing,
  .pod-feat-list {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 479px) {
  .plt-typ-list {
    /* grid-template-columns: 1fr; */
  }

  footer .footer-top .box {
    width: 50%;
    /* text-align: center; */
    display: block !important;
  }

  footer .footer-top .box:last-of-type {
    width: 100%;
  }

  footer .footer-top .container .box:nth-child(2) {
    align-items: center;
  }

  footer .footer-top .container .box:nth-child(1) img {
    margin: 0 auto;
  }

  footer ul.social-icon {
    justify-content: center;
    margin-top: 15px;
  }

  footer .footer-top .box p:has(i) {
    /* width: fit-content; */
    text-align: left;
    margin: 10px auto 0 !important;
  }
}

@media only screen and (max-width: 420px) {
  .main-banner .caption {
    top: 40%;
  }
}

@media only screen and (max-width: 359px) {
  .sidebar_active {
    overflow: hidden;
    margin-left: -255px;
    margin-right: 255px;
  }

  .sidebar_active header {
    position: fixed;
    left: -255px;
    right: 255px;
  }

  #sidebar-nav {
    right: -255px;
    width: 255px;
    padding-left: 20px;
  }
}

/************Responsive End************/
