@charset "UTF-8";
@import url("all.min.css");
@import url("bootstrap.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap');

:root {
  --primary: #c97b32 ;
  --secondary: #c9bcae;
  --primary-hover: #f5c318;
  --primary-dark: #424242 ;
  --tertiary: #e6e7e7;
  --rgba-primary-1: rgba(201, 123, 50, 0.1);
  --rgba-primary-2: rgba(201, 123, 50, 0.2);
  --rgba-primary-3: rgba(201, 123, 50, 0.3);
  --rgba-primary-4: rgba(201, 123, 50, 0.4);
  --rgba-primary-5: rgba(201, 123, 50, 0.5);
  --rgba-primary-6: rgba(201, 123, 50, 0.6);
  --rgba-primary-7: rgba(201, 123, 50, 0.7);
  --rgba-primary-8: rgba(201, 123, 50, 0.8);
  --rgba-primary-9: rgba(201, 123, 50, 0.9);
  --font-family-base: 'Poppins', sans-serif;
  --font-family-title: "Roboto Flex", sans-serif;
  --body-font-size: 16px;
  --title: #212529;
  --quote: url(../images/quote-1.png);
}


* {
  outline: none;
  padding: 0;
}

*::after {
  margin: 0;
  padding: 0;
}

*::before {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  color: #212529;
  font-size: var(--body-font-size);
  font-family: var(--font-family-base);
  background-color: #e9e9e9;  font-optical-sizing: auto;
}

body.fixed {
  overflow: hidden;
  position: fixed;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: var(--title);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-family-title);
  color: var(--title);
}

h1,
.h1,
.h1 {
  line-height: 1.3;
}

