:root {
  --primary: #80161a;
  --white: #fff;
  --black: #000;
  --gray: #666;
  --h1: 55px;
  --h2: 48px;
  --h3: 40px;
  --h4: 35px;
  --h5: 30px;
  --h6: 24px;
  --font-siz-11: 11px;
  --font-siz-12: 12px;
  --font-siz-13: 13px;
  --font-siz-14: 14px;
  --font-siz-15: 15px;
  --font-siz-16: 16px;
  --font-siz-17: 17px;
  --font-siz-18: 18px;
  --font-siz-19: 19px;
  --font-siz-20: 20px;
  --font-siz-21: 21px;
  --font-siz-22: 22px;
  --font-siz-23: 23px;
  --font-siz-24: 24px;
  --font-siz-25: 25px;
  --font-siz-26: 26px;
  --font-siz-27: 27px;
  --font-siz-28: 28px;
  --font-siz-29: 29px;
  --font-siz-30: 30px;
  --font-siz-31: 31px;
  --font-siz-32: 32px;
  --font-siz-33: 33px;
  --font-siz-34: 34px;
  --font-siz-35: 35px;
  --font-siz-36: 36px;
  --font-siz-37: 37px;
  --font-siz-38: 38px;
  --font-siz-39: 39px;
  --font-siz-40: 40px;
  --font-siz-41: 41px;
  --font-siz-42: 42px;
  --font-siz-43: 43px;
  --font-siz-44: 44px;
  --font-siz-45: 45px;
  --font-siz-46: 46px;
  --font-siz-47: 47px;
  --font-siz-48: 48px;
  --fontfamily: "Montserrat", sans-serif;
  --fontw100: 100;
  --fontw200: 200;
  --fontw300: 300;
  --fontw400: 400;
  --fontw500: 500;
  --fontw600: 600;
  --fontw700: 700;
  --fontw800: 800;
  --fontw900: 900;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  min-height: 100%;
  font-family: var(--fontfamily);
  color: var(--gray);
  font-size: var(--font-siz-16);
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 991px) {
  body, html {
    font-size: var(--font-siz-15);
  }
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

a[href] {
  text-decoration: none;
}

img, svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

img.full {
  width: 100%;
}

.container {
  max-width: 1235px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.container-full {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-full {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
@media only screen and (max-width: 420px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
}

h1 {
  font-size: var(--h1);
}
@media (max-width: 1300px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

input, select, button, textarea {
  font-family: var(--fontfamily);
  font-size: var(--font-siz-16);
}

button, input[type=button], input[type=submit] {
  cursor: pointer;
  border: 0;
  outline: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

@media (max-width: 520px) {
  .xs-hidden {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .md-hidden {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sm-hidden {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .ls-hidden {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.col-1 {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 8px;
}

.col-2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 8px;
}
@media (max-width: 520px) {
  .col-2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}

.col-3 {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 0 8px;
}

.col-4 {
  flex: 0 1 25%;
  max-width: 25%;
  width: 100%;
  padding: 0 8px;
}

.col-5 {
  flex: 0 1 20%;
  max-width: 20%;
  width: 100%;
  padding: 0 8px;
}

.overlay_before::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 350px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8784313725), transparent);
}

.overlay_after::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 500px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.img_hover .img {
  overflow: hidden;
  display: block;
}
.img_hover .img > img {
  transition: 1s ease;
  transform: scale(1);
}
.img_hover:hover .img img {
  transform: scale(1.1);
}

.videoIcon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 60px;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .videoIcon {
    width: 47px;
    height: 47px;
  }
}
.videoIcon .icon {
  border-top: 9px solid rgba(0, 0, 0, 0);
  border-bottom: 9px solid rgba(0, 0, 0, 0);
  border-left: 13px solid var(--white);
  border-radius: 2px;
}
.videoIcon:before {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--white);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (max-width: 767px) {
  .videoIcon:before {
    width: 47px;
    height: 47px;
  }
}
.videoIcon img {
  width: auto;
  position: relative;
}
@media (max-width: 767px) {
  .videoIcon img {
    width: 10px;
  }
}

.mob_strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  z-index: 2;
  display: none;
  transform: translateY(40px);
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .mob_strip {
    display: block;
  }
}
.mob_strip ul {
  display: flex;
}
.mob_strip ul li {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
}
.mob_strip ul li:nth-child(2) {
  border-left: 1px solid rgba(204, 204, 204, 0.1607843137);
  border-right: 1px solid rgba(204, 204, 204, 0.1607843137);
}
.mob_strip ul li a {
  color: var(--white);
  display: block;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

header.header-fixed ~ .mob_strip {
  transform: translateY(0px);
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: 1s ease;
  z-index: 4;
}
.overlay.open {
  pointer-events: all;
  opacity: 0.5;
}

div#back-to-top {
  position: fixed;
  left: auto;
  right: -100px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  z-index: 1;
  bottom: 10%;
  background: var(--primary);
  padding: 10px;
  cursor: pointer;
  border: 2px solid var(--white);
  transition: 700ms ease;
}
@media (max-width: 675px) {
  div#back-to-top {
    width: 45px;
    height: 45px;
    bottom: 50px;
  }
}
div#back-to-top.show {
  right: 10px;
}
div#back-to-top svg {
  color: var(--white);
  max-width: 25px;
  animation: ty 1s ease infinite;
}
div#back-to-top svg path {
  fill: var(--white);
}

.link a {
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  font-weight: var(--fontw500);
  padding: 8px 0;
}
.link a span, .link a img {
  display: inline-block;
  vertical-align: middle;
}
.link a img {
  margin-left: 8px;
  transition: 0.5s ease;
}
.link a:hover img {
  margin-left: 20px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 11;
}

.text-center {
  text-align: center;
}

.animated {
  animation-duration: 1000 ms;
  animation-fill-mode: both;
}

.owl-animated-out {
  z-index: 1;
}

.owl-animated-in {
  z-index: 0;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeOut;
}

.button .btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: var(--font-siz-14);
  color: var(--primary);
  border-radius: 30px;
  font-weight: var(--fontw600);
  text-transform: uppercase;
  transition: 0.5s ease;
}
.button .btn:hover {
  background: var(--primary);
  color: var(--white);
}

.social-links {
  text-align: right;
}
@media (max-width: 860px) {
  .social-links {
    text-align: left;
    margin-top: 25px;
    flex-grow: 1;
    flex: 1;
  }
}
@media only screen and (max-width: 420px) {
  .social-links {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.social-links ul {
  text-align: left;
  display: inline-block;
}
.social-links ul li {
  display: inline-block;
}
.social-links ul li:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 675px) {
  .social-links ul li:not(:last-child) {
    margin-right: 5px;
  }
}
.social-links ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 35px;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  .social-links ul li a {
    width: 35px;
    height: 35px;
  }
}
.social-links ul li a svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  transition: 0.5s ease;
}
.social-links ul li a svg path {
  fill: var(--white);
  transition: 0.5s ease;
}
.social-links ul li a:hover {
  background: var(--white);
}
.social-links ul li a:hover svg {
  color: var(--primary);
}
.social-links ul li a:hover svg path {
  fill: var(--primary);
}

.form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.form .form-group .form-control {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  padding: 13px 0;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--black);
  font-weight: var(--fontw500);
  transition: 0.5s ease;
  font-size: var(--font-siz-15);
  outline: none;
  transition: 0.5s ease;
}
.form .form-group .form-control::-moz-placeholder {
  color: var(--gray);
  font-weight: var(--fontw500);
  opacity: 0;
  font-size: var(--font-siz-15);
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
}
.form .form-group .form-control::placeholder {
  color: var(--gray);
  font-weight: var(--fontw500);
  opacity: 0;
  font-size: var(--font-siz-15);
  transition: 0.5s ease;
}
.form .form-group .form-control:focus {
  border-color: var(--primary);
}
.form .form-group .form-control:focus ~ label {
  top: -5px;
  font-size: var(--font-siz-12);
  color: #979797;
}
.form .form-group .form-control:focus::-moz-placeholder {
  opacity: 1;
}
.form .form-group .form-control:focus::placeholder {
  opacity: 1;
}
.form .form-group label {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  pointer-events: none;
  font-size: var(--font-siz-15);
  color: var(--black);
  font-weight: var(--fontw600);
  transition: 0.5s ease;
}
.form .form-group.valid .form-control {
  border-color: var(--primary);
}
.form .form-group.valid .form-control ~ label {
  top: -5px;
  font-size: var(--font-siz-12);
  color: #979797;
}
.form .form-group.valid .form-control::-moz-placeholder {
  opacity: 1;
}
.form .form-group.valid .form-control::placeholder {
  opacity: 1;
}
.form .button {
  margin-top: 15px;
}
.form .button .btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
  font-size: var(--font-siz-16);
}
.form .button .btn:hover {
  background: var(--white);
  color: var(--primary);
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes bganimate {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: -100vw 100%;
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomoutimage {
  0% {
    background-size: 200%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ty {
  0% {
    opacity: 1;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
input[placeholder="Enter Email"] {
  text-transform: lowercase !important;
}

header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 3;
}
header .container-full {
  padding: 0 0;
}
@media (max-width: 991px) {
  header .container-full {
    padding: 10px 0;
  }
}
@media (max-width: 675px) {
  header .container-full {
    padding: 0;
  }
}
header .container-full > .flex {
  align-items: center;
  position: relative;
}
header.header-fixed {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1607843137);
}
@media (min-width: 992px) {
  header .aside-left {
    width: 316px;
    padding-left: 100px;
  }
}
@media (max-width: 991px) {
  header .aside-left {
    width: 220px;
    padding-left: 15px;
  }
}
@media (max-width: 675px) {
  header .aside-left {
    width: 170px;
  }
}
@media only screen and (max-width: 420px) {
  header .aside-left {
    width: 140px;
  }
}
@media only screen and (max-width: 320px) {
  header .aside-left {
    width: 100px;
  }
}
header .aside-right {
  flex: 1;
}
header .logo a {
  display: block;
  width: 100%;
}
header .logo a img {
  display: block;
}
header .contcLink .flex {
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (max-width: 991px) {
  header .contcLink .flex {
    gap: 15px;
  }
}
header .contcLink .tel {
  color: var(--white);
  padding: 15px;
}
@media (max-width: 991px) {
  header .contcLink .tel {
    padding: 15px 0;
  }
}
@media (max-width: 675px) {
  header .contcLink .tel {
    display: none;
  }
}
header .contcLink .btn-model {
  padding: 15px;
  color: var(--white);
  margin-right: 10px;
  cursor: pointer;
}
@media (max-width: 991px) {
  header .contcLink .btn-model {
    padding: 15px 0;
    margin-right: 0;
  }
}
header .contcLink .avWherh {
  width: 235px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 15px;
  padding-left: 32px;
  background: var(--white);
}
@media (max-width: 991px) {
  header .contcLink .avWherh {
    width: 170px;
    background: none;
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  header .contcLink .avWherh {
    padding: 15px 0;
    width: auto;
  }
}
@media (max-width: 675px) {
  header .contcLink .avWherh {
    padding: 10px;
    background: #770f13;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}
header .contcLink .avWherh::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
  border-left: 11px solid var(--primary);
}
@media (max-width: 991px) {
  header .contcLink .avWherh::before {
    display: none;
  }
}
header .contcLink .avWherh .icon {
  width: 60px;
}
@media (max-width: 991px) {
  header .contcLink .avWherh .icon {
    width: 35px;
    filter: invert(1) brightness(5);
  }
}
@media only screen and (max-width: 420px) {
  header .contcLink .avWherh .icon {
    width: 30px;
  }
}
header .contcLink .avWherh p {
  flex: 1;
  line-height: 18px;
  padding-left: 7px;
  color: var(--primary);
  font-weight: var(--fontw600);
}
@media (max-width: 991px) {
  header .contcLink .avWherh p {
    color: var(--white);
  }
}
@media only screen and (max-width: 420px) {
  header .contcLink .avWherh p {
    font-size: 12px;
  }
}
header .contcLink .avWherh p span {
  font-weight: var(--fontw700);
}
@media (max-width: 860px) {
  header .contcLink .avWherh p span {
    display: block;
  }
}
@media only screen and (max-width: 420px) {
  header .contcLink .avWherh p span {
    font-size: 12px;
    line-height: 1;
  }
}

.humburger-icon {
  width: 40px;
  height: 40px;
  top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .humburger-icon {
    position: absolute;
    left: 25px;
  }
}
@media (max-width: 991px) {
  .humburger-icon {
    margin: 0 15px;
  }
}
@media (max-width: 767px) {
  .humburger-icon {
    margin-left: 0;
  }
}
@media only screen and (max-width: 365px) {
  .humburger-icon {
    width: 32px;
    height: 32px;
  }
}
.humburger-icon span {
  display: block;
  position: relative;
  background: var(--white);
  height: 2px;
  width: 100%;
}
.humburger-icon span::before, .humburger-icon span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: var(--white);
  height: 2px;
  width: 100%;
}
.humburger-icon span::before {
  top: -9px;
}
.humburger-icon span::after {
  bottom: -9px;
}

@media (max-width: 767px) {
  footer {
    margin-bottom: 39px;
  }
}
footer .footer-wrapper {
  background: var(--primary) url("../../images/footer/bg.png");
  padding: 80px 0 100px;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 860px) {
  footer .footer-wrapper {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper {
    padding: 30px 0;
    background-size: contain;
  }
}
footer .footer-wrapper .flex .col1 {
  flex: 0 1 23%;
  max-width: 23%;
  width: 100%;
}
@media (max-width: 860px) {
  footer .footer-wrapper .flex .col1 {
    order: 1;
    flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper .flex .col1 {
    order: 2;
    margin: 20px 0;
  }
}
footer .footer-wrapper .flex .col2 {
  flex: 0 1 54%;
  max-width: 54%;
  width: 100%;
}
@media (max-width: 860px) {
  footer .footer-wrapper .flex .col2 {
    order: 4;
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper .flex .col2 {
    order: 1;
    margin: 0;
  }
}
footer .footer-wrapper .flex .col3 {
  flex: 0 1 23%;
  max-width: 23%;
  width: 100%;
}
@media (max-width: 860px) {
  footer .footer-wrapper .flex .col3 {
    order: 2;
    flex: 0 1 200px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper .flex .col3 {
    order: 3;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer .footer-wrapper .flex .colfull {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 860px) {
  footer .footer-wrapper .flex .colfull {
    order: 3;
    flex: 0 1 200px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper .logo {
    text-align: center;
  }
}
footer .footer-wrapper .logo a {
  display: inline-block;
}
@media (max-width: 1140px) {
  footer .footer-wrapper .logo img {
    max-width: 170px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .logo img {
    width: 135px;
  }
}
@media (max-width: 860px) {
  footer .footer-wrapper .social-links {
    margin-top: 0;
  }
}
@media (max-width: 520px) {
  footer .footer-wrapper .social-links {
    text-align: right;
  }
}
@media only screen and (max-width: 420px) {
  footer .footer-wrapper .social-links {
    text-align: center;
  }
}
footer .nav-link ul {
  text-align: center;
}
footer .nav-link ul li {
  display: inline-block;
}
footer .nav-link ul li a {
  color: var(--white);
  display: inline-block;
  padding: 12px 14px;
  opacity: 1;
  transition: 0.5s ease;
}
@media (max-width: 1140px) {
  footer .nav-link ul li a {
    padding: 12px 7px;
  }
}
@media (max-width: 520px) {
  footer .nav-link ul li a {
    padding: 5px 10px;
    font-size: var(--font-siz-14);
  }
}
@media only screen and (max-width: 365px) {
  footer .nav-link ul li a {
    padding: 5px 6px;
  }
}
footer .nav-link ul li a:hover {
  opacity: 0.8;
}
@media (max-width: 520px) {
  footer .nav-link ul li:last-child {
    display: none;
  }
}
@media (max-width: 860px) {
  footer .button {
    display: none;
  }
}
footer .button .btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: var(--font-siz-14);
  color: var(--black);
  border-radius: 30px;
  border: 1px solid var(--primary);
  text-transform: uppercase;
  transition: 0.5s ease;
}
footer .button .btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--white);
}
footer .colfull {
  margin-top: 30px;
}
@media (max-width: 860px) {
  footer .colfull {
    margin-top: 0;
  }
}
@media (max-width: 675px) {
  footer .colfull {
    display: none;
  }
}
footer .colfull .flex {
  gap: 10px;
  align-items: center;
  justify-content: center;
}
footer .whats .btn {
  display: inline-block;
  padding: 7px 30px;
  font-size: var(--font-siz-14);
  color: var(--white);
  background: transparent;
  border-radius: 30px;
  font-weight: var(--fontw500);
  text-transform: uppercase;
  transition: 0.5s ease;
  border: 1px solid var(--white);
}
footer .whats .btn svg {
  width: 28px;
  height: 28px;
}
footer .whats .btn:hover {
  background: var(--primary);
  color: var(--white);
}
footer .copy_right {
  background: var(--white);
  padding: 25px 0;
}
@media (max-width: 860px) {
  footer .copy_right {
    padding: 10px 0;
  }
}
footer .copy_right .text p {
  text-align: center;
  color: var(--black);
  font-size: var(--font-siz-14);
  line-height: 20px;
  font-weight: var(--fontw500);
}
@media only screen and (max-width: 420px) {
  footer .copy_right .text p {
    font-size: 12px;
  }
}
footer .copy_right .text p img {
  display: inline-block;
  vertical-align: text-top;
}
@media (max-width: 520px) {
  footer .copy_right .text p img {
    vertical-align: sub;
  }
}
@media only screen and (max-width: 365px) {
  footer .copy_right .text p img {
    width: 50px;
    vertical-align: initial;
  }
}

.model.humbuger_navigation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 5;
  max-width: 420px;
  width: 100%;
  transition: 0.5s ease;
}
.model.humbuger_navigation .close {
  right: 20px;
  top: 8px;
}
.model.humbuger_navigation .close::before {
  content: "Close";
  margin-left: -51px;
  margin-right: 6px;
  font-size: var(--font-siz-14);
  font-weight: var(--fontw500);
  color: var(--gray);
}
.model.humbuger_navigation .close svg {
  color: var(--gray);
}
.model.humbuger_navigation .close svg path {
  fill: var(--gray);
}
.model.humbuger_navigation.is-open {
  transform: translateX(0%);
}
.model.humbuger_navigation .model-body {
  background: var(--white) url("../../images/sh2.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 65px 0px;
  padding-bottom: 20px;
  padding-right: 0;
  margin-left: 0;
  height: 100%;
  position: relative;
  z-index: 11;
}
.model.humbuger_navigation .close_model {
  top: 15px;
}
.model.humbuger_navigation .close_model img {
  width: 12px;
}
.model.humbuger_navigation .nav_link li {
  display: block;
  margin: 8px 0;
}
.model.humbuger_navigation .nav_link li a {
  display: block;
  color: var(--gray);
  padding: 6px 0px;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: var(--fontw700);
  transition: 0.5s ease;
}
.model.humbuger_navigation .nav_link li:hover > a {
  color: var(--primary);
  padding-left: 5px;
}
.model.humbuger_navigation .contacLinks {
  margin-top: 25px;
}
.model.humbuger_navigation .contactLin {
  border-top: 1px solid #e5e5e5;
  margin: 20px 0 6px;
  padding-top: 30px;
}
.model.humbuger_navigation .contactLin .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model.humbuger_navigation .contactLin .links p {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.model.humbuger_navigation .contactLin .links p svg, .model.humbuger_navigation .contactLin .links p a {
  display: inline-block;
  vertical-align: middle;
}
.model.humbuger_navigation .contactLin .links p svg {
  margin-top: 2px;
}
.model.humbuger_navigation .contactLin .links p img {
  filter: invert(0.7) grayscale(1);
}
.model.humbuger_navigation .contactLin .links p a {
  padding-left: 12px;
}
.model.humbuger_navigation .contactLin .links p a {
  display: inline-block;
  vertical-align: middle;
  color: var(--gray);
  font-size: 14px;
}
.model.humbuger_navigation .contactLin .links p a:hover {
  color: var(--primary);
}
.model.humbuger_navigation .contactLin .links p.tel img {
  margin-top: 7px;
}
.model.humbuger_navigation .contactLin .links p:first-child a {
  padding-right: 8px;
}
.model.humbuger_navigation .social_links {
  display: inline-block;
}
.model.humbuger_navigation .social_links ul li {
  display: inline-block;
}
.model.humbuger_navigation .social_links ul li:not(:last-child) {
  margin-right: 4px;
}
.model.humbuger_navigation .social_links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  padding: 0;
  margin: 0;
  border: 1px solid #e5e5e5;
  transition: 0.5s ease;
}
.model.humbuger_navigation .social_links ul li a svg {
  width: 15px;
  height: 15px;
}
.model.humbuger_navigation .social_links ul li a svg path {
  fill: var(--gray);
}
.model.humbuger_navigation .social_links ul li:hover a {
  padding: 0;
  border-color: var(--primary);
  background: var(--primary);
}
.model.humbuger_navigation .social_links ul li:hover a svg path {
  fill: var(--white);
}
.model.humbuger_navigation .social_links, .model.humbuger_navigation .Whts {
  display: inline-block;
  vertical-align: middle;
  margin-top: 15px;
}
.model.humbuger_navigation .oter_pages {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin: 20px 0 25px;
  padding: 20px 0 25px;
}
.model.humbuger_navigation .oter_pages ul.nav_link li a {
  font-size: 18px;
  color: var(--gray);
  padding: 5px 0;
  transition: 0.5s ease;
  font-weight: var(--fontw400);
}
.model.humbuger_navigation .oter_pages ul.nav_link li a:hover {
  color: var(--primary);
}
.model.humbuger_navigation .nav_link li.dropdown {
  position: relative;
}
.model.humbuger_navigation .nav_link li.dropdown a {
  display: block;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger {
  position: absolute;
  right: -20px;
  top: 7px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger {
    right: -2px;
  }
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::before, .model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::after {
  content: "";
  position: absolute;
  background: var(--gray);
  opacity: 1;
  transition: 0.5s ease;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::before {
  width: 2px;
  height: 12px;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger::after {
  width: 12px;
  height: 2px;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav-trigger:hover {
  background: #f7f7f7;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav {
  display: none;
  background: #f7f7f7;
  padding: 10px 0;
  margin: 0 -50px 0 -50px;
  padding-left: 60px;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav li a {
  font-size: 16px;
  line-height: normal;
  padding: 3px 0;
  color: var(--gray);
  font-weight: var(--fontw400);
  transition: 0.5s ease;
}
.model.humbuger_navigation .nav_link li.dropdown .sub-nav li a:hover {
  color: var(--primary);
}
.model.humbuger_navigation .nav_link li.dropdown.active > a {
  color: var(--primary);
}
.model.humbuger_navigation .nav_link li.dropdown.active .sub-nav-trigger::before {
  opacity: 0;
}
.model.humbuger_navigation .model_scroll {
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  padding: 10px 40px 15px;
  position: relative;
  padding-right: 51px;
  z-index: 1;
}
@media (max-width: 767px) {
  .model.humbuger_navigation .model_scroll {
    padding: 10px 20px 15px;
  }
}
.model.humbuger_navigation .model_scroll::-webkit-scrollbar {
  width: 3px;
}
.model.humbuger_navigation .model_scroll::-webkit-scrollbar-track {
  box-shadow: unset;
  background: transparent;
}
.model.humbuger_navigation .model_scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
.model.humbuger_navigation .shade {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.ModelDownloadSiteplan {
  position: fixed;
  bottom: 0;
  z-index: 5;
  opacity: 0;
  transition: 0.5s ease;
  width: 100%;
}
@media (min-width: 992px) {
  .ModelDownloadSiteplan {
    left: 0;
    right: 0;
    pointer-events: none;
    top: 100vh;
    transform: translate(0, 100%);
  }
}
@media (max-width: 991px) {
  .ModelDownloadSiteplan {
    max-width: 420px;
    top: 0;
    height: 100%;
    right: 0;
    transform: translateX(100%);
  }
}
.ModelDownloadSiteplan.is-open {
  opacity: 1;
  top: 0;
}
@media (min-width: 992px) {
  .ModelDownloadSiteplan.is-open {
    transform: translate(0, 0%);
    pointer-events: all;
  }
}
@media (max-width: 991px) {
  .ModelDownloadSiteplan.is-open {
    transform: translateX(0%);
  }
}
.ModelDownloadSiteplan .modelBody {
  background: var(--white);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .ModelDownloadSiteplan .modelBody {
    height: 100%;
  }
}
.ModelDownloadSiteplan .modelBody .close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  cursor: pointer;
}
.ModelDownloadSiteplan .modelBody .close svg {
  color: var(--white);
  width: 30px;
  height: 30px;
}
.ModelDownloadSiteplan .modelBody .flex {
  height: 100%;
}
.ModelDownloadSiteplan .modelBody .colA {
  flex-grow: 1;
}
@media (max-width: 991px) {
  .ModelDownloadSiteplan .modelBody .colA {
    display: none;
  }
}
.ModelDownloadSiteplan .modelBody .colB {
  flex: 0 1 355px;
  max-width: 355px;
  width: 100%;
}
@media (max-width: 991px) {
  .ModelDownloadSiteplan .modelBody .colB {
    flex: 0 1 420px;
    max-width: 420px;
    width: 100%;
  }
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .modelBody .colB {
    height: 100%;
  }
}
.ModelDownloadSiteplan .modelBody .asideBar {
  background: var(--primary) url("../../images/pop/sh.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding: 25px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.3019607843);
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .modelBody .asideBar {
    overflow-y: auto;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 320px) {
  .ModelDownloadSiteplan .modelBody .asideBar {
    padding: 15px;
    padding-bottom: 50px;
  }
}
.ModelDownloadSiteplan .modelBody .asideBar .warehousingimg {
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  background-size: cover !important;
  transition: 0.8s ease;
}
@media (min-width: 992px) {
  .ModelDownloadSiteplan .modelBody .asideBar .warehousingimg {
    display: none;
  }
}
.ModelDownloadSiteplan .modelBody .bg {
  display: none;
}
@media (min-width: 992px) {
  .ModelDownloadSiteplan .modelBody .bg {
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover !important;
    transition: 0.8s ease;
  }
}
.ModelDownloadSiteplan .modelBody .bg a {
  display: block;
  width: 100%;
  height: 100%;
}
.ModelDownloadSiteplan .modelBody .popName {
  color: var(--white);
  font-size: var(--font-siz-16);
  font-weight: var(--fontw700);
}
.ModelDownloadSiteplan .modelBody .popsiz {
  color: var(--white);
  font-size: var(--font-siz-14);
  opacity: 0.8;
}
.ModelDownloadSiteplan .modelBody .line {
  margin: 0 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5803921569);
  height: 20px;
}
.ModelDownloadSiteplan .modelBody .popDes {
  padding: 25px 0;
}
.ModelDownloadSiteplan .modelBody .popDes p {
  color: var(--white);
  line-height: 18px;
  font-size: var(--font-siz-14);
}
.ModelDownloadSiteplan .modelBody .btn_down a {
  display: inline-block;
  padding: 4px 20px;
  font-size: var(--font-siz-11);
  font-weight: var(--fontw600);
  border: 1px solid var(--white);
  text-align: center;
  transition: 0.5s ease;
  text-transform: uppercase;
  border-radius: 30px;
  background: var(--primary);
  color: var(--white);
}
.ModelDownloadSiteplan .modelBody .btn_down a span, .ModelDownloadSiteplan .modelBody .btn_down a svg {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.ModelDownloadSiteplan .modelBody .btn_down a svg {
  margin-right: 8px;
  width: 25px;
  height: 25px;
}
.ModelDownloadSiteplan .modelBody .btn_down a:hover {
  background: var(--white);
  color: var(--primary);
}
.ModelDownloadSiteplan .modelBody .popSliderNav {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .modelBody .popSliderNav {
    margin-top: -32px;
    justify-content: flex-end;
  }
}
.ModelDownloadSiteplan .modelBody .popSliderNav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--white);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .modelBody .popSliderNav button {
    width: 30px;
    height: 30px;
  }
}
.ModelDownloadSiteplan .modelBody .popSliderNav button:hover {
  background: var(--white);
}
.ModelDownloadSiteplan .modelBody .popSliderNav button:hover img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(94%) saturate(2744%) hue-rotate(344deg) brightness(106%) contrast(96%);
}
.ModelDownloadSiteplan .modelBody .popSliderNav button img {
  display: block;
  width: 9px;
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .modelBody .popSliderNav button img {
    width: 7px;
  }
}
.ModelDownloadSiteplan .btn_list {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .btn_list {
    position: fixed;
  }
}
.ModelDownloadSiteplan .btn_list a {
  flex-grow: 1;
  display: inline-block;
  padding: 12px 7px;
  font-size: var(--font-siz-16);
  font-weight: var(--fontw500);
  border: 1px solid transparent;
  text-align: center;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .ModelDownloadSiteplan .btn_list a {
    padding: 7px;
  }
}
.ModelDownloadSiteplan .btn_list a.enq {
  color: var(--primary);
  background: var(--white);
}
.ModelDownloadSiteplan .btn_list a.whts {
  color: var(--white);
  background: #0dab45;
}

.modelEnquiry {
  position: fixed;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  max-width: 420px;
  background: var(--white) url("../../images/sh1.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%;
  z-index: 6;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.modelEnquiry.is-open {
  transform: translateX(0%);
}
.modelEnquiry.is-open .modelBody iframe {
  display: block;
}
.modelEnquiry.is-open ~ .overlay {
  z-index: 5;
}
.modelEnquiry .enqueryForm {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: scroll;
  margin-right: -30px;
  padding-right: 30px;
}
.modelEnquiry .enqueryForm::-webkit-scrollbar {
  width: 5px;
}
.modelEnquiry .enqueryForm::-webkit-scrollbar-track {
  box-shadow: unset;
  background: var(--white);
}
.modelEnquiry .enqueryForm::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
.modelEnquiry .enqueryForm .form {
  padding: 25px;
  height: 100%;
}
.modelEnquiry .enqueryForm .form .heading h2 {
  color: var(--black);
  font-size: var(--font-siz-35);
  margin-bottom: 6px;
}
.modelEnquiry .enqueryForm .form .heading p {
  margin-bottom: 30px;
  font-size: var(--font-siz-14);
  font-weight: var(--fontw500);
}
@media (max-width: 520px) {
  .modelEnquiry .enqueryForm .form .heading p {
    margin-bottom: 20px;
  }
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  background: var(--black);
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video.is-open .modelBody iframe {
  display: block;
}
.Model_Video svg {
  color: var(--white);
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
  display: none;
}
@media (max-width: 767px) {
  .Model_Video .modelBody iframe {
    width: 100%;
    height: 200px;
    border: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=header.css.map */
.linkFooter {
    line-height: 1;
    text-align: justify;
    letter-spacing: -0.3px;
}
.linkFooter h3 {
    display: inline-block;
    color: var(--white);
    font-size: 0.8525rem;
}
.linkFooter a {
    display: inline-block;
    color: rgba(255,255,255,0.6); /*var(--white);*/
    text-transform: capitalize;
    font-size: 0.8125rem;
    padding: 8px 0;
}

.linkFooter a span {
    display: inline-block;
    vertical-align: middle;
}

.linkFooter a:hover {
    color: white;
}