@media only screen and (max-width: 991px) {

  h1,
  .h1,
  .h1 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {

  h1,
  .h1,
  .h1 {
    font-size: 1.875rem;
  }
}

h2,
.h2,
.h2 {
  line-height: 1.4;
}

@media only screen and (max-width: 991px) {

  h2,
  .h2,
  .h2 {
    font-size: 1.75rem;
  }
}

@media only screen and (max-width: 767px) {

  h2,
  .h2,
  .h2 {
    font-size: 1.5rem;
  }
}

h3,
.h3,
.h3 {
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {

  h3,
  .h3,
  .h3 {
    font-size: 1.375rem;
  }
}

h4,
.h4,
.h4 {
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {

  h4,
  .h4,
  .h4 {
    font-size: 1.25rem;
  }
}

h5,
.h5,
.h5 {
  line-height: 1.35;
}

@media only screen and (max-width: 767px) {

  h5,
  .h5,
  .h5 {
    font-size: 1.125rem;
  }
}

h6,
.h6,
.h6 {
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {

  h6,
  .h6,
  .h6 {
    font-size: 1rem;
  }
}

ul {
  padding: 0;
  margin: 0;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

a:hover,
a:focus,
a.active {
  text-decoration: none;
  outline: none;
  color: var(--primary-hover);
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary{
  background-color: var(--tertiary) !important;
}
b,
strong,
.strong {
  font-weight: 500;
  color: var(--title);
}

.h-0 {
  height: 0;
}

#main-wrapper {
  opacity: 0;
  transition: all 0.25s ease-in;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

#main-wrapper.show {
  opacity: 1;
}

.content-body {
  margin-left: 65px;
  margin-top: 18px;
  margin-right: 6px;
  margin-bottom: 45px;
}


.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-left: 80px;
  padding-right: 80px;
}

@media only screen and (max-width: 1680px) {

  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 1280px) {

  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 575px) {

  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bg-gray {
  background-color: #f8f8f8;
}



.row.sp60,
.sp60 {
  margin-left: -30px;
  margin-right: -30px;
}

.row.sp60 [class*="col-"],
.sp60 [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}

.row.sp40,
.sp40 {
  margin-left: -20px;
  margin-right: -20px;
}

.row.sp40 [class*="col-"],
.sp40 [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

.row.sp20,
.sp20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row.sp20 [class*="col-"],
.sp20 [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.row.sp16,
.sp16 {
  margin-left: -8px;
  margin-right: -8px;
}

.row.sp16 [class*="col-"],
.sp16 [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.row.sp10,
.sp10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row.sp10 [class*="col-"],
.sp10 [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.sp4,
.sp4 {
  margin-left: -2px;
  margin-right: -2px;
}

.row.sp4 [class*="col-"],
.sp4 [class*="col-"] {
  padding-left: 2px;
  padding-right: 2px;
}

.row.spno,
.spno {
  margin-left: 0;
  margin-right: 0;
}

.row.spno [class*="col-"],
.spno [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* Flaticon */
[class*="flaticon-"] {
  font-family: "Flaticon";
}

@media only screen and (max-width: 991px) {
  .re-order-1 {
    order: 1;
    margin-top: 20px;
  }
}
.content-inner {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 991px) {
  .content-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}


.mfp-bg {
  z-index: 99999;
}

.mfp-container {
  z-index: 999999;
}

.mfp-wrap {
  z-index: 999999;
}

.bg-light {
  background-color: var(--rgba-primary-1) !important;
}


.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-30 {
  font-size: 30px;
}

.font-35 {
  font-size: 35px;
}

.font-40 {
  font-size: 40px;
}

.font-45 {
  font-size: 45px;
}

.font-50 {
  font-size: 50px;
}

.font-55 {
  font-size: 55px;
}

.font-60 {
  font-size: 60px;
}

.font-70 {
  font-size: 70px;
}

.font-75 {
  font-size: 75px;
}

.font-80 {
  font-size: 80px;
}

.font-90 {
  font-size: 90px;
}

.font-100 {
  font-size: 100px;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

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

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.p-a0 {
  padding: 0;
}

.p-a5 {
  padding: 5px;
}

.p-a10 {
  padding: 10px;
}

.p-a15 {
  padding: 15px;
}

.p-a20 {
  padding: 20px;
}

.p-a25 {
  padding: 25px;
}

.p-a30 {
  padding: 30px;
}

.p-a40 {
  padding: 40px;
}

.p-a50 {
  padding: 50px;
}

.p-a60 {
  padding: 60px;
}

.p-a70 {
  padding: 70px;
}

.p-a80 {
  padding: 80px;
}

.p-a90 {
  padding: 90px;
}

.p-a100 {
  padding: 100px;
}

.p-t0 {
  padding-top: 0;
}

.p-t5 {
  padding-top: 5px;
}

.p-t10 {
  padding-top: 10px;
}

.p-t15 {
  padding-top: 15px;
}

.p-t20 {
  padding-top: 20px;
}

.p-t30 {
  padding-top: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-t50 {
  padding-top: 50px;
}

.p-t60 {
  padding-top: 60px;
}

.p-t70 {
  padding-top: 70px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t90 {
  padding-top: 90px;
}

.p-t100 {
  padding-top: 100px;
}

.p-b0 {
  padding-bottom: 0;
}

.p-b5 {
  padding-bottom: 5px;
}

.p-b10 {
  padding-bottom: 10px;
}

.p-b15 {
  padding-bottom: 15px;
}

.p-b20 {
  padding-bottom: 20px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-b50 {
  padding-bottom: 50px;
}

.p-b60 {
  padding-bottom: 60px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-b90 {
  padding-bottom: 90px;
}

.p-b100 {
  padding-bottom: 100px;
}

.p-l0 {
  padding-left: 0;
}

.p-l5 {
  padding-left: 5px;
}

.p-l10 {
  padding-left: 10px;
}

.p-l15 {
  padding-left: 15px;
}

.p-l20 {
  padding-left: 20px;
}

.p-l30 {
  padding-left: 30px;
}

.p-l40 {
  padding-left: 40px;
}

.p-l50 {
  padding-left: 50px;
}

.p-l60 {
  padding-left: 60px;
}

.p-l70 {
  padding-left: 70px;
}

.p-l80 {
  padding-left: 80px;
}

.p-l90 {
  padding-left: 90px;
}

.p-l100 {
  padding-left: 100px;
}

.p-r0 {
  padding-right: 0;
}

.p-r5 {
  padding-right: 5px;
}

.p-r10 {
  padding-right: 10px;
}

.p-r15 {
  padding-right: 15px;
}

.p-r20 {
  padding-right: 20px;
}

.p-r30 {
  padding-right: 30px;
}

.p-r40 {
  padding-right: 40px;
}

.p-r50 {
  padding-right: 50px;
}

.p-r60 {
  padding-right: 60px;
}

.p-r70 {
  padding-right: 70px;
}

.p-r80 {
  padding-right: 80px;
}

.p-r90 {
  padding-right: 90px;
}

.p-r100 {
  padding-right: 100px;
}

.p-lr0 {
  padding-left: 0;
  padding-right: 0;
}

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-tb0 {
  padding-bottom: 0;
  padding-top: 0;
}

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

.m-auto {
  margin: auto;
}

.m-a0 {
  margin: 0;
}

.m-a5 {
  margin: 5px;
}

.m-a10 {
  margin: 10px;
}

.m-a15 {
  margin: 15px;
}

.m-a20 {
  margin: 20px;
}

.m-a30 {
  margin: 30px;
}

.m-a40 {
  margin: 40px;
}

.m-a50 {
  margin: 50px;
}

.m-a60 {
  margin: 60px;
}

.m-a70 {
  margin: 70px;
}

.m-a80 {
  margin: 80px;
}

.m-a90 {
  margin: 90px;
}

.m-a100 {
  margin: 100px;
}

.m-t0 {
  margin-top: 0;
}

.m-t5 {
  margin-top: 5px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t15 {
  margin-top: 15px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t50 {
  margin-top: 50px;
}

.m-t60 {
  margin-top: 60px;
}

.m-t70 {
  margin-top: 70px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t90 {
  margin-top: 90px;
}

.m-t100 {
  margin-top: 100px;
}

.m-b0 {
  margin-bottom: 0;
}

.m-b5 {
  margin-bottom: 5px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b15 {
  margin-bottom: 15px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-b40 {
  margin-bottom: 40px;
}

.m-b50 {
  margin-bottom: 50px;
}

.m-b60 {
  margin-bottom: 60px;
}

.m-b70 {
  margin-bottom: 70px;
}

.m-b80 {
  margin-bottom: 80px;
}

.m-b90 {
  margin-bottom: 90px;
}

.m-b100 {
  margin-bottom: 100px;
}

.m-l0 {
  margin-left: 0;
}

.m-l5 {
  margin-left: 5px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l15 {
  margin-left: 15px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l40 {
  margin-left: 40px;
}

.m-l50 {
  margin-left: 50px;
}

.m-l60 {
  margin-left: 60px;
}

.m-l70 {
  margin-left: 70px;
}

.m-l80 {
  margin-left: 80px;
}

.m-l90 {
  margin-left: 90px;
}

.m-l100 {
  margin-left: 100px;
}

.m-r0 {
  margin-right: 0;
}

.m-r5 {
  margin-right: 5px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r15 {
  margin-right: 15px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-r40 {
  margin-right: 40px;
}

.m-r50 {
  margin-right: 50px;
}

.m-r60 {
  margin-right: 60px;
}

.m-r70 {
  margin-right: 70px;
}

.m-r80 {
  margin-right: 80px;
}

.m-r90 {
  margin-right: 90px;
}

.m-r100 {
  margin-right: 100px;
}

.m-lr0 {
  margin-left: 0;
  margin-right: 0;
}

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m-tb0 {
  margin-bottom: 0;
  margin-top: 0;
}

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

@media only screen and (max-width: 1200px) {
  .m-lg-t0 {
    margin-top: 0;
  }

  .m-lg-t5 {
    margin-top: 5px;
  }

  .m-lg-t10 {
    margin-top: 10px;
  }

  .m-lg-t15 {
    margin-top: 15px;
  }

  .m-lg-t20 {
    margin-top: 20px;
  }

  .m-lg-t30 {
    margin-top: 30px;
  }

  .m-lg-t40 {
    margin-top: 40px;
  }

  .m-lg-t50 {
    margin-top: 50px;
  }

  .m-lg-t60 {
    margin-top: 60px;
  }

  .m-lg-t70 {
    margin-top: 70px;
  }

  .m-lg-t80 {
    margin-top: 80px;
  }

  .m-lg-t90 {
    margin-top: 90px;
  }

  .m-lg-t100 {
    margin-top: 100px;
  }

  .m-lg-b0 {
    margin-bottom: 0;
  }

  .m-lg-b5 {
    margin-bottom: 5px;
  }

  .m-lg-b10 {
    margin-bottom: 10px;
  }

  .m-lg-b15 {
    margin-bottom: 15px;
  }

  .m-lg-b20 {
    margin-bottom: 20px;
  }

  .m-lg-b30 {
    margin-bottom: 30px;
  }

  .m-lg-b40 {
    margin-bottom: 40px;
  }

  .m-lg-b50 {
    margin-bottom: 50px;
  }

  .m-lg-b60 {
    margin-bottom: 60px;
  }

  .m-lg-b70 {
    margin-bottom: 70px;
  }

  .m-lg-b80 {
    margin-bottom: 80px;
  }

  .m-lg-b90 {
    margin-bottom: 90px;
  }

  .m-lg-b100 {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .m-md-t0 {
    margin-top: 0;
  }

  .m-md-t5 {
    margin-top: 5px;
  }

  .m-md-t10 {
    margin-top: 10px;
  }

  .m-md-t15 {
    margin-top: 15px;
  }

  .m-md-t20 {
    margin-top: 20px;
  }

  .m-md-t30 {
    margin-top: 30px;
  }

  .m-md-t40 {
    margin-top: 40px;
  }

  .m-md-t50 {
    margin-top: 50px;
  }

  .m-md-t60 {
    margin-top: 60px;
  }

  .m-md-t70 {
    margin-top: 70px;
  }

  .m-md-t80 {
    margin-top: 80px;
  }

  .m-md-t90 {
    margin-top: 90px;
  }

  .m-md-t100 {
    margin-top: 100px;
  }

  .m-md-b0 {
    margin-bottom: 0;
  }

  .m-md-b5 {
    margin-bottom: 5px;
  }

  .m-md-b10 {
    margin-bottom: 10px;
  }

  .m-md-b15 {
    margin-bottom: 15px;
  }

  .m-md-b20 {
    margin-bottom: 20px;
  }

  .m-md-b30 {
    margin-bottom: 30px;
  }

  .m-md-b40 {
    margin-bottom: 40px;
  }

  .m-md-b50 {
    margin-bottom: 50px;
  }

  .m-md-b60 {
    margin-bottom: 60px;
  }

  .m-md-b70 {
    margin-bottom: 70px;
  }

  .m-md-b80 {
    margin-bottom: 80px;
  }

  .m-md-b90 {
    margin-bottom: 90px;
  }

  .m-md-b100 {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .m-sm-t0 {
    margin-top: 0;
  }

  .m-sm-t5 {
    margin-top: 5px;
  }

  .m-sm-t10 {
    margin-top: 10px;
  }

  .m-sm-t15 {
    margin-top: 15px;
  }

  .m-sm-t20 {
    margin-top: 20px;
  }

  .m-sm-t30 {
    margin-top: 30px;
  }

  .m-sm-t40 {
    margin-top: 40px;
  }

  .m-sm-t50 {
    margin-top: 50px;
  }

  .m-sm-t60 {
    margin-top: 60px;
  }

  .m-sm-t70 {
    margin-top: 70px;
  }

  .m-sm-t80 {
    margin-top: 80px;
  }

  .m-sm-t90 {
    margin-top: 90px;
  }

  .m-sm-t100 {
    margin-top: 100px;
  }

  .m-sm-b0 {
    margin-bottom: 0;
  }

  .m-sm-b5 {
    margin-bottom: 5px;
  }

  .m-sm-b10 {
    margin-bottom: 10px;
  }

  .m-sm-b15 {
    margin-bottom: 15px;
  }

  .m-sm-b20 {
    margin-bottom: 20px;
  }

  .m-sm-b30 {
    margin-bottom: 30px;
  }

  .m-sm-b40 {
    margin-bottom: 40px;
  }

  .m-sm-b50 {
    margin-bottom: 50px;
  }

  .m-sm-b60 {
    margin-bottom: 60px;
  }

  .m-sm-b70 {
    margin-bottom: 70px;
  }

  .m-sm-b80 {
    margin-bottom: 80px;
  }

  .m-sm-b90 {
    margin-bottom: 90px;
  }

  .m-sm-b100 {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 576px) {
  .m-xs-t0 {
    margin-top: 0;
  }

  .m-xs-t5 {
    margin-top: 5px;
  }

  .m-xs-t10 {
    margin-top: 10px;
  }

  .m-xs-t15 {
    margin-top: 15px;
  }

  .m-xs-t20 {
    margin-top: 20px;
  }

  .m-xs-t30 {
    margin-top: 30px;
  }

  .m-xs-t40 {
    margin-top: 40px;
  }

  .m-xs-t50 {
    margin-top: 50px;
  }

  .m-xs-t60 {
    margin-top: 60px;
  }

  .m-xs-t70 {
    margin-top: 70px;
  }

  .m-xs-t80 {
    margin-top: 80px;
  }

  .m-xs-t90 {
    margin-top: 90px;
  }

  .m-xs-t100 {
    margin-top: 100px;
  }

  .m-xs-b0 {
    margin-bottom: 0;
  }

  .m-xs-b5 {
    margin-bottom: 5px;
  }

  .m-xs-b10 {
    margin-bottom: 10px;
  }

  .m-xs-b15 {
    margin-bottom: 15px;
  }

  .m-xs-b20 {
    margin-bottom: 20px;
  }

  .m-xs-b30 {
    margin-bottom: 30px;
  }

  .m-xs-b40 {
    margin-bottom: 40px;
  }

  .m-xs-b50 {
    margin-bottom: 50px;
  }

  .m-xs-b60 {
    margin-bottom: 60px;
  }

  .m-xs-b70 {
    margin-bottom: 70px;
  }

  .m-xs-b80 {
    margin-bottom: 80px;
  }

  .m-xs-b90 {
    margin-bottom: 90px;
  }

  .m-xs-b100 {
    margin-bottom: 100px;
  }
}

.max-w50 {
  max-width: 50px;
}

.max-w60 {
  max-width: 60px;
}

.max-w80 {
  max-width: 80px;
}

.max-w100 {
  max-width: 100px;
}

.max-w200 {
  max-width: 200px;
}

.max-w300 {
  max-width: 300px;
}

.max-w400 {
  max-width: 400px;
}

.max-w500 {
  max-width: 500px;
}

.max-w600 {
  max-width: 600px;
}

.max-w700 {
  max-width: 700px;
}

.max-w800 {
  max-width: 800px;
}

.max-w900 {
  max-width: 900px;
}

.max-w1000 {
  max-width: 1000px;
}

.bg-img-fix {
  background-attachment: unset;
  background-size: cover;
}

.full-img {
  width: 100%;
}

.sticky-top {
  top: 120px;
}

.page-title {
  padding: 65px 0px 45px;
  position: relative;
  background: #f7f9ef;
  background-image: url("./../images/hero/5.png");
  background-size: cover;
  background-position: center;
}

.page-title p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #7272A8;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
  .page-title p {
    font-size: 16px;
  }
}

.page-title h3,
.page-title .h3 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {

  .page-title h3,
  .page-title .h3 {
    font-size: 28px;
  }
}

section {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1280px) {
  .section-head {
    margin-bottom: 30px;
  }
}

.section-head h1,
.section-head .h1,
.section-head h2,
.section-head .h2,
.section-head h3,
.section-head .h3,
.section-head h4,
.section-head .h4,
.section-head h5,
.section-head .h5,
.section-head h6,
.section-head .h6 {
  font-family: var(--font-family-title);
}

.section-head p {
  font-size: 15px;
  line-height: 25px;
}

.section-head.text-center p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.row.spno,
.spno {
  margin-left: 0;
  margin-right: 0;
}

.row.spno [class*="col"],
.row.spno [class*="col"],
.spno [class*="col"],
.spno [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}

.row.sp4,
.sp4 {
  margin-left: -4px;
  margin-right: -4px;
}

.row.sp4 [class*="col"],
.row.sp4 [class*="col"],
.sp4 [class*="col"],
.sp4 [class*="col"] {
  padding-left: 4px;
  padding-right: 4px;
}

.row.sp15,
.sp15 {
  margin-left: -7px;
  margin-right: -7px;
}

.row.sp15 [class*="col"],
.row.sp15 [class*="col"],
.sp15 [class*="col"],
.sp15 [class*="col"] {
  padding-left: 7px;
  padding-right: 7px;
}

.row.sp10,
.sp10 {
  margin-left: -10px;
  margin-right: -10px;
}

.row.sp10 [class*="col"],
.row.sp10 [class*="col"],
.sp10 [class*="col"],
.sp10 [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}

.rounded-xl {
  border-radius: 30px !important;
}

.rounded-lg {
  border-radius: 20px !important;
}

.rounded-md {
  border-radius: 10px !important;
}

.rounded-sm {
  border-radius: 5px !important;
}

.text-maroon {
  color: #9e0168;
}

.text-orange {
  color: #ff8853;
}

.text-yellow {
  color: #ffa808;
}

.text-skyblue {
  color: #029e76;
}

.text-red {
  color: #ff586e;
}

.text-green {
  color: #029e76;
}

.text-blue {
  color: #5543d1;
}

.bg-maroon {
  background-color: #9e0168;
}

.bg-orange {
  background-color: #ff8853;
}

.bg-yellow {
  background-color: #b27d66;
}

.bg-skyblue {
  background-color: #00aeff;
}

.bg-red {
  background-color: #ff586e;
}

.bg-green {
  background-color: #029e76;
}

.bg-blue {
  background-color: #5543d1;
}

.scale8 {
  transform: scale(1.85);
  -moz-transform: scale(1.85);
  -webkit-transform: scale(1.85);
  -ms-transform: scale(1.85);
  -o-transform: scale(1.85);
}

.scale7 {
  transform: scale(1.7);
  -moz-transform: scale(1.7);
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7);
}

.scale5 {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.scale3 {
  transform: scale(1.3);
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.scale2 {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.scale08 {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

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

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.card {
  border: 0px solid #E1E1F0;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04);
  background: #fff;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E1E1F0;
  background: #fff;
  padding: 20px 30px;
}

.card-title {
  font-size: 24px;
  margin-bottom: 0px;
}

.card .card-body {
  padding: 20px 30px;
  background: #fff;
  border-radius: 15px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 10px;
  background: transparent;
  border-color: #E1E1F0;
}

.form-control {
  height: 40px;
  border-bottom: 1px solid #32354b;
  padding: 5px 5px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-radius: 0;
}

.form-control .select {
  padding: 12px 0;
}

.form-control span {
  margin-top: 0;
}

.form-control::-webkit-input-placeholder {
  color: #777777;
}

.form-control:-ms-input-placeholder {
  color: #777777;
}

.form-control::placeholder {
  color: #777777;
}

.form-control:focus,
.form-control:active,
.form-control.active {
  border-color: var(--primary);
  box-shadow: none;
}

textarea.form-control {
  min-height: unset;
  height: auto;
}

textarea {
  height: 120px;
  resize: none;
}

input:-internal-autofill-selected {
  background: white !important;
  background-image: none !important;
  color: -internal-light-dark-color(black, white) !important;
}

.input-group-text {
  padding: 5px 15px;
  background: #ffffff;
  margin-bottom: 0px !important;
  color: #777777;
  border-color: transparent;
}


.re-form.radius-no .form-control {
  border-radius: 0;
}

.re-form.style-1 textarea {
  height: 185px;
  padding: 15px ​20px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

.btn {
  padding: 18px 30px;
  display: inline-flex;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
  box-shadow: 0 5px 15px -10px var(--primary);
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
 background: linear-gradient(-45deg, #f5c318, #f08d25);
}

.btn.btn-lg,
.btn-group-lg>.btn {
  padding: 24px 40px;
  font-size: 16px;
}

.btn.btn-sm,
.btn-group-sm>.btn {
  font-size: 13px;
  padding: 11px 20px;
  line-height: 1.3;
}

.btn.btn-xs {
  font-size: 14px;
  padding: 11px 25px;
}

@media only screen and (max-width: 767px) {
  .btn {
    padding: 14px 25px;
    font-size: 14px;
  }
}

.btn.btn-primary {
  color: #000;
}

.btn.btn-primary:hover {
  color: #000;
}
.btn.btn-secondary {
  background-color: var(--secondary);
  color: #000;
  border: var(--secondary);
}
.btn i {
  font-size: 18px;
  line-height: 18px;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.btn-border {
  border-radius: 50px;
  border: 2px solid #fff;
  background: none;
}

.btn:after {
  content: "";
  left: 0;
  border-radius: inherit;
  position: absolute;
  height: 100%;
  width: 0;
  position: absolute;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.btn:hover:after {
  width: 100%;
}

.btn.btn-ov-primary {
  border: 0;
}

.btn.btn-ov-primary:active,
.btn.btn-ov-primary:focus,
.btn.btn-ov-primary:hover {
  border-color: var(--primary);
  color: #fff;
}

.btn.btn-ov-primary:after {
  background: var(--primary);
}

.btn.btn-ov-secondary {
  border: 0;
}

.btn.btn-ov-secondary:active,
.btn.btn-ov-secondary:focus,
.btn.btn-ov-secondary:hover {
  border-color: var(--secondary);
  color: #fff;
}

.btn.btn-ov-secondary:after {
  background: var(--secondary);
}

.btn.btn-ov-white {
  border: 0;
}

.btn.btn-ov-white:active,
.btn.btn-ov-white:focus,
.btn.btn-ov-white:hover {
  border-color: #fff;
  color: #323232;
}

.btn.btn-ov-white:after {
  background: #fff;
}

.hover-icon {
  overflow: hidden;
}

.hover-icon i {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.hover-icon span {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.hover-icon:hover i {
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.hover-icon:hover span {
  transform: translateX(100%);
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  opacity: 0;
}

.btn-primary {
  border-color: var(--primary);
  background-color: var(--primary);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  border-color: var(--primary-hover) !important;
  background-color: var(--primary-hover) !important;
}

.btn-link {
  color: #777;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.btn-link i {
  margin: 0 5px;
}

.btn-link:hover {
  color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  border-color: var(--primary-hover);
  background-color: var(--primary-hover);
  color: #fff;
}

.btn-link-lg {
  font-weight: 700;
  font-size: 18px;
}

.btn-link-lg:hover {
  text-decoration: unset;
}

.btn-light {
  background-color: #fff;
}

.btn-light:hover {
  background-color: var(--primary);
  color: #fff !important;
  border-color: transparent;
}

.btn-light.text-primary:hover {
  color: #fff !important;
}

.table-responsive-sm {
  min-width: 48rem;
}

.table {
  margin-bottom: 0px;
  font-weight: 400;
}

.table tr td,
.table tr th {
  padding: 15px;
}

.table tr th {
  color: #212529;
  font-weight: 500;
}

.table-striped thead tr th {
  padding-bottom: 15px !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.table-striped tfoot {
  border-top: 2px solid #E1E1F0;
}

.table-striped tfoot tr th {
  padding-top: 10px;
}

.re-separator {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 8px;
  position: relative;
}

.re-separator.m-b0 {
  margin-bottom: 0;
}

.re-separator.style-liner {
  width: 20px;
}

.re-separator.style-icon {
  width: 30px;
  height: auto;
  text-align: center;
  font-size: 20px;
}

.re-separator.style-skew {
  width: 15px;
  height: 10px;
  margin-left: 1px;
  margin-right: 1px;
  -moz-transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
}

.re-separator.style-skew[class*="style-"]:after,
.re-separator.style-skew[class*="style-"]:before {
  width: 80px;
  height: 4px;
  left: 20px;
  -moz-transform: translateY(-50%) skewX(-10deg);
  -webkit-transform: translateY(-50%) skewX(-10deg);
  -o-transform: translateY(-50%) skewX(-10deg);
  -ms-transform: translateY(-50%) skewX(-10deg);
  transform: translateY(-50%) skewX(-10deg);
}

.re-separator.style-skew[class*="style-"]:before {
  right: 20px;
  left: auto;
}

.re-separator.bnr-title {
  height: 1px;
  width: 155px;
  opacity: 0.5;
}

.re-separator.bnr-title:before,
.re-separator.bnr-title:after {
  position: absolute;
  content: "";
  background-color: inherit;
}

.re-separator.bnr-title:before {
  height: inherit;
  right: -80px;
  width: 25px;
}

.re-separator.bnr-title:after {
  height: inherit;
  right: -90px;
  top: 0;
  width: 6px;
}

.re-separator.bnr-title i {
  background-color: inherit;
  display: block;
  height: inherit;
  position: absolute;
  right: -50px;
  width: 45px;
}

.re-separator-outer {
  overflow: hidden;
}

.re-separator.style-1 {
  height: 2px;
  display: block;
  width: 50px;
  background-color: var(--primary);
}

.re-separator.style-2 {
  width: 45px;
  height: 2px;
  background-color: #000;
}


.re-img-overlay1,
.re-img-overlay2,
.re-img-overlay3,
.re-img-overlay4,
.re-img-overlay5,
.re-img-overlay6,
.re-img-overlay7,
.re-img-overlay8,
.re-img-overlay9,
.re-img-overlay11,
.re-img-overlay12 {
  position: relative;
}

.re-img-overlay1:before,
.re-img-overlay1:after,
.re-img-overlay2:before,
.re-img-overlay2:after,
.re-img-overlay3:before,
.re-img-overlay3:after,
.re-img-overlay4:before,
.re-img-overlay4:after,
.re-img-overlay5:before,
.re-img-overlay5:after,
.re-img-overlay6:before,
.re-img-overlay6:after,
.re-img-overlay7:before,
.re-img-overlay7:after,
.re-img-overlay8:before,
.re-img-overlay8:after,
.re-img-overlay9:before,
.re-img-overlay9:after,
.re-img-overlay11:before,
.re-img-overlay11:after,
.re-img-overlay12:before,
.re-img-overlay12:after {
  content: "";
  background: #282d32;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0.4;
  z-index: 1;
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
}

.re-img-overlay1.overlay-primary,
.re-img-overlay2.overlay-primary,
.re-img-overlay3.overlay-primary,
.re-img-overlay4.overlay-primary,
.re-img-overlay5.overlay-primary,
.re-img-overlay6.overlay-primary,
.re-img-overlay7.overlay-primary,
.re-img-overlay8.overlay-primary,
.re-img-overlay9.overlay-primary,
.re-img-overlay11.overlay-primary,
.re-img-overlay12.overlay-primary {
  background: var(--primary);
}

.re-box:hover .re-img-overlay1:before {
  opacity: 0.5;
}

.re-box:hover .re-img-overlay2:before {
  opacity: 0.9;
}

.re-box:hover .re-img-overlay3:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.re-box:hover .re-img-overlay4:before {
  width: 100%;
  left: 0;
}

.re-box:hover .re-img-overlay5:before {
  height: 100%;
  top: 0;
}

.re-box:hover .re-img-overlay6:before {
  height: 100%;
}

.re-box:hover .re-img-overlay7:before,
.re-box:hover .re-img-overlay7:after {
  width: 50%;
}

.re-box:hover .re-img-overlay8:before,
.re-box:hover .re-img-overlay8:after {
  width: 100%;
  opacity: 0.3;
}

.re-box:hover .re-img-overlay9:before,
.re-box:hover .re-img-overlay9:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.re-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.re-img-overlay1:hover:before {
  opacity: 0.5;
}

.re-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.re-img-overlay2:before:hover:before {
  opacity: 0.9;
}

.re-img-overlay3:before {
  left: 50%;
  top: 50%;
}

.re-img-overlay3:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.re-img-overlay4:before {
  left: 50%;
  top: 0;
  height: 100%;
}

.re-img-overlay4:hover:before {
  width: 100%;
  left: 0;
}

.re-img-overlay5:before {
  left: 0;
  top: 50%;
  width: 100%;
}

.re-img-overlay5:hover:before {
  height: 100%;
  top: 0;
}

.re-img-overlay6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
}

.re-img-overlay6:hover:before {
  height: 100%;
}

.re-img-overlay7:before,
.re-img-overlay7:after {
  height: 100%;
}

.re-img-overlay7:after {
  left: auto;
  right: 0;
}

.re-img-overlay7:hover:before,
.re-img-overlay7:hover:after {
  width: 50%;
}

.re-img-overlay8:before,
.re-img-overlay8:after {
  height: 100%;
}

.re-img-overlay8:after {
  left: auto;
  right: 0;
}

.re-img-overlay8:hover:before,
.re-img-overlay8:hover:after {
  width: 100%;
  opacity: 0.3;
}

.re-img-overlay9:before:before,
.re-img-overlay9:before:after,
.re-img-overlay9:after:before,
.re-img-overlay9:after:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}

.re-img-overlay9:before:hover:before,
.re-img-overlay9:before:hover:after,
.re-img-overlay9:after:hover:before,
.re-img-overlay9:after:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/*  */
.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark,
.overlay-primary {
  position: relative;
}

.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before,
.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before,
.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before,
.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.overlay-black-light .container,
.overlay-black-light .container-fluid,
.overlay-black-light .container-sm,
.overlay-black-light .container-md,
.overlay-black-light .container-lg,
.overlay-black-light .container-xl,
.overlay-black-middle .container,
.overlay-black-middle .container-fluid,
.overlay-black-middle .container-sm,
.overlay-black-middle .container-md,
.overlay-black-middle .container-lg,
.overlay-black-middle .container-xl,
.overlay-black-dark .container,
.overlay-black-dark .container-fluid,
.overlay-black-dark .container-sm,
.overlay-black-dark .container-md,
.overlay-black-dark .container-lg,
.overlay-black-dark .container-xl,
.overlay-gradient-light .container,
.overlay-gradient-light .container-fluid,
.overlay-gradient-light .container-sm,
.overlay-gradient-light .container-md,
.overlay-gradient-light .container-lg,
.overlay-gradient-light .container-xl,
.overlay-gradient-middle .container,
.overlay-gradient-middle .container-fluid,
.overlay-gradient-middle .container-sm,
.overlay-gradient-middle .container-md,
.overlay-gradient-middle .container-lg,
.overlay-gradient-middle .container-xl,
.overlay-gradient-dark .container,
.overlay-gradient-dark .container-fluid,
.overlay-gradient-dark .container-sm,
.overlay-gradient-dark .container-md,
.overlay-gradient-dark .container-lg,
.overlay-gradient-dark .container-xl,
.overlay-white-light .container,
.overlay-white-light .container-fluid,
.overlay-white-light .container-sm,
.overlay-white-light .container-md,
.overlay-white-light .container-lg,
.overlay-white-light .container-xl,
.overlay-white-middle .container,
.overlay-white-middle .container-fluid,
.overlay-white-middle .container-sm,
.overlay-white-middle .container-md,
.overlay-white-middle .container-lg,
.overlay-white-middle .container-xl,
.overlay-white-dark .container,
.overlay-white-dark .container-fluid,
.overlay-white-dark .container-sm,
.overlay-white-dark .container-md,
.overlay-white-dark .container-lg,
.overlay-white-dark .container-xl,
.overlay-primary-light .container,
.overlay-primary-light .container-fluid,
.overlay-primary-light .container-sm,
.overlay-primary-light .container-md,
.overlay-primary-light .container-lg,
.overlay-primary-light .container-xl,
.overlay-primary-middle .container,
.overlay-primary-middle .container-fluid,
.overlay-primary-middle .container-sm,
.overlay-primary-middle .container-md,
.overlay-primary-middle .container-lg,
.overlay-primary-middle .container-xl,
.overlay-primary-dark .container,
.overlay-primary-dark .container-fluid,
.overlay-primary-dark .container-sm,
.overlay-primary-dark .container-md,
.overlay-primary-dark .container-lg,
.overlay-primary-dark .container-xl,
.overlay-primary .container,
.overlay-primary .container-fluid,
.overlay-primary .container-sm,
.overlay-primary .container-md,
.overlay-primary .container-lg,
.overlay-primary .container-xl {
  position: relative;
  z-index: 1;
}

.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before {
  background: #000;
}

.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before {
  background: #FFF;
}

.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  background: var(--primary);
}

.overlay-primary-light:before,
.overlay-white-light:before,
.overlay-gradient-light:before,
.overlay-black-light:before {
  opacity: 0.3;
}

.overlay-primary-middle:before,
.overlay-white-middle:before,
.overlay-gradient-middle:before,
.overlay-black-middle:before {
  opacity: 0.5;
}

.overlay-primary-dark:before,
.overlay-white-dark:before,
.overlay-gradient-dark:before,
.overlay-black-dark:before {
  opacity: 0.9;
}

.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.overlay-bx .align-b {
  height: auto;
  left: 0;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  transform: translate(0);
  -o-transform: translate(0);
  -moz-transform: translate(0);
  -webkit-transform: translate(0);
}

.overlay-bx .align-m {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}

.overlay-icon {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
}

.overlay-icon a {
  display: inline-block;
  padding: 0;
  margin: 0 2px;
}

.overlay-icon a i {
  background-color: #FFF;
}

.overlay-bx:hover a>i,
.re-media:hover .overlay-bx a>i,
.re-box-bx:hover .overlay-bx a>i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.overlay-bx:hover,
.re-media:hover .overlay-bx,
.re-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible;
}

.gallery-box-1 .overlay-bx .overlay-icon span i,
.gallery-box-1 .overlay-bx .overlay-icon a i {
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}

.gallery-box-1 .overlay-bx .icon-bx-xs {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.img-overlay-gradients {
  position: relative;
}

.img-overlay-gradients:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.img-overlay-gradients.gradients-secondary:before {
  background: -moz-linear-gradient(bottom, transparent 0%, #323232 100%);
  background: -webkit-linear-gradient(bottom, transparent 0%, #323232 100%);
  background: linear-gradient(to bottom, transparent 0%, #323232 100%);
}

.img-overlay-gradients.gradients-primary:before {
  background: -moz-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
  background: -webkit-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
  background: linear-gradient(to bottom, transparent 0%, var(--primary) 100%);
}

.overlay-shine .re-media {
  position: relative;
  overflow: hidden;
}

.overlay-shine .re-media:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.overlay-shine:hover .re-media:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.overlay-left {
  position: relative;
  z-index: 1;
}

.overlay-left:after {
  width: 30%;
  height: 100%;
  content: "";
  background: var(--rgba-primary-9);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 575px) {
  .overlay-left:after {
    width: 100%;
  }
}


.re-media {
  overflow: hidden;
  position: relative;
}

.re-media:hover .re-info-has {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}

.re-box:hover .re-info-has {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
}

.overlay-bx.no-hover,
.re-info-has.no-hover {
  opacity: 1;
  width: 100%;
  margin-bottom: 0;
  visibility: visible;
}

.owl-none .owl-nav {
  display: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  cursor: pointer;
  transition: all 0.5s;
  display: inline-block;
  font-size: 24px !important;
  font-weight: 500 !important;
}

.owl-theme .owl-nav,
.owl-theme .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-dots {
  text-align: center;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot:hover span,
.owl-theme .owl-dots .owl-dot.active span {
  background: #869791;
}

.owl-theme.owl-dots-1 .owl-dots .owl-dot span {
  background-color: #dadada;
  width: 15px;
  height: 15px;
  margin: 5px;
}

.owl-theme.owl-dots-1 .owl-dots .owl-dot:hover span,
.owl-theme.owl-dots-1 .owl-dots .owl-dot.active span {
  background-color: var(--primary);
}

.owl-theme.owl-dots-2 .owl-dots {
  margin-top: 40px;
  position: unset;
  right: auto;
  text-align: center;
  top: auto;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: auto;
}

.owl-theme.owl-dots-2 .owl-dots .owl-dot {
  display: inline-block;
  margin: 4px;
}

.owl-theme.owl-dots-2 .owl-dots .owl-dot span {
  height: 10px;
  width: 10px;
  margin: 0;
  border-radius: 0;
}

.owl-theme.owl-dots-2 .owl-dots .owl-dot:hover span,
.owl-theme.owl-dots-2 .owl-dots .owl-dot.active span {
  background-color: var(--primary);
}

.owl-theme.owl-dots-3 .owl-dots {
  margin-top: 40px;
  position: unset;
  display: block;
  right: auto;
  text-align: center;
  top: auto;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: auto;
}

.owl-theme.owl-dots-3 .owl-dots .owl-dot {
  display: inline-block;
  margin: 4px;
}

.owl-theme.owl-dots-3 .owl-dots .owl-dot span {
  height: 8px;
  width: 8px;
  margin: 0;
  background-color: #898c90;
  border-radius: 8px;
}

.owl-theme.owl-dots-3 .owl-dots .owl-dot:hover span,
.owl-theme.owl-dots-3 .owl-dots .owl-dot.active span {
  background-color: var(--primary);
}

.owl-btn-top-c .owl-nav {
  text-align: center;
}

.owl-btn-top-l .owl-nav {
  text-align: left;
}

.owl-btn-top-l .owl-nav .owl-prev {
  margin-left: 0;
}

.owl-btn-top-r .owl-nav {
  position: absolute;
  top: -125px;
  right: 0;
  margin: 0;
}

.owl-btn-top-r .owl-nav .owl-next {
  margin-right: 0;
}

.owl-btn-top-lr .owl-nav {
  text-align: left;
}

.owl-btn-top-lr .owl-nav .owl-next {
  margin-right: 0;
  float: right;
}

.owl-btn-full .owl-prev,
.owl-btn-full .owl-next {
  padding: 40px 8px;
}

.owl-btn-center .owl-nav {
  justify-content: center;
}

.owl-btn-center-lr .owl-prev,
.owl-btn-center-lr .owl-next {
  position: absolute;
  left: 0;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.owl-btn-center-lr .owl-prev {
  left: -110px;
}

.owl-btn-center-lr .owl-next {
  left: auto;
  right: -110px;
}

@media only screen and (max-width: 1400px) {
  .owl-btn-center-lr .owl-prev {
    left: -40px;
  }

  .owl-btn-center-lr .owl-next {
    right: -40px;
  }
}

@media only screen and (max-width: 1280px) {
  .owl-btn-center-lr .owl-prev {
    left: -20px;
  }

  .owl-btn-center-lr .owl-next {
    right: -20px;
  }
}

.owl-carousel .owl-item img {
  transform-style: inherit;
}

.owl-btn-1 .owl-nav button.owl-prev,
.owl-btn-1 .owl-nav button.owl-next {
  border-radius: 3px;
  line-height: 40px;
  margin: 0 20px !important;
  padding: 0;
  text-align: center;
  color: var(--primary) !important;
  font-size: 35px;
  height: auto;
  width: auto;
  background-color: transparent;
  position: relative;
}

.owl-btn-1 .owl-nav button.owl-prev:before,
.owl-btn-1 .owl-nav button.owl-next:before {
  content: "";
  position: absolute;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 3px;
  position: absolute;
  font-weight: 400;
  top: 8px;
  color: #323232;
}

.owl-btn-1 .owl-nav button.owl-prev:hover,
.owl-btn-1 .owl-nav button.owl-next:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  opacity: 1;
}

@media only screen and (max-width: 991px) {

  .owl-btn-1 .owl-nav button.owl-prev,
  .owl-btn-1 .owl-nav button.owl-next {
    margin: 0 10px !important;
  }
}

.owl-btn-1 .owl-nav button.owl-prev {
  padding: 0 30px 0 0px !important;
}

.owl-btn-1 .owl-nav button.owl-prev:before {
  content: "PREV";
  right: 0;
}

.owl-btn-1 .owl-nav button.owl-next {
  padding: 0 0 0 30px !important;
}

.owl-btn-1 .owl-nav button.owl-next:before {
  content: "NEXT";
  left: 0;
}

.owl-btn-1.btn-white .owl-nav .owl-prev,
.owl-btn-1.btn-white .owl-nav .owl-next {
  color: #fff;
}

.owl-btn-1.btn-white .owl-nav .owl-prev:hover,
.owl-btn-1.btn-white .owl-nav .owl-next:hover {
  color: #fff;
}

.owl-btn-2.owl-btn-rounded .owl-nav .owl-prev,
.owl-btn-2.owl-btn-rounded .owl-nav .owl-next {
  border-radius: 8px;
}

.owl-btn-2 .owl-nav .owl-prev,
.owl-btn-2 .owl-nav .owl-next {
  height: 60px;
  line-height: 60px;
  margin: 0 10px !important;
  padding: 0;
  text-align: center;
  width: 60px;
  box-shadow: 0 4px 15px var(--rgba-primary-2);
}

@media only screen and (max-width: 575px) {

  .owl-btn-2 .owl-nav .owl-prev,
  .owl-btn-2 .owl-nav .owl-next {
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 18px !important;
  }
}

.owl-btn-3 .owl-nav .owl-prev,
.owl-btn-3 .owl-nav .owl-next {
  border-radius: 50px;
  height: 45px;
  line-height: 45px;
  margin: 0 10px !important;
  padding: 0;
  text-align: center;
  width: 45px;
}

.owl-btn-primary .owl-nav button.owl-prev,
.owl-btn-primary .owl-nav button.owl-next {
  background-color: var(--primary);
  color: #fff;
  transition: all 0.5s;
}

.owl-btn-primary .owl-nav button.owl-prev:hover,
.owl-btn-primary .owl-nav button.owl-next:hover {
  background-color: #fff;
  color: var(--primary);
}

.owl-btn-white .owl-prev,
.owl-btn-white .owl-next {
  background-color: #fff;
  color: var(--primary);
  transition: all 0.5s;
}

.owl-btn-white .owl-prev:hover,
.owl-btn-white .owl-next:hover {
  background-color: var(--primary);
  color: #fff;
}

.owl-dots-none .owl-dots {
  display: none;
}

.owl-dots-white-full .owl-dots .owl-dot span,
.owl-dots-black-full .owl-dots .owl-dot span,
.owl-dots-primary-full .owl-dots .owl-dot span {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  margin: 4px;
}

.owl-dots-white-full .owl-dots .owl-dot:active span,
.owl-dots-white-full .owl-dots .owl-dot.active span,
.owl-dots-black-full .owl-dots .owl-dot:active span,
.owl-dots-black-full .owl-dots .owl-dot.active span,
.owl-dots-primary-full .owl-dots .owl-dot:active span,
.owl-dots-primary-full .owl-dots .owl-dot.active span {
  opacity: 1;
  background-color: var(--primary);
}

.owl-dots-white-big .owl-dots .owl-dot span,
.owl-dots-black-big .owl-dots .owl-dot span,
.owl-dots-primary-big .owl-dots .owl-dot span {
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  margin: 4px;
}

.owl-dots-white-big .owl-dots .owl-dot:active span,
.owl-dots-black-big .owl-dots .owl-dot:active span,
.owl-dots-primary-big .owl-dots .owl-dot:active span {
  width: 14px;
  height: 14px;
  opacity: 1;
  margin: 0px 4px 2px 4px;
}

.owl-dots-primary-full .owl-dots .owl-dot span,
.owl-dots-primary-big .owl-dots .owl-dot span {
  background-color: var(--primary);
}

.owl-dots-black-full .owl-dots .owl-dot span,
.owl-dots-black-big .owl-dots .owl-dot span {
  background-color: #333;
}

.owl-dots-white-full .owl-dots .owl-dot span,
.owl-dots-white-big .owl-dots .owl-dot span {
  background-color: #f5f5f5;
}

/* owl num count */
.owl-num-count .owl-dots {
  text-align: right;
  counter-reset: li;
  justify-content: center;
  display: flex;
}

.owl-num-count .owl-dots .owl-dot {
  padding: 5px 2px !important;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}

.owl-num-count .owl-dots .owl-dot span {
  width: 20px;
  height: 5px;
  border-radius: 10px;
  transition: all 0.5s;
  background-color: transparent;
}

.owl-num-count .owl-dots .owl-dot:before {
  content: "0" counter(li, decimal);
  counter-increment: li;
  font-weight: 600;
  color: #777777;
  font-size: 18px;
}

.owl-num-count .owl-dots .owl-dot.active:before {
  color: var(--primary);
}

.owl-num-count .owl-dots .owl-dot.active span {
  background-color: var(--primary);
}


.re-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
  vertical-align: middle;
}

.re-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.re-img-effect.opacity img:hover {
  opacity: 0.8;
}

.re-img-effect.zoom-slow img {
  transition: all 10s;
  -moz-transition: all 10s;
  -webkit-transition: all 10s;
  -o-transition: all 10s;
}

.re-img-effect.zoom-slow:hover img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.re-img-effect.zoom:hover img {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.re-img-effect.shrink:hover img {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.re-img-effect.side-pan:hover img {
  margin-left: -11%;
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.re-img-effect.vertical-pan:hover img {
  margin-top: -10%;
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.re-img-effect.fade-in {
  background: #000;
}

.re-img-effect.fade-in img {
  opacity: 0.65;
}

.re-img-effect.fade-in:hover img {
  opacity: 1;
}

.re-img-effect.fade-out {
  background: #000;
}

.re-img-effect.fade-out:hover img {
  opacity: 0.7;
}

.re-img-effect.rotate:hover img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}

.re-img-effect.image-sepia img {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
}

.re-img-effect.blurr img {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.re-img-effect.blurr:hover img {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}

.re-img-effect.blurr-invert img {
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
}

.re-img-effect.blurr-invert:hover img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  -ms-filter: blur(0px);
}

.re-img-effect.off-color img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}

.re-img-effect.off-color:hover img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}

.re-img-effect.on-color img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
  -ms-filter: grayscale(1);
}

.re-img-effect.on-color:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
}

.re-box:hover .re-img-effect.rotate img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg);
}

.re-accordion .accordion-item {
  box-shadow: 1px 0px 60px 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0;
}

.re-accordion .accordion-body {
  padding: 25px 30px;
  border-radius: 0;
}

.re-accordion .accordion-collapse {
  border: 0;
}

.re-accordion .accordion-header .accordion-button {
  font-size: 16px;
  border: 0;
  border-radius: 0;
  padding: 22px 65px 22px 30px;
  transition: all 0.5s;
  color: #fff;
  box-shadow: 5px 0 15px var(--rgba-primary-4);
  background-color: var(--primary);
}

.re-accordion .accordion-header .accordion-button:after {
  content: none;
}

.re-accordion .accordion-header .accordion-button .toggle-close {
  background-color: #fff;
  font-family: 'FontAwesome';
  height: 55px;
  width: 55px;
  display: block;
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 0;
  line-height: 57px;
  text-align: center;
  font-size: 24px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 1;
  overflow: hidden;
}

.re-accordion .accordion-header .accordion-button .toggle-close:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

.re-accordion .accordion-header .accordion-button .toggle-close:before {
  content: "\2b";
  color: var(--primary);
  font-size: 24px;
  font-family: 'FontAwesome';
  z-index: 99;
  opacity: 1;
  transform: rotate(45deg);
  transition: all 0.5s;
  line-height: 55px;
  display: block;
}

.re-accordion .accordion-header .accordion-button.collapsed {
  background: #fff;
  color: inherit;
}

.re-accordion .accordion-header .accordion-button.collapsed:after {
  opacity: 0;
}

.re-accordion .accordion-header .accordion-button.collapsed .toggle-close {
  content: "";
}

.re-accordion .accordion-header .accordion-button.collapsed .toggle-close:after {
  opacity: 1;
}

.re-accordion .accordion-header .accordion-button.collapsed .toggle-close:before {
  opacity: 1;
  transform: rotate(0);
  color: #fff;
}

@media only screen and (max-width: 575px) {
  .re-accordion .accordion-header .accordion-header .accordion-button {
    padding: 15px 65px 15px 15px;
  }
}

.re-accordion.accordion-sm .accordion-body {
  padding: 25px;
}

.re-accordion.accordion-sm .accordion-header .accordion-button {
  padding: 15px 55px 15px 20px;
}

.re-accordion.accordion-sm .accordion-header .accordion-button .toggle-close {
  height: 40px;
  width: 40px;
}

.re-accordion.accordion-sm .accordion-header .accordion-button .toggle-close:before {
  font-size: 18px;
  line-height: 40px;
}

@media only screen and (max-width: 575px) {
  .re-accordion.accordion-sm .accordion-header .accordion-header .accordion-button {
    padding: 15px 65px 15px 15px;
  }
}

.re-accordion.style-1.accordion-sm .accordion-header .accordion-button {
  padding: 15px 55px 15px 30px;
  background: var(--primary);
  color: #fff;
  box-shadow: none;
  font-weight: 600;
  font-size: 18px;
  border-radius: 0;
}

.re-accordion.style-1.accordion-sm .accordion-header .accordion-button .toggle-close {
  color: #fff;
}

.re-accordion.style-1.accordion-sm .accordion-header .accordion-button .toggle-close.before {
  content: "\e61a";
  color: red;
  font-size: 24px;
  font-family: 'FontAwesome';
  z-index: 99;
  opacity: 1;
  transform: rotate(45deg);
  transition: all 0.5s;
  line-height: 55px;
  display: block;
}

@media only screen and (max-width: 575px) {
  .re-accordion.style-1.accordion-sm .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
    font-size: 16px;
  }
}

.re-accordion.style-1.accordion-sm .accordion-body {
  border: 3px solid var(--primary);
}

.re-accordion.style-1.accordion-sm .accordion-body p {
  font-weight: 400;
  font-size: 18px;
}


.re-content-bx {
  position: relative;
  overflow: hidden;
}

.re-content-bx .content-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1280px) {
  .re-content-bx .content-media img {
    height: 450px;
  }
}

.re-content-bx .re-content-inner {
  position: relative;
}


.re-content-bx.style-2 .content-media {
  width: 50vw;
  margin: -120px 0 0 0;
  float: right;
  height: 100%;
}

.re-content-bx.style-2 .content-media.right {
  float: left;
}

.re-content-bx.style-2 .content-media img {
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 991px) {
  .re-content-bx.style-2 .content-media {
    margin: 0;
    padding-bottom: 40px;
    float: none;
    width: 100%;
  }
}


@media only screen and (max-width: 991px) {
  .re-content-bx.style-2 .re-content-inner {
    margin-top: 20px;
  }
}
.list-circle li,
.list-angle-double li,
.list-square li {
  position: relative;
  padding: 6px 5px 6px 15px;
}

.list-circle li:before,
.list-angle-double li:before,
.list-square li:before {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.list-circle.primary li:before,
.list-angle-double.primary li:before,
.list-square.primary li:before {
  color: var(--primary);
}

.list-angle-double li {
  padding-left: 25px;
}

ul.list-circle li:before {
  content: "\f111";
  font-size: 8px;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
}

ul.list-angle-double li:before {
  content: "\f101";
  font-size: 18px;
}

ul.list-square li:before {
  content: "\f45c";
  top: 50%;
  transform: translateY(-50%);
}

ul.grid-2 {
  display: flex;
  flex-wrap: wrap;
}

ul.grid-2 li {
  width: 50%;
}

@media only screen and (max-width: 575px) {
  ul.grid-2 li {
    width: 100%;
  }
}

/* Light Gallery */
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar {
  background-color: rgba(30, 30, 30, 0.6);
}

.lg-outer .lg-toogle-thumb,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  background-color: transparent;
}

.lg-backdrop {
  background-color: rgba(30, 30, 30, 0.9);
}

.lg-outer .lg-toogle-thumb,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-toolbar .lg-icon,
#lg-counter {
  color: #fff;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--primary);
}

.lightimg {
  cursor: pointer;
}
.scroltop {
  box-shadow: -4px 4px 24px -10px var(--primary) !important;
  background: var(--primary);
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
  bottom: 45px;
  color: #fff;
  cursor: pointer;
  display: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 50px;
  z-index: 999;
  box-shadow: -4px 4px 24px -10px;
  transition: all .8s;
  -moz-transition: all .8s;
  -webkit-transition: all .8s;
  -ms-transition: all .8s;
  -o-transition: all .8s;
  border-radius: 0.5rem;
}
.enqus {
  box-shadow: -4px 4px 24px -10px var(--secondary) !important;
  background: var(--primary);
  border-color: var(--secondary);
  border-style: solid;
  border-width: 0;
  bottom: 100px;
  color: #fff;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: auto;
  z-index: 999;
  padding:0px 10px;
  box-shadow: -4px 4px 24px -10px;
  border-radius: 0.5rem;
}
a.enqus{ color: #fff;}
@media only screen and (max-width: 575px) {
  .scroltop {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}


.about-bx2 .re-media {
  position: relative;
  overflow: unset;
  margin-right: 40px;
}

@media only screen and (max-width: 991px) {
  .about-bx2 .re-media {
    margin-bottom: 40px;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
  }
}

.about-bx2 .re-media img {
  width: auto;
}

.about-bx2 .re-media .img1 {
  padding: 0;
  display: inline-block;
  width: 75%;
}

.about-bx2 .re-media .img1 img {
  animation: reMove1 6s linear infinite;
}

.about-bx2 .re-media .img2 {
  padding: 0;
  position: absolute;
  right: 0;
  top: 25%;
  display: inline-block;
  width: 75%;
}

.about-bx2 .re-media .img2 img {
  animation: reMove1 8s linear infinite;
}

.about-bx2 .re-media .img3 {
  padding: 0;
  z-index: 1;
  position: relative;
  margin-top: -15%;
  margin-left: -20%;
  display: inline-block;
  width: 90%;
}

.about-bx2 .re-media .img3 img {
  animation: reMove1 10s linear infinite;
}

.about-bx2 .icon-bx-wraper {
  border-bottom: 1px solid #E1E1F0;
  padding-bottom: 30px;
}

.about-bx2 .icon-bx-wraper:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.re-accordion.loc-faq .accordion-button {
  /* background: transparent; */
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  padding: 15px 60px 10px 20px;
  box-shadow: none;
  font-size:21px;
  color:#fff;
}

.re-accordion.loc-faq .accordion-button i {
  font-size: 45px;
  color: var(--primary);
  position: absolute;
  left: 0;
}

.re-accordion.loc-faq .accordion-button .toggle-close {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  font-size: 16px;
  top: 12px;
}

.re-accordion.loc-faq .accordion-button .toggle-close:before {
  line-height: 30px;
  font-size: 20px;
}

.re-accordion.loc-faq .accordion-header {
  margin-bottom: -15px;
}

.re-accordion.loc-faq .accordion-item {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.re-accordion.loc-faq .accordion-item:not(:last-child) {
  border-bottom: 1px solid #E1E1F0;
}

.re-accordion.loc-faq .accordion-body {
  padding: 0 40px 0 20px;
  
  margin-top:20px;
}

.section-head.style-1 .sub-title {
  letter-spacing: 4px;
  position: relative;
  padding-right: 95px;
  display: inline-block;
  margin-bottom: 5px;
}

@media only screen and (max-width: 575px) {
  .section-head.style-1 .sub-title {
    padding-right: 30px;
  }
}

.section-head.style-1 .sub-title:after {
  content: "";
  height: 1px;
  width: 85px;
  background-color: var(--secondary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media only screen and (max-width: 575px) {
  .section-head.style-1 .sub-title:after {
    width: 20px;
  }
}

.section-head.style-1 h2.title,
.section-head.style-1 .title.h2 {
  font-size: 45px;
  line-height: 1.1;
}

@media only screen and (max-width: 767px) {

  .section-head.style-1 h2.title,
  .section-head.style-1 .title.h2 {
    font-size: 35px;
    line-height: 1.15;
  }
}

.icon-bx-xl {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 150px;
  height: 150px;
  line-height: 150px;
}

.icon-bx-xl.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.icon-bx-xl i {
  font-size: 80px;
  vertical-align: middle;
}

.icon-bx-xl img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 80px;
}

.icon-bx-lg {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 120px;
  height: 120px;
  line-height: 120px;
}

.icon-bx-lg.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.icon-bx-lg i {
  font-size: 60px;
  vertical-align: middle;
}

.icon-bx-lg img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 55px;
}

.icon-bx-md {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 100px;
  height: 100px;
  line-height: 100px;
}

.icon-bx-md.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.icon-bx-md i {
  font-size: 45px;
  vertical-align: middle;
}

.icon-bx-md img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 40px;
}

.icon-bx-sm {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  line-height: 50px;
}

.icon-bx-sm.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.icon-bx-sm i {
  font-size: 30px;
  vertical-align: middle;
}

.icon-bx-sm img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 30px;
}

.icon-bx-xs {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.icon-bx-xs.radius {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.icon-bx-xs i {
  font-size: 30px;
  vertical-align: middle;
}

.icon-bx-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 20px;
}

.icon-xl {
  display: inline-block;
  text-align: center;
  width: 100px;
}

.icon-xl i {
  vertical-align: middle;
  font-size: 80px;
}

.icon-xl img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 80px;
}

.icon-lg {
  display: inline-block;
  text-align: center;
}

.icon-lg i {
  vertical-align: middle;
  font-size: 60px;
}

.icon-lg img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 70px;
}

.icon-md {
  display: inline-block;
  text-align: center;
}

.icon-md i {
  vertical-align: middle;
  font-size: 45px;
}

.icon-md img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 50px;
}

.icon-sm {
  display: inline-block;
  text-align: center;
  width: 40px;
}

.icon-sm i {
  vertical-align: middle;
  font-size: 30px;
}

.icon-sm img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 30px;
}

.icon-xs {
  display: inline-block;
  text-align: center;
  width: 30px;
}

.icon-xs i {
  vertical-align: middle;
  font-size: 20px;
}

.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: 20px;
}

.icon-bx-wraper {
  position: relative;
}

.icon-bx-wraper .re-tilte {
  margin-top: 0;
}

.icon-bx-wraper .after-titile-line {
  margin-bottom: 10px;
}

.icon-bx-wraper p:last-child {
  margin: 0;
}

.icon-bx-wraper.center {
  text-align: center;
}

.icon-bx-wraper.left .icon-bx-xl,
.icon-bx-wraper.left .icon-bx-lg,
.icon-bx-wraper.left .icon-bx-md,
.icon-bx-wraper.left .icon-bx-sm,
.icon-bx-wraper.left .icon-bx-xs {
  float: left;
  margin-right: 20px;
}

.icon-bx-wraper.left .icon-xl,
.icon-bx-wraper.left .icon-lg,
.icon-bx-wraper.left .icon-md,
.icon-bx-wraper.left .icon-sm,
.icon-bx-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}

.icon-bx-wraper.right {
  text-align: right;
}

.icon-bx-wraper.right .icon-bx-xl,
.icon-bx-wraper.right .icon-bx-lg,
.icon-bx-wraper.right .icon-bx-md,
.icon-bx-wraper.right .icon-bx-sm,
.icon-bx-wraper.right .icon-bx-xs {
  float: right;
  margin-left: 20px;
}

.icon-bx-wraper.right .icon-xl,
.icon-bx-wraper.right .icon-lg,
.icon-bx-wraper.right .icon-md,
.icon-bx-wraper.right .icon-sm,
.icon-bx-wraper.right .icon-xs {
  float: right;
  margin-left: 10px;
}

.icon-bx-wraper.bx-style-1,
.icon-bx-wraper.bx-style-2 {
  border-width: 1px;
  border-style: solid;
  border-color: #ebedf2;
}

.icon-bx-wraper.bx-style-2.center [class*="icon-bx-"] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bx-wraper.bx-style-2.center .icon-bx-xl {
  margin-left: -75px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-lg {
  margin-left: -60px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-md {
  margin-left: -50px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-sm {
  margin-left: -40px;
}

.icon-bx-wraper.bx-style-2.center .icon-bx-xs {
  margin-left: -20px;
}

.icon-bx-wraper.bx-style-2.left [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  left: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
  position: absolute;
  top: auto;
  right: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.icon-content {
  overflow: hidden;
}

[class*="icon-bx-"][class*="bg-"] a,
[class*="icon-bx-"][class*="bg-"] span {
  color: #fff;
}

[class*="icon-bx-"].bg-white a {
  color: inherit;
}

[class*="icon-bx-"][class*="border-"] {
  display: table;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
}

[class*="icon-bx-"][class*="border-"] .icon-cell {
  display: table-cell;
  vertical-align: middle;
}

.re-box,
.re-info,
.re-tilte,
.re-tilte-inner {
  position: relative;
}

.re-tilte-inner {
  display: inline-block;
}

.re-box[class*="border-"],
.re-info[class*="border-"] {
  border-color: #eee;
}

.re-info.border-1,
.re-info.border-2,
.re-info.border-3,
.re-info.border-4,
.re-info.border-5 {
  border-top: none;
}

.border-1,
.border-2,
.border-3,
.border-4,
.border-5 {
  border-style: solid;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

.left-border,
.right-border {
  position: relative;
}

.left-border:before,
.right-border:before {
  content: "";
  position: absolute;
  top: 5px;
  width: 1px;
  height: 90%;
  background: #CCC;
}

.right-border:before {
  right: 0;
}


.icon-bx-wraper.style-6 {
  background: #fff;
  padding: 40px 40px 70px 40px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  /* box-shadow: 0 2px 60px 0 rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
    margin: 20px 0;
    border: 1px solid #dfdede;
}

.icon-bx-wraper.style-6 .icon-cell {
  color: var(--primary);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.icon-bx-wraper.style-6 .re-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: inline;
  margin-left: 10px;
  font-size: 50px;
  vertical-align: top;
  line-height: 45px;
}

.icon-bx-wraper.style-6 .re-title:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}

.icon-bx-wraper.style-6 .btn {
  /* width: 60px;  height: 60px; */
  width:auto;

  padding:10px 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 40px;
  justify-content: center;
}

.icon-bx-wraper.style-6 .btn i {
  font-size: 24px;
}

.icon-bx-wraper.style-6:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

@media only screen and (max-width: 575px) {
  .icon-bx-wraper.style-6 {
    padding: 30px 30px 70px 30px;
  }

  .icon-bx-wraper.style-6 .btn {
    left: 30px;
  }
}

.icon-bx-wraper.style-6:hover {
  box-shadow: 0 2px 60px 0 var(--rgba-primary-4);
  color: #fff;
}

.icon-bx-wraper.style-6:hover .icon-cell {
  /* color: #fff; */
}

.icon-bx-wraper.style-6:hover .re-title {
  /* color: #fff; */
}

.icon-bx-wraper.style-6:hover .re-title:after {
  background: #fff;
  opacity: 0.3;
}

.icon-bx-wraper.style-6:hover:after {
  background: #e3d9d4;
}

.icon-bx-wraper.style-6:hover .btn {
  /* background: #fff;
  border-color: #fff;
  color: var(--primary); */
}
.icon-bx-wraper.style-6 .btn:hover,.icon-bx-wraper.style-6:hover .btn:after {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.icon-bx-wraper.style-6 .icon-lg {
  line-height: 1;
  margin-bottom: 25px;
}

/* slider One */
.slider-one {
  position: relative;
}

.slider-one .slider-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  z-index:101;
}

@media only screen and (max-width: 991px) {
  .slider-one .slider-content {
    padding: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .slider-one .slider-content {
    padding: 30px;
  }
}

.slider-one .slider-content .title {
  font-size: 160px;
  line-height: 1;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
}

.slider-one .slider-content .title span {
  font-weight: 300;
}

@media only screen and (max-width: 1680px) {
  .slider-one .slider-content .title {
    font-size: 120px;
  }
}

@media only screen and (max-width: 1400px) {
  .slider-one .slider-content .title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-one .slider-content .title {
    font-size: 60px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 575px) {
  .slider-one .slider-content .title {
    font-size: 45px;
    line-height: 1.2;
  }
}

.slider-one .slider-content .sub-title {
  font-weight: 600;
  margin-bottom: 0px;
  color: #fff;
  letter-spacing: 2px;
}

.slider-one .slider-content .title-small {
  /* margin-bottom: 40px; */
  font-size: 80px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
}

@media only screen and (max-width: 1680px) {
  .slider-one .slider-content .title-small {
    font-size: 70px;
  }
}

@media only screen and (max-width: 1400px) {
  .slider-one .slider-content .title-small {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-one .slider-content .title-small {
    font-size: 40px;
  }
}


.slider-one .slider-content .overlay-slide {
  position: absolute;
  left: 0;
  height: 100%;
  width: 70%;
  z-index: -1;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  top: 0;
}
@media only screen and (max-width: 1366px) {
  .slider-one .slider-content .overlay-slide {
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  }
  
}
@media only screen and (max-width: 1180px) {
  .slider-one .slider-content .overlay-slide {
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  }
  
}
@media only screen and (max-width: 768px) {
  .slider-one .slider-content .overlay-slide {
    width: 100%;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  }
}
.slider-one .slider-img {
  overflow: hidden;
  height: calc(100vh - 80px);
  min-height: 600px;
}
@media only screen and (max-width: 1366px) {
 
  .slider-one .slider-img{height: calc(70vh - 80px);}
}
@media only screen and (max-width: 1024px) {
 
  .slider-one .slider-img{height: calc(55vh - 80px);}
}
@media only screen and (max-width: 575px) {
  .slider-one .slider-img {
    min-height: 500px;
  }
}

.slider-one .slider-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .slider-one .slider-img img {
      object-fit: contain;
  }
  .slider-one .slider-img {
    min-height: auto;
    height: auto;
}
.slider-one .slider-content {
  
  top: 0%;
  /* height: auto; */
  display: contents;
}
.slider-one .slider-content .inner-content {padding: 20px;}
}


.slider-one .slider-one-pagination {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: auto;
  display: flex;
  align-items: center;
  padding: 30px 50px;
}

@media only screen and (max-width: 575px) {
  .slider-one .slider-one-pagination {
    padding: 15px 35px;
  }
}

.slider-one .slider-one-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  opacity: .2;
  margin: 0 8px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

.slider-one .slider-one-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  color: var(--primary);
}

.slider-one .slider-one-pagination .swiper-pagination {
  margin: 0 10px;
}

.slidearea {
 padding-left: 0px;
  position: relative;
  background:#000;
}
@media only screen and (max-width: 768px) {
  .slidearea {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .slidearea {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .slidearea.bannerside {
    padding-left: 0;
  }

  .slidearea.bannerside .side-contact-info {
    display: none;
  }
}

.slidearea .side-contact-info {
  position: absolute;
  left: 0;
  width: 80px;
  height: 100%;
  top: 0;
}

@media only screen and (max-width: 575px) {
  .slidearea .side-contact-info {
    width: 35px;
  }
}

.slidearea .side-contact-info ul {
  writing-mode: tb-rl;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slidearea .side-contact-info ul li {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #212529;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 20px 0;
}

.slidearea .side-contact-info ul li:first-child {
  border-bottom: 1px solid #acacac;
}

.slidearea .side-contact-info ul li i {
  color: var(--primary);
  margin: 0px 0px 15px 0px;
  transform: rotate(-90deg);
}

.footer-bg {
  height: 100%;
  width: 50vw;
  float: right;
  overflow: hidden;
  border-radius: 0px 0px 30px;
  background-size: cover;
}


.service-detail .re-media {
  margin-bottom: 45px;
}

@media only screen and (max-width: 575px) {
  .service-detail .re-media {
    margin-bottom: 30px;
  }
}

.service-area {
  position: relative;
  z-index: 1;
}

.service-area:after {
  content: "";
  height: 35%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .service-area:after {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .service-area:after {
    height: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .service-area {
    padding-bottom: 20px;
  }
}

.resizemargin {
  margin-left: calc((100% - 1230px) / 2);
}

@media only screen and (max-width: 1280px) {
  .resizemargin {
    margin-left: calc((100% - 1200px) / 2);
  }
}

@media only screen and (max-width: 1191px) {
  .resizemargin {
    margin-left: calc((100% - 960px) / 2);
  }
}

@media only screen and (max-width: 991px) {
  .resizemargin {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}



.service-area {
  position: relative;
  z-index: 1;
}

.service-area:after {
  content: "";
  height: 35%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .service-area:after {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .service-area:after {
    height: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .service-area {
    padding-bottom: 20px;
  }
}



.gallery .gallery-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 0.3125rem;
  position: relative;
  box-sizing: border-box;
}

.gallery .gallery-item img {
  float: left;
  padding: 0 0rem;
  width: 100%;
  border: none !important;
}

.gallery .gallery-caption {
  font-size: 0.813rem;
  color: #707070;
  display: block;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0;
  clear: both;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
}

.logo-header {
  display: table;
  float: left;
  vertical-align: middle;
  padding: 0;
  color: #EFBB20;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  width: auto;;
  height: 90px;
  position: relative;
  z-index: 9;
  font-size:25px;
  letter-spacing: -1px;;
  font-weight: bold;
}
/* 
@media only screen and (max-width: 1280px) {
  .logo-header {
    width: 150px;
  }
}
 */
@media only screen and (max-width: 991px) {
  .logo-header {
    width: auto;
    height: 80px;
    font-size:18px;
  }
}

@media only screen and (max-width: 575px) {
  .logo-header {
    width: 200px;
    text-align:center;
  }
}

.logo-header a {
  display: table-cell;
  vertical-align: middle;
  color:var(--secondary);
}

.logo-header img {
height: auto; 
  width: auto;
}

.logo-header span {
  font-size: 20px;
  letter-spacing: 20px;
}


.site-header {
  position: relative;
  z-index: 9999;
}

.site-header .main-bar {
  background: #fff;
  width: 100%;
  position: relative;
}

.site-header .container {
  position: relative;
}

.site-header .extra-nav {
  float: right;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  margin-left: 40px;
  height: 80px;
}

@media only screen and (max-width: 991px) {
  .site-header .extra-nav {
    height: 80px;
  }
}

@media only screen and (max-width: 1680px) {
  .site-header .extra-nav {
    margin-left: 20px;
  }
}

.site-header .extra-nav #quik-search-btn {
  color: #020d26;
  cursor: pointer;
  margin-right: 0px;
  border: 0;
  line-height: 1;
}

@media only screen and (max-width: 575px) {
  .site-header .extra-nav .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.site-header .extra-nav ul li {
  display: inline-block;
}

.site-header .extra-nav ul li .icon {
  padding: 0;
  background: transparent;
  min-width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
}

.navbar-toggler {
  border: 0 solid  var(--primary);
  font-size: 16px;
  line-height: 24px;
  margin: 40px 0 39px 15px;
  padding: 0;
  float: right;
  outline: none !important;
}

@media only screen and (max-width: 991px) {
  .navbar-toggler {
    margin: 15px 0 15px 15px;
  }
}

.navicon {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  box-shadow: 0 5px 15px -10px var(--secondary);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border-radius: 0.5rem;
}

.navicon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  background: #fff;
  left: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.navicon span:nth-child(1) {
  top: 14px;
  width: 25px;
}

.navicon span:nth-child(2) {
  top: 21.5px;
  width: 20px;
}

.navicon span:nth-child(3) {
  top: 29px;
  width: 15px;
}

.navicon.open span:nth-child(1) {
  top: 22px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.navicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.navicon.open span:nth-child(3) {
  top: 22px;
  width: 25px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header-tb .navicon span {
  background: #fff;
}

.header-nav {
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
  }
}

@media only screen and (max-width: 991px) {
  .header-nav.show {
    left: -1px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    width: 280px;
  }
}

.header-nav .logo-header {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-nav .logo-header {
    padding: 30px 20px;
    float: none;
    height: auto;
    width: 240px;
  }
}

.header-nav .nav {
  float: right;
  padding: 0;
  font-size: 0;
}

.header-nav .nav>li {
  margin: 0px;
  font-weight: 400;
  position: relative;
}

.header-nav .nav>li>a {
  color: #323232;
  font-size: 15px;
  padding: 32px 25px;
  cursor: pointer;
  font-weight: 400;
  display: inline-block;
  position: relative;
  border-width: 0 0 0 1px;
  text-transform: capitalize;
  line-height: 1.1;
}

@media only screen and (max-width: 1680px) {
  .header-nav .nav>li>a {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1280px) {
  .header-nav .nav>li>a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header-nav .nav>li>a {
    padding: 8px 0;
    display: block;
    line-height: 30px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .header-nav .nav {
    float: none;
    padding: 0 20px;
    background:#fff;
    margin-top:30px;
  }
}

.header-nav .re-social-icon {
  display: none;
  text-align: center;
}

.header-nav .re-social-icon li {
  display: inline-block;
  margin: 0 2px;
}

.header-nav .re-social-icon a {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #eee;
  line-height: 38px;
  text-align: center;
  border-radius: 40px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .header-nav .re-social-icon {
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-transparent .top-bar,
.header-transparent .main-bar {
  background: transparent;
}

.header-transparent .container-fluid,
.header-transparent .container-sm,
.header-transparent .container-md,
.header-transparent .container-lg,
.header-transparent .container-xl {
  padding-left: 80px;
  padding-right: 80px;
}

@media only screen and (max-width: 1280px) {

  .header-transparent .container-fluid,
  .header-transparent .container-sm,
  .header-transparent .container-md,
  .header-transparent .container-lg,
  .header-transparent .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-transparent .side-menu-btn .menu-icon-in span {
  background-color: #fff;
}

.header-transparent .is-fixed .side-menu-btn .menu-icon-in span {
  background-color: #323232;
}

@media only screen and (min-width: 991px) {
  .header-transparent .nav>li>a {
    color: #fff;
  }
}

.header-transparent .navbar-toggler span {
  background: #fff;
}

.header-transparent .is-fixed .nav>li>a {
  color: #323232;
}

.header-transparent .is-fixed .navbar-toggler span {
  background: #fff;
}

.header-transparent .top-bar {
  border-color: #fff;
}

.header-transparent .top-bar .re-topbar-left li,
.header-transparent .top-bar .re-topbar-left i,
.header-transparent .top-bar .re-topbar-right li,
.header-transparent .top-bar .re-topbar-right i {
  color: #fff;
}

.is-fixed .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.5s;
}

@media only screen and (max-width: 991px) {
  .mo-left .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99;
  }

  .mo-left .header-nav.nav-dark {
    background-color: #000;
  }

  .mo-left .header-nav.show {
    left: -1px;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    margin: 0;
    width: auto;
    background-color: #fff;
  }

  .mo-left .header-nav .logo-header {
    display: block;
    float: none;
    height: auto !important;
    max-width: 100%;
    padding: 25px 20px;
    width: 100% !important;
    background-color: #fff;
  }

  .mo-left .header-nav .logo-header img {
    max-width: unset;
    /* width: 180px; */
    vertical-align: middle;
  }

  .mo-left .header-nav li.open a {
    position: relative;
  }

  .mo-left .navbar-toggler.open {
    z-index: 99;
  }

  .mo-left .navbar-toggler.open:after {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    left: 0;
    position: fixed;
    right: -20px;
    top: -63px;
    transform: scale(100);
    -o-transform: scale(100);
    -moz-transform: scale(100);
    -webkit-transform: scale(100);
    width: 100%;
    z-index: -1;
    transition: all 0.5s;
    transform-origin: top right;
    margin: 0 0px 0px 20px;
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
  }

  .mo-left .navbar-toggler.open span {
    background: #fff;
  }
}

.text-black .nav>li>a {
  color: #323232;
}

.text-black .navbar-toggler span {
  background: #323232;
}

.site-header.style-1 .top-bar {
  margin: 0 10px;
  z-index: 0;
}

.site-header.style-1 .top-bar .re-topbar-left li,
.site-header.style-1 .top-bar .re-topbar-left i,
.site-header.style-1 .top-bar .re-topbar-left a,
.site-header.style-1 .top-bar .re-topbar-right li,
.site-header.style-1 .top-bar .re-topbar-right i,
.site-header.style-1 .top-bar .re-topbar-right a {
  color: #fff;
}

.site-header.style-1 .extra-cell {
  display: flex;
  align-items: center;
}

.site-header.style-1 .extra-cell .login-btn {
  margin-left: 30px;
}

.site-header.style-1 .extra-cell .login-btn i {
  font-size: 18px;
  margin-right: 10px;
  line-height: 18px;
}

@media only screen and (max-width: 1680px) {
  .site-header.style-1 .extra-cell .login-btn i {
    margin: 0;
  }
}

@media only screen and (max-width: 1680px) {
  .site-header.style-1 .extra-cell .login-btn {
    margin-left: 20px;
    width: 45px;
    height: 45px;
    padding: 12px;
  }

  .site-header.style-1 .extra-cell .login-btn span {
    display: none;
  }
}

.site-header.style-1 .search-link i {
  font-size: 16px;
  line-height: 16px;
}


.site-header.style-1 .header-nav .nav>li>a {
  font-weight: 600;
}

@media only screen and (min-width: 991px) {
 /*  .site-header.style-1 .header-nav .nav>li>a:after {
    color: var(--primary);
    display: block;
    position: absolute;
    right: 4px;
    top: calc(50% - 5px);
    content: "\f067";
    font-size: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  } */
}

@media only screen and (min-width: 991px) {
  .site-header.style-1 .header-nav .nav>li:last-child a:after {
    content: none;
  }
}

.site-header.style-1 .header-nav .nav>li:hover>a,
.site-header.style-1 .header-nav .nav>li.active>a {
  color: var(--primary);
}

@media only screen and (max-width: 991px) {
  .site-header.style-1 {
    padding-top: 0;
    position: relative;
  }
}

.site-header.style-1 .phone-no {
  color: var(--primary);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 0;
  
}

@media only screen and (max-width: 1680px) {
  .site-header.style-1 .phone-no {
    display: none;
  }
}


.site-header.center .logo-header {
  position: absolute;
  transform: translate(-50%);
  -moz-transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -o-transform: translate(-50%);
  position: absolute;
  left: 50%;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .site-header.center .logo-header {
    position: unset;
    transform: unset;
    -moz-transform: unset;
    -webkit-transform: unset;
    -o-transform: unset;
    position: unset;
    left: auto;
    text-align: left;
  }
}

.site-header.center .header-nav .nav {
  display: inline-block;
  width: 40%;
}

@media only screen and (max-width: 991px) {
  .site-header.center .header-nav .nav {
    width: 100%;
    float: none;
  }
}

.site-header.center .header-nav .nav>li {
  display: inline-block;
}

.site-header.center .header-nav .nav.navbar-left {
  text-align: right;
  margin-right: 100px;
}

@media only screen and (max-width: 991px) {
  .site-header.center .header-nav .nav.navbar-left {
    text-align: left;
    margin-right: 0;
  }
}

.site-header.center .header-nav .nav.navbar-right {
  float: right;
  margin-left: 100px;
}

@media only screen and (max-width: 991px) {
  .site-header.center .header-nav .nav.navbar-right {
    float: none;
    margin-left: 0;
  }
}

.menu-btn {
  background: var(--primary);
  width: 45px;
  height: 45px;
  box-shadow: 0 5px 15px -10px var(--primary);
  border-radius: 0.5rem;
  margin-left: 30px;
}

@media only screen and (max-width: 1680px) {
  .menu-btn {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  background: #fff;
  left: 10px;
}

.menu-btn span:nth-child(1) {
  top: 14px;
  width: 25px;
}

.menu-btn span:nth-child(2) {
  top: 21.5px;
  width: 20px;
}

.menu-btn span:nth-child(3) {
  top: 29px;
  width: 15px;
}

.menu-btn.open span:nth-child(1) {
  top: 22px;
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-btn.open span:nth-child(3) {
  top: 22px;
  width: 25px;
}


.menu-close {
  width: 0;
  position: fixed;
  height: 100%;
  background: #333;
  top: 0;
  opacity: 0.90;
  right: 0;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 99998;
}


footer {
  color: #fff;
  font-size: 15px;
  background: #323232;
  background-image: url();
}

footer strong {
  color: #fff;
}

footer .footer-logo {
  margin-bottom: 25px;
}

footer .footer-logo img {
  max-width: 100%;
}


footer .footer-title {
  margin: 0;
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  line-height: 1.2;
}

footer .footer-title .re-separator {
  position: absolute;
  bottom: 0;
  left: 0;
}

footer .widget:hover .footer-title span:after {
  width: 5px;
}

footer .widget:hover .footer-title span:before {
  width: 55px;
}

footer .footer-top {
  padding: 70px 0 20px;
}

@media only screen and (max-width: 767px) {
  footer .footer-top {
    padding: 50px 0 0;
  }
}

footer .footer-bottom {
  background-color: #36404a;
  font-size: 15px;
  padding: 15px 0;
}

footer .footer-bottom .copyright-text a {
  color: #fff;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  footer .footer-bottom {
    text-align: center !important;
  }

  footer .footer-bottom .text-left,
  footer .footer-bottom .text-right {
    text-align: center !important;
  }

  footer .footer-bottom .text-right {
    margin-top: 10px;
  }
}


.list-column ul {
  display: flex;
  flex-wrap: wrap;
}

.list-column ul li {
  flex: 0 0 50%;
  max-width: 50%;
}


.footer-link li {
  display: inline-block;
  position: relative;
  padding: 0 25px 0 20px;
  line-height: 1.2;
}

.footer-link li a {
  color: #fff;
}

.footer-link li:before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 5px;
  transform: translateY(-50%);
}


.site-footer.style-2 {
  background-size: cover;
  position: relative;
  z-index: 1;
}

.site-footer.style-2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212529;
  opacity: 0.9;
  z-index: -1;
}

.site-footer.style-2 .footer-title {
  margin-bottom: 15px;
}

.site-footer.style-2 .footer-title:after {
  content: "";
  position: absolute;
  background-color: var(--primary);
  left: 0;
  height: 1px;
  width: 45px;
  bottom: 0;
}

.site-footer.style-2 ul li {
  padding-left: 0;
}

.site-footer.style-2 ul li a:before {
  display: none;
}

.site-footer.style-2 ul li svg {
  margin-right: 10px;
  width: 30px;
}

.site-footer.style-2 .footer-bottom {
  padding: 20px 0 50px 0;
  background-color: #212121;
}

.site-footer.style-2 .footer-bottom .footer-link li:before {
  display: none;
}

.site-footer.style-2 .footer-logo a {
  display: inline-block;
  width: 160px;
}

.site-footer.style-2 .footer-top {
  padding-top: 100px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .site-footer.style-2 .footer-top {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}

.site-footer.style-2 .social-list.style-1 {
  margin-top: 60px;
}

#bg {
  background-attachment: fixed;
  background-size: cover;
}

.main-bar-wraper.sticky-no .main-bar {
  position: unset;
}

.mob-footer {display:none;}
ul.list,ul.alist {list-style:none; }
ul.list li { margin-left:15px; padding:7px 0px;  border-bottom:solid 0px var(--primary);}
ul.alist li { margin-bottom:10px; }
ul.list li:before, ul.alist li:before {    
    font-family: 'FontAwesome';
    content: '\f560';
    margin:0 5px 0 -15px;
    font-size:13px;
    color: var(--primary);
}
ul.list h3{ color:#fff;border-bottom: solid 1px #fff;padding:10px 0px;}
ul.list li span{float:right;}
.read-more-content{
	display: none;
	padding-top: 22px;
}
.read-more{
	display: inline-block;
	margin-top: 8px;
}
.configText{background-color: var(--primary);color:#fff;padding:20px 0px 0px 0px;;}
.configText h5{color:#fff;}

ul.menu li{padding:10px 0px;}
ul.key-highlights-ul{border:dotted 2px var(--secondary);padding:20px; width: fit-content;}
ul.key-highlights-ul li{color:#fff;font-size:18px;padding:5px 0px;}
.starting-price-top {
  background-color: #fff;
  width: fit-content;
  padding: 0;
  padding-bottom: 1px;
  padding-left: 13px;
  margin-top: 25px;
  font-size: 24px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.starting-price-top span {
  font-size: 24px;
  background-color: var(--secondary);
  padding: 0 20px;
  height: 100%;
  margin-left: 10px;
  border: 1px solid #fff;
  border-bottom: none;
}
.amDiv{border:solid 1px var(--secondary);padding:20px 0px;border-radius:5px;margin-bottom:30px;text-align:center;background:#120c0e;}
.amDiv h5{color:var(--secondary);}
.amDiv img{filter: invert(1);}

.highDiv{border:solid 1px  var(--primary);;border-radius:5px;padding:15px;}
.highDiv h3,.highDiv h4,.highDiv h5{color:#fff;margin-top:10px;}
.imgBg{background:url('../images/bg.jpg') 0px 0px no-repeat;background-size:cover;}


.subheading-top{width:fit-content;margin:0 auto;margin-bottom:20px}
.section-main-heading{width: 52%;margin:0 auto;margin-bottom:40px}
.highlight-card{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px}
.highlight-card .highlight-img-card,.highlight-card .highlight-content{width:calc(50% - 5px)}
.highlight-content .high-box-heading{color: var(--primary);}
.highlight-content .content-para{color:#c9c9c9;margin-top:10px}
.highlight-content { padding-left: 15px;}
.amenities-bg {
  height: 100%;
  width: 100%;
  float: left;
  overflow: hidden;
  border-radius: 0px 0px 30px;
  background-size: cover;
}
.underline{background-image: linear-gradient(to right, var(--primary), transparent);height: 2px;
  background-position: 0 0;
  background-repeat: no-repeat;
  opacity: 50%;
  margin-bottom: 15px;}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
    .starting-price-top, .starting-price-top span{font-size:20px;}
  .enqus{display:none;}
  .mob-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;  
    font-size:14px;
    font-weight:bold;
    background: var(--primary);
    z-index: 9999;
    display:block;
    color:#fff;
  }
  .mob-footer .col-4 {
    border-right: solid 1px #fff;
    padding: 10px 0px;
}
.mob-footer .col-4 a {color:#fff;}
#ss .row > * {
  width: 50%;
}
.amDiv{display: -webkit-box;margin:5px;}
.mpadd{padding: 20px 20px;}
.modal{z-index:9999;}
#about .p-t100{padding-top:30px;}
#about .section-head{padding-top:30px;}
ul.key-highlights-ul{padding:5px; width: 100%}
ul.key-highlights-ul li{color:#fff;font-size:14px;padding:5px 0px;}
.starting-price-top{margin-top:10px;}
hr{margin:0.5em;}
.section-main-heading {width: 100%;text-align: left;}
.highlight-card {display: grid;align-items: center;justify-content: space-between; margin-bottom: 30px;width: 100%;}
.highlight-card .highlight-img-card, .highlight-card .highlight-content {width: calc(100% - 0px);}
.highlight-content {padding-left: 0px; padding-top: 20px;}
.highlight-content .high-box-heading {font-size: 20px;}
.highlight-card {margin-bottom: 30px;width: 100%;}
.highlight-card.high-card-3,  .highlight-card.high-card-4 {display: flex;margin-bottom: 30px;width: 100%;flex-direction: column-reverse;}
}

.heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.highlight {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.highlight img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.highlight-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color:  var(--primary);;
}

.highlight-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-description {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .heading {
      font-size: 2rem;
  }
}

.gradBg {
  background: linear-gradient(-45deg, #f5c318, #f08d25, #f5c318, #ef8226);
    background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
}
.hDiv{border:solid 1px #f08d25;border-radius:5px;padding:15px;text-align:center;color:#fff;}
.hImg{width:25%;filter: invert(1);margin:auto;}
.banText{width: fit-content;border-radius:5px;background-color:#f5c318;padding:7px 20px;}